From d3729e57ddfdb5af3304c0b2fe9b6897117e4bee Mon Sep 17 00:00:00 2001 From: brandonspark Date: Wed, 29 Apr 2026 17:32:01 -0700 Subject: [PATCH] Release files generated by ocaml-tree-sitter 041b61e. --- .../src/semgrep-elixir/grammar.js | 13 + fyi/tree-sitter-version | 2 +- fyi/versions | 35 +- lib/Boilerplate.ml | 47 +- lib/CST.ml | 22 +- lib/Parse.ml | 60 +- lib/parser.c | 538917 +++++++-------- lib/tree_sitter/alloc.h | 8 +- lib/tree_sitter/array.h | 3 +- lib/tree_sitter/parser.h | 1 + 10 files changed, 269266 insertions(+), 269842 deletions(-) diff --git a/fyi/semgrep-grammars/src/semgrep-elixir/grammar.js b/fyi/semgrep-grammars/src/semgrep-elixir/grammar.js index c532635..1199852 100644 --- a/fyi/semgrep-grammars/src/semgrep-elixir/grammar.js +++ b/fyi/semgrep-grammars/src/semgrep-elixir/grammar.js @@ -10,6 +10,11 @@ module.exports = grammar(base_grammar, { name: 'elixir', conflicts: ($, previous) => previous.concat([ + // '$...VAR' is valid both as an _expression (positional) and inside a + // pair (keyword). Either resolution yields ParamEllipsis in the + // Generic AST, so the choice is harmless; we just need to declare + // the conflict explicitly. See the comment on `semgrep_ellipsis`. + [$._expression, $.pair], ]), /* @@ -48,6 +53,12 @@ module.exports = grammar(base_grammar, { _semgrep_metavariable: $ => token(/\$[A-Z_][A-Z_0-9]*/), + // Semgrep ellipsis-metavariable: '$...VAR' matches a variadic + // sequence and binds it to a metavariable (e.g. $...ARGS). + // Tokenized as a single unit so the leading '$' isn't separated + // from '...VAR'. + _semgrep_ellipsis_metavariable: $ => token(/\$\.\.\.[A-Z_][A-Z_0-9]*/), + // Ellipsis // No need for extensions to _expressions for ellipsis because // Elixir already uses "..." as valid identifiers @@ -62,6 +73,7 @@ module.exports = grammar(base_grammar, { return choice( previous, $.semgrep_ellipsis, + $._semgrep_ellipsis_metavariable, ); }, @@ -79,6 +91,7 @@ module.exports = grammar(base_grammar, { _expression: ($, previous) => choice( ...previous.members, $.deep_ellipsis, + $._semgrep_ellipsis_metavariable, ), // The actual ellipsis rules diff --git a/fyi/tree-sitter-version b/fyi/tree-sitter-version index 288213a..48ecb07 100644 --- a/fyi/tree-sitter-version +++ b/fyi/tree-sitter-version @@ -1 +1 @@ -tree-sitter 0.22.6 (d521f0a0791d94f4442cf9be08322f6aabce20d6) +tree-sitter 0.24.4 diff --git a/fyi/versions b/fyi/versions index 8a7b218..079be2f 100644 --- a/fyi/versions +++ b/fyi/versions @@ -19,28 +19,25 @@ Last change in file: Format with commas --- File: semgrep-grammars/src/semgrep-elixir/grammar.js -Git repo name: ocaml-tree-sitter-semgrep -Latest commit in repo: b9665cd85a2537da15cdc86f81b83722bc14af67 +Git repo name: agent-a1b1f87efc493b5a7 +Latest commit in repo: 041b61e542d4bcefbb375268dc5aaaf0e98403f5 Last change in file: - commit b52bcb7fcd6caecacf5146d934d45afb5ecd5dfb - Author: Amarin (Um) Phaosawasdi - Date: Wed Jan 31 17:46:55 2024 +0900 + commit 041b61e542d4bcefbb375268dc5aaaf0e98403f5 + Author: brandonspark + Date: Wed Apr 29 17:28:58 2026 -0700 - elixir: support metavariable atoms (#474) + fix(elixir): add $...VAR ellipsis-metavariable support - Elixir has atoms that are pretty much identifiers that start with a colon, e.g. `:foo`. + Adds a `_semgrep_ellipsis_metavariable` token (`$\.\.\.[A-Z_][A-Z_0-9]*`) + and wires it into `_expression` and `pair` so it parses in every position + where users naturally reach for it: call args, def/fn parameters, list and + tuple elements, do-block bodies, and keyword-argument positions. Declares + the resulting `_expression` vs `pair` conflict explicitly (either resolution + becomes ParamEllipsis in the Generic AST). Adds corpus tests covering all + six positions from LANG-493. - Metavars can match expressions, but not atoms - * `$ATOM` matches `:foo` - * `:$ATOM` doesn't parse + LANG-501 (`?`/`!` suffix on metavariables) is deferred — root cause is in + the upstream tree-sitter-elixir scanner.cc, not in grammar.js. - This PR allows metavars as atoms so `:$ATOM` matches `:foo`. - - Also fixed some indentation in some previous code. - - Test plan: added test in https://github.com/semgrep/semgrep-proprietary/pull/1274 - - ### Security - - - [x] Change has no security implications (otherwise, ping the security team) + Co-Authored-By: Claude Opus 4.7 (1M context) --- diff --git a/lib/Boilerplate.ml b/lib/Boilerplate.ml index d7eeac2..40da509 100644 --- a/lib/Boilerplate.ml +++ b/lib/Boilerplate.ml @@ -79,8 +79,8 @@ let map_float_ (env : env) (tok : CST.float_) = let map_imm_tok_pat_0db2d54 (env : env) (tok : CST.imm_tok_pat_0db2d54) = (* pattern [a-z] *) token env tok -let map_semgrep_metavariable (env : env) (tok : CST.semgrep_metavariable) = - (* semgrep_metavariable *) token env tok +let map_semgrep_ellipsis_metavariable (env : env) (tok : CST.semgrep_ellipsis_metavariable) = + (* semgrep_ellipsis_metavariable *) token env tok let map_quoted_content_single (env : env) (tok : CST.quoted_content_single) = (* quoted_content_single *) token env tok @@ -131,6 +131,9 @@ let map_boolean (env : env) (x : CST.boolean) = let map_quoted_content_double (env : env) (tok : CST.quoted_content_double) = (* quoted_content_double *) token env tok +let map_semgrep_metavariable (env : env) (tok : CST.semgrep_metavariable) = + (* semgrep_metavariable *) token env tok + let map_quoted_content_i_bar (env : env) (tok : CST.quoted_content_i_bar) = (* quoted_content_i_bar *) token env tok @@ -249,23 +252,6 @@ let map_quoted_curly (env : env) ((v1, v2, v3, v4) : CST.quoted_curly) = let v4 = (* "}" *) token env v4 in R.Tuple [v1; v2; v3; v4] -let map_identifier (env : env) (x : CST.identifier) = - (match x with - | `Choice_pat_cf9c6c3 x -> R.Case ("Choice_pat_cf9c6c3", - (match x with - | `Pat_cf9c6c3 x -> R.Case ("Pat_cf9c6c3", - map_pat_cf9c6c3 env x - ) - | `DOTDOTDOT tok -> R.Case ("DOTDOTDOT", - (* "..." *) token env tok - ) - ) - ) - | `Semg_meta tok -> R.Case ("Semg_meta", - (* semgrep_metavariable *) token env tok - ) - ) - let map_quoted_single (env : env) ((v1, v2, v3, v4) : CST.quoted_single) = let v1 = (* "'" *) token env v1 in let v2 = @@ -409,6 +395,23 @@ let map_quoted_double (env : env) ((v1, v2, v3, v4) : CST.quoted_double) = let v4 = (* "\"" *) token env v4 in R.Tuple [v1; v2; v3; v4] +let map_identifier (env : env) (x : CST.identifier) = + (match x with + | `Choice_pat_cf9c6c3 x -> R.Case ("Choice_pat_cf9c6c3", + (match x with + | `Pat_cf9c6c3 x -> R.Case ("Pat_cf9c6c3", + map_pat_cf9c6c3 env x + ) + | `DOTDOTDOT tok -> R.Case ("DOTDOTDOT", + (* "..." *) token env tok + ) + ) + ) + | `Semg_meta tok -> R.Case ("Semg_meta", + (* semgrep_metavariable *) token env tok + ) + ) + let map_quoted_heredoc_single (env : env) ((v1, v2, v3, v4) : CST.quoted_heredoc_single) = let v1 = (* "'''" *) token env v1 in let v2 = @@ -1563,6 +1566,9 @@ and map_expression (env : env) (x : CST.expression) = let v3 = (* "...>" *) token env v3 in R.Tuple [v1; v2; v3] ) + | `Semg_ellips_meta tok -> R.Case ("Semg_ellips_meta", + (* semgrep_ellipsis_metavariable *) token env tok + ) ) and map_items_with_trailing_separator (env : env) (v1 : CST.items_with_trailing_separator) = @@ -1673,6 +1679,9 @@ and map_pair (env : env) (x : CST.pair) = | `Semg_ellips tok -> R.Case ("Semg_ellips", (* "..." *) token env tok ) + | `Semg_ellips_meta tok -> R.Case ("Semg_ellips_meta", + (* semgrep_ellipsis_metavariable *) token env tok + ) ) and map_quoted_i_angle (env : env) ((v1, v2, v3, v4) : CST.quoted_i_angle) = diff --git a/lib/CST.ml b/lib/CST.ml index 503e0c1..fb3a6a3 100644 --- a/lib/CST.ml +++ b/lib/CST.ml @@ -49,7 +49,7 @@ type float_ = Token.t type imm_tok_pat_0db2d54 = Token.t (* pattern [a-z] *) -type semgrep_metavariable = Token.t +type semgrep_ellipsis_metavariable = Token.t type quoted_content_single = Token.t @@ -82,6 +82,8 @@ type boolean = [ type quoted_content_double = Token.t +type semgrep_metavariable = Token.t + type quoted_content_i_bar = Token.t type quoted_content_i_curly = Token.t @@ -129,14 +131,6 @@ type quoted_curly = ( * Token.t (* "}" *) ) -type identifier = [ - `Choice_pat_cf9c6c3 of [ - `Pat_cf9c6c3 of pat_cf9c6c3 - | `DOTDOTDOT of Token.t (* "..." *) - ] - | `Semg_meta of semgrep_metavariable (*tok*) -] - type quoted_single = ( Token.t (* "'" *) * quoted_content_single (*tok*) option @@ -185,6 +179,14 @@ type quoted_double = ( * Token.t (* "\"" *) ) +type identifier = [ + `Choice_pat_cf9c6c3 of [ + `Pat_cf9c6c3 of pat_cf9c6c3 + | `DOTDOTDOT of Token.t (* "..." *) + ] + | `Semg_meta of semgrep_metavariable (*tok*) +] + type quoted_heredoc_single = ( Token.t (* "'''" *) * quoted_content_heredoc_single (*tok*) option @@ -616,6 +618,7 @@ and expression = [ | `Deep_ellips of ( Token.t (* "<..." *) * expression * Token.t (* "...>" *) ) + | `Semg_ellips_meta of semgrep_ellipsis_metavariable (*tok*) ] and items_with_trailing_separator = [ @@ -657,6 +660,7 @@ and local_call_with_parentheses = ( and pair = [ `Kw_exp of (keyword * expression) | `Semg_ellips of Token.t (* "..." *) + | `Semg_ellips_meta of semgrep_ellipsis_metavariable (*tok*) ] and quoted_i_angle = ( diff --git a/lib/Parse.ml b/lib/Parse.ml index 375c192..b9667ef 100644 --- a/lib/Parse.ml +++ b/lib/Parse.ml @@ -44,7 +44,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "false"); |]; ); - "semgrep_metavariable", None; + "semgrep_ellipsis_metavariable", None; "imm_tok_pat_8f9e87e", None; "imm_tok_pat_b250293", None; "quoted_atom_start", None; @@ -60,6 +60,7 @@ let children_regexps : (string * Run.exp option) list = [ "quoted_content_double", None; "imm_tok_lpar", None; "imm_tok_pat_5eb9c21", None; + "semgrep_metavariable", None; "quoted_content_slash", None; "keyword_", None; "quoted_content_i_bar", None; @@ -87,13 +88,6 @@ let children_regexps : (string * Run.exp option) list = [ "quoted_content_i_heredoc_double", None; "atom_", None; "newline_before_binary_operator", None; - "metavariable_atom", - Some ( - Seq [ - Token (Literal ":"); - Token (Name "semgrep_metavariable"); - ]; - ); "operator_identifier", Some ( Alt [| @@ -151,6 +145,13 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "->"); |]; ); + "metavariable_atom", + Some ( + Seq [ + Token (Literal ":"); + Token (Name "semgrep_metavariable"); + ]; + ); "terminator", Some ( Alt [| @@ -992,6 +993,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "access_call"); Token (Name "anonymous_function"); Token (Name "deep_ellipsis"); + Token (Name "semgrep_ellipsis_metavariable"); |]; ); "interpolation", @@ -1142,6 +1144,7 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "expression"); ]; Token (Name "semgrep_ellipsis"); + Token (Name "semgrep_ellipsis_metavariable"); |]; ); "quoted_atom", @@ -1732,7 +1735,7 @@ let trans_boolean ((kind, body) : mt) : CST.boolean = ) | Leaf _ -> assert false -let trans_semgrep_metavariable ((kind, body) : mt) : CST.semgrep_metavariable = +let trans_semgrep_ellipsis_metavariable ((kind, body) : mt) : CST.semgrep_ellipsis_metavariable = match body with | Leaf v -> v | Children _ -> assert false @@ -1812,6 +1815,11 @@ let trans_imm_tok_pat_5eb9c21 ((kind, body) : mt) : CST.imm_tok_pat_5eb9c21 = | Leaf v -> v | Children _ -> assert false +let trans_semgrep_metavariable ((kind, body) : mt) : CST.semgrep_metavariable = + match body with + | Leaf v -> v + | Children _ -> assert false + let trans_quoted_content_slash ((kind, body) : mt) : CST.quoted_content_slash = match body with | Leaf v -> v @@ -1947,19 +1955,6 @@ let trans_newline_before_binary_operator ((kind, body) : mt) : CST.newline_befor | Leaf v -> v | Children _ -> assert false -let trans_metavariable_atom ((kind, body) : mt) : CST.metavariable_atom = - match body with - | Children v -> - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_semgrep_metavariable (Run.matcher_token v1) - ) - | _ -> assert false - ) - | Leaf _ -> assert false - let trans_operator_identifier ((kind, body) : mt) : CST.operator_identifier = match body with | Children v -> @@ -2174,6 +2169,19 @@ let trans_operator_identifier ((kind, body) : mt) : CST.operator_identifier = ) | Leaf _ -> assert false +let trans_metavariable_atom ((kind, body) : mt) : CST.metavariable_atom = + match body with + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_semgrep_metavariable (Run.matcher_token v1) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + let trans_terminator ((kind, body) : mt) : CST.terminator = match body with | Children v -> @@ -4109,6 +4117,10 @@ and trans_expression ((kind, body) : mt) : CST.expression = `Deep_ellips ( trans_deep_ellipsis (Run.matcher_token v) ) + | Alt (24, v) -> + `Semg_ellips_meta ( + trans_semgrep_ellipsis_metavariable (Run.matcher_token v) + ) | _ -> assert false ) | Leaf _ -> assert false @@ -4411,6 +4423,10 @@ and trans_pair ((kind, body) : mt) : CST.pair = `Semg_ellips ( trans_semgrep_ellipsis (Run.matcher_token v) ) + | Alt (2, v) -> + `Semg_ellips_meta ( + trans_semgrep_ellipsis_metavariable (Run.matcher_token v) + ) | _ -> assert false ) | Leaf _ -> assert false diff --git a/lib/parser.c b/lib/parser.c index 272d7c8..dbf38e0 100644 --- a/lib/parser.c +++ b/lib/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7549 -#define LARGE_STATE_COUNT 1466 -#define SYMBOL_COUNT 243 -#define ALIAS_COUNT 9 -#define TOKEN_COUNT 129 +#define STATE_COUNT 7525 +#define LARGE_STATE_COUNT 1452 +#define SYMBOL_COUNT 244 +#define ALIAS_COUNT 1 +#define TOKEN_COUNT 130 #define EXTERNAL_TOKEN_COUNT 26 #define FIELD_COUNT 9 #define MAX_ALIAS_SEQUENCE_LENGTH 7 -#define PRODUCTION_ID_COUNT 22 +#define PRODUCTION_ID_COUNT 14 enum ts_symbol_identifiers { aux_sym_terminator_token1 = 1, @@ -124,157 +124,150 @@ enum ts_symbol_identifiers { aux_sym_metavariable_keyword_token1 = 98, anon_sym_COLON = 99, sym_semgrep_metavariable = 100, - anon_sym_LT_DOT_DOT_DOT = 101, - anon_sym_DOT_DOT_DOT_GT = 102, - sym_quoted_content_i_single = 103, - sym_quoted_content_i_double = 104, - sym_quoted_content_i_heredoc_single = 105, - sym_quoted_content_i_heredoc_double = 106, - sym_quoted_content_i_parenthesis = 107, - sym_quoted_content_i_curly = 108, - sym_quoted_content_i_square = 109, - sym_quoted_content_i_angle = 110, - sym_quoted_content_i_bar = 111, - sym_quoted_content_i_slash = 112, - sym_quoted_content_single = 113, - sym_quoted_content_double = 114, - sym_quoted_content_heredoc_single = 115, - sym_quoted_content_heredoc_double = 116, - sym_quoted_content_parenthesis = 117, - sym_quoted_content_curly = 118, - sym_quoted_content_square = 119, - sym_quoted_content_angle = 120, - sym_quoted_content_bar = 121, - sym_quoted_content_slash = 122, - sym_newline_before_do = 123, - sym_newline_before_binary_operator = 124, - sym_newline_before_comment = 125, - sym_before_unary_op = 126, - sym_not_in = 127, - sym_quoted_atom_start = 128, - sym_source = 129, - sym_terminator = 130, - sym_expression = 131, - sym_block = 132, - sym_identifier = 133, - sym_boolean = 134, - sym_nil = 135, - sym_atom = 136, - sym_quoted_atom = 137, - sym_quoted_i_double = 138, - sym_quoted_double = 139, - sym_quoted_i_single = 140, - sym_quoted_single = 141, - sym_quoted_i_heredoc_single = 142, - sym_quoted_heredoc_single = 143, - sym_quoted_i_heredoc_double = 144, - sym_quoted_heredoc_double = 145, - sym_quoted_i_parenthesis = 146, - sym_quoted_parenthesis = 147, - sym_quoted_i_curly = 148, - sym_quoted_curly = 149, - sym_quoted_i_square = 150, - sym_quoted_square = 151, - sym_quoted_i_angle = 152, - sym_quoted_angle = 153, - sym_quoted_i_bar = 154, - sym_quoted_bar = 155, - sym_quoted_i_slash = 156, - sym_quoted_slash = 157, - sym_string = 158, - sym_charlist = 159, - sym_interpolation = 160, - sym_sigil = 161, - sym_keywords = 162, - sym_keywords_with_trailing_separator = 163, - sym_pair = 164, - sym_keyword = 165, - sym_quoted_keyword = 166, - sym_list = 167, - sym_tuple = 168, - sym_bitstring = 169, - sym_map = 170, - sym_struct = 171, - sym_items_with_trailing_separator = 172, - sym_nullary_operator = 173, - sym_unary_operator = 174, - sym_capture_expression = 175, - sym_binary_operator = 176, - sym_operator_identifier = 177, - sym_dot = 178, - sym_call = 179, - sym_call_without_parentheses = 180, - sym_call_with_parentheses = 181, - sym_local_call_without_parentheses = 182, - sym_local_call_with_parentheses = 183, - sym_local_call_just_do_block = 184, - sym_remote_call_without_parentheses = 185, - sym_remote_call_with_parentheses = 186, - sym_remote_dot = 187, - sym_anonymous_call = 188, - sym_anonymous_dot = 189, - sym_double_call = 190, - sym_call_arguments_with_parentheses = 191, - sym_call_arguments_with_parentheses_immediate = 192, - sym_call_arguments_with_trailing_separator = 193, - sym_call_arguments_without_parentheses = 194, - sym_do_block = 195, - sym_after_block = 196, - sym_rescue_block = 197, - sym_catch_block = 198, - sym_else_block = 199, - sym_access_call = 200, - sym_stab_clause = 201, - sym_stab_clause_left = 202, - sym_stab_clause_arguments_with_parentheses = 203, - sym_stab_clause_arguments_without_parentheses = 204, - sym_stab_clause_arguments_with_parentheses_with_guard = 205, - sym_stab_clause_arguments_without_parentheses_with_guard = 206, - sym_body = 207, - sym_anonymous_function = 208, - sym_metavariable_keyword = 209, - sym_metavariable_atom = 210, - sym_semgrep_ellipsis = 211, - sym_deep_ellipsis = 212, - aux_sym_source_repeat1 = 213, - aux_sym_terminator_repeat1 = 214, - aux_sym_block_repeat1 = 215, - aux_sym_block_repeat2 = 216, - aux_sym_quoted_i_double_repeat1 = 217, - aux_sym_quoted_double_repeat1 = 218, - aux_sym_quoted_i_single_repeat1 = 219, - aux_sym_quoted_single_repeat1 = 220, - aux_sym_quoted_i_heredoc_single_repeat1 = 221, - aux_sym_quoted_heredoc_single_repeat1 = 222, - aux_sym_quoted_i_heredoc_double_repeat1 = 223, - aux_sym_quoted_heredoc_double_repeat1 = 224, - aux_sym_quoted_i_parenthesis_repeat1 = 225, - aux_sym_quoted_parenthesis_repeat1 = 226, - aux_sym_quoted_i_curly_repeat1 = 227, - aux_sym_quoted_curly_repeat1 = 228, - aux_sym_quoted_i_square_repeat1 = 229, - aux_sym_quoted_square_repeat1 = 230, - aux_sym_quoted_i_angle_repeat1 = 231, - aux_sym_quoted_angle_repeat1 = 232, - aux_sym_quoted_i_bar_repeat1 = 233, - aux_sym_quoted_bar_repeat1 = 234, - aux_sym_quoted_i_slash_repeat1 = 235, - aux_sym_quoted_slash_repeat1 = 236, - aux_sym_keywords_repeat1 = 237, - aux_sym_items_with_trailing_separator_repeat1 = 238, - aux_sym_do_block_repeat1 = 239, - aux_sym_stab_clause_arguments_with_parentheses_repeat1 = 240, - aux_sym_stab_clause_arguments_without_parentheses_repeat1 = 241, - aux_sym_anonymous_function_repeat1 = 242, - alias_sym_imm_tok_lbrack = 243, - alias_sym_imm_tok_lpar = 244, - alias_sym_imm_tok_pat_0db2d54 = 245, - alias_sym_imm_tok_pat_5eb9c21 = 246, - alias_sym_imm_tok_pat_8f9e87e = 247, - alias_sym_imm_tok_pat_b250293 = 248, - alias_sym_pat_509ec78 = 249, - alias_sym_pat_5eb9c21 = 250, - alias_sym_pat_cf9c6c3 = 251, + sym_semgrep_ellipsis_metavariable = 101, + anon_sym_LT_DOT_DOT_DOT = 102, + anon_sym_DOT_DOT_DOT_GT = 103, + sym_quoted_content_i_single = 104, + sym_quoted_content_i_double = 105, + sym_quoted_content_i_heredoc_single = 106, + sym_quoted_content_i_heredoc_double = 107, + sym_quoted_content_i_parenthesis = 108, + sym_quoted_content_i_curly = 109, + sym_quoted_content_i_square = 110, + sym_quoted_content_i_angle = 111, + sym_quoted_content_i_bar = 112, + sym_quoted_content_i_slash = 113, + sym_quoted_content_single = 114, + sym_quoted_content_double = 115, + sym_quoted_content_heredoc_single = 116, + sym_quoted_content_heredoc_double = 117, + sym_quoted_content_parenthesis = 118, + sym_quoted_content_curly = 119, + sym_quoted_content_square = 120, + sym_quoted_content_angle = 121, + sym_quoted_content_bar = 122, + sym_quoted_content_slash = 123, + sym_newline_before_do = 124, + sym_newline_before_binary_operator = 125, + sym_newline_before_comment = 126, + sym_before_unary_op = 127, + sym_not_in = 128, + sym_quoted_atom_start = 129, + sym_source = 130, + sym_terminator = 131, + sym_expression = 132, + sym_block = 133, + sym_identifier = 134, + sym_boolean = 135, + sym_nil = 136, + sym_atom = 137, + sym_quoted_atom = 138, + sym_quoted_i_double = 139, + sym_quoted_double = 140, + sym_quoted_i_single = 141, + sym_quoted_single = 142, + sym_quoted_i_heredoc_single = 143, + sym_quoted_heredoc_single = 144, + sym_quoted_i_heredoc_double = 145, + sym_quoted_heredoc_double = 146, + sym_quoted_i_parenthesis = 147, + sym_quoted_parenthesis = 148, + sym_quoted_i_curly = 149, + sym_quoted_curly = 150, + sym_quoted_i_square = 151, + sym_quoted_square = 152, + sym_quoted_i_angle = 153, + sym_quoted_angle = 154, + sym_quoted_i_bar = 155, + sym_quoted_bar = 156, + sym_quoted_i_slash = 157, + sym_quoted_slash = 158, + sym_string = 159, + sym_charlist = 160, + sym_interpolation = 161, + sym_sigil = 162, + sym_keywords = 163, + sym_keywords_with_trailing_separator = 164, + sym_pair = 165, + sym_keyword = 166, + sym_quoted_keyword = 167, + sym_list = 168, + sym_tuple = 169, + sym_bitstring = 170, + sym_map = 171, + sym_struct = 172, + sym_items_with_trailing_separator = 173, + sym_nullary_operator = 174, + sym_unary_operator = 175, + sym_capture_expression = 176, + sym_binary_operator = 177, + sym_operator_identifier = 178, + sym_dot = 179, + sym_call = 180, + sym_call_without_parentheses = 181, + sym_call_with_parentheses = 182, + sym_local_call_without_parentheses = 183, + sym_local_call_with_parentheses = 184, + sym_local_call_just_do_block = 185, + sym_remote_call_without_parentheses = 186, + sym_remote_call_with_parentheses = 187, + sym_remote_dot = 188, + sym_anonymous_call = 189, + sym_anonymous_dot = 190, + sym_double_call = 191, + sym_call_arguments_with_parentheses = 192, + sym_call_arguments_with_parentheses_immediate = 193, + sym_call_arguments_with_trailing_separator = 194, + sym_call_arguments_without_parentheses = 195, + sym_do_block = 196, + sym_after_block = 197, + sym_rescue_block = 198, + sym_catch_block = 199, + sym_else_block = 200, + sym_access_call = 201, + sym_stab_clause = 202, + sym_stab_clause_left = 203, + sym_stab_clause_arguments_with_parentheses = 204, + sym_stab_clause_arguments_without_parentheses = 205, + sym_stab_clause_arguments_with_parentheses_with_guard = 206, + sym_stab_clause_arguments_without_parentheses_with_guard = 207, + sym_body = 208, + sym_anonymous_function = 209, + sym_metavariable_keyword = 210, + sym_metavariable_atom = 211, + sym_semgrep_ellipsis = 212, + sym_deep_ellipsis = 213, + aux_sym_source_repeat1 = 214, + aux_sym_terminator_repeat1 = 215, + aux_sym_block_repeat1 = 216, + aux_sym_block_repeat2 = 217, + aux_sym_quoted_i_double_repeat1 = 218, + aux_sym_quoted_double_repeat1 = 219, + aux_sym_quoted_i_single_repeat1 = 220, + aux_sym_quoted_single_repeat1 = 221, + aux_sym_quoted_i_heredoc_single_repeat1 = 222, + aux_sym_quoted_heredoc_single_repeat1 = 223, + aux_sym_quoted_i_heredoc_double_repeat1 = 224, + aux_sym_quoted_heredoc_double_repeat1 = 225, + aux_sym_quoted_i_parenthesis_repeat1 = 226, + aux_sym_quoted_parenthesis_repeat1 = 227, + aux_sym_quoted_i_curly_repeat1 = 228, + aux_sym_quoted_curly_repeat1 = 229, + aux_sym_quoted_i_square_repeat1 = 230, + aux_sym_quoted_square_repeat1 = 231, + aux_sym_quoted_i_angle_repeat1 = 232, + aux_sym_quoted_angle_repeat1 = 233, + aux_sym_quoted_i_bar_repeat1 = 234, + aux_sym_quoted_bar_repeat1 = 235, + aux_sym_quoted_i_slash_repeat1 = 236, + aux_sym_quoted_slash_repeat1 = 237, + aux_sym_keywords_repeat1 = 238, + aux_sym_items_with_trailing_separator_repeat1 = 239, + aux_sym_do_block_repeat1 = 240, + aux_sym_stab_clause_arguments_with_parentheses_repeat1 = 241, + aux_sym_stab_clause_arguments_without_parentheses_repeat1 = 242, + aux_sym_anonymous_function_repeat1 = 243, + alias_sym_pat_509ec78 = 244, }; static const char * const ts_symbol_names[] = { @@ -283,7 +276,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_SEMI] = ";", [anon_sym_LPAREN] = "(", [anon_sym_RPAREN] = ")", - [aux_sym_identifier_token1] = "identifier_token1", + [aux_sym_identifier_token1] = "pat_cf9c6c3", [anon_sym_DOT_DOT_DOT] = "...", [sym_alias] = "alias", [sym_integer] = "integer", @@ -308,12 +301,12 @@ static const char * const ts_symbol_names[] = { [anon_sym_POUND_LBRACE] = "#{", [sym_escape_sequence] = "escape_sequence", [anon_sym_TILDE] = "~", - [aux_sym_sigil_token1] = "sigil_token1", - [aux_sym_sigil_token2] = "sigil_token2", - [aux_sym_sigil_token3] = "sigil_token3", + [aux_sym_sigil_token1] = "imm_tok_pat_0db2d54", + [aux_sym_sigil_token2] = "imm_tok_pat_b250293", + [aux_sym_sigil_token3] = "imm_tok_pat_8f9e87e", [anon_sym_COMMA] = ",", [sym_keyword_] = "keyword_", - [aux_sym_quoted_keyword_token1] = "quoted_keyword_token1", + [aux_sym_quoted_keyword_token1] = "imm_tok_pat_5eb9c21", [anon_sym_LT_LT] = "<<", [anon_sym_GT_GT] = ">>", [anon_sym_PERCENT] = "%", @@ -373,12 +366,13 @@ static const char * const ts_symbol_names[] = { [anon_sym_end] = "end", [anon_sym_fn] = "fn", [anon_sym_rescue] = "rescue", - [anon_sym_LPAREN2] = "(", - [anon_sym_LBRACK2] = "[", + [anon_sym_LPAREN2] = "imm_tok_lpar", + [anon_sym_LBRACK2] = "imm_tok_lbrack", [sym_comment] = "comment", - [aux_sym_metavariable_keyword_token1] = "metavariable_keyword_token1", + [aux_sym_metavariable_keyword_token1] = "pat_5eb9c21", [anon_sym_COLON] = ":", [sym_semgrep_metavariable] = "semgrep_metavariable", + [sym_semgrep_ellipsis_metavariable] = "semgrep_ellipsis_metavariable", [anon_sym_LT_DOT_DOT_DOT] = "<...", [anon_sym_DOT_DOT_DOT_GT] = "...>", [sym_quoted_content_i_single] = "quoted_content_i_single", @@ -521,15 +515,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_stab_clause_arguments_with_parentheses_repeat1] = "stab_clause_arguments_with_parentheses_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_imm_tok_lbrack] = "imm_tok_lbrack", - [alias_sym_imm_tok_lpar] = "imm_tok_lpar", - [alias_sym_imm_tok_pat_0db2d54] = "imm_tok_pat_0db2d54", - [alias_sym_imm_tok_pat_5eb9c21] = "imm_tok_pat_5eb9c21", - [alias_sym_imm_tok_pat_8f9e87e] = "imm_tok_pat_8f9e87e", - [alias_sym_imm_tok_pat_b250293] = "imm_tok_pat_b250293", [alias_sym_pat_509ec78] = "pat_509ec78", - [alias_sym_pat_5eb9c21] = "pat_5eb9c21", - [alias_sym_pat_cf9c6c3] = "pat_cf9c6c3", }; static const TSSymbol ts_symbol_map[] = { @@ -628,12 +614,13 @@ 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_LPAREN2] = anon_sym_LPAREN, - [anon_sym_LBRACK2] = anon_sym_LBRACK, + [anon_sym_LPAREN2] = anon_sym_LPAREN2, + [anon_sym_LBRACK2] = anon_sym_LBRACK2, [sym_comment] = sym_comment, [aux_sym_metavariable_keyword_token1] = aux_sym_metavariable_keyword_token1, [anon_sym_COLON] = anon_sym_COLON, [sym_semgrep_metavariable] = sym_semgrep_metavariable, + [sym_semgrep_ellipsis_metavariable] = sym_semgrep_ellipsis_metavariable, [anon_sym_LT_DOT_DOT_DOT] = anon_sym_LT_DOT_DOT_DOT, [anon_sym_DOT_DOT_DOT_GT] = anon_sym_DOT_DOT_DOT_GT, [sym_quoted_content_i_single] = sym_quoted_content_i_single, @@ -776,15 +763,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_stab_clause_arguments_with_parentheses_repeat1] = aux_sym_stab_clause_arguments_with_parentheses_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_imm_tok_lbrack] = alias_sym_imm_tok_lbrack, - [alias_sym_imm_tok_lpar] = alias_sym_imm_tok_lpar, - [alias_sym_imm_tok_pat_0db2d54] = alias_sym_imm_tok_pat_0db2d54, - [alias_sym_imm_tok_pat_5eb9c21] = alias_sym_imm_tok_pat_5eb9c21, - [alias_sym_imm_tok_pat_8f9e87e] = alias_sym_imm_tok_pat_8f9e87e, - [alias_sym_imm_tok_pat_b250293] = alias_sym_imm_tok_pat_b250293, [alias_sym_pat_509ec78] = alias_sym_pat_509ec78, - [alias_sym_pat_5eb9c21] = alias_sym_pat_5eb9c21, - [alias_sym_pat_cf9c6c3] = alias_sym_pat_cf9c6c3, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -809,8 +788,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = false, }, [aux_sym_identifier_token1] = { - .visible = false, - .named = false, + .visible = true, + .named = true, }, [anon_sym_DOT_DOT_DOT] = { .visible = true, @@ -909,16 +888,16 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = false, }, [aux_sym_sigil_token1] = { - .visible = false, - .named = false, + .visible = true, + .named = true, }, [aux_sym_sigil_token2] = { - .visible = false, - .named = false, + .visible = true, + .named = true, }, [aux_sym_sigil_token3] = { - .visible = false, - .named = false, + .visible = true, + .named = true, }, [anon_sym_COMMA] = { .visible = true, @@ -929,8 +908,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, }, [aux_sym_quoted_keyword_token1] = { - .visible = false, - .named = false, + .visible = true, + .named = true, }, [anon_sym_LT_LT] = { .visible = true, @@ -1170,19 +1149,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, [anon_sym_LPAREN2] = { .visible = true, - .named = false, + .named = true, }, [anon_sym_LBRACK2] = { .visible = true, - .named = false, + .named = true, }, [sym_comment] = { .visible = true, .named = true, }, [aux_sym_metavariable_keyword_token1] = { - .visible = false, - .named = false, + .visible = true, + .named = true, }, [anon_sym_COLON] = { .visible = true, @@ -1192,6 +1171,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_semgrep_ellipsis_metavariable] = { + .visible = true, + .named = true, + }, [anon_sym_LT_DOT_DOT_DOT] = { .visible = true, .named = false, @@ -1760,42 +1743,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [alias_sym_imm_tok_lbrack] = { - .visible = true, - .named = true, - }, - [alias_sym_imm_tok_lpar] = { - .visible = true, - .named = true, - }, - [alias_sym_imm_tok_pat_0db2d54] = { - .visible = true, - .named = true, - }, - [alias_sym_imm_tok_pat_5eb9c21] = { - .visible = true, - .named = true, - }, - [alias_sym_imm_tok_pat_8f9e87e] = { - .visible = true, - .named = true, - }, - [alias_sym_imm_tok_pat_b250293] = { - .visible = true, - .named = true, - }, [alias_sym_pat_509ec78] = { .visible = true, .named = true, }, - [alias_sym_pat_5eb9c21] = { - .visible = true, - .named = true, - }, - [alias_sym_pat_cf9c6c3] = { - .visible = true, - .named = true, - }, }; enum ts_field_identifiers { @@ -1824,18 +1775,18 @@ static const char * const ts_field_names[] = { }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [3] = {.index = 0, .length = 1}, - [4] = {.index = 1, .length = 1}, - [5] = {.index = 2, .length = 2}, - [6] = {.index = 4, .length = 2}, - [7] = {.index = 6, .length = 2}, - [8] = {.index = 8, .length = 2}, - [9] = {.index = 10, .length = 2}, - [12] = {.index = 12, .length = 2}, - [13] = {.index = 14, .length = 2}, - [16] = {.index = 16, .length = 3}, - [18] = {.index = 19, .length = 2}, - [21] = {.index = 21, .length = 2}, + [2] = {.index = 0, .length = 1}, + [3] = {.index = 1, .length = 1}, + [4] = {.index = 2, .length = 2}, + [5] = {.index = 4, .length = 2}, + [6] = {.index = 6, .length = 2}, + [7] = {.index = 8, .length = 2}, + [8] = {.index = 10, .length = 2}, + [9] = {.index = 12, .length = 2}, + [10] = {.index = 14, .length = 2}, + [11] = {.index = 16, .length = 3}, + [12] = {.index = 19, .length = 2}, + [13] = {.index = 21, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1881,35 +1832,6 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = alias_sym_pat_509ec78, }, - [2] = { - [0] = alias_sym_pat_cf9c6c3, - }, - [10] = { - [1] = alias_sym_pat_5eb9c21, - }, - [11] = { - [1] = alias_sym_imm_tok_pat_5eb9c21, - }, - [14] = { - [1] = alias_sym_imm_tok_pat_0db2d54, - }, - [15] = { - [1] = alias_sym_imm_tok_pat_b250293, - }, - [17] = { - [0] = alias_sym_imm_tok_lpar, - }, - [19] = { - [1] = alias_sym_imm_tok_pat_0db2d54, - [3] = alias_sym_imm_tok_pat_8f9e87e, - }, - [20] = { - [1] = alias_sym_imm_tok_pat_b250293, - [3] = alias_sym_imm_tok_pat_8f9e87e, - }, - [21] = { - [1] = alias_sym_imm_tok_lbrack, - }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -1934,147 +1856,147 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [14] = 2, [15] = 2, [16] = 16, - [17] = 16, + [17] = 17, [18] = 16, - [19] = 19, - [20] = 16, - [21] = 19, + [19] = 17, + [20] = 17, + [21] = 17, [22] = 22, [23] = 22, [24] = 22, [25] = 22, [26] = 22, - [27] = 19, - [28] = 22, + [27] = 22, + [28] = 16, [29] = 22, [30] = 22, [31] = 22, [32] = 22, [33] = 22, - [34] = 22, - [35] = 19, + [34] = 16, + [35] = 22, [36] = 22, [37] = 22, [38] = 38, [39] = 39, [40] = 40, [41] = 41, - [42] = 16, - [43] = 19, - [44] = 16, + [42] = 17, + [43] = 16, + [44] = 17, [45] = 16, - [46] = 19, - [47] = 19, - [48] = 16, - [49] = 16, - [50] = 19, - [51] = 16, - [52] = 19, - [53] = 19, - [54] = 16, + [46] = 17, + [47] = 16, + [48] = 17, + [49] = 17, + [50] = 17, + [51] = 17, + [52] = 16, + [53] = 16, + [54] = 17, [55] = 16, - [56] = 16, - [57] = 16, + [56] = 17, + [57] = 17, [58] = 16, - [59] = 16, - [60] = 19, - [61] = 16, - [62] = 19, - [63] = 19, + [59] = 17, + [60] = 17, + [61] = 17, + [62] = 17, + [63] = 16, [64] = 16, - [65] = 19, - [66] = 19, - [67] = 19, + [65] = 16, + [66] = 16, + [67] = 17, [68] = 16, - [69] = 19, + [69] = 17, [70] = 16, - [71] = 71, + [71] = 16, [72] = 72, [73] = 73, - [74] = 19, - [75] = 19, - [76] = 16, - [77] = 19, - [78] = 19, - [79] = 79, + [74] = 16, + [75] = 17, + [76] = 76, + [77] = 77, + [78] = 17, + [79] = 16, [80] = 16, [81] = 81, - [82] = 81, - [83] = 83, - [84] = 84, - [85] = 84, - [86] = 81, - [87] = 83, - [88] = 83, - [89] = 84, - [90] = 81, - [91] = 91, - [92] = 83, - [93] = 83, - [94] = 84, + [82] = 82, + [83] = 82, + [84] = 81, + [85] = 85, + [86] = 16, + [87] = 82, + [88] = 81, + [89] = 85, + [90] = 82, + [91] = 81, + [92] = 85, + [93] = 82, + [94] = 82, [95] = 81, - [96] = 84, - [97] = 81, - [98] = 83, - [99] = 84, - [100] = 81, - [101] = 91, - [102] = 83, - [103] = 84, + [96] = 85, + [97] = 97, + [98] = 82, + [99] = 82, + [100] = 85, + [101] = 85, + [102] = 81, + [103] = 82, [104] = 81, - [105] = 19, - [106] = 83, - [107] = 84, - [108] = 81, - [109] = 83, - [110] = 83, - [111] = 84, - [112] = 81, - [113] = 84, - [114] = 81, - [115] = 83, - [116] = 84, - [117] = 81, - [118] = 83, - [119] = 84, - [120] = 81, - [121] = 84, + [105] = 85, + [106] = 85, + [107] = 85, + [108] = 97, + [109] = 82, + [110] = 81, + [111] = 85, + [112] = 82, + [113] = 81, + [114] = 85, + [115] = 82, + [116] = 81, + [117] = 85, + [118] = 82, + [119] = 81, + [120] = 85, + [121] = 82, [122] = 81, - [123] = 83, - [124] = 83, - [125] = 84, + [123] = 85, + [124] = 81, + [125] = 81, [126] = 126, [127] = 127, - [128] = 128, - [129] = 127, - [130] = 127, - [131] = 128, + [128] = 127, + [129] = 129, + [130] = 129, + [131] = 129, [132] = 127, - [133] = 128, - [134] = 127, - [135] = 128, + [133] = 127, + [134] = 129, + [135] = 129, [136] = 127, - [137] = 128, - [138] = 127, - [139] = 128, - [140] = 127, - [141] = 128, + [137] = 129, + [138] = 129, + [139] = 127, + [140] = 129, + [141] = 127, [142] = 127, - [143] = 128, - [144] = 128, + [143] = 127, + [144] = 129, [145] = 127, - [146] = 128, + [146] = 129, [147] = 127, - [148] = 128, - [149] = 128, - [150] = 127, + [148] = 129, + [149] = 127, + [150] = 129, [151] = 127, - [152] = 128, - [153] = 128, - [154] = 127, + [152] = 129, + [153] = 127, + [154] = 129, [155] = 155, - [156] = 156, - [157] = 155, + [156] = 155, + [157] = 157, [158] = 158, [159] = 159, [160] = 158, @@ -2082,37 +2004,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [162] = 159, [163] = 163, [164] = 159, - [165] = 158, + [165] = 159, [166] = 158, - [167] = 163, + [167] = 158, [168] = 163, [169] = 159, [170] = 158, [171] = 163, [172] = 159, - [173] = 158, - [174] = 159, - [175] = 163, - [176] = 159, + [173] = 163, + [174] = 163, + [175] = 158, + [176] = 163, [177] = 158, [178] = 163, [179] = 159, - [180] = 158, - [181] = 163, - [182] = 159, - [183] = 158, - [184] = 163, + [180] = 159, + [181] = 158, + [182] = 163, + [183] = 163, + [184] = 159, [185] = 159, - [186] = 158, + [186] = 163, [187] = 158, [188] = 163, [189] = 159, [190] = 158, - [191] = 163, - [192] = 163, - [193] = 159, - [194] = 163, - [195] = 159, + [191] = 159, + [192] = 158, + [193] = 163, + [194] = 159, + [195] = 158, [196] = 158, [197] = 163, [198] = 159, @@ -2125,1020 +2047,1020 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [205] = 205, [206] = 206, [207] = 201, - [208] = 208, - [209] = 202, - [210] = 200, - [211] = 204, - [212] = 205, + [208] = 205, + [209] = 209, + [210] = 202, + [211] = 200, + [212] = 204, [213] = 206, [214] = 201, - [215] = 208, - [216] = 216, - [217] = 208, - [218] = 218, - [219] = 202, - [220] = 200, - [221] = 204, - [222] = 205, + [215] = 205, + [216] = 209, + [217] = 217, + [218] = 202, + [219] = 200, + [220] = 204, + [221] = 221, + [222] = 209, [223] = 206, [224] = 201, - [225] = 208, - [226] = 226, - [227] = 202, - [228] = 200, - [229] = 204, - [230] = 205, + [225] = 205, + [226] = 209, + [227] = 227, + [228] = 202, + [229] = 200, + [230] = 204, [231] = 206, [232] = 201, - [233] = 208, - [234] = 205, + [233] = 205, + [234] = 209, [235] = 202, - [236] = 200, - [237] = 204, - [238] = 204, - [239] = 205, - [240] = 206, - [241] = 201, - [242] = 208, + [236] = 204, + [237] = 206, + [238] = 206, + [239] = 201, + [240] = 205, + [241] = 209, + [242] = 202, [243] = 202, [244] = 200, [245] = 204, - [246] = 205, - [247] = 206, - [248] = 201, - [249] = 208, - [250] = 202, - [251] = 202, - [252] = 200, - [253] = 204, + [246] = 206, + [247] = 201, + [248] = 205, + [249] = 209, + [250] = 209, + [251] = 200, + [252] = 204, + [253] = 206, [254] = 205, - [255] = 201, - [256] = 208, + [255] = 209, + [256] = 256, [257] = 202, [258] = 200, [259] = 204, - [260] = 205, - [261] = 201, - [262] = 208, - [263] = 202, - [264] = 200, - [265] = 204, - [266] = 205, - [267] = 201, - [268] = 208, - [269] = 202, - [270] = 200, - [271] = 204, - [272] = 205, - [273] = 201, - [274] = 208, - [275] = 202, - [276] = 200, - [277] = 204, - [278] = 205, - [279] = 201, - [280] = 208, - [281] = 206, + [260] = 206, + [261] = 200, + [262] = 205, + [263] = 209, + [264] = 202, + [265] = 200, + [266] = 204, + [267] = 206, + [268] = 205, + [269] = 209, + [270] = 202, + [271] = 200, + [272] = 204, + [273] = 206, + [274] = 205, + [275] = 209, + [276] = 202, + [277] = 200, + [278] = 204, + [279] = 206, + [280] = 205, + [281] = 209, [282] = 202, [283] = 200, [284] = 204, - [285] = 205, - [286] = 201, - [287] = 208, - [288] = 202, - [289] = 200, - [290] = 204, - [291] = 205, - [292] = 201, - [293] = 208, - [294] = 294, - [295] = 294, - [296] = 216, + [285] = 206, + [286] = 205, + [287] = 209, + [288] = 204, + [289] = 202, + [290] = 200, + [291] = 204, + [292] = 206, + [293] = 205, + [294] = 202, + [295] = 256, + [296] = 217, [297] = 297, [298] = 297, [299] = 299, - [300] = 297, - [301] = 299, + [300] = 300, + [301] = 301, [302] = 302, - [303] = 303, - [304] = 302, - [305] = 305, + [303] = 300, + [304] = 301, + [305] = 299, [306] = 297, [307] = 299, - [308] = 299, - [309] = 297, - [310] = 299, - [311] = 302, - [312] = 297, - [313] = 303, - [314] = 299, - [315] = 315, - [316] = 302, - [317] = 297, - [318] = 303, + [308] = 297, + [309] = 299, + [310] = 310, + [311] = 297, + [312] = 299, + [313] = 299, + [314] = 297, + [315] = 297, + [316] = 300, + [317] = 301, + [318] = 299, [319] = 299, - [320] = 320, - [321] = 302, - [322] = 303, - [323] = 297, - [324] = 299, - [325] = 297, - [326] = 299, + [320] = 300, + [321] = 297, + [322] = 297, + [323] = 301, + [324] = 300, + [325] = 299, + [326] = 301, [327] = 297, [328] = 299, [329] = 297, - [330] = 297, + [330] = 299, [331] = 297, [332] = 299, - [333] = 302, - [334] = 303, + [333] = 299, + [334] = 297, [335] = 297, [336] = 299, [337] = 299, - [338] = 299, + [338] = 300, [339] = 339, - [340] = 303, - [341] = 302, - [342] = 303, - [343] = 302, - [344] = 299, - [345] = 303, - [346] = 299, + [340] = 301, + [341] = 299, + [342] = 297, + [343] = 297, + [344] = 297, + [345] = 297, + [346] = 301, [347] = 347, - [348] = 297, - [349] = 302, - [350] = 297, - [351] = 303, - [352] = 299, - [353] = 302, - [354] = 303, - [355] = 297, - [356] = 299, + [348] = 300, + [349] = 299, + [350] = 301, + [351] = 299, + [352] = 297, + [353] = 300, + [354] = 301, + [355] = 299, + [356] = 297, [357] = 299, [358] = 297, [359] = 297, [360] = 297, [361] = 299, - [362] = 299, + [362] = 297, [363] = 299, [364] = 297, - [365] = 297, - [366] = 299, - [367] = 297, - [368] = 302, + [365] = 299, + [366] = 297, + [367] = 300, + [368] = 299, [369] = 299, - [370] = 299, - [371] = 371, - [372] = 303, - [373] = 297, - [374] = 297, + [370] = 297, + [371] = 301, + [372] = 297, + [373] = 373, + [374] = 374, [375] = 299, - [376] = 299, - [377] = 297, - [378] = 299, - [379] = 297, - [380] = 297, + [376] = 297, + [377] = 300, + [378] = 300, + [379] = 301, + [380] = 299, [381] = 299, - [382] = 299, - [383] = 297, - [384] = 297, + [382] = 297, + [383] = 299, + [384] = 299, [385] = 385, [386] = 386, [387] = 387, [388] = 388, - [389] = 218, + [389] = 389, [390] = 390, - [391] = 391, - [392] = 226, - [393] = 218, + [391] = 221, + [392] = 227, + [393] = 221, [394] = 394, [395] = 395, - [396] = 396, + [396] = 227, [397] = 397, [398] = 398, [399] = 399, [400] = 400, - [401] = 226, + [401] = 401, [402] = 402, [403] = 403, [404] = 404, [405] = 388, [406] = 385, - [407] = 386, - [408] = 387, - [409] = 385, - [410] = 386, - [411] = 387, - [412] = 388, + [407] = 385, + [408] = 386, + [409] = 386, + [410] = 387, + [411] = 388, + [412] = 387, [413] = 413, [414] = 414, - [415] = 413, - [416] = 413, - [417] = 417, - [418] = 413, - [419] = 413, - [420] = 420, - [421] = 413, - [422] = 417, - [423] = 420, - [424] = 417, - [425] = 420, - [426] = 413, - [427] = 417, - [428] = 428, - [429] = 420, - [430] = 413, - [431] = 417, - [432] = 432, - [433] = 417, - [434] = 432, - [435] = 435, - [436] = 428, - [437] = 417, - [438] = 417, - [439] = 428, - [440] = 428, - [441] = 413, - [442] = 420, - [443] = 413, - [444] = 432, - [445] = 420, - [446] = 428, - [447] = 417, - [448] = 435, - [449] = 428, - [450] = 432, - [451] = 435, - [452] = 417, - [453] = 432, - [454] = 413, - [455] = 413, - [456] = 435, - [457] = 413, - [458] = 435, - [459] = 413, - [460] = 417, - [461] = 432, - [462] = 413, - [463] = 432, - [464] = 420, - [465] = 417, - [466] = 428, - [467] = 413, - [468] = 417, - [469] = 417, - [470] = 428, - [471] = 428, - [472] = 420, - [473] = 432, - [474] = 417, - [475] = 435, - [476] = 476, - [477] = 477, - [478] = 413, - [479] = 432, - [480] = 480, - [481] = 435, - [482] = 435, - [483] = 413, - [484] = 417, - [485] = 435, - [486] = 432, - [487] = 417, - [488] = 413, - [489] = 428, - [490] = 417, - [491] = 413, - [492] = 432, - [493] = 435, - [494] = 435, - [495] = 435, - [496] = 417, - [497] = 428, - [498] = 420, - [499] = 428, - [500] = 413, - [501] = 413, - [502] = 413, - [503] = 417, - [504] = 428, - [505] = 432, - [506] = 417, - [507] = 428, - [508] = 508, - [509] = 417, - [510] = 432, - [511] = 432, - [512] = 435, - [513] = 417, - [514] = 435, - [515] = 480, - [516] = 417, - [517] = 413, - [518] = 417, - [519] = 413, - [520] = 417, - [521] = 413, - [522] = 417, - [523] = 413, - [524] = 417, - [525] = 413, - [526] = 480, - [527] = 480, - [528] = 480, - [529] = 480, - [530] = 480, - [531] = 480, - [532] = 480, - [533] = 480, - [534] = 480, - [535] = 480, - [536] = 480, - [537] = 480, - [538] = 417, - [539] = 413, - [540] = 417, - [541] = 413, - [542] = 420, + [415] = 415, + [416] = 416, + [417] = 416, + [418] = 418, + [419] = 416, + [420] = 418, + [421] = 415, + [422] = 415, + [423] = 423, + [424] = 418, + [425] = 425, + [426] = 426, + [427] = 416, + [428] = 415, + [429] = 426, + [430] = 415, + [431] = 431, + [432] = 418, + [433] = 425, + [434] = 425, + [435] = 416, + [436] = 414, + [437] = 415, + [438] = 425, + [439] = 414, + [440] = 416, + [441] = 414, + [442] = 416, + [443] = 426, + [444] = 416, + [445] = 426, + [446] = 415, + [447] = 415, + [448] = 414, + [449] = 415, + [450] = 426, + [451] = 418, + [452] = 418, + [453] = 425, + [454] = 425, + [455] = 416, + [456] = 414, + [457] = 414, + [458] = 416, + [459] = 414, + [460] = 415, + [461] = 416, + [462] = 416, + [463] = 414, + [464] = 426, + [465] = 418, + [466] = 416, + [467] = 415, + [468] = 414, + [469] = 469, + [470] = 416, + [471] = 426, + [472] = 425, + [473] = 415, + [474] = 425, + [475] = 415, + [476] = 414, + [477] = 416, + [478] = 416, + [479] = 426, + [480] = 415, + [481] = 414, + [482] = 415, + [483] = 426, + [484] = 415, + [485] = 416, + [486] = 416, + [487] = 415, + [488] = 416, + [489] = 413, + [490] = 426, + [491] = 491, + [492] = 425, + [493] = 425, + [494] = 418, + [495] = 414, + [496] = 415, + [497] = 418, + [498] = 426, + [499] = 415, + [500] = 415, + [501] = 425, + [502] = 416, + [503] = 416, + [504] = 426, + [505] = 425, + [506] = 415, + [507] = 415, + [508] = 426, + [509] = 418, + [510] = 426, + [511] = 425, + [512] = 425, + [513] = 414, + [514] = 416, + [515] = 415, + [516] = 413, + [517] = 416, + [518] = 415, + [519] = 416, + [520] = 415, + [521] = 416, + [522] = 415, + [523] = 416, + [524] = 415, + [525] = 416, + [526] = 415, + [527] = 413, + [528] = 413, + [529] = 413, + [530] = 415, + [531] = 413, + [532] = 413, + [533] = 413, + [534] = 413, + [535] = 413, + [536] = 413, + [537] = 413, + [538] = 413, + [539] = 416, + [540] = 415, + [541] = 416, + [542] = 416, [543] = 543, [544] = 544, - [545] = 545, + [545] = 543, [546] = 546, [547] = 547, [548] = 548, [549] = 549, [550] = 550, [551] = 551, - [552] = 544, + [552] = 552, [553] = 553, [554] = 554, [555] = 555, [556] = 556, - [557] = 545, + [557] = 557, [558] = 558, [559] = 559, [560] = 560, [561] = 561, [562] = 562, [563] = 563, - [564] = 564, + [564] = 544, [565] = 565, - [566] = 566, - [567] = 543, - [568] = 544, - [569] = 544, - [570] = 545, - [571] = 545, - [572] = 545, - [573] = 548, - [574] = 548, - [575] = 549, - [576] = 550, - [577] = 551, - [578] = 549, - [579] = 553, - [580] = 554, - [581] = 555, - [582] = 556, - [583] = 558, - [584] = 559, - [585] = 560, - [586] = 561, - [587] = 562, - [588] = 563, - [589] = 564, - [590] = 565, - [591] = 566, - [592] = 543, - [593] = 550, - [594] = 544, - [595] = 545, - [596] = 551, - [597] = 550, - [598] = 553, - [599] = 548, - [600] = 549, - [601] = 550, - [602] = 551, - [603] = 554, - [604] = 553, - [605] = 554, - [606] = 555, - [607] = 556, - [608] = 555, - [609] = 558, - [610] = 559, - [611] = 560, - [612] = 561, - [613] = 562, - [614] = 563, - [615] = 564, - [616] = 565, - [617] = 566, - [618] = 543, - [619] = 556, - [620] = 544, - [621] = 545, - [622] = 551, - [623] = 558, - [624] = 559, - [625] = 548, - [626] = 549, - [627] = 550, - [628] = 551, - [629] = 560, - [630] = 553, - [631] = 554, - [632] = 555, - [633] = 556, - [634] = 561, - [635] = 558, - [636] = 559, - [637] = 560, - [638] = 561, - [639] = 562, - [640] = 563, - [641] = 564, - [642] = 565, - [643] = 566, - [644] = 543, - [645] = 562, - [646] = 563, - [647] = 564, - [648] = 565, - [649] = 566, - [650] = 543, - [651] = 548, - [652] = 544, - [653] = 545, - [654] = 549, - [655] = 655, - [656] = 553, - [657] = 548, - [658] = 549, - [659] = 550, - [660] = 551, - [661] = 553, - [662] = 655, - [663] = 554, - [664] = 555, - [665] = 556, - [666] = 655, - [667] = 558, - [668] = 559, - [669] = 560, - [670] = 561, - [671] = 562, - [672] = 563, - [673] = 564, - [674] = 565, - [675] = 566, - [676] = 543, - [677] = 554, - [678] = 544, - [679] = 679, - [680] = 680, - [681] = 545, - [682] = 550, - [683] = 551, - [684] = 684, - [685] = 544, - [686] = 545, - [687] = 548, - [688] = 548, - [689] = 549, - [690] = 550, - [691] = 551, - [692] = 549, - [693] = 553, - [694] = 554, - [695] = 555, - [696] = 556, - [697] = 558, - [698] = 559, - [699] = 560, - [700] = 561, - [701] = 562, - [702] = 563, - [703] = 564, - [704] = 565, - [705] = 566, - [706] = 543, - [707] = 546, - [708] = 556, - [709] = 550, - [710] = 558, - [711] = 551, - [712] = 553, - [713] = 556, - [714] = 558, - [715] = 553, - [716] = 544, - [717] = 545, - [718] = 554, - [719] = 548, - [720] = 549, - [721] = 550, - [722] = 551, - [723] = 553, - [724] = 554, - [725] = 555, - [726] = 556, + [566] = 543, + [567] = 546, + [568] = 543, + [569] = 548, + [570] = 549, + [571] = 550, + [572] = 551, + [573] = 552, + [574] = 553, + [575] = 554, + [576] = 555, + [577] = 556, + [578] = 557, + [579] = 558, + [580] = 559, + [581] = 560, + [582] = 561, + [583] = 562, + [584] = 563, + [585] = 544, + [586] = 565, + [587] = 543, + [588] = 546, + [589] = 548, + [590] = 549, + [591] = 550, + [592] = 551, + [593] = 552, + [594] = 553, + [595] = 554, + [596] = 555, + [597] = 556, + [598] = 557, + [599] = 558, + [600] = 559, + [601] = 560, + [602] = 561, + [603] = 562, + [604] = 563, + [605] = 544, + [606] = 565, + [607] = 543, + [608] = 546, + [609] = 548, + [610] = 549, + [611] = 550, + [612] = 551, + [613] = 552, + [614] = 553, + [615] = 554, + [616] = 555, + [617] = 617, + [618] = 556, + [619] = 557, + [620] = 558, + [621] = 559, + [622] = 560, + [623] = 561, + [624] = 562, + [625] = 563, + [626] = 544, + [627] = 565, + [628] = 628, + [629] = 543, + [630] = 546, + [631] = 546, + [632] = 632, + [633] = 548, + [634] = 549, + [635] = 550, + [636] = 551, + [637] = 552, + [638] = 553, + [639] = 554, + [640] = 555, + [641] = 556, + [642] = 557, + [643] = 558, + [644] = 559, + [645] = 560, + [646] = 561, + [647] = 562, + [648] = 563, + [649] = 544, + [650] = 565, + [651] = 543, + [652] = 546, + [653] = 546, + [654] = 548, + [655] = 549, + [656] = 550, + [657] = 551, + [658] = 552, + [659] = 553, + [660] = 554, + [661] = 555, + [662] = 556, + [663] = 557, + [664] = 558, + [665] = 559, + [666] = 560, + [667] = 561, + [668] = 562, + [669] = 563, + [670] = 544, + [671] = 565, + [672] = 548, + [673] = 543, + [674] = 546, + [675] = 549, + [676] = 548, + [677] = 549, + [678] = 550, + [679] = 551, + [680] = 552, + [681] = 553, + [682] = 554, + [683] = 555, + [684] = 556, + [685] = 557, + [686] = 558, + [687] = 559, + [688] = 560, + [689] = 561, + [690] = 562, + [691] = 563, + [692] = 544, + [693] = 565, + [694] = 617, + [695] = 543, + [696] = 546, + [697] = 548, + [698] = 549, + [699] = 550, + [700] = 551, + [701] = 552, + [702] = 553, + [703] = 554, + [704] = 555, + [705] = 556, + [706] = 557, + [707] = 558, + [708] = 559, + [709] = 560, + [710] = 561, + [711] = 562, + [712] = 563, + [713] = 544, + [714] = 565, + [715] = 543, + [716] = 546, + [717] = 548, + [718] = 549, + [719] = 550, + [720] = 551, + [721] = 552, + [722] = 553, + [723] = 554, + [724] = 555, + [725] = 556, + [726] = 557, [727] = 558, [728] = 559, [729] = 560, [730] = 561, [731] = 562, [732] = 563, - [733] = 564, + [733] = 544, [734] = 565, - [735] = 566, - [736] = 543, - [737] = 555, - [738] = 556, - [739] = 554, - [740] = 558, - [741] = 556, - [742] = 558, - [743] = 559, - [744] = 560, - [745] = 561, - [746] = 562, - [747] = 563, - [748] = 564, - [749] = 655, - [750] = 565, - [751] = 566, - [752] = 543, - [753] = 555, - [754] = 544, - [755] = 545, - [756] = 556, - [757] = 757, - [758] = 558, - [759] = 548, - [760] = 549, - [761] = 550, - [762] = 551, - [763] = 559, - [764] = 680, - [765] = 553, - [766] = 554, - [767] = 555, + [735] = 543, + [736] = 546, + [737] = 550, + [738] = 551, + [739] = 548, + [740] = 549, + [741] = 550, + [742] = 551, + [743] = 548, + [744] = 552, + [745] = 553, + [746] = 554, + [747] = 555, + [748] = 552, + [749] = 556, + [750] = 557, + [751] = 558, + [752] = 559, + [753] = 560, + [754] = 561, + [755] = 562, + [756] = 563, + [757] = 544, + [758] = 565, + [759] = 553, + [760] = 543, + [761] = 546, + [762] = 554, + [763] = 555, + [764] = 548, + [765] = 549, + [766] = 550, + [767] = 551, [768] = 556, - [769] = 560, - [770] = 544, - [771] = 545, - [772] = 558, - [773] = 548, - [774] = 549, - [775] = 550, - [776] = 551, - [777] = 553, - [778] = 554, - [779] = 555, - [780] = 556, - [781] = 558, - [782] = 559, - [783] = 560, - [784] = 561, - [785] = 562, - [786] = 563, - [787] = 564, - [788] = 565, - [789] = 566, - [790] = 543, - [791] = 559, - [792] = 560, - [793] = 561, + [769] = 552, + [770] = 553, + [771] = 554, + [772] = 555, + [773] = 557, + [774] = 556, + [775] = 557, + [776] = 558, + [777] = 559, + [778] = 560, + [779] = 561, + [780] = 562, + [781] = 563, + [782] = 544, + [783] = 565, + [784] = 558, + [785] = 543, + [786] = 546, + [787] = 559, + [788] = 560, + [789] = 561, + [790] = 548, + [791] = 549, + [792] = 550, + [793] = 551, [794] = 562, - [795] = 563, - [796] = 564, - [797] = 655, - [798] = 565, - [799] = 566, - [800] = 543, - [801] = 561, - [802] = 544, - [803] = 545, - [804] = 680, - [805] = 562, - [806] = 563, - [807] = 564, - [808] = 556, - [809] = 558, - [810] = 548, - [811] = 549, - [812] = 550, - [813] = 551, - [814] = 565, - [815] = 553, - [816] = 655, - [817] = 554, - [818] = 555, - [819] = 556, - [820] = 566, - [821] = 558, - [822] = 559, - [823] = 560, - [824] = 561, - [825] = 562, - [826] = 563, - [827] = 564, - [828] = 565, - [829] = 566, - [830] = 543, - [831] = 680, - [832] = 543, - [833] = 544, - [834] = 545, - [835] = 555, - [836] = 679, - [837] = 837, - [838] = 548, - [839] = 549, - [840] = 655, - [841] = 550, - [842] = 551, - [843] = 680, - [844] = 553, - [845] = 554, - [846] = 555, - [847] = 556, - [848] = 556, - [849] = 558, - [850] = 559, - [851] = 560, - [852] = 561, - [853] = 562, - [854] = 563, - [855] = 680, - [856] = 564, - [857] = 565, - [858] = 566, - [859] = 543, - [860] = 548, - [861] = 544, - [862] = 545, - [863] = 546, - [864] = 558, - [865] = 655, - [866] = 559, - [867] = 548, - [868] = 549, - [869] = 550, - [870] = 551, - [871] = 560, - [872] = 553, - [873] = 554, - [874] = 555, - [875] = 556, - [876] = 544, - [877] = 558, - [878] = 680, - [879] = 559, - [880] = 560, - [881] = 561, - [882] = 562, - [883] = 563, - [884] = 564, - [885] = 565, - [886] = 566, - [887] = 543, - [888] = 655, - [889] = 545, - [890] = 544, - [891] = 545, - [892] = 561, - [893] = 893, - [894] = 562, - [895] = 548, - [896] = 549, - [897] = 550, - [898] = 551, - [899] = 548, - [900] = 553, - [901] = 680, - [902] = 554, - [903] = 555, - [904] = 556, - [905] = 549, - [906] = 558, - [907] = 559, - [908] = 560, - [909] = 561, - [910] = 562, - [911] = 655, - [912] = 563, - [913] = 564, - [914] = 565, - [915] = 566, - [916] = 544, - [917] = 563, - [918] = 544, - [919] = 545, - [920] = 564, - [921] = 550, - [922] = 551, - [923] = 680, - [924] = 548, - [925] = 549, - [926] = 550, - [927] = 551, - [928] = 565, - [929] = 553, - [930] = 554, - [931] = 555, - [932] = 556, - [933] = 655, - [934] = 553, - [935] = 558, - [936] = 559, - [937] = 560, - [938] = 561, - [939] = 562, - [940] = 563, - [941] = 564, - [942] = 565, - [943] = 566, - [944] = 543, - [945] = 554, - [946] = 544, - [947] = 680, - [948] = 545, - [949] = 555, - [950] = 556, - [951] = 566, + [795] = 552, + [796] = 553, + [797] = 554, + [798] = 555, + [799] = 563, + [800] = 556, + [801] = 557, + [802] = 558, + [803] = 559, + [804] = 560, + [805] = 561, + [806] = 562, + [807] = 563, + [808] = 544, + [809] = 565, + [810] = 544, + [811] = 543, + [812] = 546, + [813] = 565, + [814] = 548, + [815] = 549, + [816] = 550, + [817] = 551, + [818] = 552, + [819] = 553, + [820] = 554, + [821] = 555, + [822] = 556, + [823] = 557, + [824] = 558, + [825] = 559, + [826] = 560, + [827] = 561, + [828] = 562, + [829] = 563, + [830] = 544, + [831] = 565, + [832] = 617, + [833] = 833, + [834] = 834, + [835] = 543, + [836] = 546, + [837] = 548, + [838] = 549, + [839] = 550, + [840] = 551, + [841] = 552, + [842] = 553, + [843] = 554, + [844] = 555, + [845] = 556, + [846] = 557, + [847] = 558, + [848] = 559, + [849] = 560, + [850] = 561, + [851] = 562, + [852] = 563, + [853] = 544, + [854] = 565, + [855] = 855, + [856] = 555, + [857] = 556, + [858] = 555, + [859] = 556, + [860] = 543, + [861] = 546, + [862] = 548, + [863] = 549, + [864] = 550, + [865] = 551, + [866] = 552, + [867] = 553, + [868] = 554, + [869] = 555, + [870] = 556, + [871] = 557, + [872] = 558, + [873] = 559, + [874] = 560, + [875] = 561, + [876] = 562, + [877] = 563, + [878] = 544, + [879] = 565, + [880] = 549, + [881] = 555, + [882] = 556, + [883] = 855, + [884] = 617, + [885] = 550, + [886] = 834, + [887] = 551, + [888] = 543, + [889] = 546, + [890] = 548, + [891] = 549, + [892] = 550, + [893] = 551, + [894] = 552, + [895] = 553, + [896] = 554, + [897] = 555, + [898] = 556, + [899] = 557, + [900] = 558, + [901] = 559, + [902] = 560, + [903] = 561, + [904] = 562, + [905] = 563, + [906] = 544, + [907] = 565, + [908] = 908, + [909] = 543, + [910] = 546, + [911] = 617, + [912] = 552, + [913] = 553, + [914] = 548, + [915] = 549, + [916] = 554, + [917] = 550, + [918] = 834, + [919] = 551, + [920] = 555, + [921] = 552, + [922] = 555, + [923] = 556, + [924] = 553, + [925] = 554, + [926] = 555, + [927] = 556, + [928] = 557, + [929] = 617, + [930] = 558, + [931] = 559, + [932] = 560, + [933] = 561, + [934] = 562, + [935] = 563, + [936] = 544, + [937] = 565, + [938] = 834, + [939] = 556, + [940] = 557, + [941] = 617, + [942] = 558, + [943] = 855, + [944] = 834, + [945] = 855, + [946] = 559, + [947] = 617, + [948] = 543, + [949] = 546, + [950] = 560, + [951] = 561, [952] = 548, [953] = 549, [954] = 550, [955] = 551, - [956] = 655, - [957] = 558, + [956] = 834, + [957] = 552, [958] = 553, [959] = 554, [960] = 555, - [961] = 556, - [962] = 559, - [963] = 558, - [964] = 559, - [965] = 560, - [966] = 561, - [967] = 562, - [968] = 563, - [969] = 680, - [970] = 564, - [971] = 565, - [972] = 566, - [973] = 543, - [974] = 560, - [975] = 544, - [976] = 545, - [977] = 655, - [978] = 561, - [979] = 562, - [980] = 563, - [981] = 548, - [982] = 549, - [983] = 550, - [984] = 551, - [985] = 564, + [961] = 562, + [962] = 556, + [963] = 557, + [964] = 558, + [965] = 617, + [966] = 559, + [967] = 560, + [968] = 561, + [969] = 562, + [970] = 563, + [971] = 544, + [972] = 565, + [973] = 834, + [974] = 617, + [975] = 543, + [976] = 546, + [977] = 563, + [978] = 544, + [979] = 548, + [980] = 549, + [981] = 834, + [982] = 550, + [983] = 551, + [984] = 565, + [985] = 552, [986] = 553, - [987] = 680, - [988] = 554, - [989] = 555, + [987] = 554, + [988] = 555, + [989] = 617, [990] = 556, - [991] = 565, + [991] = 557, [992] = 558, [993] = 559, [994] = 560, [995] = 561, [996] = 562, - [997] = 655, - [998] = 563, - [999] = 564, - [1000] = 565, - [1001] = 566, - [1002] = 543, - [1003] = 566, - [1004] = 544, - [1005] = 545, - [1006] = 543, - [1007] = 543, - [1008] = 680, - [1009] = 1009, - [1010] = 548, - [1011] = 549, - [1012] = 550, - [1013] = 551, - [1014] = 553, - [1015] = 554, - [1016] = 655, + [997] = 563, + [998] = 544, + [999] = 565, + [1000] = 834, + [1001] = 617, + [1002] = 1002, + [1003] = 543, + [1004] = 546, + [1005] = 833, + [1006] = 1006, + [1007] = 834, + [1008] = 548, + [1009] = 549, + [1010] = 550, + [1011] = 551, + [1012] = 617, + [1013] = 834, + [1014] = 552, + [1015] = 553, + [1016] = 554, [1017] = 555, [1018] = 556, - [1019] = 558, - [1020] = 559, - [1021] = 560, - [1022] = 561, - [1023] = 562, - [1024] = 563, - [1025] = 564, - [1026] = 565, - [1027] = 566, - [1028] = 655, - [1029] = 655, - [1030] = 655, - [1031] = 655, - [1032] = 655, - [1033] = 655, - [1034] = 655, - [1035] = 543, - [1036] = 547, - [1037] = 556, - [1038] = 558, - [1039] = 1009, - [1040] = 544, - [1041] = 545, - [1042] = 544, - [1043] = 548, - [1044] = 549, - [1045] = 550, - [1046] = 551, - [1047] = 553, - [1048] = 554, + [1019] = 557, + [1020] = 558, + [1021] = 559, + [1022] = 834, + [1023] = 560, + [1024] = 561, + [1025] = 562, + [1026] = 563, + [1027] = 544, + [1028] = 565, + [1029] = 617, + [1030] = 834, + [1031] = 543, + [1032] = 546, + [1033] = 548, + [1034] = 617, + [1035] = 549, + [1036] = 550, + [1037] = 551, + [1038] = 552, + [1039] = 553, + [1040] = 617, + [1041] = 617, + [1042] = 617, + [1043] = 617, + [1044] = 617, + [1045] = 617, + [1046] = 617, + [1047] = 554, + [1048] = 908, [1049] = 555, - [1050] = 559, - [1051] = 560, - [1052] = 561, - [1053] = 562, - [1054] = 563, - [1055] = 564, - [1056] = 565, - [1057] = 566, - [1058] = 543, - [1059] = 545, - [1060] = 544, - [1061] = 545, - [1062] = 548, - [1063] = 549, - [1064] = 550, - [1065] = 551, - [1066] = 553, - [1067] = 554, - [1068] = 555, - [1069] = 559, - [1070] = 560, - [1071] = 561, - [1072] = 562, - [1073] = 563, - [1074] = 564, - [1075] = 565, - [1076] = 566, - [1077] = 543, - [1078] = 556, - [1079] = 558, - [1080] = 544, - [1081] = 545, - [1082] = 548, - [1083] = 549, - [1084] = 550, - [1085] = 551, - [1086] = 553, - [1087] = 554, - [1088] = 555, - [1089] = 559, - [1090] = 560, - [1091] = 561, - [1092] = 562, - [1093] = 563, - [1094] = 564, - [1095] = 565, - [1096] = 566, - [1097] = 543, - [1098] = 548, - [1099] = 544, - [1100] = 545, - [1101] = 549, - [1102] = 548, - [1103] = 549, - [1104] = 550, - [1105] = 551, - [1106] = 553, - [1107] = 554, - [1108] = 555, - [1109] = 556, - [1110] = 558, - [1111] = 559, - [1112] = 560, - [1113] = 561, - [1114] = 562, - [1115] = 563, - [1116] = 564, - [1117] = 565, - [1118] = 566, - [1119] = 543, - [1120] = 550, - [1121] = 544, - [1122] = 545, - [1123] = 551, - [1124] = 548, - [1125] = 549, - [1126] = 550, - [1127] = 551, - [1128] = 553, - [1129] = 554, - [1130] = 555, - [1131] = 559, - [1132] = 560, - [1133] = 561, - [1134] = 562, - [1135] = 563, - [1136] = 564, - [1137] = 565, - [1138] = 566, - [1139] = 543, + [1050] = 556, + [1051] = 1002, + [1052] = 555, + [1053] = 543, + [1054] = 546, + [1055] = 548, + [1056] = 549, + [1057] = 550, + [1058] = 551, + [1059] = 552, + [1060] = 553, + [1061] = 554, + [1062] = 557, + [1063] = 558, + [1064] = 559, + [1065] = 560, + [1066] = 561, + [1067] = 562, + [1068] = 563, + [1069] = 544, + [1070] = 565, + [1071] = 556, + [1072] = 543, + [1073] = 546, + [1074] = 557, + [1075] = 548, + [1076] = 549, + [1077] = 550, + [1078] = 551, + [1079] = 552, + [1080] = 553, + [1081] = 554, + [1082] = 557, + [1083] = 558, + [1084] = 559, + [1085] = 560, + [1086] = 561, + [1087] = 562, + [1088] = 563, + [1089] = 544, + [1090] = 565, + [1091] = 555, + [1092] = 556, + [1093] = 558, + [1094] = 543, + [1095] = 546, + [1096] = 559, + [1097] = 548, + [1098] = 549, + [1099] = 550, + [1100] = 551, + [1101] = 552, + [1102] = 553, + [1103] = 554, + [1104] = 557, + [1105] = 558, + [1106] = 559, + [1107] = 560, + [1108] = 561, + [1109] = 562, + [1110] = 563, + [1111] = 544, + [1112] = 565, + [1113] = 560, + [1114] = 543, + [1115] = 546, + [1116] = 561, + [1117] = 548, + [1118] = 549, + [1119] = 550, + [1120] = 551, + [1121] = 552, + [1122] = 553, + [1123] = 554, + [1124] = 555, + [1125] = 556, + [1126] = 557, + [1127] = 558, + [1128] = 559, + [1129] = 560, + [1130] = 561, + [1131] = 562, + [1132] = 563, + [1133] = 544, + [1134] = 565, + [1135] = 562, + [1136] = 543, + [1137] = 546, + [1138] = 563, + [1139] = 548, [1140] = 549, - [1141] = 547, - [1142] = 1009, - [1143] = 553, - [1144] = 547, - [1145] = 1009, - [1146] = 554, - [1147] = 547, - [1148] = 1009, - [1149] = 555, - [1150] = 547, - [1151] = 1009, - [1152] = 556, - [1153] = 547, - [1154] = 1009, - [1155] = 546, - [1156] = 547, - [1157] = 1009, - [1158] = 558, - [1159] = 547, - [1160] = 1009, - [1161] = 559, - [1162] = 547, - [1163] = 1009, - [1164] = 560, - [1165] = 547, - [1166] = 1009, - [1167] = 561, - [1168] = 547, - [1169] = 1009, - [1170] = 562, - [1171] = 547, - [1172] = 1009, - [1173] = 563, - [1174] = 547, - [1175] = 1009, - [1176] = 564, - [1177] = 544, - [1178] = 545, - [1179] = 565, - [1180] = 548, - [1181] = 549, - [1182] = 550, - [1183] = 551, - [1184] = 553, - [1185] = 554, - [1186] = 555, - [1187] = 559, - [1188] = 560, - [1189] = 561, - [1190] = 562, - [1191] = 563, - [1192] = 564, - [1193] = 565, - [1194] = 566, - [1195] = 543, - [1196] = 566, + [1141] = 550, + [1142] = 551, + [1143] = 552, + [1144] = 553, + [1145] = 554, + [1146] = 557, + [1147] = 558, + [1148] = 559, + [1149] = 560, + [1150] = 561, + [1151] = 562, + [1152] = 563, + [1153] = 544, + [1154] = 565, + [1155] = 544, + [1156] = 908, + [1157] = 1002, + [1158] = 565, + [1159] = 908, + [1160] = 1002, + [1161] = 908, + [1162] = 1002, + [1163] = 908, + [1164] = 1002, + [1165] = 908, + [1166] = 1002, + [1167] = 908, + [1168] = 1002, + [1169] = 908, + [1170] = 1002, + [1171] = 908, + [1172] = 1002, + [1173] = 908, + [1174] = 1002, + [1175] = 908, + [1176] = 1002, + [1177] = 908, + [1178] = 1002, + [1179] = 908, + [1180] = 1002, + [1181] = 543, + [1182] = 546, + [1183] = 548, + [1184] = 549, + [1185] = 550, + [1186] = 551, + [1187] = 552, + [1188] = 553, + [1189] = 554, + [1190] = 557, + [1191] = 558, + [1192] = 559, + [1193] = 560, + [1194] = 561, + [1195] = 562, + [1196] = 563, [1197] = 544, - [1198] = 545, + [1198] = 565, [1199] = 543, - [1200] = 548, - [1201] = 549, - [1202] = 550, - [1203] = 551, - [1204] = 553, - [1205] = 554, - [1206] = 555, - [1207] = 559, - [1208] = 560, - [1209] = 561, - [1210] = 562, - [1211] = 563, - [1212] = 564, - [1213] = 565, - [1214] = 566, - [1215] = 543, + [1200] = 546, + [1201] = 548, + [1202] = 549, + [1203] = 550, + [1204] = 551, + [1205] = 552, + [1206] = 553, + [1207] = 554, + [1208] = 557, + [1209] = 558, + [1210] = 559, + [1211] = 560, + [1212] = 561, + [1213] = 562, + [1214] = 563, + [1215] = 565, [1216] = 1216, [1217] = 1217, [1218] = 1218, [1219] = 1219, - [1220] = 1220, - [1221] = 1216, + [1220] = 1216, + [1221] = 1221, [1222] = 1222, [1223] = 1223, [1224] = 1224, @@ -3150,283 +3072,283 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1230] = 1230, [1231] = 1231, [1232] = 1232, - [1233] = 1233, - [1234] = 1233, - [1235] = 1227, - [1236] = 1220, - [1237] = 1220, + [1233] = 1218, + [1234] = 1219, + [1235] = 1218, + [1236] = 1216, + [1237] = 1228, [1238] = 1216, - [1239] = 1232, - [1240] = 1228, - [1241] = 1216, - [1242] = 1233, - [1243] = 1229, + [1239] = 1217, + [1240] = 1216, + [1241] = 1219, + [1242] = 1221, + [1243] = 1223, [1244] = 1216, - [1245] = 1227, - [1246] = 1222, - [1247] = 1216, - [1248] = 1231, - [1249] = 1226, - [1250] = 1230, - [1251] = 1219, - [1252] = 1218, - [1253] = 1216, - [1254] = 1217, - [1255] = 1220, - [1256] = 1223, - [1257] = 1224, - [1258] = 1225, - [1259] = 1220, - [1260] = 1224, - [1261] = 1219, - [1262] = 1233, - [1263] = 1227, - [1264] = 1226, - [1265] = 1227, - [1266] = 1216, - [1267] = 1218, - [1268] = 1222, - [1269] = 1223, - [1270] = 1224, - [1271] = 1225, - [1272] = 1226, + [1245] = 1222, + [1246] = 1224, + [1247] = 1225, + [1248] = 1226, + [1249] = 1227, + [1250] = 1218, + [1251] = 1229, + [1252] = 1230, + [1253] = 1231, + [1254] = 1232, + [1255] = 1216, + [1256] = 1227, + [1257] = 1227, + [1258] = 1228, + [1259] = 1229, + [1260] = 1230, + [1261] = 1231, + [1262] = 1232, + [1263] = 1217, + [1264] = 1219, + [1265] = 1216, + [1266] = 1217, + [1267] = 1216, + [1268] = 1218, + [1269] = 1216, + [1270] = 1217, + [1271] = 1219, + [1272] = 1218, [1273] = 1216, - [1274] = 1218, + [1274] = 1219, [1275] = 1222, - [1276] = 1223, + [1276] = 1222, [1277] = 1224, - [1278] = 1225, - [1279] = 1226, - [1280] = 1216, - [1281] = 1228, - [1282] = 1229, - [1283] = 1230, - [1284] = 1231, - [1285] = 1232, - [1286] = 1217, - [1287] = 1220, - [1288] = 1220, - [1289] = 1220, - [1290] = 1233, - [1291] = 1227, - [1292] = 1228, - [1293] = 1229, - [1294] = 1230, - [1295] = 1233, - [1296] = 1231, - [1297] = 1232, - [1298] = 1217, - [1299] = 1216, - [1300] = 1228, - [1301] = 1229, - [1302] = 1230, - [1303] = 1231, - [1304] = 1232, - [1305] = 1217, + [1278] = 1228, + [1279] = 1225, + [1280] = 1232, + [1281] = 1224, + [1282] = 1225, + [1283] = 1226, + [1284] = 1221, + [1285] = 1223, + [1286] = 1222, + [1287] = 1224, + [1288] = 1225, + [1289] = 1226, + [1290] = 1218, + [1291] = 1229, + [1292] = 1230, + [1293] = 1231, + [1294] = 1227, + [1295] = 1228, + [1296] = 1229, + [1297] = 1230, + [1298] = 1231, + [1299] = 1232, + [1300] = 1221, + [1301] = 1221, + [1302] = 1223, + [1303] = 1218, + [1304] = 1223, + [1305] = 1216, [1306] = 1219, - [1307] = 1218, - [1308] = 1222, - [1309] = 1233, - [1310] = 1227, - [1311] = 1219, + [1307] = 1226, + [1308] = 1228, + [1309] = 1218, + [1310] = 1218, + [1311] = 1216, [1312] = 1216, - [1313] = 1223, - [1314] = 1225, - [1315] = 1217, - [1316] = 1227, - [1317] = 1220, - [1318] = 1228, - [1319] = 1229, - [1320] = 1230, - [1321] = 1231, - [1322] = 1232, - [1323] = 1217, - [1324] = 1219, - [1325] = 1226, - [1326] = 1216, - [1327] = 1218, - [1328] = 1227, - [1329] = 1222, - [1330] = 1223, - [1331] = 1224, - [1332] = 1225, - [1333] = 1226, - [1334] = 1228, - [1335] = 1229, - [1336] = 1230, - [1337] = 1231, - [1338] = 1232, - [1339] = 1220, - [1340] = 1219, - [1341] = 1227, - [1342] = 1216, - [1343] = 1220, - [1344] = 1233, - [1345] = 1220, - [1346] = 1220, - [1347] = 1233, - [1348] = 1220, - [1349] = 1233, - [1350] = 1233, - [1351] = 1227, - [1352] = 1220, - [1353] = 1227, - [1354] = 1220, - [1355] = 1218, - [1356] = 1222, - [1357] = 1220, - [1358] = 1223, - [1359] = 1224, - [1360] = 1225, - [1361] = 1233, - [1362] = 1233, - [1363] = 1227, - [1364] = 1220, - [1365] = 1227, - [1366] = 1220, - [1367] = 1233, - [1368] = 1220, - [1369] = 1369, - [1370] = 1370, - [1371] = 1370, - [1372] = 1369, - [1373] = 1369, - [1374] = 1374, - [1375] = 1375, - [1376] = 1376, - [1377] = 1376, - [1378] = 1374, - [1379] = 1375, - [1380] = 1376, - [1381] = 1375, - [1382] = 1370, - [1383] = 1369, - [1384] = 1369, - [1385] = 1370, - [1386] = 1369, - [1387] = 1370, - [1388] = 1369, - [1389] = 1374, - [1390] = 1369, - [1391] = 1370, - [1392] = 1374, - [1393] = 1370, - [1394] = 1369, - [1395] = 1376, - [1396] = 1376, - [1397] = 1375, - [1398] = 1375, - [1399] = 1374, - [1400] = 1376, - [1401] = 1376, - [1402] = 1374, - [1403] = 1375, - [1404] = 1374, - [1405] = 1375, - [1406] = 1375, - [1407] = 1376, - [1408] = 1375, - [1409] = 1376, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, - [1414] = 1413, - [1415] = 1413, - [1416] = 1413, - [1417] = 1413, - [1418] = 1413, - [1419] = 1413, - [1420] = 1413, - [1421] = 1413, - [1422] = 1413, - [1423] = 1413, - [1424] = 1413, - [1425] = 1413, - [1426] = 1413, - [1427] = 1413, - [1428] = 1413, - [1429] = 1413, - [1430] = 1413, - [1431] = 1413, - [1432] = 1413, - [1433] = 1433, - [1434] = 1433, - [1435] = 1433, - [1436] = 1436, - [1437] = 1436, - [1438] = 1433, - [1439] = 1436, - [1440] = 1433, - [1441] = 1433, - [1442] = 1433, - [1443] = 1436, - [1444] = 1436, - [1445] = 1433, - [1446] = 1436, - [1447] = 1436, - [1448] = 1433, - [1449] = 1436, - [1450] = 1436, - [1451] = 1436, - [1452] = 1433, - [1453] = 1433, - [1454] = 1433, - [1455] = 1436, - [1456] = 1433, - [1457] = 1436, - [1458] = 1436, - [1459] = 1433, - [1460] = 1436, - [1461] = 1461, + [1313] = 1219, + [1314] = 1218, + [1315] = 1221, + [1316] = 1223, + [1317] = 1222, + [1318] = 1224, + [1319] = 1225, + [1320] = 1226, + [1321] = 1221, + [1322] = 1223, + [1323] = 1222, + [1324] = 1224, + [1325] = 1232, + [1326] = 1225, + [1327] = 1226, + [1328] = 1218, + [1329] = 1230, + [1330] = 1231, + [1331] = 1219, + [1332] = 1219, + [1333] = 1218, + [1334] = 1219, + [1335] = 1227, + [1336] = 1228, + [1337] = 1229, + [1338] = 1230, + [1339] = 1231, + [1340] = 1232, + [1341] = 1217, + [1342] = 1218, + [1343] = 1218, + [1344] = 1218, + [1345] = 1218, + [1346] = 1217, + [1347] = 1219, + [1348] = 1227, + [1349] = 1229, + [1350] = 1218, + [1351] = 1218, + [1352] = 1218, + [1353] = 1219, + [1354] = 1219, + [1355] = 1355, + [1356] = 1356, + [1357] = 1356, + [1358] = 1355, + [1359] = 1355, + [1360] = 1360, + [1361] = 1360, + [1362] = 1362, + [1363] = 1362, + [1364] = 1364, + [1365] = 1364, + [1366] = 1364, + [1367] = 1362, + [1368] = 1356, + [1369] = 1355, + [1370] = 1356, + [1371] = 1355, + [1372] = 1356, + [1373] = 1360, + [1374] = 1356, + [1375] = 1355, + [1376] = 1355, + [1377] = 1355, + [1378] = 1355, + [1379] = 1360, + [1380] = 1356, + [1381] = 1364, + [1382] = 1362, + [1383] = 1362, + [1384] = 1360, + [1385] = 1364, + [1386] = 1362, + [1387] = 1360, + [1388] = 1364, + [1389] = 1362, + [1390] = 1364, + [1391] = 1360, + [1392] = 1362, + [1393] = 1364, + [1394] = 1362, + [1395] = 1364, + [1396] = 1396, + [1397] = 1397, + [1398] = 1398, + [1399] = 1399, + [1400] = 1399, + [1401] = 1399, + [1402] = 1399, + [1403] = 1399, + [1404] = 1399, + [1405] = 1399, + [1406] = 1399, + [1407] = 1399, + [1408] = 1399, + [1409] = 1399, + [1410] = 1399, + [1411] = 1399, + [1412] = 1399, + [1413] = 1399, + [1414] = 1399, + [1415] = 1399, + [1416] = 1399, + [1417] = 1399, + [1418] = 1399, + [1419] = 1419, + [1420] = 1420, + [1421] = 1420, + [1422] = 1420, + [1423] = 1420, + [1424] = 1419, + [1425] = 1419, + [1426] = 1419, + [1427] = 1420, + [1428] = 1420, + [1429] = 1419, + [1430] = 1419, + [1431] = 1420, + [1432] = 1420, + [1433] = 1419, + [1434] = 1419, + [1435] = 1420, + [1436] = 1419, + [1437] = 1420, + [1438] = 1419, + [1439] = 1419, + [1440] = 1419, + [1441] = 1419, + [1442] = 1420, + [1443] = 1420, + [1444] = 1420, + [1445] = 1420, + [1446] = 1419, + [1447] = 1447, + [1448] = 1448, + [1449] = 1449, + [1450] = 1448, + [1451] = 1449, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, + [1456] = 1456, + [1457] = 1457, + [1458] = 1458, + [1459] = 1222, + [1460] = 1447, + [1461] = 1448, [1462] = 1462, - [1463] = 1463, - [1464] = 1462, - [1465] = 1463, - [1466] = 1463, + [1463] = 1223, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 1225, - [1471] = 1226, + [1468] = 1226, + [1469] = 1449, + [1470] = 1221, + [1471] = 1448, [1472] = 1472, [1473] = 1473, - [1474] = 1461, + [1474] = 1456, [1475] = 1475, [1476] = 1476, - [1477] = 1477, + [1477] = 1224, [1478] = 1478, - [1479] = 1222, + [1479] = 1467, [1480] = 1480, [1481] = 1481, [1482] = 1482, - [1483] = 1462, - [1484] = 1463, + [1483] = 1225, + [1484] = 1484, [1485] = 1485, [1486] = 1486, - [1487] = 1487, - [1488] = 1218, + [1487] = 1449, + [1488] = 1488, [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, - [1493] = 1493, + [1493] = 1473, [1494] = 1494, [1495] = 1495, [1496] = 1496, - [1497] = 1486, - [1498] = 1478, + [1497] = 1497, + [1498] = 1498, [1499] = 1499, - [1500] = 1462, + [1500] = 1500, [1501] = 1501, - [1502] = 1223, - [1503] = 1490, - [1504] = 1224, + [1502] = 1502, + [1503] = 1503, + [1504] = 1504, [1505] = 1505, [1506] = 1506, [1507] = 1507, - [1508] = 1478, - [1509] = 1223, + [1508] = 1508, + [1509] = 1509, [1510] = 1510, [1511] = 1511, [1512] = 1512, @@ -3452,12 +3374,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1532] = 1532, [1533] = 1533, [1534] = 1534, - [1535] = 1535, - [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1540, + [1535] = 1221, + [1536] = 1223, + [1537] = 1222, + [1538] = 1224, + [1539] = 1225, + [1540] = 1226, [1541] = 1541, [1542] = 1542, [1543] = 1543, @@ -3471,11 +3393,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1551] = 1551, [1552] = 1552, [1553] = 1553, - [1554] = 1554, + [1554] = 1529, [1555] = 1555, - [1556] = 1556, - [1557] = 1557, - [1558] = 1558, + [1556] = 1489, + [1557] = 1458, + [1558] = 1530, [1559] = 1559, [1560] = 1560, [1561] = 1561, @@ -3484,21 +3406,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1564] = 1564, [1565] = 1565, [1566] = 1566, - [1567] = 1567, + [1567] = 1447, [1568] = 1568, - [1569] = 1569, - [1570] = 1570, + [1569] = 1473, + [1570] = 1456, [1571] = 1571, - [1572] = 1572, + [1572] = 1467, [1573] = 1573, [1574] = 1574, [1575] = 1575, [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 1579, - [1580] = 1580, - [1581] = 1581, + [1579] = 1452, + [1580] = 1475, + [1581] = 1531, [1582] = 1582, [1583] = 1583, [1584] = 1584, @@ -3513,3822 +3435,3822 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1593] = 1593, [1594] = 1594, [1595] = 1595, - [1596] = 1490, + [1596] = 1596, [1597] = 1597, [1598] = 1598, - [1599] = 1599, - [1600] = 1600, - [1601] = 1601, - [1602] = 1602, - [1603] = 1603, - [1604] = 1604, - [1605] = 1605, - [1606] = 1606, - [1607] = 1607, - [1608] = 1608, - [1609] = 1609, - [1610] = 1610, - [1611] = 1224, - [1612] = 1612, - [1613] = 1475, - [1614] = 1476, - [1615] = 1225, - [1616] = 1226, + [1599] = 1533, + [1600] = 1534, + [1601] = 1473, + [1602] = 1456, + [1603] = 1467, + [1604] = 1486, + [1605] = 1453, + [1606] = 1457, + [1607] = 1466, + [1608] = 1485, + [1609] = 1484, + [1610] = 1455, + [1611] = 1482, + [1612] = 1481, + [1613] = 1465, + [1614] = 1492, + [1615] = 1615, + [1616] = 1616, [1617] = 1617, - [1618] = 1472, - [1619] = 1499, - [1620] = 1461, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, [1621] = 1621, - [1622] = 1218, - [1623] = 1512, - [1624] = 1513, - [1625] = 1222, - [1626] = 1533, - [1627] = 1534, + [1622] = 1622, + [1623] = 1623, + [1624] = 1624, + [1625] = 1625, + [1626] = 1626, + [1627] = 1627, [1628] = 1628, - [1629] = 1554, - [1630] = 1555, - [1631] = 1501, - [1632] = 1480, + [1629] = 1629, + [1630] = 1221, + [1631] = 1223, + [1632] = 1632, [1633] = 1633, [1634] = 1634, - [1635] = 1635, - [1636] = 1636, - [1637] = 1218, - [1638] = 1222, - [1639] = 1223, - [1640] = 1486, - [1641] = 1224, - [1642] = 1490, - [1643] = 1492, - [1644] = 1467, - [1645] = 1468, - [1646] = 1469, - [1647] = 1482, - [1648] = 1485, - [1649] = 1507, - [1650] = 1487, - [1651] = 1491, - [1652] = 1493, - [1653] = 1494, - [1654] = 1225, - [1655] = 1226, - [1656] = 1656, - [1657] = 1657, + [1635] = 1222, + [1636] = 1224, + [1637] = 1225, + [1638] = 1226, + [1639] = 1462, + [1640] = 1640, + [1641] = 1641, + [1642] = 1491, + [1643] = 1643, + [1644] = 1644, + [1645] = 1645, + [1646] = 1646, + [1647] = 1647, + [1648] = 1648, + [1649] = 1649, + [1650] = 1650, + [1651] = 1651, + [1652] = 1652, + [1653] = 1653, + [1654] = 1654, + [1655] = 1655, + [1656] = 1532, + [1657] = 1512, [1658] = 1658, - [1659] = 1659, - [1660] = 1660, - [1661] = 1661, - [1662] = 1662, - [1663] = 1663, - [1664] = 1486, - [1665] = 1665, - [1666] = 1478, - [1667] = 1667, - [1668] = 1668, - [1669] = 1669, - [1670] = 1670, - [1671] = 1671, - [1672] = 1672, - [1673] = 1671, - [1674] = 1597, - [1675] = 1492, - [1676] = 1598, - [1677] = 1599, - [1678] = 1600, - [1679] = 1601, - [1680] = 1602, - [1681] = 1603, - [1682] = 1604, - [1683] = 1605, - [1684] = 1684, - [1685] = 1685, - [1686] = 1606, - [1687] = 1607, - [1688] = 1608, - [1689] = 1223, - [1690] = 1224, - [1691] = 1609, - [1692] = 1610, - [1693] = 1693, - [1694] = 1694, - [1695] = 1695, - [1696] = 1487, - [1697] = 1697, - [1698] = 1698, - [1699] = 1534, - [1700] = 1554, - [1701] = 1701, - [1702] = 1555, - [1703] = 1493, - [1704] = 1704, - [1705] = 1705, - [1706] = 1658, - [1707] = 1663, - [1708] = 1628, - [1709] = 1709, - [1710] = 1494, - [1711] = 1711, - [1712] = 1475, - [1713] = 1713, - [1714] = 1714, - [1715] = 1491, - [1716] = 1716, - [1717] = 1717, - [1718] = 1718, - [1719] = 1612, - [1720] = 1523, - [1721] = 1524, - [1722] = 1512, - [1723] = 1513, - [1724] = 1467, - [1725] = 1533, - [1726] = 1726, - [1727] = 1727, - [1728] = 1510, - [1729] = 1534, - [1730] = 1634, - [1731] = 1635, - [1732] = 1636, - [1733] = 1656, - [1734] = 1657, - [1735] = 1468, - [1736] = 1659, - [1737] = 1660, - [1738] = 1661, - [1739] = 1662, - [1740] = 1554, - [1741] = 1665, - [1742] = 1555, - [1743] = 1512, - [1744] = 1670, - [1745] = 1617, - [1746] = 1469, - [1747] = 1513, - [1748] = 1514, - [1749] = 1515, - [1750] = 1516, - [1751] = 1517, - [1752] = 1518, - [1753] = 1520, - [1754] = 1521, - [1755] = 1522, - [1756] = 1511, - [1757] = 1225, - [1758] = 1226, - [1759] = 1531, - [1760] = 1760, - [1761] = 1761, - [1762] = 1762, - [1763] = 1532, - [1764] = 1482, - [1765] = 1544, - [1766] = 1545, - [1767] = 1550, + [1659] = 1529, + [1660] = 1530, + [1661] = 1531, + [1662] = 1532, + [1663] = 1533, + [1664] = 1534, + [1665] = 1221, + [1666] = 1223, + [1667] = 1222, + [1668] = 1224, + [1669] = 1225, + [1670] = 1226, + [1671] = 1222, + [1672] = 1224, + [1673] = 1453, + [1674] = 1457, + [1675] = 1675, + [1676] = 1466, + [1677] = 1677, + [1678] = 1678, + [1679] = 1225, + [1680] = 1226, + [1681] = 1485, + [1682] = 1573, + [1683] = 1484, + [1684] = 1455, + [1685] = 1482, + [1686] = 1640, + [1687] = 1481, + [1688] = 1465, + [1689] = 1492, + [1690] = 1447, + [1691] = 1489, + [1692] = 1541, + [1693] = 1625, + [1694] = 1643, + [1695] = 1644, + [1696] = 1645, + [1697] = 1646, + [1698] = 1647, + [1699] = 1648, + [1700] = 1649, + [1701] = 1650, + [1702] = 1651, + [1703] = 1652, + [1704] = 1653, + [1705] = 1542, + [1706] = 1543, + [1707] = 1544, + [1708] = 1545, + [1709] = 1546, + [1710] = 1654, + [1711] = 1655, + [1712] = 1582, + [1713] = 1547, + [1714] = 1548, + [1715] = 1549, + [1716] = 1550, + [1717] = 1495, + [1718] = 1551, + [1719] = 1496, + [1720] = 1497, + [1721] = 1498, + [1722] = 1552, + [1723] = 1568, + [1724] = 1499, + [1725] = 1500, + [1726] = 1559, + [1727] = 1501, + [1728] = 1502, + [1729] = 1560, + [1730] = 1561, + [1731] = 1562, + [1732] = 1563, + [1733] = 1564, + [1734] = 1565, + [1735] = 1566, + [1736] = 1503, + [1737] = 1504, + [1738] = 1505, + [1739] = 1506, + [1740] = 1507, + [1741] = 1508, + [1742] = 1591, + [1743] = 1592, + [1744] = 1509, + [1745] = 1510, + [1746] = 1511, + [1747] = 1571, + [1748] = 1555, + [1749] = 1513, + [1750] = 1574, + [1751] = 1514, + [1752] = 1575, + [1753] = 1576, + [1754] = 1577, + [1755] = 1578, + [1756] = 1583, + [1757] = 1584, + [1758] = 1585, + [1759] = 1586, + [1760] = 1587, + [1761] = 1588, + [1762] = 1589, + [1763] = 1641, + [1764] = 1593, + [1765] = 1515, + [1766] = 1516, + [1767] = 1594, [1768] = 1595, - [1769] = 1525, - [1770] = 1669, - [1771] = 1553, - [1772] = 1557, - [1773] = 1526, - [1774] = 1558, - [1775] = 1527, - [1776] = 1528, - [1777] = 1529, - [1778] = 1530, - [1779] = 1535, - [1780] = 1536, - [1781] = 1537, - [1782] = 1538, - [1783] = 1539, - [1784] = 1540, - [1785] = 1541, - [1786] = 1542, - [1787] = 1543, - [1788] = 1559, - [1789] = 1566, - [1790] = 1546, - [1791] = 1547, - [1792] = 1548, - [1793] = 1549, - [1794] = 1567, - [1795] = 1551, - [1796] = 1556, - [1797] = 1560, - [1798] = 1561, - [1799] = 1562, - [1800] = 1621, - [1801] = 1633, - [1802] = 1563, - [1803] = 1564, - [1804] = 1565, - [1805] = 1570, - [1806] = 1476, - [1807] = 1568, - [1808] = 1569, - [1809] = 1519, - [1810] = 1571, - [1811] = 1572, - [1812] = 1573, - [1813] = 1574, - [1814] = 1575, - [1815] = 1576, - [1816] = 1577, - [1817] = 1578, - [1818] = 1579, - [1819] = 1580, - [1820] = 1581, - [1821] = 1218, - [1822] = 1222, - [1823] = 1223, - [1824] = 1224, - [1825] = 1225, - [1826] = 1226, - [1827] = 1582, - [1828] = 1583, - [1829] = 1584, - [1830] = 1585, - [1831] = 1586, - [1832] = 1587, - [1833] = 1588, - [1834] = 1589, - [1835] = 1485, - [1836] = 1461, - [1837] = 1507, - [1838] = 1590, - [1839] = 1591, - [1840] = 1592, - [1841] = 1218, - [1842] = 1222, - [1843] = 1501, - [1844] = 1480, - [1845] = 1593, - [1846] = 1594, - [1847] = 1533, - [1848] = 1667, - [1849] = 1668, - [1850] = 1552, - [1851] = 1520, - [1852] = 1669, - [1853] = 1467, - [1854] = 1468, - [1855] = 1469, - [1856] = 1225, - [1857] = 1226, - [1858] = 1705, - [1859] = 1859, - [1860] = 1716, - [1861] = 1861, - [1862] = 1685, - [1863] = 1709, - [1864] = 1713, - [1865] = 1714, - [1866] = 1717, - [1867] = 1718, - [1868] = 1727, - [1869] = 1684, - [1870] = 1697, - [1871] = 1701, - [1872] = 1704, - [1873] = 1660, - [1874] = 1661, - [1875] = 1726, - [1876] = 1698, - [1877] = 1711, - [1878] = 1662, - [1879] = 1559, - [1880] = 1566, - [1881] = 1665, - [1882] = 1567, - [1883] = 1570, - [1884] = 1575, - [1885] = 1577, - [1886] = 1578, - [1887] = 1521, - [1888] = 1522, - [1889] = 1461, - [1890] = 1658, - [1891] = 1891, - [1892] = 1892, - [1893] = 1462, - [1894] = 1463, - [1895] = 1523, - [1896] = 1524, - [1897] = 1482, - [1898] = 1485, - [1899] = 1899, - [1900] = 1550, - [1901] = 1525, - [1902] = 1487, - [1903] = 1693, - [1904] = 1526, - [1905] = 1694, - [1906] = 1695, - [1907] = 1672, - [1908] = 1491, - [1909] = 1493, - [1910] = 1494, - [1911] = 1527, - [1912] = 1528, - [1913] = 1529, - [1914] = 1530, - [1915] = 1533, - [1916] = 1534, - [1917] = 1579, - [1918] = 1535, - [1919] = 1536, - [1920] = 1537, - [1921] = 1538, - [1922] = 1539, - [1923] = 1512, - [1924] = 1540, - [1925] = 1541, - [1926] = 1513, - [1927] = 1533, - [1928] = 1542, - [1929] = 1534, - [1930] = 1543, - [1931] = 1554, - [1932] = 1555, - [1933] = 1580, - [1934] = 1581, - [1935] = 1670, - [1936] = 1582, - [1937] = 1583, - [1938] = 1462, - [1939] = 1584, - [1940] = 1585, - [1941] = 1586, - [1942] = 1218, - [1943] = 1222, - [1944] = 1546, - [1945] = 1617, - [1946] = 1547, - [1947] = 1223, - [1948] = 1224, - [1949] = 1225, - [1950] = 1226, - [1951] = 1492, - [1952] = 1548, - [1953] = 1587, - [1954] = 1549, - [1955] = 1475, - [1956] = 1476, - [1957] = 1223, - [1958] = 1224, - [1959] = 1634, - [1960] = 1551, - [1961] = 1635, - [1962] = 1554, - [1963] = 1555, - [1964] = 1588, - [1965] = 1589, - [1966] = 1556, - [1967] = 1560, - [1968] = 1561, - [1969] = 1562, - [1970] = 1563, - [1971] = 1564, - [1972] = 1565, - [1973] = 1590, - [1974] = 1463, - [1975] = 1591, - [1976] = 1592, - [1977] = 1636, - [1978] = 1656, - [1979] = 1593, - [1980] = 1594, - [1981] = 1595, - [1982] = 1671, - [1983] = 1657, - [1984] = 1597, - [1985] = 1598, - [1986] = 1892, - [1987] = 1599, - [1988] = 1600, - [1989] = 1601, - [1990] = 1602, - [1991] = 1501, - [1992] = 1603, - [1993] = 1604, - [1994] = 1605, - [1995] = 1760, - [1996] = 1761, - [1997] = 1762, - [1998] = 1606, - [1999] = 1607, - [2000] = 1512, - [2001] = 1513, - [2002] = 1514, - [2003] = 1480, - [2004] = 1515, - [2005] = 1516, - [2006] = 1608, - [2007] = 1517, - [2008] = 1609, - [2009] = 1610, - [2010] = 1518, - [2011] = 1572, - [2012] = 1573, - [2013] = 1574, - [2014] = 1659, - [2015] = 1552, - [2016] = 1553, - [2017] = 1557, - [2018] = 1218, - [2019] = 1576, - [2020] = 1558, - [2021] = 1222, - [2022] = 1568, - [2023] = 1569, - [2024] = 1571, - [2025] = 1510, - [2026] = 1511, - [2027] = 1531, - [2028] = 1532, - [2029] = 1544, - [2030] = 1545, - [2031] = 1667, - [2032] = 1668, - [2033] = 1507, - [2034] = 1501, - [2035] = 1492, - [2036] = 2036, - [2037] = 2037, - [2038] = 1591, + [1769] = 1596, + [1770] = 1597, + [1771] = 1517, + [1772] = 1598, + [1773] = 1615, + [1774] = 1616, + [1775] = 1617, + [1776] = 1452, + [1777] = 1475, + [1778] = 1618, + [1779] = 1619, + [1780] = 1620, + [1781] = 1494, + [1782] = 1518, + [1783] = 1621, + [1784] = 1622, + [1785] = 1519, + [1786] = 1623, + [1787] = 1624, + [1788] = 1626, + [1789] = 1627, + [1790] = 1520, + [1791] = 1628, + [1792] = 1521, + [1793] = 1522, + [1794] = 1523, + [1795] = 1524, + [1796] = 1221, + [1797] = 1223, + [1798] = 1525, + [1799] = 1526, + [1800] = 1527, + [1801] = 1529, + [1802] = 1530, + [1803] = 1803, + [1804] = 1804, + [1805] = 1531, + [1806] = 1532, + [1807] = 1807, + [1808] = 1533, + [1809] = 1534, + [1810] = 1810, + [1811] = 1486, + [1812] = 1458, + [1813] = 1813, + [1814] = 1814, + [1815] = 1815, + [1816] = 1629, + [1817] = 1634, + [1818] = 1632, + [1819] = 1633, + [1820] = 1528, + [1821] = 1821, + [1822] = 1822, + [1823] = 1823, + [1824] = 1824, + [1825] = 1825, + [1826] = 1826, + [1827] = 1827, + [1828] = 1828, + [1829] = 1829, + [1830] = 1830, + [1831] = 1553, + [1832] = 1832, + [1833] = 1833, + [1834] = 1590, + [1835] = 1508, + [1836] = 1626, + [1837] = 1627, + [1838] = 1223, + [1839] = 1531, + [1840] = 1628, + [1841] = 1532, + [1842] = 1583, + [1843] = 1584, + [1844] = 1821, + [1845] = 1822, + [1846] = 1548, + [1847] = 1823, + [1848] = 1824, + [1849] = 1825, + [1850] = 1826, + [1851] = 1549, + [1852] = 1827, + [1853] = 1828, + [1854] = 1829, + [1855] = 1585, + [1856] = 1856, + [1857] = 1586, + [1858] = 1587, + [1859] = 1675, + [1860] = 1677, + [1861] = 1678, + [1862] = 1550, + [1863] = 1452, + [1864] = 1625, + [1865] = 1830, + [1866] = 1832, + [1867] = 1551, + [1868] = 1221, + [1869] = 1588, + [1870] = 1223, + [1871] = 1833, + [1872] = 1658, + [1873] = 1873, + [1874] = 1589, + [1875] = 1875, + [1876] = 1590, + [1877] = 1486, + [1878] = 1593, + [1879] = 1475, + [1880] = 1222, + [1881] = 1224, + [1882] = 1594, + [1883] = 1595, + [1884] = 1596, + [1885] = 1542, + [1886] = 1482, + [1887] = 1543, + [1888] = 1225, + [1889] = 1597, + [1890] = 1544, + [1891] = 1226, + [1892] = 1545, + [1893] = 1529, + [1894] = 1529, + [1895] = 1530, + [1896] = 1481, + [1897] = 1559, + [1898] = 1465, + [1899] = 1598, + [1900] = 1571, + [1901] = 1640, + [1902] = 1643, + [1903] = 1568, + [1904] = 1644, + [1905] = 1645, + [1906] = 1646, + [1907] = 1647, + [1908] = 1648, + [1909] = 1649, + [1910] = 1650, + [1911] = 1651, + [1912] = 1652, + [1913] = 1653, + [1914] = 1654, + [1915] = 1655, + [1916] = 1582, + [1917] = 1495, + [1918] = 1496, + [1919] = 1497, + [1920] = 1498, + [1921] = 1499, + [1922] = 1500, + [1923] = 1501, + [1924] = 1502, + [1925] = 1503, + [1926] = 1504, + [1927] = 1505, + [1928] = 1506, + [1929] = 1507, + [1930] = 1577, + [1931] = 1931, + [1932] = 1510, + [1933] = 1511, + [1934] = 1512, + [1935] = 1513, + [1936] = 1514, + [1937] = 1515, + [1938] = 1516, + [1939] = 1517, + [1940] = 1494, + [1941] = 1518, + [1942] = 1519, + [1943] = 1520, + [1944] = 1521, + [1945] = 1522, + [1946] = 1523, + [1947] = 1524, + [1948] = 1525, + [1949] = 1526, + [1950] = 1527, + [1951] = 1560, + [1952] = 1561, + [1953] = 1562, + [1954] = 1448, + [1955] = 1492, + [1956] = 1563, + [1957] = 1564, + [1958] = 1449, + [1959] = 1530, + [1960] = 1531, + [1961] = 1552, + [1962] = 1532, + [1963] = 1546, + [1964] = 1875, + [1965] = 1565, + [1966] = 1566, + [1967] = 1533, + [1968] = 1574, + [1969] = 1534, + [1970] = 1453, + [1971] = 1457, + [1972] = 1615, + [1973] = 1803, + [1974] = 1804, + [1975] = 1447, + [1976] = 1466, + [1977] = 1573, + [1978] = 1591, + [1979] = 1616, + [1980] = 1625, + [1981] = 1632, + [1982] = 1633, + [1983] = 1225, + [1984] = 1226, + [1985] = 1489, + [1986] = 1458, + [1987] = 1617, + [1988] = 1618, + [1989] = 1813, + [1990] = 1814, + [1991] = 1815, + [1992] = 1619, + [1993] = 1485, + [1994] = 1484, + [1995] = 1455, + [1996] = 1448, + [1997] = 1449, + [1998] = 1807, + [1999] = 1810, + [2000] = 1620, + [2001] = 1533, + [2002] = 1547, + [2003] = 1592, + [2004] = 1534, + [2005] = 1578, + [2006] = 1621, + [2007] = 1622, + [2008] = 1222, + [2009] = 2009, + [2010] = 1221, + [2011] = 1623, + [2012] = 1624, + [2013] = 1224, + [2014] = 1575, + [2015] = 1576, + [2016] = 1641, + [2017] = 1509, + [2018] = 1833, + [2019] = 1641, + [2020] = 1531, + [2021] = 2021, + [2022] = 1532, + [2023] = 1466, + [2024] = 2024, + [2025] = 1564, + [2026] = 1565, + [2027] = 2021, + [2028] = 1566, + [2029] = 1496, + [2030] = 1497, + [2031] = 1498, + [2032] = 1499, + [2033] = 1547, + [2034] = 1500, + [2035] = 2035, + [2036] = 1501, + [2037] = 1530, + [2038] = 1221, [2039] = 1223, - [2040] = 1224, - [2041] = 1592, - [2042] = 1510, - [2043] = 1511, - [2044] = 2044, - [2045] = 1467, - [2046] = 1468, - [2047] = 1593, - [2048] = 2036, - [2049] = 1469, - [2050] = 2037, - [2051] = 1594, - [2052] = 1543, - [2053] = 1595, - [2054] = 1225, - [2055] = 1226, - [2056] = 1531, - [2057] = 1532, - [2058] = 1544, - [2059] = 1545, - [2060] = 1550, - [2061] = 1552, - [2062] = 1553, - [2063] = 1557, - [2064] = 2044, - [2065] = 1558, - [2066] = 1559, - [2067] = 1566, - [2068] = 1567, - [2069] = 1562, - [2070] = 1570, - [2071] = 1575, - [2072] = 2036, - [2073] = 1577, - [2074] = 1578, - [2075] = 2037, - [2076] = 1563, - [2077] = 1564, - [2078] = 1482, - [2079] = 1485, - [2080] = 1507, - [2081] = 1579, - [2082] = 1580, - [2083] = 1581, - [2084] = 2044, - [2085] = 1582, - [2086] = 1583, - [2087] = 1584, - [2088] = 1585, - [2089] = 1565, - [2090] = 1586, - [2091] = 1587, - [2092] = 2036, - [2093] = 1588, - [2094] = 1589, - [2095] = 2037, - [2096] = 1590, - [2097] = 1546, - [2098] = 1591, - [2099] = 1592, - [2100] = 1554, - [2101] = 1593, - [2102] = 1594, - [2103] = 1487, - [2104] = 1595, - [2105] = 1671, - [2106] = 1597, - [2107] = 1598, - [2108] = 1599, - [2109] = 1600, - [2110] = 1601, - [2111] = 2044, - [2112] = 1602, - [2113] = 1603, - [2114] = 1604, - [2115] = 1568, - [2116] = 1605, - [2117] = 1606, - [2118] = 2036, - [2119] = 1607, - [2120] = 1608, - [2121] = 2037, - [2122] = 1609, - [2123] = 1569, - [2124] = 1610, - [2125] = 1491, - [2126] = 1671, - [2127] = 1493, - [2128] = 1494, - [2129] = 1597, - [2130] = 1598, - [2131] = 1555, - [2132] = 1599, - [2133] = 1556, - [2134] = 1571, - [2135] = 1572, - [2136] = 1560, - [2137] = 1573, - [2138] = 1574, - [2139] = 2044, - [2140] = 1561, - [2141] = 1518, - [2142] = 1521, - [2143] = 1522, - [2144] = 2036, - [2145] = 1600, - [2146] = 2037, - [2147] = 1601, - [2148] = 1576, - [2149] = 1602, - [2150] = 1603, - [2151] = 1604, - [2152] = 1605, - [2153] = 2044, - [2154] = 1512, - [2155] = 1513, - [2156] = 2036, - [2157] = 1533, - [2158] = 2037, - [2159] = 1534, - [2160] = 1554, - [2161] = 1555, - [2162] = 1606, - [2163] = 1607, - [2164] = 2036, - [2165] = 1608, - [2166] = 1609, - [2167] = 2044, - [2168] = 1610, - [2169] = 2036, - [2170] = 2037, - [2171] = 2044, - [2172] = 1520, - [2173] = 1547, - [2174] = 1218, - [2175] = 1222, - [2176] = 1223, - [2177] = 1224, - [2178] = 1225, - [2179] = 1760, - [2180] = 1761, - [2181] = 1762, - [2182] = 1226, - [2183] = 1512, - [2184] = 1513, - [2185] = 1533, - [2186] = 1534, - [2187] = 1554, - [2188] = 1555, - [2189] = 1490, - [2190] = 1590, - [2191] = 2044, - [2192] = 2037, - [2193] = 2044, - [2194] = 1541, - [2195] = 1525, - [2196] = 1526, - [2197] = 2036, - [2198] = 2037, - [2199] = 1548, - [2200] = 1486, - [2201] = 1527, - [2202] = 1528, - [2203] = 1529, - [2204] = 1218, - [2205] = 1222, - [2206] = 1510, - [2207] = 1511, - [2208] = 1223, - [2209] = 1224, - [2210] = 1225, - [2211] = 1226, - [2212] = 1530, - [2213] = 2036, - [2214] = 1531, - [2215] = 1698, - [2216] = 1532, - [2217] = 1693, - [2218] = 1694, - [2219] = 2044, - [2220] = 2037, - [2221] = 1695, - [2222] = 1672, - [2223] = 1544, - [2224] = 1478, - [2225] = 1490, - [2226] = 1545, - [2227] = 2044, - [2228] = 2036, - [2229] = 1550, - [2230] = 2037, - [2231] = 1552, - [2232] = 1553, - [2233] = 1557, - [2234] = 1558, - [2235] = 2036, - [2236] = 1559, - [2237] = 1566, - [2238] = 2037, - [2239] = 1549, - [2240] = 1218, - [2241] = 1634, - [2242] = 1635, - [2243] = 1636, - [2244] = 1222, - [2245] = 1656, - [2246] = 1657, - [2247] = 1659, - [2248] = 1660, - [2249] = 1711, - [2250] = 1661, - [2251] = 1667, - [2252] = 1668, - [2253] = 1669, - [2254] = 1662, - [2255] = 2044, - [2256] = 1567, - [2257] = 1570, - [2258] = 1472, - [2259] = 1575, - [2260] = 1577, - [2261] = 2036, - [2262] = 1578, - [2263] = 1579, - [2264] = 1499, - [2265] = 2037, - [2266] = 1665, - [2267] = 1580, - [2268] = 1581, - [2269] = 1582, - [2270] = 1670, - [2271] = 1658, - [2272] = 1583, - [2273] = 1584, - [2274] = 1585, - [2275] = 1586, - [2276] = 1512, - [2277] = 1587, - [2278] = 1588, - [2279] = 1513, - [2280] = 1514, - [2281] = 1515, - [2282] = 1617, - [2283] = 1516, - [2284] = 1533, - [2285] = 1475, - [2286] = 1476, - [2287] = 1534, - [2288] = 1535, - [2289] = 1589, - [2290] = 1705, - [2291] = 1536, - [2292] = 1537, - [2293] = 1538, - [2294] = 1716, - [2295] = 1685, - [2296] = 1709, - [2297] = 1713, - [2298] = 1714, - [2299] = 1717, - [2300] = 1718, - [2301] = 1727, - [2302] = 1684, - [2303] = 1697, - [2304] = 1701, - [2305] = 1704, - [2306] = 1523, - [2307] = 1524, - [2308] = 1539, - [2309] = 1542, - [2310] = 1486, - [2311] = 2044, - [2312] = 1478, - [2313] = 1551, - [2314] = 1540, - [2315] = 1517, - [2316] = 1480, - [2317] = 1462, - [2318] = 1534, - [2319] = 1537, - [2320] = 1538, - [2321] = 1554, - [2322] = 1568, - [2323] = 1555, - [2324] = 1569, - [2325] = 1554, - [2326] = 1579, - [2327] = 1580, - [2328] = 1461, + [2040] = 2035, + [2041] = 1548, + [2042] = 2021, + [2043] = 1222, + [2044] = 1224, + [2045] = 2024, + [2046] = 1225, + [2047] = 1226, + [2048] = 1625, + [2049] = 2021, + [2050] = 2024, + [2051] = 1549, + [2052] = 1550, + [2053] = 1531, + [2054] = 2035, + [2055] = 1225, + [2056] = 1532, + [2057] = 1226, + [2058] = 2021, + [2059] = 2024, + [2060] = 1503, + [2061] = 1504, + [2062] = 1221, + [2063] = 1223, + [2064] = 2035, + [2065] = 1505, + [2066] = 1506, + [2067] = 1222, + [2068] = 1224, + [2069] = 1225, + [2070] = 1226, + [2071] = 2035, + [2072] = 1573, + [2073] = 1507, + [2074] = 2021, + [2075] = 2024, + [2076] = 1529, + [2077] = 1544, + [2078] = 2035, + [2079] = 1530, + [2080] = 1551, + [2081] = 1583, + [2082] = 1584, + [2083] = 1643, + [2084] = 1644, + [2085] = 1585, + [2086] = 1645, + [2087] = 1646, + [2088] = 1545, + [2089] = 1452, + [2090] = 2035, + [2091] = 1821, + [2092] = 1475, + [2093] = 1822, + [2094] = 1823, + [2095] = 1824, + [2096] = 1825, + [2097] = 2021, + [2098] = 1826, + [2099] = 1827, + [2100] = 2024, + [2101] = 1828, + [2102] = 1829, + [2103] = 1830, + [2104] = 1832, + [2105] = 1529, + [2106] = 1658, + [2107] = 1591, + [2108] = 1592, + [2109] = 1546, + [2110] = 1531, + [2111] = 1532, + [2112] = 2021, + [2113] = 1533, + [2114] = 1534, + [2115] = 2035, + [2116] = 2024, + [2117] = 1508, + [2118] = 1552, + [2119] = 1509, + [2120] = 1510, + [2121] = 1511, + [2122] = 2021, + [2123] = 2035, + [2124] = 1542, + [2125] = 2024, + [2126] = 1543, + [2127] = 1512, + [2128] = 1482, + [2129] = 2021, + [2130] = 1571, + [2131] = 2024, + [2132] = 1513, + [2133] = 1529, + [2134] = 1484, + [2135] = 1514, + [2136] = 2035, + [2137] = 1574, + [2138] = 1678, + [2139] = 1530, + [2140] = 1575, + [2141] = 2021, + [2142] = 1515, + [2143] = 2024, + [2144] = 1516, + [2145] = 1576, + [2146] = 1577, + [2147] = 1517, + [2148] = 1494, + [2149] = 1518, + [2150] = 2035, + [2151] = 1519, + [2152] = 1520, + [2153] = 2035, + [2154] = 1521, + [2155] = 1568, + [2156] = 1522, + [2157] = 2021, + [2158] = 1647, + [2159] = 1489, + [2160] = 2024, + [2161] = 1458, + [2162] = 1523, + [2163] = 1524, + [2164] = 1648, + [2165] = 2021, + [2166] = 1586, + [2167] = 1677, + [2168] = 1525, + [2169] = 2024, + [2170] = 1803, + [2171] = 1804, + [2172] = 1813, + [2173] = 1814, + [2174] = 1815, + [2175] = 1807, + [2176] = 1810, + [2177] = 1526, + [2178] = 1527, + [2179] = 1481, + [2180] = 1473, + [2181] = 1587, + [2182] = 1649, + [2183] = 1456, + [2184] = 1465, + [2185] = 1588, + [2186] = 1589, + [2187] = 1590, + [2188] = 1593, + [2189] = 1492, + [2190] = 1467, + [2191] = 1627, + [2192] = 1650, + [2193] = 1651, + [2194] = 1455, + [2195] = 1594, + [2196] = 1595, + [2197] = 1596, + [2198] = 1597, + [2199] = 1628, + [2200] = 1598, + [2201] = 1640, + [2202] = 1221, + [2203] = 1223, + [2204] = 2035, + [2205] = 1533, + [2206] = 1533, + [2207] = 1534, + [2208] = 1640, + [2209] = 1615, + [2210] = 1616, + [2211] = 1643, + [2212] = 1644, + [2213] = 1645, + [2214] = 1646, + [2215] = 1647, + [2216] = 1648, + [2217] = 1649, + [2218] = 1650, + [2219] = 1651, + [2220] = 1652, + [2221] = 1653, + [2222] = 1654, + [2223] = 1655, + [2224] = 1582, + [2225] = 1495, + [2226] = 1496, + [2227] = 1497, + [2228] = 1498, + [2229] = 1499, + [2230] = 1500, + [2231] = 1501, + [2232] = 1502, + [2233] = 1503, + [2234] = 1504, + [2235] = 1505, + [2236] = 1506, + [2237] = 1507, + [2238] = 1508, + [2239] = 1509, + [2240] = 1510, + [2241] = 1511, + [2242] = 1512, + [2243] = 1513, + [2244] = 1514, + [2245] = 1515, + [2246] = 1534, + [2247] = 1462, + [2248] = 2021, + [2249] = 1632, + [2250] = 1633, + [2251] = 1516, + [2252] = 1517, + [2253] = 1494, + [2254] = 2024, + [2255] = 1518, + [2256] = 1519, + [2257] = 1520, + [2258] = 1521, + [2259] = 1522, + [2260] = 1523, + [2261] = 1524, + [2262] = 1525, + [2263] = 1526, + [2264] = 1527, + [2265] = 1617, + [2266] = 1618, + [2267] = 1619, + [2268] = 1620, + [2269] = 1559, + [2270] = 1621, + [2271] = 1622, + [2272] = 1623, + [2273] = 1624, + [2274] = 1626, + [2275] = 1473, + [2276] = 1456, + [2277] = 1467, + [2278] = 1486, + [2279] = 1560, + [2280] = 1222, + [2281] = 1224, + [2282] = 1491, + [2283] = 1485, + [2284] = 1453, + [2285] = 1652, + [2286] = 1653, + [2287] = 1578, + [2288] = 2024, + [2289] = 1457, + [2290] = 2035, + [2291] = 1561, + [2292] = 1562, + [2293] = 1654, + [2294] = 1655, + [2295] = 1582, + [2296] = 1495, + [2297] = 1625, + [2298] = 1563, + [2299] = 1502, + [2300] = 1616, + [2301] = 1632, + [2302] = 1647, + [2303] = 1551, + [2304] = 1648, + [2305] = 1597, + [2306] = 1621, + [2307] = 1552, + [2308] = 1568, + [2309] = 1598, + [2310] = 1591, + [2311] = 1592, + [2312] = 1532, + [2313] = 1649, + [2314] = 1529, + [2315] = 1530, + [2316] = 1559, + [2317] = 1560, + [2318] = 1561, + [2319] = 1562, + [2320] = 1563, + [2321] = 1813, + [2322] = 1623, + [2323] = 1624, + [2324] = 1650, + [2325] = 1541, + [2326] = 1531, + [2327] = 1564, + [2328] = 1565, [2329] = 1566, - [2330] = 1571, - [2331] = 1461, - [2332] = 1634, - [2333] = 1635, - [2334] = 1572, - [2335] = 1636, - [2336] = 1656, - [2337] = 1657, - [2338] = 1581, - [2339] = 1555, - [2340] = 1582, - [2341] = 1628, - [2342] = 1567, - [2343] = 1539, - [2344] = 1693, - [2345] = 1659, - [2346] = 1660, - [2347] = 1661, - [2348] = 1694, - [2349] = 1695, - [2350] = 1672, - [2351] = 1540, - [2352] = 1662, - [2353] = 1541, - [2354] = 1570, - [2355] = 1583, - [2356] = 1542, - [2357] = 1584, - [2358] = 1665, - [2359] = 1762, - [2360] = 1528, - [2361] = 1556, - [2362] = 1543, - [2363] = 1526, - [2364] = 1670, - [2365] = 1668, - [2366] = 1761, - [2367] = 1617, - [2368] = 1585, - [2369] = 1586, - [2370] = 1587, - [2371] = 1218, - [2372] = 1588, - [2373] = 1546, - [2374] = 1589, - [2375] = 1590, - [2376] = 1529, - [2377] = 1591, - [2378] = 1222, - [2379] = 1592, - [2380] = 1512, - [2381] = 1513, - [2382] = 1667, - [2383] = 1705, - [2384] = 1716, - [2385] = 1685, - [2386] = 1709, - [2387] = 1713, - [2388] = 1714, - [2389] = 1717, - [2390] = 1718, - [2391] = 1727, - [2392] = 1684, - [2393] = 1697, - [2394] = 1701, - [2395] = 1704, - [2396] = 1514, - [2397] = 1593, - [2398] = 1594, - [2399] = 1545, - [2400] = 1760, - [2401] = 1761, - [2402] = 1762, - [2403] = 1462, - [2404] = 1515, - [2405] = 1516, - [2406] = 1517, - [2407] = 1463, - [2408] = 1547, - [2409] = 1633, - [2410] = 1224, + [2330] = 1810, + [2331] = 1651, + [2332] = 1633, + [2333] = 1634, + [2334] = 1652, + [2335] = 1653, + [2336] = 1583, + [2337] = 1447, + [2338] = 1500, + [2339] = 1501, + [2340] = 1654, + [2341] = 1502, + [2342] = 1498, + [2343] = 1499, + [2344] = 1503, + [2345] = 1655, + [2346] = 1504, + [2347] = 1505, + [2348] = 1448, + [2349] = 1449, + [2350] = 1643, + [2351] = 1582, + [2352] = 1646, + [2353] = 1495, + [2354] = 1496, + [2355] = 1506, + [2356] = 1507, + [2357] = 1622, + [2358] = 1448, + [2359] = 1508, + [2360] = 1509, + [2361] = 1510, + [2362] = 1511, + [2363] = 1222, + [2364] = 1512, + [2365] = 1224, + [2366] = 1644, + [2367] = 1641, + [2368] = 1640, + [2369] = 1821, + [2370] = 1822, + [2371] = 1823, + [2372] = 1824, + [2373] = 1825, + [2374] = 1826, + [2375] = 1827, + [2376] = 1828, + [2377] = 1829, + [2378] = 1830, + [2379] = 1832, + [2380] = 1833, + [2381] = 1658, + [2382] = 1513, + [2383] = 1514, + [2384] = 1515, + [2385] = 1516, + [2386] = 1813, + [2387] = 1814, + [2388] = 1815, + [2389] = 1517, + [2390] = 1629, + [2391] = 1596, + [2392] = 1550, + [2393] = 1617, + [2394] = 1618, + [2395] = 1645, + [2396] = 1534, + [2397] = 1448, + [2398] = 1449, + [2399] = 1533, + [2400] = 1585, + [2401] = 1225, + [2402] = 1541, + [2403] = 1448, + [2404] = 1447, + [2405] = 1625, + [2406] = 1449, + [2407] = 1226, + [2408] = 1528, + [2409] = 1626, + [2410] = 1494, [2411] = 1518, - [2412] = 1550, - [2413] = 1760, + [2412] = 1627, + [2413] = 1519, [2414] = 1520, [2415] = 1521, [2416] = 1522, - [2417] = 1552, - [2418] = 1548, - [2419] = 1698, - [2420] = 1553, - [2421] = 1621, - [2422] = 1225, - [2423] = 1226, - [2424] = 1519, - [2425] = 1557, - [2426] = 1669, - [2427] = 1633, - [2428] = 1533, - [2429] = 1549, - [2430] = 1663, - [2431] = 1462, - [2432] = 1463, - [2433] = 1534, - [2434] = 1535, - [2435] = 1551, - [2436] = 1536, - [2437] = 1578, - [2438] = 1573, - [2439] = 1574, - [2440] = 1531, - [2441] = 1667, - [2442] = 1658, - [2443] = 1463, - [2444] = 1532, - [2445] = 1560, - [2446] = 1576, - [2447] = 1461, - [2448] = 1527, - [2449] = 1668, - [2450] = 1561, - [2451] = 1711, - [2452] = 1562, - [2453] = 1595, - [2454] = 1671, - [2455] = 1530, - [2456] = 1597, - [2457] = 1512, - [2458] = 1513, - [2459] = 1563, - [2460] = 1575, - [2461] = 1598, - [2462] = 1519, - [2463] = 1612, - [2464] = 1599, - [2465] = 1600, - [2466] = 1558, - [2467] = 1544, - [2468] = 1621, - [2469] = 1462, - [2470] = 1463, - [2471] = 1601, - [2472] = 1564, - [2473] = 1602, - [2474] = 1603, - [2475] = 1565, - [2476] = 1604, - [2477] = 1605, - [2478] = 1533, - [2479] = 1606, - [2480] = 1559, - [2481] = 1510, - [2482] = 1607, - [2483] = 1577, - [2484] = 1608, - [2485] = 1525, - [2486] = 1523, - [2487] = 1609, - [2488] = 1524, - [2489] = 1511, - [2490] = 1669, - [2491] = 1610, - [2492] = 1223, - [2493] = 2493, - [2494] = 1550, - [2495] = 1552, - [2496] = 1553, - [2497] = 1557, - [2498] = 1558, - [2499] = 1559, - [2500] = 1566, - [2501] = 1567, - [2502] = 1570, - [2503] = 1575, - [2504] = 1577, - [2505] = 1578, - [2506] = 1482, - [2507] = 1485, - [2508] = 1507, - [2509] = 1461, - [2510] = 1579, - [2511] = 1580, - [2512] = 1581, - [2513] = 1582, - [2514] = 1583, - [2515] = 1584, - [2516] = 1585, - [2517] = 1586, - [2518] = 1587, - [2519] = 1588, - [2520] = 1589, - [2521] = 1590, - [2522] = 1591, - [2523] = 1592, - [2524] = 1593, - [2525] = 1594, - [2526] = 1487, - [2527] = 1595, - [2528] = 1671, - [2529] = 1462, - [2530] = 1463, - [2531] = 1693, - [2532] = 1694, - [2533] = 1695, - [2534] = 1672, - [2535] = 1597, - [2536] = 1598, - [2537] = 1599, - [2538] = 1600, - [2539] = 1601, - [2540] = 1602, - [2541] = 1603, - [2542] = 1604, - [2543] = 1605, - [2544] = 1606, - [2545] = 1607, - [2546] = 1608, - [2547] = 1609, - [2548] = 1610, - [2549] = 1491, - [2550] = 1493, - [2551] = 1494, - [2552] = 1486, - [2553] = 1478, - [2554] = 1490, - [2555] = 1492, - [2556] = 1467, - [2557] = 1468, - [2558] = 1469, - [2559] = 1482, - [2560] = 1485, - [2561] = 1507, - [2562] = 1487, - [2563] = 1491, - [2564] = 1493, - [2565] = 1494, - [2566] = 1461, - [2567] = 1218, - [2568] = 1222, - [2569] = 1462, - [2570] = 1463, - [2571] = 1223, - [2572] = 1224, - [2573] = 1510, - [2574] = 1511, - [2575] = 1225, - [2576] = 1226, - [2577] = 1531, - [2578] = 1532, - [2579] = 1544, - [2580] = 1545, - [2581] = 1550, - [2582] = 1552, - [2583] = 1553, - [2584] = 1557, - [2585] = 1558, - [2586] = 1559, - [2587] = 1566, - [2588] = 1567, - [2589] = 1570, - [2590] = 1575, - [2591] = 1577, - [2592] = 1578, - [2593] = 1579, - [2594] = 1580, - [2595] = 1581, - [2596] = 1582, - [2597] = 1583, - [2598] = 1584, - [2599] = 1585, - [2600] = 1586, - [2601] = 1587, - [2602] = 1588, - [2603] = 1589, - [2604] = 1590, - [2605] = 1591, - [2606] = 1592, - [2607] = 1593, - [2608] = 1594, - [2609] = 1595, - [2610] = 1671, - [2611] = 1597, - [2612] = 1598, - [2613] = 1599, - [2614] = 1600, - [2615] = 1601, - [2616] = 1602, - [2617] = 1603, - [2618] = 1604, - [2619] = 1605, - [2620] = 1606, - [2621] = 1607, - [2622] = 1608, - [2623] = 1609, - [2624] = 1610, - [2625] = 1462, - [2626] = 1463, - [2627] = 1726, - [2628] = 1475, - [2629] = 1476, - [2630] = 1499, - [2631] = 1480, - [2632] = 1519, - [2633] = 1510, - [2634] = 1511, - [2635] = 1486, - [2636] = 1478, - [2637] = 1490, - [2638] = 1531, - [2639] = 1532, - [2640] = 1544, - [2641] = 1545, - [2642] = 1550, - [2643] = 1552, - [2644] = 1553, - [2645] = 1557, - [2646] = 1558, - [2647] = 1559, - [2648] = 1566, - [2649] = 1567, - [2650] = 1570, - [2651] = 1575, - [2652] = 1577, - [2653] = 1578, - [2654] = 1579, - [2655] = 1580, - [2656] = 1581, - [2657] = 1582, - [2658] = 1583, - [2659] = 1584, - [2660] = 1585, - [2661] = 1586, - [2662] = 1587, - [2663] = 1588, - [2664] = 1589, - [2665] = 1590, - [2666] = 1591, - [2667] = 1592, - [2668] = 1593, - [2669] = 1594, - [2670] = 1595, - [2671] = 1671, - [2672] = 1597, - [2673] = 1598, - [2674] = 1599, - [2675] = 1600, - [2676] = 1601, - [2677] = 1602, - [2678] = 1603, - [2679] = 1604, - [2680] = 1605, - [2681] = 1606, - [2682] = 1607, - [2683] = 1608, - [2684] = 1609, - [2685] = 1610, - [2686] = 1698, - [2687] = 1512, - [2688] = 1513, - [2689] = 1533, - [2690] = 1534, - [2691] = 1510, - [2692] = 1511, - [2693] = 1554, - [2694] = 1555, - [2695] = 1531, - [2696] = 1532, - [2697] = 1544, - [2698] = 1545, - [2699] = 1550, - [2700] = 1552, - [2701] = 1553, - [2702] = 1557, - [2703] = 1558, - [2704] = 1559, - [2705] = 1566, - [2706] = 1567, - [2707] = 1570, - [2708] = 1575, - [2709] = 1577, - [2710] = 1578, - [2711] = 1579, - [2712] = 1580, - [2713] = 1581, - [2714] = 1582, - [2715] = 1583, - [2716] = 1584, - [2717] = 1585, - [2718] = 1586, - [2719] = 1587, - [2720] = 1588, - [2721] = 1589, - [2722] = 1590, - [2723] = 1591, - [2724] = 1592, - [2725] = 1593, - [2726] = 1594, - [2727] = 1595, - [2728] = 1671, - [2729] = 1597, - [2730] = 1598, - [2731] = 1599, - [2732] = 1600, - [2733] = 1601, - [2734] = 1602, - [2735] = 1603, - [2736] = 1604, - [2737] = 1605, - [2738] = 1606, - [2739] = 1607, - [2740] = 1608, - [2741] = 1609, - [2742] = 1610, - [2743] = 1472, - [2744] = 1621, - [2745] = 1705, - [2746] = 1716, - [2747] = 1685, - [2748] = 1709, - [2749] = 1713, - [2750] = 1714, - [2751] = 1717, - [2752] = 1718, - [2753] = 1727, - [2754] = 1684, - [2755] = 1697, - [2756] = 1701, - [2757] = 1704, - [2758] = 1726, - [2759] = 1499, - [2760] = 1667, - [2761] = 1545, - [2762] = 1463, - [2763] = 1218, - [2764] = 1222, - [2765] = 1668, - [2766] = 1698, - [2767] = 1223, - [2768] = 1224, - [2769] = 1693, - [2770] = 1694, - [2771] = 1695, - [2772] = 1672, - [2773] = 1225, - [2774] = 1226, - [2775] = 1501, - [2776] = 1669, - [2777] = 1633, - [2778] = 1512, - [2779] = 1513, - [2780] = 1533, - [2781] = 1534, - [2782] = 1554, - [2783] = 1555, - [2784] = 1480, - [2785] = 1218, - [2786] = 1222, - [2787] = 1512, - [2788] = 1513, - [2789] = 1223, - [2790] = 1224, - [2791] = 1533, - [2792] = 1534, - [2793] = 1225, - [2794] = 1226, - [2795] = 1554, - [2796] = 1555, - [2797] = 1512, - [2798] = 1513, - [2799] = 1533, - [2800] = 1534, - [2801] = 1554, - [2802] = 1555, - [2803] = 1512, - [2804] = 1513, - [2805] = 1533, - [2806] = 1534, - [2807] = 1554, - [2808] = 1555, - [2809] = 1218, - [2810] = 1222, - [2811] = 1223, - [2812] = 1224, - [2813] = 1225, - [2814] = 1226, - [2815] = 1218, - [2816] = 1222, - [2817] = 1218, - [2818] = 1222, - [2819] = 1223, - [2820] = 1224, - [2821] = 1225, - [2822] = 1226, - [2823] = 1218, - [2824] = 1222, - [2825] = 1223, - [2826] = 1224, - [2827] = 1225, - [2828] = 1226, - [2829] = 1519, - [2830] = 1486, - [2831] = 1478, - [2832] = 1490, - [2833] = 1492, - [2834] = 1223, - [2835] = 1224, - [2836] = 2836, - [2837] = 1510, - [2838] = 1511, - [2839] = 1467, - [2840] = 1621, - [2841] = 1468, - [2842] = 1469, - [2843] = 1519, - [2844] = 1225, - [2845] = 1226, - [2846] = 1531, - [2847] = 1532, - [2848] = 1544, - [2849] = 1545, - [2850] = 1550, - [2851] = 1552, - [2852] = 1553, - [2853] = 1557, - [2854] = 1558, - [2855] = 1559, - [2856] = 1566, - [2857] = 1567, - [2858] = 1570, - [2859] = 1575, - [2860] = 1577, - [2861] = 1578, - [2862] = 1482, - [2863] = 1485, - [2864] = 1507, - [2865] = 1579, - [2866] = 1580, - [2867] = 1581, - [2868] = 1582, - [2869] = 1583, - [2870] = 1584, - [2871] = 1585, - [2872] = 1586, - [2873] = 1587, - [2874] = 1588, - [2875] = 1589, - [2876] = 1590, - [2877] = 1591, - [2878] = 1592, - [2879] = 1593, - [2880] = 1594, - [2881] = 1487, - [2882] = 1595, - [2883] = 1671, - [2884] = 1597, - [2885] = 1598, - [2886] = 1599, - [2887] = 1600, - [2888] = 1601, - [2889] = 1602, - [2890] = 1603, - [2891] = 1604, - [2892] = 1605, - [2893] = 1606, - [2894] = 1607, - [2895] = 1608, - [2896] = 1609, - [2897] = 1610, - [2898] = 1491, - [2899] = 1493, - [2900] = 1494, - [2901] = 1711, - [2902] = 1519, - [2903] = 1486, - [2904] = 1478, - [2905] = 1490, - [2906] = 1475, - [2907] = 1476, - [2908] = 1667, - [2909] = 1633, - [2910] = 1668, - [2911] = 1475, - [2912] = 1476, - [2913] = 1667, - [2914] = 1711, - [2915] = 1760, - [2916] = 1761, - [2917] = 1668, - [2918] = 1669, - [2919] = 1633, - [2920] = 1705, - [2921] = 1716, - [2922] = 1685, - [2923] = 1709, - [2924] = 1713, - [2925] = 1714, - [2926] = 1717, - [2927] = 1718, - [2928] = 1727, - [2929] = 1684, - [2930] = 1697, - [2931] = 1701, - [2932] = 1704, - [2933] = 1762, - [2934] = 1501, - [2935] = 1669, - [2936] = 1472, - [2937] = 1480, - [2938] = 1621, - [2939] = 1501, - [2940] = 1621, - [2941] = 1633, - [2942] = 1531, - [2943] = 1218, - [2944] = 1222, - [2945] = 1711, - [2946] = 1544, - [2947] = 1492, - [2948] = 1223, - [2949] = 1224, - [2950] = 1705, - [2951] = 1716, - [2952] = 1693, - [2953] = 1685, - [2954] = 1709, - [2955] = 1713, - [2956] = 1694, - [2957] = 1695, - [2958] = 1672, - [2959] = 1714, - [2960] = 1717, - [2961] = 1718, - [2962] = 1727, - [2963] = 1684, - [2964] = 1697, - [2965] = 1701, - [2966] = 1704, - [2967] = 1510, - [2968] = 1511, - [2969] = 1467, - [2970] = 1468, - [2971] = 1532, - [2972] = 1469, - [2973] = 1225, - [2974] = 1667, - [2975] = 1668, - [2976] = 1669, - [2977] = 1226, - [2978] = 1462, - [2979] = 1526, - [2980] = 1548, - [2981] = 1549, - [2982] = 1563, - [2983] = 1705, - [2984] = 1716, - [2985] = 1693, - [2986] = 1685, - [2987] = 1709, - [2988] = 1713, - [2989] = 1694, - [2990] = 1695, - [2991] = 1672, - [2992] = 1714, - [2993] = 1717, - [2994] = 1718, - [2995] = 1727, - [2996] = 1684, - [2997] = 1697, - [2998] = 1701, - [2999] = 1704, - [3000] = 1551, - [3001] = 1225, - [3002] = 1226, - [3003] = 1556, - [3004] = 1560, - [3005] = 1561, - [3006] = 1562, - [3007] = 1563, - [3008] = 1564, - [3009] = 1565, - [3010] = 1467, - [3011] = 1468, - [3012] = 1568, - [3013] = 1569, - [3014] = 1501, - [3015] = 1571, - [3016] = 1572, - [3017] = 1573, - [3018] = 1574, - [3019] = 1469, - [3020] = 1576, - [3021] = 1523, - [3022] = 1524, - [3023] = 1669, - [3024] = 1531, - [3025] = 1532, - [3026] = 1544, - [3027] = 1512, - [3028] = 1513, - [3029] = 1545, - [3030] = 1486, - [3031] = 1478, - [3032] = 1550, - [3033] = 1490, - [3034] = 1492, - [3035] = 1552, - [3036] = 1553, - [3037] = 1533, - [3038] = 1534, - [3039] = 1557, - [3040] = 1558, - [3041] = 1705, - [3042] = 1716, - [3043] = 1685, - [3044] = 1709, - [3045] = 1713, - [3046] = 1714, - [3047] = 1717, - [3048] = 1718, - [3049] = 1727, - [3050] = 1684, - [3051] = 1697, - [3052] = 1669, - [3053] = 1701, - [3054] = 1704, - [3055] = 1467, - [3056] = 1468, - [3057] = 1469, - [3058] = 1559, - [3059] = 1566, - [3060] = 1554, - [3061] = 1555, - [3062] = 1567, - [3063] = 1570, - [3064] = 1575, - [3065] = 1577, - [3066] = 1578, - [3067] = 1633, - [3068] = 1482, - [3069] = 1663, - [3070] = 1628, - [3071] = 1693, - [3072] = 1694, - [3073] = 1695, - [3074] = 1672, - [3075] = 1485, - [3076] = 1658, - [3077] = 1519, - [3078] = 1480, - [3079] = 1486, - [3080] = 1478, - [3081] = 1507, - [3082] = 1579, - [3083] = 1580, - [3084] = 1490, - [3085] = 1581, - [3086] = 1582, - [3087] = 1583, - [3088] = 1584, - [3089] = 1585, - [3090] = 1482, - [3091] = 1485, - [3092] = 1507, - [3093] = 1586, - [3094] = 1587, - [3095] = 1472, - [3096] = 1621, - [3097] = 1588, - [3098] = 1523, - [3099] = 1524, - [3100] = 1589, - [3101] = 1590, - [3102] = 1591, - [3103] = 1592, - [3104] = 1593, - [3105] = 1594, - [3106] = 1487, - [3107] = 1595, - [3108] = 1499, - [3109] = 1671, - [3110] = 1512, - [3111] = 1513, - [3112] = 1533, - [3113] = 1534, - [3114] = 1554, - [3115] = 1555, - [3116] = 1597, - [3117] = 1598, - [3118] = 1599, - [3119] = 1600, - [3120] = 1487, - [3121] = 1601, - [3122] = 1602, - [3123] = 1603, - [3124] = 1604, - [3125] = 1605, - [3126] = 1606, - [3127] = 1607, - [3128] = 1512, - [3129] = 1513, - [3130] = 1533, - [3131] = 1534, - [3132] = 1554, - [3133] = 1555, - [3134] = 1608, - [3135] = 1609, - [3136] = 1610, - [3137] = 1491, - [3138] = 1634, - [3139] = 1635, - [3140] = 1493, - [3141] = 1494, - [3142] = 1218, - [3143] = 1222, - [3144] = 1564, - [3145] = 1565, - [3146] = 1223, - [3147] = 1224, - [3148] = 1634, - [3149] = 1491, - [3150] = 1225, - [3151] = 1226, - [3152] = 1493, - [3153] = 1494, - [3154] = 1636, - [3155] = 1656, - [3156] = 1657, - [3157] = 1659, - [3158] = 1660, - [3159] = 1661, - [3160] = 1662, - [3161] = 1665, - [3162] = 1519, - [3163] = 1635, - [3164] = 1670, - [3165] = 1486, - [3166] = 1478, - [3167] = 1636, - [3168] = 1490, - [3169] = 1218, - [3170] = 1222, - [3171] = 1223, - [3172] = 1224, - [3173] = 1225, - [3174] = 1226, - [3175] = 1667, - [3176] = 1218, - [3177] = 1222, - [3178] = 1512, - [3179] = 1513, - [3180] = 1514, - [3181] = 1515, - [3182] = 1516, - [3183] = 1517, - [3184] = 1711, - [3185] = 1518, - [3186] = 1711, - [3187] = 1760, - [3188] = 1698, - [3189] = 1761, - [3190] = 1223, - [3191] = 1224, - [3192] = 1510, - [3193] = 1511, - [3194] = 1693, - [3195] = 1694, - [3196] = 1695, - [3197] = 1672, - [3198] = 1760, - [3199] = 1520, - [3200] = 1521, - [3201] = 1522, - [3202] = 1762, - [3203] = 1472, - [3204] = 1525, - [3205] = 1621, - [3206] = 1225, - [3207] = 1526, - [3208] = 1226, - [3209] = 1527, - [3210] = 1528, - [3211] = 1761, - [3212] = 1859, - [3213] = 1529, - [3214] = 1530, - [3215] = 1668, - [3216] = 1531, - [3217] = 1532, - [3218] = 1861, - [3219] = 1533, - [3220] = 1544, - [3221] = 1534, - [3222] = 1535, - [3223] = 1536, - [3224] = 1545, - [3225] = 1550, - [3226] = 1537, - [3227] = 1538, - [3228] = 1539, - [3229] = 1540, - [3230] = 1705, - [3231] = 1716, - [3232] = 1541, - [3233] = 1685, - [3234] = 1709, - [3235] = 1713, - [3236] = 1542, - [3237] = 1714, - [3238] = 1717, - [3239] = 1718, - [3240] = 1727, - [3241] = 1684, - [3242] = 1697, - [3243] = 1701, - [3244] = 1704, - [3245] = 1762, - [3246] = 1543, - [3247] = 1628, - [3248] = 1552, - [3249] = 1553, - [3250] = 1557, - [3251] = 1546, - [3252] = 1547, - [3253] = 1501, - [3254] = 1548, - [3255] = 1549, - [3256] = 1558, - [3257] = 1559, - [3258] = 1551, - [3259] = 1726, - [3260] = 1669, - [3261] = 1566, - [3262] = 1567, - [3263] = 1554, - [3264] = 1555, - [3265] = 1726, - [3266] = 1633, - [3267] = 1570, - [3268] = 1575, - [3269] = 1577, - [3270] = 1578, - [3271] = 1656, - [3272] = 1579, - [3273] = 1556, - [3274] = 1580, - [3275] = 1581, - [3276] = 1582, - [3277] = 1583, - [3278] = 1584, - [3279] = 1585, - [3280] = 1586, - [3281] = 1587, - [3282] = 1588, - [3283] = 1698, - [3284] = 1589, - [3285] = 1560, - [3286] = 1711, - [3287] = 1561, - [3288] = 1562, - [3289] = 1563, - [3290] = 1564, - [3291] = 1565, - [3292] = 1590, - [3293] = 1591, - [3294] = 1568, - [3295] = 1547, - [3296] = 1569, - [3297] = 1592, - [3298] = 1571, - [3299] = 1572, - [3300] = 1593, - [3301] = 1594, - [3302] = 1595, - [3303] = 1671, - [3304] = 1597, - [3305] = 1598, - [3306] = 1599, - [3307] = 1600, - [3308] = 1601, - [3309] = 1602, - [3310] = 1603, - [3311] = 1604, - [3312] = 1605, - [3313] = 1606, - [3314] = 1607, - [3315] = 1608, - [3316] = 1573, - [3317] = 1574, - [3318] = 1609, - [3319] = 1576, - [3320] = 1610, - [3321] = 1512, - [3322] = 1513, - [3323] = 1499, - [3324] = 1533, - [3325] = 1534, - [3326] = 1554, - [3327] = 1555, - [3328] = 1461, - [3329] = 3329, - [3330] = 1617, - [3331] = 1657, - [3332] = 1556, - [3333] = 1667, - [3334] = 1218, - [3335] = 1222, - [3336] = 1560, - [3337] = 1663, - [3338] = 1461, - [3339] = 1573, - [3340] = 3340, - [3341] = 1475, - [3342] = 1476, - [3343] = 1574, - [3344] = 1612, - [3345] = 1223, - [3346] = 1224, - [3347] = 1612, - [3348] = 1859, - [3349] = 1617, - [3350] = 1659, - [3351] = 1660, - [3352] = 1698, - [3353] = 1705, - [3354] = 1658, - [3355] = 1693, - [3356] = 1694, - [3357] = 1695, - [3358] = 1672, - [3359] = 1716, - [3360] = 1661, - [3361] = 1510, - [3362] = 1511, - [3363] = 1685, - [3364] = 1709, - [3365] = 1713, - [3366] = 1662, - [3367] = 1714, - [3368] = 1717, - [3369] = 1718, - [3370] = 1523, - [3371] = 1524, - [3372] = 1727, - [3373] = 1684, - [3374] = 1697, - [3375] = 1701, - [3376] = 1531, - [3377] = 1704, - [3378] = 1225, - [3379] = 1226, - [3380] = 1532, - [3381] = 1568, - [3382] = 1576, - [3383] = 1665, - [3384] = 1667, - [3385] = 1658, - [3386] = 1569, - [3387] = 1670, - [3388] = 1617, - [3389] = 1486, - [3390] = 1544, - [3391] = 1545, - [3392] = 1550, - [3393] = 1552, - [3394] = 1478, - [3395] = 1553, - [3396] = 1557, - [3397] = 1558, - [3398] = 1559, - [3399] = 1566, - [3400] = 1567, - [3401] = 1561, - [3402] = 1570, - [3403] = 1575, - [3404] = 1577, - [3405] = 1578, - [3406] = 1726, - [3407] = 1490, - [3408] = 1579, - [3409] = 1580, - [3410] = 1581, - [3411] = 1582, - [3412] = 1583, - [3413] = 1584, - [3414] = 1585, - [3415] = 1586, - [3416] = 1218, - [3417] = 1587, - [3418] = 1588, - [3419] = 1589, - [3420] = 1590, - [3421] = 1591, - [3422] = 1592, - [3423] = 1593, - [3424] = 1594, - [3425] = 1222, - [3426] = 1519, - [3427] = 1621, - [3428] = 1595, - [3429] = 1633, - [3430] = 1671, - [3431] = 1597, - [3432] = 1598, - [3433] = 1599, - [3434] = 1600, - [3435] = 1601, - [3436] = 1602, - [3437] = 1603, - [3438] = 1604, - [3439] = 1605, - [3440] = 1606, - [3441] = 1607, - [3442] = 1608, - [3443] = 1609, - [3444] = 1610, - [3445] = 1514, - [3446] = 1515, - [3447] = 1634, - [3448] = 1635, - [3449] = 1636, - [3450] = 1656, - [3451] = 1657, - [3452] = 1659, - [3453] = 1660, - [3454] = 1661, - [3455] = 1662, - [3456] = 1861, - [3457] = 1665, - [3458] = 1516, - [3459] = 1670, - [3460] = 1517, - [3461] = 1711, - [3462] = 1475, - [3463] = 1476, - [3464] = 1667, - [3465] = 1518, - [3466] = 1512, - [3467] = 1513, - [3468] = 1514, - [3469] = 1515, - [3470] = 1516, - [3471] = 1517, - [3472] = 1760, - [3473] = 1518, - [3474] = 1760, - [3475] = 1761, - [3476] = 1762, - [3477] = 1760, - [3478] = 1520, - [3479] = 1521, - [3480] = 1522, - [3481] = 1525, - [3482] = 1520, - [3483] = 1521, - [3484] = 1527, - [3485] = 1668, - [3486] = 1528, - [3487] = 1761, - [3488] = 1529, - [3489] = 1530, - [3490] = 1522, - [3491] = 1492, - [3492] = 1533, - [3493] = 1668, - [3494] = 1698, - [3495] = 1525, - [3496] = 1534, - [3497] = 1510, - [3498] = 1511, - [3499] = 1526, - [3500] = 1571, - [3501] = 1527, - [3502] = 1535, - [3503] = 1528, - [3504] = 1761, - [3505] = 1529, - [3506] = 1530, - [3507] = 1223, - [3508] = 1224, - [3509] = 1535, - [3510] = 1536, - [3511] = 1537, - [3512] = 1536, - [3513] = 1538, - [3514] = 1539, - [3515] = 1537, - [3516] = 1538, - [3517] = 1539, - [3518] = 1540, - [3519] = 1541, - [3520] = 1669, - [3521] = 1542, - [3522] = 1762, - [3523] = 1543, - [3524] = 1667, - [3525] = 1668, - [3526] = 1669, - [3527] = 1540, - [3528] = 1541, - [3529] = 1546, - [3530] = 1547, - [3531] = 1548, - [3532] = 1542, - [3533] = 1549, - [3534] = 1762, - [3535] = 1551, - [3536] = 1543, - [3537] = 1668, - [3538] = 1572, - [3539] = 1562, - [3540] = 1546, - [3541] = 1554, - [3542] = 1555, - [3543] = 1726, - [3544] = 1480, - [3545] = 1480, - [3546] = 1761, - [3547] = 1529, - [3548] = 1530, - [3549] = 1668, - [3550] = 1476, - [3551] = 1660, - [3552] = 1556, - [3553] = 1661, - [3554] = 1535, - [3555] = 1536, - [3556] = 1658, - [3557] = 1218, - [3558] = 1222, - [3559] = 1537, - [3560] = 1538, - [3561] = 1539, - [3562] = 1540, - [3563] = 1512, - [3564] = 1525, - [3565] = 1541, - [3566] = 1513, - [3567] = 1512, - [3568] = 1513, - [3569] = 1542, - [3570] = 1514, - [3571] = 1515, - [3572] = 1526, - [3573] = 1516, - [3574] = 1560, - [3575] = 1561, - [3576] = 1562, - [3577] = 1563, - [3578] = 1762, - [3579] = 1543, - [3580] = 1564, - [3581] = 1565, - [3582] = 1546, - [3583] = 1487, - [3584] = 1547, - [3585] = 1548, - [3586] = 1549, - [3587] = 1527, - [3588] = 1551, - [3589] = 1669, - [3590] = 1528, - [3591] = 1557, - [3592] = 1558, - [3593] = 1568, - [3594] = 1761, - [3595] = 1569, - [3596] = 1529, - [3597] = 1571, - [3598] = 1698, - [3599] = 1572, - [3600] = 1530, - [3601] = 1556, - [3602] = 1517, - [3603] = 1711, - [3604] = 1223, - [3605] = 1224, - [3606] = 1698, - [3607] = 1533, - [3608] = 1534, - [3609] = 1533, - [3610] = 1534, - [3611] = 1535, - [3612] = 1560, - [3613] = 1492, - [3614] = 1561, - [3615] = 1562, - [3616] = 1223, - [3617] = 1563, - [3618] = 1564, - [3619] = 1224, - [3620] = 1510, - [3621] = 1511, - [3622] = 1565, - [3623] = 1536, - [3624] = 1510, - [3625] = 1568, - [3626] = 1569, - [3627] = 1511, - [3628] = 1571, - [3629] = 1572, - [3630] = 1518, - [3631] = 1760, - [3632] = 1537, - [3633] = 1538, - [3634] = 1693, - [3635] = 1539, - [3636] = 1694, - [3637] = 1695, - [3638] = 1540, - [3639] = 1672, - [3640] = 1705, - [3641] = 1573, - [3642] = 1523, - [3643] = 1524, - [3644] = 1574, - [3645] = 1716, - [3646] = 1576, - [3647] = 1520, - [3648] = 1573, - [3649] = 1574, - [3650] = 1541, - [3651] = 1576, - [3652] = 1685, - [3653] = 1709, - [3654] = 1713, - [3655] = 1521, - [3656] = 1522, - [3657] = 1554, - [3658] = 1555, - [3659] = 1531, - [3660] = 1532, - [3661] = 1544, - [3662] = 1545, - [3663] = 1550, - [3664] = 1552, - [3665] = 1542, - [3666] = 1705, - [3667] = 1716, - [3668] = 1685, - [3669] = 1709, - [3670] = 1713, - [3671] = 1714, - [3672] = 1717, - [3673] = 1718, - [3674] = 1727, - [3675] = 1684, - [3676] = 1697, - [3677] = 1701, - [3678] = 1704, - [3679] = 1553, - [3680] = 1557, - [3681] = 1558, - [3682] = 1693, - [3683] = 1694, - [3684] = 1695, - [3685] = 1672, - [3686] = 1559, - [3687] = 1566, - [3688] = 1570, - [3689] = 1575, - [3690] = 1577, - [3691] = 1578, - [3692] = 1567, - [3693] = 1612, - [3694] = 1570, - [3695] = 1595, - [3696] = 1575, - [3697] = 1577, - [3698] = 1578, - [3699] = 1662, - [3700] = 1714, - [3701] = 1717, - [3702] = 1512, - [3703] = 1513, - [3704] = 1718, - [3705] = 1727, - [3706] = 1684, - [3707] = 1697, - [3708] = 1701, - [3709] = 1704, - [3710] = 1533, - [3711] = 1534, - [3712] = 1762, - [3713] = 1579, - [3714] = 1467, - [3715] = 1543, - [3716] = 1705, - [3717] = 1468, - [3718] = 1469, - [3719] = 1523, - [3720] = 1524, - [3721] = 1716, - [3722] = 1671, - [3723] = 1225, - [3724] = 1226, - [3725] = 1656, - [3726] = 1685, - [3727] = 1709, - [3728] = 1713, - [3729] = 1657, - [3730] = 1579, - [3731] = 1580, - [3732] = 1714, - [3733] = 1717, - [3734] = 1718, - [3735] = 1727, - [3736] = 1684, - [3737] = 1697, - [3738] = 1701, - [3739] = 1704, - [3740] = 1531, - [3741] = 1532, - [3742] = 1544, - [3743] = 1597, - [3744] = 1598, - [3745] = 1599, - [3746] = 1600, - [3747] = 1545, - [3748] = 1601, - [3749] = 1602, - [3750] = 1603, - [3751] = 1604, - [3752] = 1605, - [3753] = 1606, - [3754] = 1607, - [3755] = 1608, - [3756] = 1609, - [3757] = 1610, - [3758] = 1550, - [3759] = 1491, - [3760] = 1552, - [3761] = 1553, - [3762] = 1667, - [3763] = 1557, - [3764] = 1558, - [3765] = 1559, - [3766] = 1493, - [3767] = 1494, - [3768] = 1566, - [3769] = 1567, - [3770] = 1492, - [3771] = 1218, - [3772] = 1570, - [3773] = 1575, - [3774] = 1222, - [3775] = 1577, - [3776] = 1578, - [3777] = 1668, - [3778] = 1482, - [3779] = 1581, - [3780] = 1582, - [3781] = 1510, - [3782] = 1511, - [3783] = 1485, - [3784] = 1507, - [3785] = 1579, - [3786] = 1223, - [3787] = 1580, - [3788] = 1711, - [3789] = 1760, - [3790] = 1224, - [3791] = 1669, - [3792] = 1726, - [3793] = 1581, - [3794] = 1531, - [3795] = 1532, - [3796] = 1544, - [3797] = 1545, - [3798] = 1550, - [3799] = 1552, - [3800] = 1553, - [3801] = 1557, - [3802] = 1558, - [3803] = 1559, - [3804] = 1566, - [3805] = 1567, - [3806] = 1570, - [3807] = 1575, - [3808] = 1577, - [3809] = 1578, - [3810] = 1579, - [3811] = 1580, - [3812] = 1581, - [3813] = 1582, - [3814] = 1583, - [3815] = 1584, - [3816] = 1585, - [3817] = 1586, - [3818] = 1587, - [3819] = 1588, - [3820] = 1589, - [3821] = 1590, - [3822] = 1591, - [3823] = 1592, - [3824] = 1593, - [3825] = 1594, - [3826] = 1595, - [3827] = 1671, - [3828] = 1597, - [3829] = 1598, - [3830] = 1599, - [3831] = 1600, - [3832] = 1601, - [3833] = 1602, - [3834] = 1603, - [3835] = 1604, - [3836] = 1605, - [3837] = 1606, - [3838] = 1607, - [3839] = 1608, - [3840] = 1609, - [3841] = 1610, - [3842] = 1510, - [3843] = 1761, - [3844] = 1582, - [3845] = 1698, - [3846] = 1511, - [3847] = 1583, - [3848] = 1584, - [3849] = 1585, - [3850] = 1586, - [3851] = 1587, - [3852] = 1705, - [3853] = 1528, - [3854] = 1693, - [3855] = 1685, - [3856] = 1709, - [3857] = 1588, - [3858] = 1713, - [3859] = 1589, - [3860] = 1694, - [3861] = 1695, - [3862] = 1672, - [3863] = 1714, - [3864] = 1717, - [3865] = 1718, - [3866] = 1727, - [3867] = 1684, - [3868] = 1697, - [3869] = 1701, - [3870] = 1704, - [3871] = 1762, - [3872] = 1501, - [3873] = 1590, - [3874] = 1591, - [3875] = 1698, - [3876] = 1592, - [3877] = 1593, - [3878] = 1594, - [3879] = 3879, - [3880] = 1487, - [3881] = 1583, - [3882] = 1595, - [3883] = 1512, - [3884] = 1513, - [3885] = 1671, - [3886] = 1597, - [3887] = 1598, - [3888] = 1599, - [3889] = 1600, - [3890] = 1601, - [3891] = 1602, - [3892] = 1603, - [3893] = 1604, - [3894] = 1605, - [3895] = 1606, - [3896] = 1607, - [3897] = 1608, - [3898] = 1609, - [3899] = 1610, - [3900] = 1491, - [3901] = 1493, - [3902] = 1494, - [3903] = 1533, - [3904] = 1534, - [3905] = 1580, - [3906] = 1584, - [3907] = 1581, - [3908] = 1585, - [3909] = 1554, - [3910] = 1555, - [3911] = 1582, - [3912] = 1554, - [3913] = 1555, - [3914] = 1467, - [3915] = 1480, - [3916] = 1461, - [3917] = 1583, - [3918] = 1584, - [3919] = 1586, - [3920] = 1587, - [3921] = 1585, - [3922] = 1586, - [3923] = 1587, - [3924] = 1588, - [3925] = 1589, - [3926] = 1588, - [3927] = 1612, - [3928] = 1589, - [3929] = 1590, - [3930] = 1591, - [3931] = 1592, - [3932] = 1593, - [3933] = 1594, - [3934] = 1546, - [3935] = 1468, - [3936] = 1547, - [3937] = 1665, - [3938] = 1548, - [3939] = 1595, - [3940] = 1671, - [3941] = 1597, - [3942] = 1598, - [3943] = 1599, - [3944] = 1600, - [3945] = 1601, - [3946] = 1590, - [3947] = 1591, - [3948] = 1602, - [3949] = 1603, - [3950] = 1604, - [3951] = 1605, - [3952] = 1606, - [3953] = 1607, - [3954] = 1726, - [3955] = 1608, - [3956] = 1726, - [3957] = 1698, - [3958] = 1609, - [3959] = 1469, - [3960] = 1610, - [3961] = 1549, - [3962] = 1634, + [2417] = 1523, + [2418] = 1619, + [2419] = 1632, + [2420] = 1615, + [2421] = 1633, + [2422] = 1524, + [2423] = 1525, + [2424] = 1526, + [2425] = 1634, + [2426] = 1527, + [2427] = 1571, + [2428] = 1586, + [2429] = 1620, + [2430] = 1587, + [2431] = 1574, + [2432] = 1628, + [2433] = 1497, + [2434] = 1575, + [2435] = 1576, + [2436] = 1814, + [2437] = 1577, + [2438] = 1578, + [2439] = 1804, + [2440] = 1807, + [2441] = 1449, + [2442] = 1553, + [2443] = 1815, + [2444] = 1542, + [2445] = 1221, + [2446] = 1555, + [2447] = 1678, + [2448] = 1593, + [2449] = 1543, + [2450] = 1544, + [2451] = 1545, + [2452] = 1546, + [2453] = 1641, + [2454] = 1447, + [2455] = 1594, + [2456] = 1588, + [2457] = 1223, + [2458] = 1529, + [2459] = 1530, + [2460] = 1629, + [2461] = 1547, + [2462] = 1677, + [2463] = 1589, + [2464] = 1531, + [2465] = 1532, + [2466] = 1573, + [2467] = 1590, + [2468] = 1533, + [2469] = 1534, + [2470] = 1584, + [2471] = 1548, + [2472] = 1595, + [2473] = 1549, + [2474] = 1803, + [2475] = 2475, + [2476] = 1466, + [2477] = 1225, + [2478] = 1226, + [2479] = 1643, + [2480] = 1644, + [2481] = 1645, + [2482] = 1646, + [2483] = 1647, + [2484] = 1648, + [2485] = 1649, + [2486] = 1650, + [2487] = 1651, + [2488] = 1652, + [2489] = 1653, + [2490] = 1654, + [2491] = 1655, + [2492] = 1582, + [2493] = 1495, + [2494] = 1496, + [2495] = 1485, + [2496] = 1447, + [2497] = 1484, + [2498] = 1455, + [2499] = 1497, + [2500] = 1498, + [2501] = 1499, + [2502] = 1500, + [2503] = 1501, + [2504] = 1502, + [2505] = 1503, + [2506] = 1504, + [2507] = 1505, + [2508] = 1506, + [2509] = 1507, + [2510] = 1508, + [2511] = 1509, + [2512] = 1510, + [2513] = 1448, + [2514] = 1449, + [2515] = 1803, + [2516] = 1804, + [2517] = 1807, + [2518] = 1810, + [2519] = 1511, + [2520] = 1512, + [2521] = 1482, + [2522] = 1513, + [2523] = 1514, + [2524] = 1515, + [2525] = 1516, + [2526] = 1517, + [2527] = 1494, + [2528] = 1518, + [2529] = 1519, + [2530] = 1520, + [2531] = 1521, + [2532] = 1522, + [2533] = 1523, + [2534] = 1524, + [2535] = 1525, + [2536] = 1526, + [2537] = 1527, + [2538] = 1481, + [2539] = 1465, + [2540] = 1492, + [2541] = 1473, + [2542] = 1456, + [2543] = 1467, + [2544] = 1486, + [2545] = 1453, + [2546] = 1457, + [2547] = 1466, + [2548] = 1485, + [2549] = 1484, + [2550] = 1455, + [2551] = 1482, + [2552] = 1481, + [2553] = 1465, + [2554] = 1492, + [2555] = 1447, + [2556] = 1221, + [2557] = 1223, + [2558] = 1448, + [2559] = 1449, + [2560] = 1222, + [2561] = 1224, + [2562] = 1640, + [2563] = 1225, + [2564] = 1226, + [2565] = 1643, + [2566] = 1644, + [2567] = 1645, + [2568] = 1646, + [2569] = 1647, + [2570] = 1648, + [2571] = 1649, + [2572] = 1650, + [2573] = 1651, + [2574] = 1652, + [2575] = 1653, + [2576] = 1654, + [2577] = 1655, + [2578] = 1582, + [2579] = 1495, + [2580] = 1496, + [2581] = 1497, + [2582] = 1498, + [2583] = 1499, + [2584] = 1500, + [2585] = 1501, + [2586] = 1502, + [2587] = 1503, + [2588] = 1504, + [2589] = 1505, + [2590] = 1506, + [2591] = 1507, + [2592] = 1508, + [2593] = 1509, + [2594] = 1510, + [2595] = 1511, + [2596] = 1512, + [2597] = 1513, + [2598] = 1514, + [2599] = 1515, + [2600] = 1516, + [2601] = 1517, + [2602] = 1494, + [2603] = 1518, + [2604] = 1519, + [2605] = 1520, + [2606] = 1521, + [2607] = 1522, + [2608] = 1523, + [2609] = 1524, + [2610] = 1525, + [2611] = 1526, + [2612] = 1527, + [2613] = 1448, + [2614] = 1449, + [2615] = 1675, + [2616] = 1489, + [2617] = 1458, + [2618] = 1491, + [2619] = 1640, + [2620] = 1475, + [2621] = 1643, + [2622] = 1644, + [2623] = 1645, + [2624] = 1646, + [2625] = 1647, + [2626] = 1648, + [2627] = 1649, + [2628] = 1650, + [2629] = 1651, + [2630] = 1652, + [2631] = 1653, + [2632] = 1654, + [2633] = 1655, + [2634] = 1582, + [2635] = 1495, + [2636] = 1496, + [2637] = 1497, + [2638] = 1498, + [2639] = 1499, + [2640] = 1500, + [2641] = 1501, + [2642] = 1502, + [2643] = 1503, + [2644] = 1504, + [2645] = 1505, + [2646] = 1506, + [2647] = 1507, + [2648] = 1508, + [2649] = 1509, + [2650] = 1510, + [2651] = 1511, + [2652] = 1512, + [2653] = 1513, + [2654] = 1514, + [2655] = 1515, + [2656] = 1516, + [2657] = 1517, + [2658] = 1494, + [2659] = 1518, + [2660] = 1519, + [2661] = 1520, + [2662] = 1521, + [2663] = 1522, + [2664] = 1523, + [2665] = 1524, + [2666] = 1525, + [2667] = 1526, + [2668] = 1527, + [2669] = 1541, + [2670] = 1473, + [2671] = 1456, + [2672] = 1467, + [2673] = 1529, + [2674] = 1530, + [2675] = 1677, + [2676] = 1531, + [2677] = 1532, + [2678] = 1640, + [2679] = 1533, + [2680] = 1534, + [2681] = 1643, + [2682] = 1644, + [2683] = 1645, + [2684] = 1646, + [2685] = 1647, + [2686] = 1648, + [2687] = 1649, + [2688] = 1650, + [2689] = 1651, + [2690] = 1652, + [2691] = 1653, + [2692] = 1654, + [2693] = 1655, + [2694] = 1582, + [2695] = 1495, + [2696] = 1496, + [2697] = 1497, + [2698] = 1498, + [2699] = 1499, + [2700] = 1500, + [2701] = 1501, + [2702] = 1502, + [2703] = 1503, + [2704] = 1504, + [2705] = 1505, + [2706] = 1506, + [2707] = 1507, + [2708] = 1508, + [2709] = 1509, + [2710] = 1510, + [2711] = 1511, + [2712] = 1512, + [2713] = 1513, + [2714] = 1514, + [2715] = 1515, + [2716] = 1516, + [2717] = 1517, + [2718] = 1494, + [2719] = 1518, + [2720] = 1519, + [2721] = 1520, + [2722] = 1521, + [2723] = 1522, + [2724] = 1523, + [2725] = 1524, + [2726] = 1525, + [2727] = 1526, + [2728] = 1527, + [2729] = 1462, + [2730] = 1629, + [2731] = 1821, + [2732] = 1822, + [2733] = 1823, + [2734] = 1824, + [2735] = 1825, + [2736] = 1826, + [2737] = 1827, + [2738] = 1828, + [2739] = 1829, + [2740] = 1830, + [2741] = 1832, + [2742] = 1833, + [2743] = 1457, + [2744] = 1675, + [2745] = 1491, + [2746] = 1641, + [2747] = 1221, + [2748] = 1223, + [2749] = 1448, + [2750] = 1449, + [2751] = 1222, + [2752] = 1224, + [2753] = 1803, + [2754] = 1632, + [2755] = 1804, + [2756] = 1807, + [2757] = 1810, + [2758] = 1677, + [2759] = 1225, + [2760] = 1226, + [2761] = 1452, + [2762] = 1633, + [2763] = 1529, + [2764] = 1530, + [2765] = 1634, + [2766] = 1531, + [2767] = 1532, + [2768] = 1533, + [2769] = 1534, + [2770] = 1475, + [2771] = 1221, + [2772] = 1223, + [2773] = 1529, + [2774] = 1530, + [2775] = 1222, + [2776] = 1224, + [2777] = 1531, + [2778] = 1532, + [2779] = 1225, + [2780] = 1226, + [2781] = 1533, + [2782] = 1534, + [2783] = 1529, + [2784] = 1530, + [2785] = 1531, + [2786] = 1532, + [2787] = 1533, + [2788] = 1534, + [2789] = 1529, + [2790] = 1530, + [2791] = 1531, + [2792] = 1532, + [2793] = 1533, + [2794] = 1534, + [2795] = 1221, + [2796] = 1223, + [2797] = 1222, + [2798] = 1224, + [2799] = 1225, + [2800] = 1226, + [2801] = 1221, + [2802] = 1223, + [2803] = 1222, + [2804] = 1224, + [2805] = 1225, + [2806] = 1226, + [2807] = 1221, + [2808] = 1223, + [2809] = 1222, + [2810] = 1224, + [2811] = 1225, + [2812] = 1226, + [2813] = 1221, + [2814] = 1223, + [2815] = 1541, + [2816] = 1473, + [2817] = 1456, + [2818] = 1467, + [2819] = 1486, + [2820] = 2820, + [2821] = 1222, + [2822] = 1224, + [2823] = 1640, + [2824] = 1541, + [2825] = 1453, + [2826] = 1629, + [2827] = 1457, + [2828] = 1466, + [2829] = 1225, + [2830] = 1226, + [2831] = 1643, + [2832] = 1644, + [2833] = 1645, + [2834] = 1646, + [2835] = 1647, + [2836] = 1648, + [2837] = 1649, + [2838] = 1650, + [2839] = 1651, + [2840] = 1652, + [2841] = 1653, + [2842] = 1654, + [2843] = 1655, + [2844] = 1582, + [2845] = 1495, + [2846] = 1496, + [2847] = 1485, + [2848] = 1484, + [2849] = 1455, + [2850] = 1497, + [2851] = 1498, + [2852] = 1499, + [2853] = 1500, + [2854] = 1501, + [2855] = 1502, + [2856] = 1503, + [2857] = 1504, + [2858] = 1505, + [2859] = 1506, + [2860] = 1507, + [2861] = 1508, + [2862] = 1509, + [2863] = 1510, + [2864] = 1511, + [2865] = 1512, + [2866] = 1482, + [2867] = 1513, + [2868] = 1514, + [2869] = 1515, + [2870] = 1516, + [2871] = 1517, + [2872] = 1494, + [2873] = 1518, + [2874] = 1519, + [2875] = 1520, + [2876] = 1521, + [2877] = 1522, + [2878] = 1523, + [2879] = 1524, + [2880] = 1678, + [2881] = 1525, + [2882] = 1526, + [2883] = 1527, + [2884] = 1481, + [2885] = 1465, + [2886] = 1492, + [2887] = 1541, + [2888] = 1473, + [2889] = 1456, + [2890] = 1467, + [2891] = 1489, + [2892] = 1458, + [2893] = 1641, + [2894] = 1634, + [2895] = 1632, + [2896] = 1489, + [2897] = 1458, + [2898] = 1641, + [2899] = 1678, + [2900] = 1813, + [2901] = 1814, + [2902] = 1632, + [2903] = 1633, + [2904] = 1821, + [2905] = 1822, + [2906] = 1823, + [2907] = 1824, + [2908] = 1825, + [2909] = 1826, + [2910] = 1827, + [2911] = 1828, + [2912] = 1829, + [2913] = 1830, + [2914] = 1832, + [2915] = 1833, + [2916] = 1658, + [2917] = 1815, + [2918] = 1634, + [2919] = 1452, + [2920] = 1633, + [2921] = 1462, + [2922] = 1475, + [2923] = 1629, + [2924] = 1629, + [2925] = 1452, + [2926] = 1634, + [2927] = 1632, + [2928] = 1633, + [2929] = 1221, + [2930] = 1223, + [2931] = 1678, + [2932] = 1486, + [2933] = 1821, + [2934] = 1822, + [2935] = 1803, + [2936] = 1823, + [2937] = 1824, + [2938] = 1825, + [2939] = 1804, + [2940] = 1807, + [2941] = 1810, + [2942] = 1826, + [2943] = 1827, + [2944] = 1828, + [2945] = 1829, + [2946] = 1830, + [2947] = 1832, + [2948] = 1833, + [2949] = 1658, + [2950] = 1222, + [2951] = 1224, + [2952] = 1640, + [2953] = 1453, + [2954] = 1641, + [2955] = 1658, + [2956] = 1543, + [2957] = 1473, + [2958] = 1533, + [2959] = 1534, + [2960] = 1456, + [2961] = 1467, + [2962] = 1486, + [2963] = 1632, + [2964] = 1677, + [2965] = 1485, + [2966] = 1484, + [2967] = 1455, + [2968] = 1640, + [2969] = 1534, + [2970] = 1482, + [2971] = 1453, + [2972] = 1457, + [2973] = 1481, + [2974] = 1465, + [2975] = 1492, + [2976] = 1541, + [2977] = 1221, + [2978] = 1223, + [2979] = 1452, + [2980] = 1473, + [2981] = 1678, + [2982] = 1456, + [2983] = 1813, + [2984] = 1467, + [2985] = 1677, + [2986] = 1814, + [2987] = 1222, + [2988] = 1224, + [2989] = 1640, + [2990] = 1803, + [2991] = 1804, + [2992] = 1807, + [2993] = 1810, + [2994] = 1815, + [2995] = 1225, + [2996] = 1226, + [2997] = 1643, + [2998] = 1644, + [2999] = 1645, + [3000] = 1646, + [3001] = 1647, + [3002] = 1648, + [3003] = 1649, + [3004] = 1650, + [3005] = 1651, + [3006] = 1652, + [3007] = 1653, + [3008] = 1654, + [3009] = 1655, + [3010] = 1582, + [3011] = 1495, + [3012] = 1496, + [3013] = 1462, + [3014] = 1629, + [3015] = 1497, + [3016] = 1498, + [3017] = 1499, + [3018] = 1500, + [3019] = 1501, + [3020] = 1502, + [3021] = 1503, + [3022] = 1504, + [3023] = 1505, + [3024] = 1506, + [3025] = 1507, + [3026] = 1508, + [3027] = 1509, + [3028] = 1510, + [3029] = 1511, + [3030] = 1512, + [3031] = 1513, + [3032] = 1514, + [3033] = 1515, + [3034] = 1516, + [3035] = 1517, + [3036] = 1494, + [3037] = 1518, + [3038] = 1519, + [3039] = 1520, + [3040] = 1521, + [3041] = 1522, + [3042] = 1523, + [3043] = 1524, + [3044] = 1525, + [3045] = 1526, + [3046] = 1527, + [3047] = 1625, + [3048] = 1529, + [3049] = 1530, + [3050] = 1491, + [3051] = 1531, + [3052] = 1532, + [3053] = 1533, + [3054] = 1534, + [3055] = 1447, + [3056] = 1568, + [3057] = 1625, + [3058] = 1466, + [3059] = 1641, + [3060] = 1221, + [3061] = 1223, + [3062] = 3062, + [3063] = 1447, + [3064] = 1591, + [3065] = 1222, + [3066] = 1224, + [3067] = 1553, + [3068] = 1592, + [3069] = 1821, + [3070] = 1822, + [3071] = 1823, + [3072] = 1824, + [3073] = 1825, + [3074] = 1633, + [3075] = 1826, + [3076] = 1827, + [3077] = 1828, + [3078] = 1829, + [3079] = 1830, + [3080] = 1832, + [3081] = 1833, + [3082] = 1658, + [3083] = 1225, + [3084] = 1226, + [3085] = 1643, + [3086] = 1644, + [3087] = 1645, + [3088] = 1646, + [3089] = 1647, + [3090] = 1648, + [3091] = 1649, + [3092] = 1650, + [3093] = 1651, + [3094] = 1652, + [3095] = 1653, + [3096] = 1654, + [3097] = 1655, + [3098] = 1582, + [3099] = 1495, + [3100] = 1496, + [3101] = 1485, + [3102] = 1484, + [3103] = 1475, + [3104] = 1455, + [3105] = 1497, + [3106] = 1498, + [3107] = 1499, + [3108] = 1500, + [3109] = 1501, + [3110] = 1502, + [3111] = 1503, + [3112] = 1504, + [3113] = 1505, + [3114] = 1506, + [3115] = 1507, + [3116] = 1508, + [3117] = 1509, + [3118] = 1510, + [3119] = 1511, + [3120] = 1528, + [3121] = 1512, + [3122] = 1482, + [3123] = 1632, + [3124] = 1513, + [3125] = 1514, + [3126] = 1515, + [3127] = 1516, + [3128] = 1821, + [3129] = 1822, + [3130] = 1803, + [3131] = 1823, + [3132] = 1824, + [3133] = 1825, + [3134] = 1804, + [3135] = 1807, + [3136] = 1810, + [3137] = 1826, + [3138] = 1827, + [3139] = 1828, + [3140] = 1829, + [3141] = 1830, + [3142] = 1832, + [3143] = 1833, + [3144] = 1658, + [3145] = 1517, + [3146] = 1494, + [3147] = 1518, + [3148] = 1519, + [3149] = 1520, + [3150] = 1521, + [3151] = 1522, + [3152] = 1523, + [3153] = 1524, + [3154] = 1525, + [3155] = 1526, + [3156] = 1527, + [3157] = 1481, + [3158] = 1465, + [3159] = 1492, + [3160] = 1542, + [3161] = 1594, + [3162] = 1544, + [3163] = 1545, + [3164] = 1546, + [3165] = 1675, + [3166] = 1626, + [3167] = 1627, + [3168] = 1621, + [3169] = 1547, + [3170] = 1548, + [3171] = 1549, + [3172] = 1550, + [3173] = 1551, + [3174] = 1628, + [3175] = 1552, + [3176] = 1568, + [3177] = 1622, + [3178] = 1221, + [3179] = 1223, + [3180] = 1559, + [3181] = 1560, + [3182] = 1561, + [3183] = 1562, + [3184] = 1678, + [3185] = 1563, + [3186] = 1813, + [3187] = 1564, + [3188] = 1565, + [3189] = 1566, + [3190] = 1641, + [3191] = 1573, + [3192] = 1633, + [3193] = 1634, + [3194] = 1553, + [3195] = 1555, + [3196] = 1803, + [3197] = 1804, + [3198] = 1807, + [3199] = 1810, + [3200] = 1573, + [3201] = 1541, + [3202] = 1473, + [3203] = 1456, + [3204] = 1571, + [3205] = 1467, + [3206] = 1574, + [3207] = 1615, + [3208] = 1575, + [3209] = 1576, + [3210] = 1814, + [3211] = 1577, + [3212] = 1578, + [3213] = 1462, + [3214] = 1629, + [3215] = 1591, + [3216] = 1592, + [3217] = 1222, + [3218] = 1224, + [3219] = 1583, + [3220] = 1584, + [3221] = 1585, + [3222] = 1491, + [3223] = 1586, + [3224] = 1529, + [3225] = 1530, + [3226] = 1531, + [3227] = 1532, + [3228] = 1533, + [3229] = 1534, + [3230] = 1587, + [3231] = 1588, + [3232] = 1589, + [3233] = 1590, + [3234] = 1815, + [3235] = 1593, + [3236] = 1623, + [3237] = 1529, + [3238] = 1530, + [3239] = 1531, + [3240] = 1532, + [3241] = 1533, + [3242] = 1534, + [3243] = 1594, + [3244] = 1595, + [3245] = 1596, + [3246] = 1597, + [3247] = 1624, + [3248] = 1221, + [3249] = 1223, + [3250] = 1598, + [3251] = 1222, + [3252] = 1224, + [3253] = 1225, + [3254] = 1226, + [3255] = 1225, + [3256] = 1226, + [3257] = 1542, + [3258] = 1543, + [3259] = 1544, + [3260] = 1545, + [3261] = 1546, + [3262] = 1547, + [3263] = 1548, + [3264] = 1549, + [3265] = 1550, + [3266] = 1551, + [3267] = 1221, + [3268] = 1223, + [3269] = 1222, + [3270] = 1224, + [3271] = 1225, + [3272] = 1595, + [3273] = 1552, + [3274] = 1641, + [3275] = 1615, + [3276] = 1616, + [3277] = 1617, + [3278] = 1618, + [3279] = 1529, + [3280] = 1530, + [3281] = 1559, + [3282] = 1560, + [3283] = 1561, + [3284] = 1562, + [3285] = 1678, + [3286] = 1563, + [3287] = 1813, + [3288] = 1564, + [3289] = 1565, + [3290] = 1566, + [3291] = 1619, + [3292] = 1620, + [3293] = 2009, + [3294] = 1571, + [3295] = 1597, + [3296] = 1574, + [3297] = 1621, + [3298] = 1931, + [3299] = 1575, + [3300] = 1576, + [3301] = 1814, + [3302] = 1577, + [3303] = 1578, + [3304] = 1632, + [3305] = 1622, + [3306] = 1598, + [3307] = 1531, + [3308] = 1532, + [3309] = 1583, + [3310] = 1584, + [3311] = 1623, + [3312] = 1585, + [3313] = 1586, + [3314] = 1587, + [3315] = 1588, + [3316] = 1821, + [3317] = 1822, + [3318] = 1589, + [3319] = 1823, + [3320] = 1824, + [3321] = 1825, + [3322] = 1590, + [3323] = 1826, + [3324] = 1827, + [3325] = 1828, + [3326] = 1829, + [3327] = 1830, + [3328] = 1832, + [3329] = 1833, + [3330] = 1658, + [3331] = 1815, + [3332] = 1593, + [3333] = 1624, + [3334] = 1555, + [3335] = 1675, + [3336] = 1594, + [3337] = 1595, + [3338] = 1452, + [3339] = 1596, + [3340] = 1597, + [3341] = 1598, + [3342] = 1633, + [3343] = 1533, + [3344] = 1534, + [3345] = 1675, + [3346] = 1634, + [3347] = 1677, + [3348] = 1615, + [3349] = 1678, + [3350] = 1626, + [3351] = 1627, + [3352] = 1616, + [3353] = 1628, + [3354] = 1616, + [3355] = 1617, + [3356] = 1618, + [3357] = 1619, + [3358] = 1620, + [3359] = 1621, + [3360] = 1475, + [3361] = 1622, + [3362] = 1623, + [3363] = 1624, + [3364] = 1617, + [3365] = 1618, + [3366] = 1626, + [3367] = 1627, + [3368] = 1628, + [3369] = 1529, + [3370] = 1530, + [3371] = 3371, + [3372] = 1489, + [3373] = 1458, + [3374] = 1528, + [3375] = 2009, + [3376] = 1568, + [3377] = 1677, + [3378] = 1573, + [3379] = 1803, + [3380] = 1804, + [3381] = 1807, + [3382] = 1810, + [3383] = 1640, + [3384] = 1591, + [3385] = 1592, + [3386] = 1473, + [3387] = 1456, + [3388] = 1619, + [3389] = 1467, + [3390] = 1486, + [3391] = 1620, + [3392] = 1533, + [3393] = 1643, + [3394] = 1644, + [3395] = 1645, + [3396] = 1646, + [3397] = 1647, + [3398] = 1648, + [3399] = 1531, + [3400] = 1649, + [3401] = 1650, + [3402] = 1651, + [3403] = 1675, + [3404] = 1652, + [3405] = 1653, + [3406] = 1654, + [3407] = 1655, + [3408] = 1582, + [3409] = 1495, + [3410] = 1496, + [3411] = 1532, + [3412] = 1497, + [3413] = 1498, + [3414] = 1499, + [3415] = 1500, + [3416] = 1501, + [3417] = 1502, + [3418] = 1503, + [3419] = 1541, + [3420] = 1504, + [3421] = 1629, + [3422] = 1505, + [3423] = 1506, + [3424] = 1632, + [3425] = 1633, + [3426] = 1634, + [3427] = 1507, + [3428] = 1508, + [3429] = 1509, + [3430] = 1510, + [3431] = 1511, + [3432] = 1512, + [3433] = 1513, + [3434] = 1514, + [3435] = 1515, + [3436] = 1516, + [3437] = 1517, + [3438] = 1494, + [3439] = 1518, + [3440] = 1519, + [3441] = 1520, + [3442] = 1521, + [3443] = 1522, + [3444] = 1523, + [3445] = 1524, + [3446] = 1525, + [3447] = 1526, + [3448] = 1527, + [3449] = 1542, + [3450] = 1543, + [3451] = 1544, + [3452] = 1545, + [3453] = 1546, + [3454] = 1547, + [3455] = 1548, + [3456] = 1549, + [3457] = 1550, + [3458] = 1551, + [3459] = 1931, + [3460] = 1552, + [3461] = 1625, + [3462] = 1489, + [3463] = 1458, + [3464] = 1641, + [3465] = 1813, + [3466] = 1814, + [3467] = 1815, + [3468] = 1821, + [3469] = 1822, + [3470] = 1529, + [3471] = 1530, + [3472] = 1559, + [3473] = 1560, + [3474] = 1561, + [3475] = 1562, + [3476] = 1563, + [3477] = 1813, + [3478] = 1564, + [3479] = 1565, + [3480] = 1566, + [3481] = 1571, + [3482] = 1632, + [3483] = 1574, + [3484] = 1823, + [3485] = 1575, + [3486] = 1576, + [3487] = 1814, + [3488] = 1577, + [3489] = 1824, + [3490] = 1825, + [3491] = 1826, + [3492] = 1827, + [3493] = 1828, + [3494] = 1829, + [3495] = 1830, + [3496] = 1578, + [3497] = 1832, + [3498] = 1833, + [3499] = 1658, + [3500] = 1453, + [3501] = 1457, + [3502] = 1531, + [3503] = 1532, + [3504] = 1583, + [3505] = 1584, + [3506] = 1466, + [3507] = 1633, + [3508] = 1585, + [3509] = 1586, + [3510] = 1587, + [3511] = 1588, + [3512] = 1589, + [3513] = 1590, + [3514] = 1641, + [3515] = 1596, + [3516] = 1815, + [3517] = 1593, + [3518] = 1226, + [3519] = 1830, + [3520] = 1678, + [3521] = 1633, + [3522] = 1484, + [3523] = 1497, + [3524] = 1455, + [3525] = 1497, + [3526] = 1498, + [3527] = 1499, + [3528] = 1500, + [3529] = 1501, + [3530] = 1502, + [3531] = 1503, + [3532] = 1504, + [3533] = 1505, + [3534] = 1506, + [3535] = 1529, + [3536] = 1530, + [3537] = 1507, + [3538] = 1508, + [3539] = 1509, + [3540] = 1510, + [3541] = 1511, + [3542] = 1512, + [3543] = 1482, + [3544] = 1513, + [3545] = 1514, + [3546] = 1515, + [3547] = 1516, + [3548] = 1517, + [3549] = 1494, + [3550] = 1518, + [3551] = 1531, + [3552] = 1532, + [3553] = 1519, + [3554] = 1520, + [3555] = 1521, + [3556] = 1522, + [3557] = 1523, + [3558] = 1524, + [3559] = 1622, + [3560] = 1525, + [3561] = 1526, + [3562] = 1527, + [3563] = 1481, + [3564] = 1465, + [3565] = 1492, + [3566] = 1533, + [3567] = 1534, + [3568] = 1498, + [3569] = 1499, + [3570] = 1447, + [3571] = 1500, + [3572] = 1501, + [3573] = 1625, + [3574] = 1563, + [3575] = 1555, + [3576] = 1502, + [3577] = 1503, + [3578] = 1504, + [3579] = 1813, + [3580] = 1650, + [3581] = 1505, + [3582] = 1506, + [3583] = 1528, + [3584] = 1564, + [3585] = 1565, + [3586] = 1566, + [3587] = 1507, + [3588] = 1508, + [3589] = 1677, + [3590] = 1675, + [3591] = 1531, + [3592] = 1532, + [3593] = 1640, + [3594] = 1529, + [3595] = 1530, + [3596] = 1531, + [3597] = 1532, + [3598] = 1533, + [3599] = 1534, + [3600] = 1553, + [3601] = 1221, + [3602] = 1223, + [3603] = 1222, + [3604] = 1224, + [3605] = 1225, + [3606] = 1226, + [3607] = 1529, + [3608] = 1530, + [3609] = 1531, + [3610] = 1532, + [3611] = 1533, + [3612] = 1534, + [3613] = 1803, + [3614] = 1804, + [3615] = 1807, + [3616] = 1810, + [3617] = 1221, + [3618] = 1223, + [3619] = 1485, + [3620] = 1222, + [3621] = 1224, + [3622] = 1615, + [3623] = 1623, + [3624] = 1225, + [3625] = 1226, + [3626] = 1531, + [3627] = 1598, + [3628] = 1555, + [3629] = 1532, + [3630] = 1573, + [3631] = 1624, + [3632] = 1821, + [3633] = 1221, + [3634] = 1223, + [3635] = 1533, + [3636] = 1534, + [3637] = 1221, + [3638] = 1223, + [3639] = 1222, + [3640] = 1224, + [3641] = 1225, + [3642] = 1226, + [3643] = 1509, + [3644] = 1822, + [3645] = 1510, + [3646] = 1583, + [3647] = 1643, + [3648] = 1644, + [3649] = 1823, + [3650] = 1824, + [3651] = 1645, + [3652] = 1646, + [3653] = 1825, + [3654] = 1647, + [3655] = 1648, + [3656] = 1584, + [3657] = 1576, + [3658] = 1585, + [3659] = 1826, + [3660] = 1484, + [3661] = 1827, + [3662] = 1828, + [3663] = 1511, + [3664] = 1829, + [3665] = 1512, + [3666] = 1830, + [3667] = 1649, + [3668] = 1650, + [3669] = 1651, + [3670] = 1652, + [3671] = 1653, + [3672] = 1654, + [3673] = 1655, + [3674] = 1582, + [3675] = 1495, + [3676] = 1496, + [3677] = 1573, + [3678] = 1832, + [3679] = 1833, + [3680] = 1658, + [3681] = 1586, + [3682] = 1587, + [3683] = 1588, + [3684] = 1455, + [3685] = 1225, + [3686] = 1226, + [3687] = 1533, + [3688] = 1534, + [3689] = 1533, + [3690] = 1534, + [3691] = 1647, + [3692] = 1821, + [3693] = 1822, + [3694] = 1549, + [3695] = 1482, + [3696] = 1589, + [3697] = 1615, + [3698] = 1823, + [3699] = 1824, + [3700] = 1825, + [3701] = 1550, + [3702] = 1677, + [3703] = 1814, + [3704] = 1626, + [3705] = 1627, + [3706] = 1577, + [3707] = 1628, + [3708] = 1616, + [3709] = 1617, + [3710] = 1618, + [3711] = 1619, + [3712] = 1620, + [3713] = 1590, + [3714] = 1648, + [3715] = 1621, + [3716] = 1826, + [3717] = 1622, + [3718] = 1623, + [3719] = 1624, + [3720] = 1827, + [3721] = 1828, + [3722] = 1829, + [3723] = 1830, + [3724] = 1832, + [3725] = 1833, + [3726] = 1658, + [3727] = 1815, + [3728] = 1593, + [3729] = 1578, + [3730] = 1497, + [3731] = 1571, + [3732] = 1498, + [3733] = 1499, + [3734] = 1594, + [3735] = 1595, + [3736] = 1574, + [3737] = 1222, + [3738] = 1500, + [3739] = 1591, + [3740] = 1592, + [3741] = 1626, + [3742] = 1501, + [3743] = 1502, + [3744] = 1625, + [3745] = 1627, + [3746] = 1224, + [3747] = 1628, + [3748] = 1503, + [3749] = 1504, + [3750] = 1505, + [3751] = 1821, + [3752] = 1822, + [3753] = 1823, + [3754] = 1824, + [3755] = 1825, + [3756] = 1826, + [3757] = 1827, + [3758] = 1828, + [3759] = 1829, + [3760] = 1830, + [3761] = 1832, + [3762] = 1833, + [3763] = 1658, + [3764] = 1506, + [3765] = 1507, + [3766] = 1803, + [3767] = 1804, + [3768] = 1807, + [3769] = 1810, + [3770] = 1508, + [3771] = 1486, + [3772] = 1509, + [3773] = 1510, + [3774] = 1511, + [3775] = 1512, + [3776] = 1513, + [3777] = 1514, + [3778] = 1654, + [3779] = 1655, + [3780] = 1222, + [3781] = 1224, + [3782] = 1515, + [3783] = 1516, + [3784] = 1517, + [3785] = 1640, + [3786] = 1494, + [3787] = 1518, + [3788] = 1519, + [3789] = 1520, + [3790] = 1521, + [3791] = 1522, + [3792] = 1523, + [3793] = 1633, + [3794] = 1525, + [3795] = 1526, + [3796] = 1527, + [3797] = 1542, + [3798] = 1542, + [3799] = 1543, + [3800] = 1544, + [3801] = 1582, + [3802] = 1545, + [3803] = 1546, + [3804] = 1547, + [3805] = 1548, + [3806] = 1549, + [3807] = 1550, + [3808] = 1543, + [3809] = 1651, + [3810] = 1551, + [3811] = 1552, + [3812] = 1568, + [3813] = 1447, + [3814] = 1641, + [3815] = 1544, + [3816] = 1545, + [3817] = 1495, + [3818] = 1531, + [3819] = 1513, + [3820] = 1514, + [3821] = 1515, + [3822] = 1516, + [3823] = 1517, + [3824] = 1494, + [3825] = 1518, + [3826] = 1519, + [3827] = 1520, + [3828] = 1521, + [3829] = 1522, + [3830] = 1523, + [3831] = 1524, + [3832] = 1525, + [3833] = 1526, + [3834] = 1527, + [3835] = 1532, + [3836] = 1616, + [3837] = 1641, + [3838] = 1481, + [3839] = 1559, + [3840] = 1529, + [3841] = 1560, + [3842] = 1465, + [3843] = 1492, + [3844] = 1561, + [3845] = 1562, + [3846] = 1486, + [3847] = 1221, + [3848] = 1530, + [3849] = 1528, + [3850] = 1632, + [3851] = 1617, + [3852] = 1625, + [3853] = 1678, + [3854] = 1563, + [3855] = 1813, + [3856] = 1223, + [3857] = 1640, + [3858] = 1618, + [3859] = 1619, + [3860] = 1620, + [3861] = 1548, + [3862] = 1596, + [3863] = 1222, + [3864] = 1678, + [3865] = 1813, + [3866] = 1633, + [3867] = 1224, + [3868] = 1675, + [3869] = 1564, + [3870] = 1643, + [3871] = 1644, + [3872] = 1645, + [3873] = 1646, + [3874] = 1647, + [3875] = 1648, + [3876] = 1649, + [3877] = 1650, + [3878] = 1651, + [3879] = 1652, + [3880] = 1653, + [3881] = 1654, + [3882] = 1655, + [3883] = 1582, + [3884] = 1495, + [3885] = 1496, + [3886] = 1497, + [3887] = 1498, + [3888] = 1499, + [3889] = 1500, + [3890] = 1501, + [3891] = 1502, + [3892] = 1503, + [3893] = 1504, + [3894] = 1505, + [3895] = 1506, + [3896] = 1507, + [3897] = 1508, + [3898] = 1509, + [3899] = 1510, + [3900] = 1511, + [3901] = 1512, + [3902] = 1513, + [3903] = 1514, + [3904] = 1515, + [3905] = 1516, + [3906] = 1517, + [3907] = 1494, + [3908] = 1518, + [3909] = 1519, + [3910] = 1520, + [3911] = 1521, + [3912] = 1522, + [3913] = 1523, + [3914] = 1524, + [3915] = 1525, + [3916] = 1526, + [3917] = 1527, + [3918] = 1640, + [3919] = 1814, + [3920] = 1565, + [3921] = 1677, + [3922] = 1625, + [3923] = 1566, + [3924] = 1652, + [3925] = 1575, + [3926] = 1489, + [3927] = 1821, + [3928] = 1458, + [3929] = 1822, + [3930] = 1803, + [3931] = 1823, + [3932] = 1824, + [3933] = 1825, + [3934] = 1804, + [3935] = 1807, + [3936] = 1810, + [3937] = 1826, + [3938] = 1827, + [3939] = 1828, + [3940] = 1829, + [3941] = 1830, + [3942] = 1832, + [3943] = 1833, + [3944] = 1658, + [3945] = 1815, + [3946] = 1653, + [3947] = 1677, + [3948] = 1452, + [3949] = 1546, + [3950] = 1571, + [3951] = 1597, + [3952] = 1574, + [3953] = 1575, + [3954] = 1576, + [3955] = 1814, + [3956] = 1577, + [3957] = 1578, + [3958] = 1632, + [3959] = 3959, + [3960] = 1641, + [3961] = 1496, + [3962] = 1621, [3963] = 1551, - [3964] = 1461, - [3965] = 1512, - [3966] = 1513, - [3967] = 1559, - [3968] = 1663, - [3969] = 1533, - [3970] = 1534, - [3971] = 1634, - [3972] = 1554, - [3973] = 1711, - [3974] = 1555, - [3975] = 1218, - [3976] = 1222, - [3977] = 1223, - [3978] = 1224, - [3979] = 1628, - [3980] = 1225, - [3981] = 1226, - [3982] = 1635, - [3983] = 1636, - [3984] = 1656, - [3985] = 1657, - [3986] = 1711, - [3987] = 1659, - [3988] = 1660, - [3989] = 1512, - [3990] = 1513, - [3991] = 1533, - [3992] = 1667, - [3993] = 1668, - [3994] = 1669, - [3995] = 1534, - [3996] = 1554, - [3997] = 1555, - [3998] = 1661, - [3999] = 1225, - [4000] = 1226, - [4001] = 1726, - [4002] = 1662, - [4003] = 1531, - [4004] = 1635, - [4005] = 1566, - [4006] = 1665, - [4007] = 1670, - [4008] = 1617, - [4009] = 1475, - [4010] = 1667, - [4011] = 1532, - [4012] = 1667, - [4013] = 1553, - [4014] = 1670, - [4015] = 1218, - [4016] = 1222, - [4017] = 1663, - [4018] = 1668, - [4019] = 1223, - [4020] = 1224, - [4021] = 1225, - [4022] = 1226, - [4023] = 1225, - [4024] = 1226, - [4025] = 1693, - [4026] = 1694, - [4027] = 1695, - [4028] = 1672, - [4029] = 1592, - [4030] = 1628, - [4031] = 1669, - [4032] = 1514, - [4033] = 1515, - [4034] = 1516, - [4035] = 1482, - [4036] = 1517, - [4037] = 1711, - [4038] = 1518, - [4039] = 1760, - [4040] = 1520, - [4041] = 1501, - [4042] = 1658, - [4043] = 1705, - [4044] = 1716, - [4045] = 1693, - [4046] = 1218, - [4047] = 1685, - [4048] = 1222, - [4049] = 1709, - [4050] = 1713, - [4051] = 1694, - [4052] = 1695, - [4053] = 1521, - [4054] = 1672, - [4055] = 1714, - [4056] = 1717, - [4057] = 1718, - [4058] = 1727, - [4059] = 1684, - [4060] = 1697, - [4061] = 1701, - [4062] = 1704, - [4063] = 1522, - [4064] = 1476, - [4065] = 1544, - [4066] = 1567, - [4067] = 1218, - [4068] = 1222, - [4069] = 1545, - [4070] = 1554, - [4071] = 1485, - [4072] = 1223, - [4073] = 1224, - [4074] = 1555, - [4075] = 1225, - [4076] = 1226, - [4077] = 1593, - [4078] = 1550, - [4079] = 1507, - [4080] = 1525, - [4081] = 1617, - [4082] = 1636, - [4083] = 1659, - [4084] = 1594, - [4085] = 1526, - [4086] = 1475, - [4087] = 1527, - [4088] = 1552, - [4089] = 1716, - [4090] = 1475, - [4091] = 1669, - [4092] = 1669, - [4093] = 1665, - [4094] = 1527, - [4095] = 1528, - [4096] = 1761, - [4097] = 1529, - [4098] = 1530, - [4099] = 1469, - [4100] = 1533, - [4101] = 1534, - [4102] = 1535, - [4103] = 1536, - [4104] = 1537, - [4105] = 1538, - [4106] = 1539, - [4107] = 1573, - [4108] = 1540, - [4109] = 1705, - [4110] = 1574, - [4111] = 1634, - [4112] = 1716, - [4113] = 1670, - [4114] = 1541, - [4115] = 1685, - [4116] = 1709, - [4117] = 1713, - [4118] = 1475, - [4119] = 1476, - [4120] = 1565, - [4121] = 1518, - [4122] = 1225, - [4123] = 1226, - [4124] = 1760, - [4125] = 1531, - [4126] = 1532, - [4127] = 1542, - [4128] = 1544, - [4129] = 1658, - [4130] = 1657, - [4131] = 1617, - [4132] = 1635, - [4133] = 1636, - [4134] = 1656, - [4135] = 1556, - [4136] = 1545, - [4137] = 1550, - [4138] = 1552, - [4139] = 1693, - [4140] = 1694, - [4141] = 1695, - [4142] = 1672, - [4143] = 1667, - [4144] = 1523, - [4145] = 1524, - [4146] = 1553, - [4147] = 1557, - [4148] = 1558, - [4149] = 1559, - [4150] = 1566, - [4151] = 1567, - [4152] = 1570, - [4153] = 1575, - [4154] = 1577, - [4155] = 1578, - [4156] = 1714, - [4157] = 1717, - [4158] = 1718, - [4159] = 1727, - [4160] = 1684, - [4161] = 1697, - [4162] = 1701, - [4163] = 1704, - [4164] = 1762, - [4165] = 1543, - [4166] = 1512, - [4167] = 1513, - [4168] = 1218, - [4169] = 1222, - [4170] = 1546, - [4171] = 1547, - [4172] = 1548, - [4173] = 1549, - [4174] = 1551, - [4175] = 1482, - [4176] = 1485, - [4177] = 1533, - [4178] = 1534, - [4179] = 1507, - [4180] = 1579, - [4181] = 1580, - [4182] = 1581, - [4183] = 1582, - [4184] = 1583, - [4185] = 1584, - [4186] = 1585, - [4187] = 1492, - [4188] = 1554, - [4189] = 1555, - [4190] = 1554, - [4191] = 1555, - [4192] = 1698, + [3964] = 1453, + [3965] = 1475, + [3966] = 1553, + [3967] = 1583, + [3968] = 1632, + [3969] = 1649, + [3970] = 1552, + [3971] = 1568, + [3972] = 1803, + [3973] = 1625, + [3974] = 1489, + [3975] = 1458, + [3976] = 1529, + [3977] = 1530, + [3978] = 1584, + [3979] = 1457, + [3980] = 1804, + [3981] = 1807, + [3982] = 1810, + [3983] = 1675, + [3984] = 1677, + [3985] = 1547, + [3986] = 1585, + [3987] = 1466, + [3988] = 1586, + [3989] = 1587, + [3990] = 1588, + [3991] = 1678, + [3992] = 1453, + [3993] = 1457, + [3994] = 1632, + [3995] = 1633, + [3996] = 1589, + [3997] = 1221, + [3998] = 1223, + [3999] = 1529, + [4000] = 1530, + [4001] = 1559, + [4002] = 1678, + [4003] = 1560, + [4004] = 1561, + [4005] = 1225, + [4006] = 1226, + [4007] = 1675, + [4008] = 1643, + [4009] = 1466, + [4010] = 1591, + [4011] = 1592, + [4012] = 1225, + [4013] = 1590, + [4014] = 1226, + [4015] = 1562, + [4016] = 1643, + [4017] = 1644, + [4018] = 1645, + [4019] = 1646, + [4020] = 1815, + [4021] = 1593, + [4022] = 1647, + [4023] = 1648, + [4024] = 1594, + [4025] = 1595, + [4026] = 1644, + [4027] = 1596, + [4028] = 1452, + [4029] = 1597, + [4030] = 1649, + [4031] = 1650, + [4032] = 1651, + [4033] = 1652, + [4034] = 1653, + [4035] = 1654, + [4036] = 1655, + [4037] = 1582, + [4038] = 1495, + [4039] = 1821, + [4040] = 1822, + [4041] = 1803, + [4042] = 1496, + [4043] = 1823, + [4044] = 1824, + [4045] = 1825, + [4046] = 1804, + [4047] = 1807, + [4048] = 1810, + [4049] = 1826, + [4050] = 1827, + [4051] = 1828, + [4052] = 1829, + [4053] = 1832, + [4054] = 1833, + [4055] = 1658, + [4056] = 1645, + [4057] = 1475, + [4058] = 1598, + [4059] = 1485, + [4060] = 1646, + [4061] = 1641, + [4062] = 1524, + [4063] = 1813, + [4064] = 1807, + [4065] = 1810, + [4066] = 1547, + [4067] = 1578, + [4068] = 1623, + [4069] = 1814, + [4070] = 1542, + [4071] = 1455, + [4072] = 1627, + [4073] = 1552, + [4074] = 1546, + [4075] = 1568, + [4076] = 1543, + [4077] = 1544, + [4078] = 1545, + [4079] = 1677, + [4080] = 1514, + [4081] = 1515, + [4082] = 1497, + [4083] = 1498, + [4084] = 1815, + [4085] = 3959, + [4086] = 1529, + [4087] = 1499, + [4088] = 1452, + [4089] = 1500, + [4090] = 1803, + [4091] = 1591, + [4092] = 1592, + [4093] = 1804, + [4094] = 1807, + [4095] = 1810, + [4096] = 1516, + [4097] = 1517, + [4098] = 1501, + [4099] = 1502, + [4100] = 1475, + [4101] = 1503, + [4102] = 1504, + [4103] = 1505, + [4104] = 1619, + [4105] = 1506, + [4106] = 1486, + [4107] = 1626, + [4108] = 1507, + [4109] = 1508, + [4110] = 1221, + [4111] = 1223, + [4112] = 1543, + [4113] = 1531, + [4114] = 1532, + [4115] = 1475, + [4116] = 1544, + [4117] = 1222, + [4118] = 1224, + [4119] = 1545, + [4120] = 1546, + [4121] = 1225, + [4122] = 1226, + [4123] = 1550, + [4124] = 4124, + [4125] = 1509, + [4126] = 1453, + [4127] = 1510, + [4128] = 1512, + [4129] = 1531, + [4130] = 1511, + [4131] = 1457, + [4132] = 1583, + [4133] = 1584, + [4134] = 1466, + [4135] = 1512, + [4136] = 1532, + [4137] = 1494, + [4138] = 1518, + [4139] = 1519, + [4140] = 1547, + [4141] = 1548, + [4142] = 1520, + [4143] = 1549, + [4144] = 1521, + [4145] = 1522, + [4146] = 1550, + [4147] = 1222, + [4148] = 4148, + [4149] = 1677, + [4150] = 1551, + [4151] = 1566, + [4152] = 1615, + [4153] = 1571, + [4154] = 1585, + [4155] = 1586, + [4156] = 1568, + [4157] = 1224, + [4158] = 1523, + [4159] = 1632, + [4160] = 1625, + [4161] = 1587, + [4162] = 1530, + [4163] = 1552, + [4164] = 1588, + [4165] = 1533, + [4166] = 1534, + [4167] = 1640, + [4168] = 1803, + [4169] = 1804, + [4170] = 1807, + [4171] = 1810, + [4172] = 1221, + [4173] = 1482, + [4174] = 1223, + [4175] = 1513, + [4176] = 1514, + [4177] = 1515, + [4178] = 1516, + [4179] = 1517, + [4180] = 1494, + [4181] = 1518, + [4182] = 1519, + [4183] = 1520, + [4184] = 1521, + [4185] = 1589, + [4186] = 1590, + [4187] = 1522, + [4188] = 1221, + [4189] = 1453, + [4190] = 1524, + [4191] = 1815, + [4192] = 1226, [4193] = 1586, - [4194] = 1693, - [4195] = 1694, - [4196] = 1695, - [4197] = 1672, - [4198] = 1587, - [4199] = 1560, - [4200] = 1561, - [4201] = 1588, - [4202] = 1589, - [4203] = 1590, - [4204] = 1556, - [4205] = 1576, - [4206] = 1591, - [4207] = 1667, - [4208] = 1592, - [4209] = 1593, - [4210] = 1594, - [4211] = 1560, - [4212] = 1561, - [4213] = 1562, - [4214] = 1563, - [4215] = 1564, - [4216] = 1565, - [4217] = 1487, - [4218] = 1595, - [4219] = 1568, - [4220] = 1569, - [4221] = 1671, - [4222] = 1571, - [4223] = 1572, - [4224] = 1597, - [4225] = 1598, - [4226] = 1599, - [4227] = 1600, - [4228] = 1601, - [4229] = 1602, - [4230] = 1603, - [4231] = 1604, - [4232] = 1605, - [4233] = 1606, - [4234] = 1607, - [4235] = 1608, - [4236] = 1609, - [4237] = 1573, - [4238] = 1574, - [4239] = 1610, - [4240] = 1491, - [4241] = 1576, - [4242] = 1493, - [4243] = 1494, - [4244] = 1520, - [4245] = 1521, - [4246] = 1661, - [4247] = 4247, - [4248] = 1634, - [4249] = 1635, - [4250] = 1636, - [4251] = 1656, - [4252] = 1657, - [4253] = 1522, - [4254] = 1659, - [4255] = 1660, - [4256] = 1661, - [4257] = 1658, - [4258] = 1662, - [4259] = 1525, - [4260] = 1711, - [4261] = 1760, - [4262] = 1665, - [4263] = 1526, - [4264] = 1527, - [4265] = 1528, - [4266] = 1761, - [4267] = 1529, - [4268] = 1530, - [4269] = 1711, - [4270] = 1761, - [4271] = 1670, - [4272] = 1698, - [4273] = 3879, - [4274] = 1512, - [4275] = 1762, - [4276] = 1501, - [4277] = 1523, - [4278] = 1524, - [4279] = 1533, - [4280] = 1562, - [4281] = 1223, - [4282] = 1224, - [4283] = 1534, - [4284] = 1480, - [4285] = 1535, - [4286] = 1536, - [4287] = 1218, - [4288] = 1222, - [4289] = 1512, - [4290] = 1513, - [4291] = 1514, - [4292] = 1515, - [4293] = 1516, - [4294] = 1517, - [4295] = 1711, - [4296] = 1518, - [4297] = 1760, - [4298] = 1537, - [4299] = 1538, - [4300] = 1539, - [4301] = 1513, - [4302] = 1520, - [4303] = 1617, - [4304] = 1521, - [4305] = 1512, - [4306] = 1540, - [4307] = 1513, - [4308] = 1522, - [4309] = 1492, - [4310] = 1517, - [4311] = 1223, - [4312] = 1224, - [4313] = 1541, - [4314] = 1542, - [4315] = 1533, - [4316] = 1534, - [4317] = 1762, - [4318] = 1510, - [4319] = 1511, - [4320] = 1543, - [4321] = 1514, - [4322] = 1510, - [4323] = 1511, - [4324] = 1568, - [4325] = 1693, - [4326] = 1694, - [4327] = 1569, - [4328] = 1554, - [4329] = 1555, - [4330] = 1695, - [4331] = 1672, - [4332] = 1515, - [4333] = 1516, - [4334] = 1711, - [4335] = 1571, - [4336] = 4336, - [4337] = 1467, - [4338] = 4338, - [4339] = 1468, - [4340] = 1469, - [4341] = 1225, - [4342] = 1226, - [4343] = 1546, - [4344] = 1531, - [4345] = 1532, - [4346] = 1544, - [4347] = 1545, - [4348] = 1550, - [4349] = 1552, - [4350] = 1553, - [4351] = 1557, - [4352] = 1558, - [4353] = 1559, - [4354] = 1566, - [4355] = 1567, - [4356] = 1570, - [4357] = 1575, - [4358] = 1547, - [4359] = 1577, - [4360] = 1548, - [4361] = 1549, - [4362] = 1578, - [4363] = 1760, - [4364] = 1659, - [4365] = 1482, - [4366] = 1218, - [4367] = 1222, - [4368] = 1660, - [4369] = 1551, - [4370] = 1761, - [4371] = 1705, - [4372] = 1716, - [4373] = 1685, - [4374] = 1709, - [4375] = 1713, - [4376] = 1714, - [4377] = 1717, - [4378] = 1718, - [4379] = 1727, - [4380] = 1684, - [4381] = 1697, - [4382] = 1701, - [4383] = 1704, - [4384] = 1762, - [4385] = 1667, - [4386] = 1668, - [4387] = 1669, - [4388] = 1223, - [4389] = 1476, - [4390] = 1224, - [4391] = 1525, - [4392] = 1485, - [4393] = 1225, - [4394] = 1226, - [4395] = 1572, - [4396] = 1507, - [4397] = 1705, - [4398] = 1716, - [4399] = 1685, - [4400] = 1709, - [4401] = 1713, - [4402] = 1714, - [4403] = 1717, - [4404] = 1718, - [4405] = 1727, - [4406] = 1684, - [4407] = 1697, - [4408] = 1701, - [4409] = 1704, - [4410] = 1579, - [4411] = 1580, - [4412] = 1581, - [4413] = 1582, - [4414] = 1583, - [4415] = 1584, - [4416] = 1585, - [4417] = 1693, - [4418] = 1694, - [4419] = 1695, - [4420] = 1672, - [4421] = 1586, - [4422] = 1554, - [4423] = 1555, - [4424] = 1587, - [4425] = 1588, - [4426] = 1589, - [4427] = 1590, - [4428] = 1591, - [4429] = 1698, - [4430] = 1592, - [4431] = 1593, - [4432] = 1594, - [4433] = 1487, - [4434] = 1595, - [4435] = 1671, - [4436] = 1218, - [4437] = 1222, - [4438] = 1668, - [4439] = 1698, - [4440] = 1223, - [4441] = 1224, - [4442] = 1526, - [4443] = 1225, - [4444] = 1226, - [4445] = 1597, - [4446] = 1598, - [4447] = 1599, - [4448] = 1600, - [4449] = 1601, - [4450] = 1602, - [4451] = 1563, - [4452] = 1564, - [4453] = 1480, - [4454] = 1668, - [4455] = 1501, - [4456] = 1705, - [4457] = 1716, - [4458] = 1685, - [4459] = 1709, - [4460] = 1713, - [4461] = 1714, - [4462] = 1717, - [4463] = 1718, - [4464] = 1727, - [4465] = 1684, - [4466] = 1697, - [4467] = 1701, - [4468] = 1704, - [4469] = 1603, - [4470] = 1604, - [4471] = 1605, - [4472] = 1606, - [4473] = 1607, - [4474] = 1608, - [4475] = 1609, - [4476] = 1610, - [4477] = 1491, - [4478] = 1493, - [4479] = 1494, - [4480] = 1467, - [4481] = 1468, - [4482] = 1662, - [4483] = 1672, - [4484] = 1548, - [4485] = 1694, - [4486] = 1634, - [4487] = 1635, - [4488] = 1517, - [4489] = 1693, - [4490] = 1530, - [4491] = 1636, - [4492] = 1694, - [4493] = 1656, - [4494] = 1657, - [4495] = 1695, - [4496] = 1705, - [4497] = 1716, - [4498] = 1672, - [4499] = 1685, - [4500] = 1709, - [4501] = 1713, - [4502] = 1659, - [4503] = 1714, - [4504] = 1717, - [4505] = 1718, - [4506] = 1727, - [4507] = 1684, - [4508] = 1697, - [4509] = 1701, - [4510] = 1704, - [4511] = 1711, - [4512] = 1562, - [4513] = 1563, - [4514] = 1564, - [4515] = 1711, - [4516] = 1660, - [4517] = 1661, - [4518] = 1662, - [4519] = 1665, - [4520] = 1518, - [4521] = 1670, - [4522] = 1695, - [4523] = 1565, - [4524] = 1705, - [4525] = 1512, - [4526] = 1512, - [4527] = 1513, - [4528] = 1514, - [4529] = 1515, - [4530] = 1516, - [4531] = 1517, - [4532] = 1518, - [4533] = 1760, - [4534] = 1520, - [4535] = 1521, - [4536] = 1522, - [4537] = 1526, - [4538] = 1716, - [4539] = 1685, - [4540] = 1568, - [4541] = 1569, - [4542] = 1891, - [4543] = 1525, - [4544] = 1571, - [4545] = 1572, - [4546] = 1533, - [4547] = 1534, - [4548] = 1709, - [4549] = 1713, - [4550] = 1526, - [4551] = 1705, - [4552] = 1662, - [4553] = 1527, - [4554] = 1528, - [4555] = 1761, - [4556] = 1529, - [4557] = 1716, - [4558] = 1530, - [4559] = 1694, - [4560] = 1695, - [4561] = 1672, - [4562] = 1533, - [4563] = 1534, - [4564] = 1535, - [4565] = 1693, - [4566] = 1685, - [4567] = 1709, - [4568] = 1713, - [4569] = 1694, - [4570] = 1695, - [4571] = 2493, - [4572] = 1672, - [4573] = 1714, - [4574] = 1717, - [4575] = 1718, - [4576] = 1727, - [4577] = 1535, - [4578] = 1684, - [4579] = 1697, - [4580] = 1701, - [4581] = 1636, - [4582] = 1899, - [4583] = 1704, - [4584] = 1556, - [4585] = 1536, - [4586] = 1656, - [4587] = 1551, - [4588] = 1523, - [4589] = 1537, - [4590] = 1711, - [4591] = 1536, - [4592] = 1726, - [4593] = 1538, - [4594] = 1539, - [4595] = 1540, - [4596] = 1693, - [4597] = 1694, - [4598] = 1695, - [4599] = 1672, - [4600] = 1657, - [4601] = 1541, - [4602] = 1546, - [4603] = 1537, - [4604] = 1670, - [4605] = 1542, - [4606] = 1762, - [4607] = 1543, - [4608] = 1538, - [4609] = 2493, - [4610] = 1693, - [4611] = 1698, - [4612] = 1658, - [4613] = 1546, - [4614] = 1547, - [4615] = 1548, - [4616] = 1549, - [4617] = 1711, - [4618] = 1513, - [4619] = 1551, - [4620] = 1514, - [4621] = 1573, - [4622] = 1554, - [4623] = 1555, - [4624] = 1574, - [4625] = 1539, - [4626] = 1705, - [4627] = 1716, - [4628] = 1685, - [4629] = 1709, - [4630] = 1713, - [4631] = 1704, - [4632] = 1717, - [4633] = 1718, - [4634] = 1727, - [4635] = 1684, - [4636] = 1697, - [4637] = 1701, - [4638] = 1704, - [4639] = 1540, - [4640] = 1658, - [4641] = 1556, - [4642] = 1714, - [4643] = 1717, - [4644] = 2493, - [4645] = 1705, - [4646] = 1716, - [4647] = 1515, - [4648] = 1576, - [4649] = 1554, - [4650] = 1711, - [4651] = 1693, - [4652] = 1560, - [4653] = 1561, - [4654] = 1562, - [4655] = 1563, - [4656] = 1564, - [4657] = 1541, - [4658] = 1685, - [4659] = 1565, - [4660] = 1555, - [4661] = 1659, - [4662] = 1709, - [4663] = 1617, - [4664] = 1524, - [4665] = 1516, - [4666] = 1693, - [4667] = 1527, - [4668] = 1528, - [4669] = 1713, - [4670] = 1694, - [4671] = 1617, - [4672] = 1695, - [4673] = 1711, - [4674] = 1547, - [4675] = 1549, - [4676] = 4676, - [4677] = 1523, - [4678] = 1560, - [4679] = 2836, - [4680] = 1561, - [4681] = 1542, - [4682] = 1525, - [4683] = 1660, - [4684] = 1568, - [4685] = 1672, - [4686] = 1569, - [4687] = 1661, - [4688] = 4688, - [4689] = 1714, - [4690] = 1571, - [4691] = 1572, - [4692] = 1693, - [4693] = 1705, - [4694] = 1716, - [4695] = 1685, - [4696] = 1709, - [4697] = 1713, - [4698] = 1714, - [4699] = 1717, - [4700] = 1718, - [4701] = 1727, - [4702] = 1684, - [4703] = 1697, - [4704] = 1701, - [4705] = 1704, - [4706] = 1694, - [4707] = 1695, - [4708] = 1672, - [4709] = 1717, - [4710] = 1718, - [4711] = 1727, - [4712] = 1684, - [4713] = 1698, - [4714] = 1573, - [4715] = 1574, - [4716] = 1760, - [4717] = 1576, - [4718] = 1697, - [4719] = 1701, - [4720] = 1520, - [4721] = 1521, - [4722] = 1522, - [4723] = 1704, - [4724] = 1762, - [4725] = 1718, - [4726] = 1727, - [4727] = 1543, - [4728] = 1684, - [4729] = 1697, - [4730] = 1701, - [4731] = 1704, - [4732] = 1761, - [4733] = 1698, - [4734] = 1711, - [4735] = 1524, - [4736] = 1529, - [4737] = 1634, - [4738] = 1635, - [4739] = 1665, - [4740] = 1705, - [4741] = 1716, - [4742] = 1685, - [4743] = 1709, - [4744] = 1713, - [4745] = 1714, - [4746] = 1717, - [4747] = 1718, - [4748] = 1727, - [4749] = 1684, - [4750] = 1697, - [4751] = 1701, - [4752] = 1714, - [4753] = 1684, - [4754] = 4754, - [4755] = 4754, - [4756] = 4756, - [4757] = 4754, - [4758] = 1705, - [4759] = 1716, - [4760] = 1685, - [4761] = 1709, - [4762] = 1713, - [4763] = 4756, - [4764] = 1714, - [4765] = 1717, - [4766] = 1718, - [4767] = 1727, - [4768] = 4754, - [4769] = 1697, - [4770] = 1701, - [4771] = 1704, - [4772] = 4754, - [4773] = 1711, - [4774] = 4756, - [4775] = 4756, - [4776] = 4776, - [4777] = 4754, + [4194] = 1223, + [4195] = 1593, + [4196] = 1574, + [4197] = 1587, + [4198] = 1523, + [4199] = 1524, + [4200] = 1643, + [4201] = 1644, + [4202] = 1452, + [4203] = 1645, + [4204] = 1525, + [4205] = 1525, + [4206] = 1526, + [4207] = 1803, + [4208] = 1804, + [4209] = 1807, + [4210] = 1559, + [4211] = 1810, + [4212] = 1646, + [4213] = 1647, + [4214] = 1648, + [4215] = 1486, + [4216] = 1551, + [4217] = 1649, + [4218] = 1650, + [4219] = 1651, + [4220] = 1457, + [4221] = 1627, + [4222] = 1652, + [4223] = 1466, + [4224] = 1653, + [4225] = 1654, + [4226] = 1655, + [4227] = 1582, + [4228] = 1495, + [4229] = 1496, + [4230] = 1678, + [4231] = 1485, + [4232] = 1222, + [4233] = 1560, + [4234] = 1529, + [4235] = 1561, + [4236] = 1575, + [4237] = 1576, + [4238] = 4238, + [4239] = 1484, + [4240] = 1814, + [4241] = 1563, + [4242] = 1577, + [4243] = 1677, + [4244] = 1530, + [4245] = 1455, + [4246] = 1224, + [4247] = 1633, + [4248] = 1578, + [4249] = 1640, + [4250] = 1497, + [4251] = 1559, + [4252] = 1560, + [4253] = 1625, + [4254] = 1561, + [4255] = 1562, + [4256] = 1641, + [4257] = 1498, + [4258] = 1499, + [4259] = 1678, + [4260] = 1563, + [4261] = 1531, + [4262] = 1532, + [4263] = 1500, + [4264] = 1583, + [4265] = 1526, + [4266] = 1584, + [4267] = 1588, + [4268] = 1821, + [4269] = 1822, + [4270] = 1589, + [4271] = 1527, + [4272] = 1823, + [4273] = 1824, + [4274] = 1481, + [4275] = 1225, + [4276] = 1825, + [4277] = 1625, + [4278] = 1590, + [4279] = 1529, + [4280] = 1530, + [4281] = 1826, + [4282] = 1678, + [4283] = 1577, + [4284] = 1595, + [4285] = 1527, + [4286] = 1596, + [4287] = 1597, + [4288] = 1827, + [4289] = 1828, + [4290] = 1829, + [4291] = 1830, + [4292] = 1832, + [4293] = 1481, + [4294] = 1814, + [4295] = 1821, + [4296] = 1822, + [4297] = 1823, + [4298] = 1824, + [4299] = 1825, + [4300] = 1826, + [4301] = 1827, + [4302] = 1828, + [4303] = 1829, + [4304] = 1830, + [4305] = 1832, + [4306] = 1833, + [4307] = 1658, + [4308] = 1815, + [4309] = 1226, + [4310] = 1548, + [4311] = 1623, + [4312] = 1833, + [4313] = 1465, + [4314] = 1492, + [4315] = 1658, + [4316] = 1815, + [4317] = 1632, + [4318] = 1633, + [4319] = 1593, + [4320] = 1624, + [4321] = 1465, + [4322] = 1501, + [4323] = 1598, + [4324] = 1502, + [4325] = 1531, + [4326] = 1532, + [4327] = 1511, + [4328] = 1489, + [4329] = 1458, + [4330] = 1821, + [4331] = 1822, + [4332] = 1823, + [4333] = 1824, + [4334] = 1825, + [4335] = 1826, + [4336] = 1827, + [4337] = 1828, + [4338] = 1829, + [4339] = 1830, + [4340] = 1832, + [4341] = 1833, + [4342] = 1658, + [4343] = 1503, + [4344] = 1504, + [4345] = 1505, + [4346] = 1628, + [4347] = 1585, + [4348] = 1506, + [4349] = 1507, + [4350] = 1562, + [4351] = 1508, + [4352] = 1813, + [4353] = 1564, + [4354] = 1565, + [4355] = 1620, + [4356] = 1225, + [4357] = 1566, + [4358] = 1643, + [4359] = 1644, + [4360] = 1594, + [4361] = 1595, + [4362] = 1533, + [4363] = 1645, + [4364] = 1492, + [4365] = 1533, + [4366] = 1534, + [4367] = 1813, + [4368] = 1549, + [4369] = 1534, + [4370] = 1542, + [4371] = 1677, + [4372] = 1596, + [4373] = 1597, + [4374] = 1646, + [4375] = 1647, + [4376] = 1598, + [4377] = 1648, + [4378] = 1649, + [4379] = 1509, + [4380] = 1650, + [4381] = 1632, + [4382] = 1564, + [4383] = 1533, + [4384] = 1534, + [4385] = 1651, + [4386] = 1510, + [4387] = 1489, + [4388] = 1458, + [4389] = 1652, + [4390] = 1573, + [4391] = 1625, + [4392] = 1221, + [4393] = 1223, + [4394] = 1529, + [4395] = 1641, + [4396] = 1628, + [4397] = 1530, + [4398] = 1653, + [4399] = 1654, + [4400] = 1222, + [4401] = 1615, + [4402] = 1626, + [4403] = 1621, + [4404] = 1224, + [4405] = 1482, + [4406] = 1624, + [4407] = 1655, + [4408] = 1582, + [4409] = 1495, + [4410] = 1496, + [4411] = 1225, + [4412] = 1226, + [4413] = 1513, + [4414] = 1622, + [4415] = 1622, + [4416] = 1485, + [4417] = 1678, + [4418] = 1573, + [4419] = 1565, + [4420] = 1821, + [4421] = 1822, + [4422] = 1823, + [4423] = 1824, + [4424] = 1825, + [4425] = 1826, + [4426] = 1827, + [4427] = 1828, + [4428] = 1829, + [4429] = 1830, + [4430] = 1832, + [4431] = 1833, + [4432] = 1658, + [4433] = 1616, + [4434] = 1617, + [4435] = 1621, + [4436] = 1484, + [4437] = 1813, + [4438] = 1803, + [4439] = 1571, + [4440] = 1618, + [4441] = 1616, + [4442] = 1617, + [4443] = 1618, + [4444] = 1619, + [4445] = 1620, + [4446] = 1633, + [4447] = 1574, + [4448] = 1804, + [4449] = 1575, + [4450] = 1591, + [4451] = 1576, + [4452] = 1641, + [4453] = 1814, + [4454] = 1592, + [4455] = 1594, + [4456] = 1826, + [4457] = 1583, + [4458] = 1584, + [4459] = 1615, + [4460] = 1821, + [4461] = 1585, + [4462] = 1586, + [4463] = 1615, + [4464] = 1587, + [4465] = 1588, + [4466] = 1821, + [4467] = 1822, + [4468] = 1803, + [4469] = 1589, + [4470] = 1823, + [4471] = 1822, + [4472] = 1824, + [4473] = 1825, + [4474] = 1616, + [4475] = 1617, + [4476] = 1618, + [4477] = 1619, + [4478] = 1620, + [4479] = 1804, + [4480] = 1807, + [4481] = 1810, + [4482] = 1621, + [4483] = 1625, + [4484] = 1616, + [4485] = 1617, + [4486] = 4486, + [4487] = 1618, + [4488] = 1619, + [4489] = 1620, + [4490] = 1823, + [4491] = 1532, + [4492] = 1621, + [4493] = 1622, + [4494] = 1807, + [4495] = 1824, + [4496] = 1590, + [4497] = 1622, + [4498] = 1623, + [4499] = 1623, + [4500] = 1624, + [4501] = 1624, + [4502] = 1810, + [4503] = 1826, + [4504] = 1827, + [4505] = 1825, + [4506] = 1551, + [4507] = 1678, + [4508] = 1828, + [4509] = 1545, + [4510] = 1552, + [4511] = 1568, + [4512] = 1829, + [4513] = 1559, + [4514] = 1821, + [4515] = 1822, + [4516] = 1823, + [4517] = 1824, + [4518] = 1825, + [4519] = 1826, + [4520] = 1827, + [4521] = 1828, + [4522] = 1829, + [4523] = 1830, + [4524] = 1832, + [4525] = 1833, + [4526] = 1658, + [4527] = 1826, + [4528] = 1546, + [4529] = 1626, + [4530] = 1627, + [4531] = 1830, + [4532] = 1832, + [4533] = 1628, + [4534] = 1833, + [4535] = 1658, + [4536] = 1626, + [4537] = 1627, + [4538] = 1815, + [4539] = 1593, + [4540] = 1529, + [4541] = 1530, + [4542] = 1625, + [4543] = 1591, + [4544] = 1592, + [4545] = 1827, + [4546] = 1828, + [4547] = 1678, + [4548] = 1829, + [4549] = 1830, + [4550] = 1832, + [4551] = 1833, + [4552] = 1658, + [4553] = 1561, + [4554] = 1562, + [4555] = 1678, + [4556] = 1563, + [4557] = 1813, + [4558] = 1564, + [4559] = 1628, + [4560] = 1565, + [4561] = 1566, + [4562] = 1547, + [4563] = 1548, + [4564] = 1821, + [4565] = 1822, + [4566] = 1823, + [4567] = 1824, + [4568] = 1825, + [4569] = 1594, + [4570] = 1826, + [4571] = 1827, + [4572] = 1828, + [4573] = 1829, + [4574] = 1830, + [4575] = 1832, + [4576] = 1833, + [4577] = 1658, + [4578] = 1595, + [4579] = 1542, + [4580] = 1543, + [4581] = 1544, + [4582] = 1545, + [4583] = 1546, + [4584] = 1547, + [4585] = 1548, + [4586] = 1549, + [4587] = 1550, + [4588] = 1596, + [4589] = 1551, + [4590] = 1597, + [4591] = 1552, + [4592] = 1598, + [4593] = 1625, + [4594] = 1549, + [4595] = 1529, + [4596] = 1530, + [4597] = 1559, + [4598] = 1560, + [4599] = 1561, + [4600] = 1562, + [4601] = 1563, + [4602] = 1813, + [4603] = 1564, + [4604] = 1565, + [4605] = 1566, + [4606] = 1856, + [4607] = 1677, + [4608] = 1573, + [4609] = 1821, + [4610] = 1550, + [4611] = 1542, + [4612] = 1571, + [4613] = 1822, + [4614] = 1543, + [4615] = 1574, + [4616] = 1803, + [4617] = 1823, + [4618] = 1824, + [4619] = 1825, + [4620] = 1804, + [4621] = 1807, + [4622] = 2475, + [4623] = 1810, + [4624] = 1826, + [4625] = 1827, + [4626] = 1828, + [4627] = 1829, + [4628] = 1830, + [4629] = 1832, + [4630] = 1833, + [4631] = 1873, + [4632] = 1658, + [4633] = 1575, + [4634] = 1803, + [4635] = 1804, + [4636] = 1807, + [4637] = 1810, + [4638] = 1675, + [4639] = 1571, + [4640] = 1576, + [4641] = 1814, + [4642] = 2475, + [4643] = 1677, + [4644] = 1678, + [4645] = 1821, + [4646] = 1822, + [4647] = 1823, + [4648] = 1824, + [4649] = 1825, + [4650] = 1826, + [4651] = 1827, + [4652] = 1828, + [4653] = 1829, + [4654] = 1830, + [4655] = 1832, + [4656] = 1833, + [4657] = 1658, + [4658] = 1577, + [4659] = 1578, + [4660] = 1544, + [4661] = 1678, + [4662] = 1573, + [4663] = 1568, + [4664] = 1803, + [4665] = 1531, + [4666] = 1625, + [4667] = 1532, + [4668] = 1583, + [4669] = 4669, + [4670] = 1584, + [4671] = 1574, + [4672] = 1560, + [4673] = 1591, + [4674] = 2475, + [4675] = 1804, + [4676] = 1585, + [4677] = 1586, + [4678] = 2820, + [4679] = 1587, + [4680] = 1588, + [4681] = 1575, + [4682] = 1589, + [4683] = 1807, + [4684] = 1576, + [4685] = 1590, + [4686] = 1814, + [4687] = 1803, + [4688] = 1804, + [4689] = 1807, + [4690] = 1810, + [4691] = 1677, + [4692] = 1815, + [4693] = 1593, + [4694] = 1803, + [4695] = 1804, + [4696] = 1807, + [4697] = 1810, + [4698] = 1678, + [4699] = 1577, + [4700] = 1810, + [4701] = 1578, + [4702] = 1803, + [4703] = 1594, + [4704] = 1595, + [4705] = 1533, + [4706] = 1596, + [4707] = 1597, + [4708] = 1534, + [4709] = 1598, + [4710] = 1592, + [4711] = 1678, + [4712] = 1531, + [4713] = 1533, + [4714] = 1821, + [4715] = 1822, + [4716] = 1823, + [4717] = 1824, + [4718] = 1825, + [4719] = 1625, + [4720] = 1827, + [4721] = 1828, + [4722] = 1829, + [4723] = 1830, + [4724] = 1832, + [4725] = 1833, + [4726] = 1658, + [4727] = 1534, + [4728] = 1804, + [4729] = 4729, + [4730] = 4729, + [4731] = 1803, + [4732] = 4732, + [4733] = 1804, + [4734] = 4732, + [4735] = 4729, + [4736] = 4729, + [4737] = 4737, + [4738] = 4729, + [4739] = 4732, + [4740] = 4729, + [4741] = 4737, + [4742] = 4737, + [4743] = 1678, + [4744] = 4732, + [4745] = 4729, + [4746] = 4737, + [4747] = 4732, + [4748] = 4737, + [4749] = 4732, + [4750] = 4737, + [4751] = 4732, + [4752] = 4737, + [4753] = 4732, + [4754] = 4737, + [4755] = 4732, + [4756] = 4737, + [4757] = 4732, + [4758] = 4729, + [4759] = 4737, + [4760] = 4729, + [4761] = 4737, + [4762] = 4762, + [4763] = 4737, + [4764] = 1821, + [4765] = 1822, + [4766] = 1823, + [4767] = 1824, + [4768] = 1825, + [4769] = 1826, + [4770] = 1827, + [4771] = 1828, + [4772] = 1829, + [4773] = 1830, + [4774] = 1832, + [4775] = 1833, + [4776] = 1658, + [4777] = 4732, [4778] = 4778, - [4779] = 4756, - [4780] = 4776, - [4781] = 4756, - [4782] = 4754, - [4783] = 4776, - [4784] = 4754, - [4785] = 1693, - [4786] = 1693, - [4787] = 1705, - [4788] = 1716, - [4789] = 1685, - [4790] = 1709, - [4791] = 1713, - [4792] = 1714, - [4793] = 1717, - [4794] = 1718, - [4795] = 1727, - [4796] = 1697, - [4797] = 1701, - [4798] = 1704, - [4799] = 1694, - [4800] = 1694, - [4801] = 1711, - [4802] = 1695, - [4803] = 1695, - [4804] = 1672, - [4805] = 1672, - [4806] = 4756, - [4807] = 4776, - [4808] = 4776, - [4809] = 4756, - [4810] = 4756, - [4811] = 4776, - [4812] = 4754, - [4813] = 4754, - [4814] = 4754, - [4815] = 1705, - [4816] = 1716, - [4817] = 1685, - [4818] = 1709, - [4819] = 1713, - [4820] = 4820, - [4821] = 4821, - [4822] = 4822, - [4823] = 1714, - [4824] = 1717, - [4825] = 1718, - [4826] = 1727, - [4827] = 4756, - [4828] = 4756, - [4829] = 4776, - [4830] = 1684, - [4831] = 4776, - [4832] = 4754, - [4833] = 1697, - [4834] = 1701, - [4835] = 1704, - [4836] = 4754, - [4837] = 1711, - [4838] = 4756, - [4839] = 4776, - [4840] = 4756, - [4841] = 4756, - [4842] = 1693, - [4843] = 1694, - [4844] = 1695, - [4845] = 4776, - [4846] = 1672, - [4847] = 4754, - [4848] = 1684, - [4849] = 4849, - [4850] = 4850, - [4851] = 4850, - [4852] = 4852, - [4853] = 4850, - [4854] = 4850, - [4855] = 4852, - [4856] = 4852, - [4857] = 4850, - [4858] = 4852, - [4859] = 4850, - [4860] = 4852, - [4861] = 4852, - [4862] = 4850, - [4863] = 4852, - [4864] = 4850, - [4865] = 4852, - [4866] = 4850, - [4867] = 4852, - [4868] = 4852, - [4869] = 4850, - [4870] = 4852, - [4871] = 4852, - [4872] = 4850, - [4873] = 4850, - [4874] = 4852, - [4875] = 4852, - [4876] = 4850, - [4877] = 4850, - [4878] = 4852, - [4879] = 4850, - [4880] = 4850, - [4881] = 4852, - [4882] = 4850, - [4883] = 4852, - [4884] = 4852, - [4885] = 4850, - [4886] = 4852, - [4887] = 4850, - [4888] = 4852, - [4889] = 4850, - [4890] = 4890, - [4891] = 4891, - [4892] = 4892, - [4893] = 4893, - [4894] = 4894, - [4895] = 4895, - [4896] = 4894, - [4897] = 4893, - [4898] = 4895, - [4899] = 4894, - [4900] = 4894, - [4901] = 4893, - [4902] = 4895, - [4903] = 4903, - [4904] = 4892, - [4905] = 4905, - [4906] = 4893, - [4907] = 4895, - [4908] = 4895, - [4909] = 4903, - [4910] = 4892, - [4911] = 4903, - [4912] = 4892, - [4913] = 4903, - [4914] = 4905, - [4915] = 4893, - [4916] = 4905, - [4917] = 4893, - [4918] = 4895, - [4919] = 4892, - [4920] = 4905, - [4921] = 4892, - [4922] = 4893, - [4923] = 4893, - [4924] = 4892, - [4925] = 4894, - [4926] = 4894, - [4927] = 4894, - [4928] = 4895, - [4929] = 4895, - [4930] = 4903, - [4931] = 4892, - [4932] = 4903, - [4933] = 4894, - [4934] = 4893, - [4935] = 4892, - [4936] = 4903, - [4937] = 4905, - [4938] = 4905, - [4939] = 4894, - [4940] = 4905, - [4941] = 4905, - [4942] = 4893, - [4943] = 4903, - [4944] = 4905, - [4945] = 4895, - [4946] = 4893, - [4947] = 4894, - [4948] = 4895, - [4949] = 4895, - [4950] = 4892, - [4951] = 4894, - [4952] = 4903, - [4953] = 4892, - [4954] = 4894, - [4955] = 4903, - [4956] = 4895, - [4957] = 4905, - [4958] = 4893, - [4959] = 4903, - [4960] = 4892, - [4961] = 4892, - [4962] = 4903, - [4963] = 4894, - [4964] = 4895, - [4965] = 4903, - [4966] = 4892, - [4967] = 4905, - [4968] = 4905, - [4969] = 4905, - [4970] = 4893, - [4971] = 4894, - [4972] = 4893, - [4973] = 4895, - [4974] = 4903, - [4975] = 4905, - [4976] = 4891, - [4977] = 4890, - [4978] = 4978, - [4979] = 4978, - [4980] = 4978, - [4981] = 4978, - [4982] = 4978, - [4983] = 4978, - [4984] = 4978, - [4985] = 4978, - [4986] = 4978, - [4987] = 4978, - [4988] = 4978, - [4989] = 4978, - [4990] = 4978, - [4991] = 4978, - [4992] = 4978, - [4993] = 4978, - [4994] = 4978, - [4995] = 4978, - [4996] = 4978, - [4997] = 4978, - [4998] = 4978, - [4999] = 4978, - [5000] = 4978, - [5001] = 4978, - [5002] = 4978, - [5003] = 5003, - [5004] = 5004, - [5005] = 5005, - [5006] = 5006, - [5007] = 5004, - [5008] = 5008, - [5009] = 5004, - [5010] = 5006, - [5011] = 5008, - [5012] = 5003, - [5013] = 5005, - [5014] = 5005, - [5015] = 5004, - [5016] = 5006, - [5017] = 5004, - [5018] = 5006, - [5019] = 5005, - [5020] = 5004, - [5021] = 5008, - [5022] = 5006, - [5023] = 5005, - [5024] = 5005, - [5025] = 5005, - [5026] = 5005, - [5027] = 5004, - [5028] = 5003, - [5029] = 5004, - [5030] = 5005, - [5031] = 5006, - [5032] = 5006, - [5033] = 5008, - [5034] = 5004, - [5035] = 5006, - [5036] = 5004, - [5037] = 5003, - [5038] = 5008, - [5039] = 5004, - [5040] = 5008, - [5041] = 5003, - [5042] = 5005, - [5043] = 5006, - [5044] = 5005, - [5045] = 5008, - [5046] = 5004, - [5047] = 5006, - [5048] = 5003, - [5049] = 5006, - [5050] = 5004, - [5051] = 5003, - [5052] = 5003, - [5053] = 5003, - [5054] = 5003, - [5055] = 5008, - [5056] = 5008, - [5057] = 5008, - [5058] = 5006, - [5059] = 5003, - [5060] = 5005, + [4779] = 4779, + [4780] = 4780, + [4781] = 1678, + [4782] = 1821, + [4783] = 1822, + [4784] = 4729, + [4785] = 1823, + [4786] = 1803, + [4787] = 1824, + [4788] = 1825, + [4789] = 1804, + [4790] = 1807, + [4791] = 1810, + [4792] = 1826, + [4793] = 1827, + [4794] = 1828, + [4795] = 1821, + [4796] = 1822, + [4797] = 1823, + [4798] = 1824, + [4799] = 1825, + [4800] = 4737, + [4801] = 1826, + [4802] = 1827, + [4803] = 1828, + [4804] = 1829, + [4805] = 1830, + [4806] = 1832, + [4807] = 1833, + [4808] = 1658, + [4809] = 1829, + [4810] = 1830, + [4811] = 1832, + [4812] = 1678, + [4813] = 1833, + [4814] = 1658, + [4815] = 1803, + [4816] = 1804, + [4817] = 1807, + [4818] = 1810, + [4819] = 4732, + [4820] = 4732, + [4821] = 4732, + [4822] = 1807, + [4823] = 1810, + [4824] = 4737, + [4825] = 4825, + [4826] = 4826, + [4827] = 4826, + [4828] = 4828, + [4829] = 4826, + [4830] = 4826, + [4831] = 4828, + [4832] = 4826, + [4833] = 4828, + [4834] = 4826, + [4835] = 4828, + [4836] = 4826, + [4837] = 4828, + [4838] = 4826, + [4839] = 4828, + [4840] = 4826, + [4841] = 4828, + [4842] = 4828, + [4843] = 4828, + [4844] = 4828, + [4845] = 4828, + [4846] = 4826, + [4847] = 4828, + [4848] = 4826, + [4849] = 4828, + [4850] = 4826, + [4851] = 4828, + [4852] = 4828, + [4853] = 4826, + [4854] = 4828, + [4855] = 4826, + [4856] = 4828, + [4857] = 4826, + [4858] = 4828, + [4859] = 4826, + [4860] = 4828, + [4861] = 4826, + [4862] = 4828, + [4863] = 4826, + [4864] = 4826, + [4865] = 4826, + [4866] = 4866, + [4867] = 4867, + [4868] = 4868, + [4869] = 4869, + [4870] = 4870, + [4871] = 4868, + [4872] = 4869, + [4873] = 4873, + [4874] = 4874, + [4875] = 4869, + [4876] = 4870, + [4877] = 4868, + [4878] = 4874, + [4879] = 4870, + [4880] = 4869, + [4881] = 4873, + [4882] = 4882, + [4883] = 4868, + [4884] = 4874, + [4885] = 4870, + [4886] = 4873, + [4887] = 4882, + [4888] = 4870, + [4889] = 4882, + [4890] = 4873, + [4891] = 4874, + [4892] = 4874, + [4893] = 4870, + [4894] = 4868, + [4895] = 4873, + [4896] = 4882, + [4897] = 4870, + [4898] = 4882, + [4899] = 4869, + [4900] = 4869, + [4901] = 4874, + [4902] = 4870, + [4903] = 4868, + [4904] = 4873, + [4905] = 4882, + [4906] = 4868, + [4907] = 4866, + [4908] = 4867, + [4909] = 4868, + [4910] = 4874, + [4911] = 4873, + [4912] = 4869, + [4913] = 4874, + [4914] = 4870, + [4915] = 4868, + [4916] = 4873, + [4917] = 4882, + [4918] = 4873, + [4919] = 4882, + [4920] = 4868, + [4921] = 4869, + [4922] = 4882, + [4923] = 4870, + [4924] = 4882, + [4925] = 4868, + [4926] = 4869, + [4927] = 4869, + [4928] = 4874, + [4929] = 4870, + [4930] = 4868, + [4931] = 4873, + [4932] = 4882, + [4933] = 4869, + [4934] = 4874, + [4935] = 4873, + [4936] = 4874, + [4937] = 4874, + [4938] = 4882, + [4939] = 4870, + [4940] = 4868, + [4941] = 4869, + [4942] = 4873, + [4943] = 4882, + [4944] = 4869, + [4945] = 4869, + [4946] = 4874, + [4947] = 4874, + [4948] = 4870, + [4949] = 4868, + [4950] = 4873, + [4951] = 4882, + [4952] = 4870, + [4953] = 4873, + [4954] = 4954, + [4955] = 4954, + [4956] = 4954, + [4957] = 4954, + [4958] = 4954, + [4959] = 4954, + [4960] = 4954, + [4961] = 4954, + [4962] = 4954, + [4963] = 4954, + [4964] = 4954, + [4965] = 4954, + [4966] = 4954, + [4967] = 4954, + [4968] = 4954, + [4969] = 4954, + [4970] = 4954, + [4971] = 4954, + [4972] = 4954, + [4973] = 4954, + [4974] = 4954, + [4975] = 4954, + [4976] = 4954, + [4977] = 4954, + [4978] = 4954, + [4979] = 4979, + [4980] = 4980, + [4981] = 4981, + [4982] = 4979, + [4983] = 4983, + [4984] = 4980, + [4985] = 4983, + [4986] = 4986, + [4987] = 4979, + [4988] = 4979, + [4989] = 4986, + [4990] = 4983, + [4991] = 4981, + [4992] = 4986, + [4993] = 4981, + [4994] = 4980, + [4995] = 4981, + [4996] = 4980, + [4997] = 4986, + [4998] = 4980, + [4999] = 4983, + [5000] = 4983, + [5001] = 4986, + [5002] = 4981, + [5003] = 4986, + [5004] = 4981, + [5005] = 4981, + [5006] = 4979, + [5007] = 4980, + [5008] = 4981, + [5009] = 4983, + [5010] = 4983, + [5011] = 4986, + [5012] = 4980, + [5013] = 4979, + [5014] = 4986, + [5015] = 4980, + [5016] = 4981, + [5017] = 4979, + [5018] = 4981, + [5019] = 5019, + [5020] = 4983, + [5021] = 4979, + [5022] = 4979, + [5023] = 4979, + [5024] = 4979, + [5025] = 4980, + [5026] = 4979, + [5027] = 4980, + [5028] = 4986, + [5029] = 4983, + [5030] = 4979, + [5031] = 4983, + [5032] = 4980, + [5033] = 4979, + [5034] = 4986, + [5035] = 4981, + [5036] = 4980, + [5037] = 4980, + [5038] = 4983, + [5039] = 4986, + [5040] = 4986, + [5041] = 4981, + [5042] = 4980, + [5043] = 4983, + [5044] = 4986, + [5045] = 4986, + [5046] = 4983, + [5047] = 4983, + [5048] = 4981, + [5049] = 4981, + [5050] = 5050, + [5051] = 5051, + [5052] = 5052, + [5053] = 5053, + [5054] = 5054, + [5055] = 5055, + [5056] = 5056, + [5057] = 5057, + [5058] = 5058, + [5059] = 5059, + [5060] = 5060, [5061] = 5061, - [5062] = 5004, - [5063] = 5005, - [5064] = 5006, - [5065] = 5008, - [5066] = 5003, - [5067] = 5006, - [5068] = 5008, - [5069] = 5008, - [5070] = 5005, - [5071] = 5003, - [5072] = 5003, - [5073] = 5008, + [5062] = 5062, + [5063] = 5063, + [5064] = 5064, + [5065] = 5065, + [5066] = 5066, + [5067] = 5067, + [5068] = 5068, + [5069] = 5069, + [5070] = 5070, + [5071] = 5071, + [5072] = 5072, + [5073] = 5073, [5074] = 5074, [5075] = 5075, [5076] = 5076, [5077] = 5077, [5078] = 5078, [5079] = 5079, - [5080] = 5080, - [5081] = 5081, - [5082] = 5082, - [5083] = 5083, - [5084] = 5084, - [5085] = 5085, - [5086] = 5086, - [5087] = 5087, - [5088] = 5088, - [5089] = 5089, - [5090] = 5090, - [5091] = 5091, - [5092] = 5092, - [5093] = 5093, - [5094] = 5094, - [5095] = 5095, - [5096] = 5096, - [5097] = 5097, - [5098] = 5098, - [5099] = 5099, - [5100] = 5100, - [5101] = 5101, - [5102] = 5102, - [5103] = 5103, - [5104] = 5103, - [5105] = 5103, - [5106] = 5103, - [5107] = 5103, - [5108] = 5103, - [5109] = 5103, - [5110] = 5103, - [5111] = 5103, - [5112] = 5103, - [5113] = 5103, - [5114] = 5103, - [5115] = 5103, - [5116] = 5103, - [5117] = 5103, - [5118] = 5103, - [5119] = 5103, - [5120] = 5103, - [5121] = 5103, - [5122] = 5103, - [5123] = 5103, - [5124] = 5103, - [5125] = 5103, - [5126] = 5103, - [5127] = 5103, - [5128] = 5103, - [5129] = 5103, - [5130] = 5103, - [5131] = 5103, - [5132] = 5103, - [5133] = 5133, - [5134] = 5134, - [5135] = 5135, - [5136] = 1658, - [5137] = 1524, - [5138] = 1523, - [5139] = 5139, - [5140] = 5139, - [5141] = 5141, - [5142] = 5142, - [5143] = 5143, - [5144] = 5144, - [5145] = 5145, - [5146] = 5146, - [5147] = 5147, - [5148] = 5148, - [5149] = 5149, - [5150] = 5144, - [5151] = 5145, - [5152] = 5146, - [5153] = 5147, - [5154] = 5148, - [5155] = 5149, - [5156] = 5139, - [5157] = 5141, - [5158] = 5142, - [5159] = 5143, - [5160] = 5144, - [5161] = 5145, - [5162] = 5146, - [5163] = 5147, - [5164] = 5148, - [5165] = 5149, - [5166] = 5144, - [5167] = 5145, - [5168] = 5139, - [5169] = 5141, - [5170] = 5142, - [5171] = 5143, - [5172] = 5146, - [5173] = 5144, - [5174] = 5145, - [5175] = 5146, - [5176] = 5147, - [5177] = 5148, - [5178] = 5149, - [5179] = 5147, - [5180] = 5148, - [5181] = 5149, - [5182] = 5139, - [5183] = 5141, - [5184] = 5142, - [5185] = 5143, - [5186] = 5144, - [5187] = 5145, - [5188] = 5146, - [5189] = 5147, - [5190] = 5148, - [5191] = 5149, - [5192] = 5141, - [5193] = 5139, - [5194] = 5141, - [5195] = 5142, - [5196] = 5143, - [5197] = 5139, - [5198] = 5144, - [5199] = 5145, - [5200] = 5146, - [5201] = 5147, - [5202] = 5148, - [5203] = 5149, - [5204] = 5144, - [5205] = 5145, - [5206] = 5146, - [5207] = 5147, - [5208] = 5148, - [5209] = 5149, - [5210] = 5142, - [5211] = 5139, - [5212] = 5141, - [5213] = 5142, - [5214] = 5143, - [5215] = 5139, - [5216] = 5141, - [5217] = 5139, - [5218] = 5141, - [5219] = 5142, - [5220] = 5143, - [5221] = 5142, - [5222] = 5143, - [5223] = 5144, - [5224] = 5145, - [5225] = 5146, - [5226] = 5147, - [5227] = 5148, - [5228] = 5149, - [5229] = 5144, - [5230] = 5145, - [5231] = 5146, - [5232] = 5147, - [5233] = 5148, - [5234] = 5149, - [5235] = 5139, - [5236] = 5141, - [5237] = 5142, - [5238] = 5143, - [5239] = 5144, - [5240] = 5145, - [5241] = 5146, - [5242] = 5147, - [5243] = 5148, - [5244] = 5149, - [5245] = 5139, - [5246] = 5141, - [5247] = 5142, - [5248] = 5143, - [5249] = 5144, - [5250] = 5145, - [5251] = 5146, - [5252] = 5147, - [5253] = 5148, - [5254] = 5149, - [5255] = 5139, - [5256] = 5141, - [5257] = 5142, - [5258] = 5143, - [5259] = 5144, - [5260] = 5145, - [5261] = 5146, - [5262] = 5147, - [5263] = 5148, - [5264] = 5149, - [5265] = 5139, - [5266] = 5141, - [5267] = 5142, - [5268] = 5143, - [5269] = 5144, - [5270] = 5145, - [5271] = 5146, - [5272] = 5147, - [5273] = 5148, - [5274] = 5149, - [5275] = 5139, - [5276] = 5141, - [5277] = 5142, - [5278] = 5143, - [5279] = 5144, - [5280] = 5145, - [5281] = 5146, - [5282] = 5147, - [5283] = 5148, - [5284] = 5149, - [5285] = 5139, - [5286] = 5141, - [5287] = 5149, - [5288] = 5143, - [5289] = 5144, - [5290] = 5145, - [5291] = 5146, - [5292] = 5147, - [5293] = 5148, - [5294] = 5149, - [5295] = 5139, - [5296] = 5141, - [5297] = 5142, - [5298] = 5143, - [5299] = 5144, - [5300] = 5145, - [5301] = 5146, - [5302] = 5147, - [5303] = 5148, - [5304] = 5149, - [5305] = 5139, - [5306] = 5141, - [5307] = 5142, - [5308] = 5143, - [5309] = 5139, - [5310] = 5141, - [5311] = 5144, - [5312] = 5145, - [5313] = 5146, - [5314] = 5147, - [5315] = 5148, - [5316] = 5149, - [5317] = 5142, - [5318] = 5139, - [5319] = 5141, - [5320] = 5142, - [5321] = 5143, - [5322] = 5143, - [5323] = 5139, - [5324] = 5141, - [5325] = 5142, - [5326] = 5143, - [5327] = 5139, - [5328] = 5141, - [5329] = 5142, - [5330] = 5143, - [5331] = 5139, - [5332] = 5141, - [5333] = 5142, - [5334] = 5143, - [5335] = 5139, - [5336] = 5141, - [5337] = 5142, - [5338] = 5143, - [5339] = 5139, - [5340] = 5141, - [5341] = 5142, - [5342] = 5143, - [5343] = 5139, - [5344] = 5141, - [5345] = 5142, - [5346] = 5143, - [5347] = 5139, - [5348] = 5141, - [5349] = 5142, - [5350] = 5143, - [5351] = 5139, - [5352] = 5141, - [5353] = 5142, - [5354] = 5143, - [5355] = 5139, - [5356] = 5141, - [5357] = 5142, - [5358] = 5143, - [5359] = 5139, - [5360] = 5141, - [5361] = 5142, - [5362] = 5143, - [5363] = 5139, - [5364] = 5141, - [5365] = 5142, - [5366] = 5143, - [5367] = 5139, - [5368] = 5141, - [5369] = 5142, - [5370] = 5143, - [5371] = 5139, - [5372] = 5141, - [5373] = 5142, - [5374] = 5143, - [5375] = 5139, - [5376] = 5141, - [5377] = 5139, - [5378] = 5141, - [5379] = 5139, - [5380] = 5141, - [5381] = 5139, - [5382] = 5141, - [5383] = 5139, - [5384] = 5141, - [5385] = 5139, - [5386] = 5141, - [5387] = 5139, - [5388] = 5141, - [5389] = 5139, - [5390] = 5141, - [5391] = 5144, - [5392] = 5145, - [5393] = 5146, - [5394] = 5147, - [5395] = 5148, - [5396] = 5149, - [5397] = 5143, - [5398] = 5141, - [5399] = 5142, - [5400] = 5143, - [5401] = 5139, - [5402] = 5141, - [5403] = 5142, - [5404] = 5143, - [5405] = 5144, - [5406] = 5145, - [5407] = 5146, - [5408] = 5147, - [5409] = 5148, - [5410] = 5142, - [5411] = 5411, + [5080] = 5079, + [5081] = 5079, + [5082] = 5079, + [5083] = 5079, + [5084] = 5079, + [5085] = 5079, + [5086] = 5079, + [5087] = 5079, + [5088] = 5079, + [5089] = 5079, + [5090] = 5079, + [5091] = 5079, + [5092] = 5079, + [5093] = 5079, + [5094] = 5079, + [5095] = 5079, + [5096] = 5079, + [5097] = 5079, + [5098] = 5079, + [5099] = 5079, + [5100] = 5079, + [5101] = 5079, + [5102] = 5079, + [5103] = 5079, + [5104] = 5079, + [5105] = 5079, + [5106] = 5079, + [5107] = 5079, + [5108] = 5079, + [5109] = 1591, + [5110] = 1573, + [5111] = 5111, + [5112] = 5112, + [5113] = 1592, + [5114] = 5114, + [5115] = 5115, + [5116] = 5116, + [5117] = 5117, + [5118] = 5118, + [5119] = 5119, + [5120] = 5119, + [5121] = 5116, + [5122] = 5117, + [5123] = 5118, + [5124] = 5119, + [5125] = 5116, + [5126] = 5117, + [5127] = 5118, + [5128] = 5119, + [5129] = 5116, + [5130] = 5117, + [5131] = 5118, + [5132] = 5119, + [5133] = 5116, + [5134] = 5117, + [5135] = 5118, + [5136] = 5119, + [5137] = 5116, + [5138] = 5117, + [5139] = 5118, + [5140] = 5119, + [5141] = 5116, + [5142] = 5117, + [5143] = 5118, + [5144] = 5119, + [5145] = 5116, + [5146] = 5117, + [5147] = 5118, + [5148] = 5119, + [5149] = 5116, + [5150] = 5117, + [5151] = 5118, + [5152] = 5119, + [5153] = 5116, + [5154] = 5117, + [5155] = 5118, + [5156] = 5119, + [5157] = 5116, + [5158] = 5117, + [5159] = 5118, + [5160] = 5119, + [5161] = 5116, + [5162] = 5117, + [5163] = 5118, + [5164] = 5119, + [5165] = 5116, + [5166] = 5117, + [5167] = 5118, + [5168] = 5119, + [5169] = 5116, + [5170] = 5119, + [5171] = 5116, + [5172] = 5119, + [5173] = 5116, + [5174] = 5119, + [5175] = 5116, + [5176] = 5119, + [5177] = 5116, + [5178] = 5119, + [5179] = 5116, + [5180] = 5119, + [5181] = 5116, + [5182] = 5119, + [5183] = 5116, + [5184] = 5115, + [5185] = 5116, + [5186] = 5117, + [5187] = 5118, + [5188] = 5118, + [5189] = 5117, + [5190] = 5190, + [5191] = 5191, + [5192] = 5118, + [5193] = 5193, + [5194] = 5194, + [5195] = 5194, + [5196] = 5119, + [5197] = 5116, + [5198] = 5193, + [5199] = 5115, + [5200] = 5190, + [5201] = 5191, + [5202] = 5194, + [5203] = 5203, + [5204] = 5117, + [5205] = 5203, + [5206] = 5118, + [5207] = 5193, + [5208] = 5115, + [5209] = 5190, + [5210] = 5117, + [5211] = 5191, + [5212] = 5194, + [5213] = 5193, + [5214] = 5115, + [5215] = 5190, + [5216] = 5191, + [5217] = 5194, + [5218] = 5203, + [5219] = 5203, + [5220] = 5116, + [5221] = 5203, + [5222] = 5116, + [5223] = 5117, + [5224] = 5118, + [5225] = 5115, + [5226] = 5119, + [5227] = 5116, + [5228] = 5117, + [5229] = 5118, + [5230] = 5190, + [5231] = 5191, + [5232] = 5193, + [5233] = 5115, + [5234] = 5190, + [5235] = 5191, + [5236] = 5194, + [5237] = 5119, + [5238] = 5116, + [5239] = 5119, + [5240] = 5116, + [5241] = 5117, + [5242] = 5118, + [5243] = 5117, + [5244] = 5116, + [5245] = 5118, + [5246] = 5119, + [5247] = 5193, + [5248] = 5115, + [5249] = 5203, + [5250] = 5193, + [5251] = 5193, + [5252] = 5115, + [5253] = 5190, + [5254] = 5191, + [5255] = 5194, + [5256] = 5203, + [5257] = 5115, + [5258] = 5119, + [5259] = 5116, + [5260] = 5117, + [5261] = 5190, + [5262] = 5191, + [5263] = 5190, + [5264] = 5194, + [5265] = 5203, + [5266] = 5190, + [5267] = 5191, + [5268] = 5191, + [5269] = 5194, + [5270] = 5117, + [5271] = 5203, + [5272] = 5193, + [5273] = 5115, + [5274] = 5190, + [5275] = 5191, + [5276] = 5194, + [5277] = 5203, + [5278] = 5194, + [5279] = 5119, + [5280] = 5119, + [5281] = 5116, + [5282] = 5117, + [5283] = 5118, + [5284] = 5203, + [5285] = 5116, + [5286] = 5190, + [5287] = 5119, + [5288] = 5193, + [5289] = 5115, + [5290] = 5190, + [5291] = 5191, + [5292] = 5194, + [5293] = 5203, + [5294] = 5119, + [5295] = 5193, + [5296] = 5119, + [5297] = 5116, + [5298] = 5117, + [5299] = 5118, + [5300] = 5194, + [5301] = 5117, + [5302] = 5191, + [5303] = 5193, + [5304] = 5115, + [5305] = 5190, + [5306] = 5115, + [5307] = 5190, + [5308] = 5191, + [5309] = 5191, + [5310] = 5194, + [5311] = 5194, + [5312] = 5203, + [5313] = 5203, + [5314] = 5119, + [5315] = 5116, + [5316] = 5203, + [5317] = 5117, + [5318] = 5118, + [5319] = 5193, + [5320] = 5193, + [5321] = 5193, + [5322] = 5115, + [5323] = 5190, + [5324] = 5191, + [5325] = 5194, + [5326] = 5203, + [5327] = 5115, + [5328] = 5119, + [5329] = 5116, + [5330] = 5117, + [5331] = 5118, + [5332] = 5115, + [5333] = 5119, + [5334] = 5193, + [5335] = 5115, + [5336] = 5190, + [5337] = 5191, + [5338] = 5194, + [5339] = 5203, + [5340] = 5116, + [5341] = 5119, + [5342] = 5116, + [5343] = 5117, + [5344] = 5118, + [5345] = 5117, + [5346] = 5190, + [5347] = 5191, + [5348] = 5193, + [5349] = 5115, + [5350] = 5190, + [5351] = 5191, + [5352] = 5194, + [5353] = 5203, + [5354] = 5194, + [5355] = 5119, + [5356] = 5116, + [5357] = 5117, + [5358] = 5118, + [5359] = 5203, + [5360] = 5118, + [5361] = 5119, + [5362] = 5119, + [5363] = 5116, + [5364] = 5117, + [5365] = 5118, + [5366] = 5193, + [5367] = 5118, + [5368] = 5115, + [5369] = 5119, + [5370] = 5116, + [5371] = 5190, + [5372] = 5191, + [5373] = 5117, + [5374] = 5194, + [5375] = 5118, + [5376] = 5203, + [5377] = 5116, + [5378] = 5119, + [5379] = 5116, + [5380] = 5117, + [5381] = 5118, + [5382] = 5193, + [5383] = 5193, + [5384] = 5118, + [5385] = 5119, + [5386] = 5118, + [5387] = 5387, + [5388] = 5388, + [5389] = 5389, + [5390] = 5390, + [5391] = 5391, + [5392] = 5392, + [5393] = 5393, + [5394] = 5394, + [5395] = 5395, + [5396] = 5396, + [5397] = 5397, + [5398] = 5398, + [5399] = 5399, + [5400] = 5400, + [5401] = 5401, + [5402] = 5396, + [5403] = 5397, + [5404] = 5398, + [5405] = 5399, + [5406] = 5406, + [5407] = 5407, + [5408] = 5408, + [5409] = 5409, + [5410] = 5410, + [5411] = 5406, [5412] = 5412, [5413] = 5413, [5414] = 5414, @@ -7336,2136 +7258,2112 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5416] = 5416, [5417] = 5417, [5418] = 5418, - [5419] = 5412, - [5420] = 5413, + [5419] = 5419, + [5420] = 5420, [5421] = 5421, - [5422] = 5422, + [5422] = 5387, [5423] = 5423, [5424] = 5424, [5425] = 5425, [5426] = 5426, [5427] = 5427, - [5428] = 5421, - [5429] = 5422, - [5430] = 5423, - [5431] = 5424, + [5428] = 5428, + [5429] = 5412, + [5430] = 5430, + [5431] = 5431, [5432] = 5432, [5433] = 5433, [5434] = 5434, - [5435] = 5435, - [5436] = 5436, - [5437] = 5437, + [5435] = 5414, + [5436] = 5416, + [5437] = 5400, [5438] = 5438, [5439] = 5439, [5440] = 5440, - [5441] = 5414, - [5442] = 5436, - [5443] = 5443, - [5444] = 5437, - [5445] = 5438, - [5446] = 5446, - [5447] = 5447, - [5448] = 5439, - [5449] = 5449, - [5450] = 5411, - [5451] = 5451, - [5452] = 5427, - [5453] = 5411, - [5454] = 5440, - [5455] = 5455, - [5456] = 5456, - [5457] = 5457, - [5458] = 5455, - [5459] = 5456, - [5460] = 5457, - [5461] = 5425, - [5462] = 5426, - [5463] = 5463, - [5464] = 5464, - [5465] = 5432, - [5466] = 5080, - [5467] = 5467, - [5468] = 5468, - [5469] = 5469, - [5470] = 5470, - [5471] = 5471, - [5472] = 5472, - [5473] = 5473, - [5474] = 5474, - [5475] = 5475, - [5476] = 5415, - [5477] = 5416, - [5478] = 5417, - [5479] = 5412, - [5480] = 5413, - [5481] = 5414, - [5482] = 5421, - [5483] = 5422, - [5484] = 5423, - [5485] = 5424, - [5486] = 5425, - [5487] = 5426, - [5488] = 5421, - [5489] = 5422, - [5490] = 5423, - [5491] = 5424, - [5492] = 5425, - [5493] = 5426, - [5494] = 5433, - [5495] = 5434, - [5496] = 5435, - [5497] = 5432, - [5498] = 5433, - [5499] = 5434, - [5500] = 5435, - [5501] = 5436, - [5502] = 5437, - [5503] = 5438, + [5441] = 5441, + [5442] = 5400, + [5443] = 5387, + [5444] = 5444, + [5445] = 5445, + [5446] = 5388, + [5447] = 5389, + [5448] = 5390, + [5449] = 5391, + [5450] = 5392, + [5451] = 5393, + [5452] = 5394, + [5453] = 5395, + [5454] = 5396, + [5455] = 5397, + [5456] = 5398, + [5457] = 5399, + [5458] = 5400, + [5459] = 1641, + [5460] = 5408, + [5461] = 5409, + [5462] = 5410, + [5463] = 5406, + [5464] = 5412, + [5465] = 5465, + [5466] = 5413, + [5467] = 5408, + [5468] = 5409, + [5469] = 5410, + [5470] = 5406, + [5471] = 5412, + [5472] = 5413, + [5473] = 5430, + [5474] = 5423, + [5475] = 5431, + [5476] = 5424, + [5477] = 5432, + [5478] = 5433, + [5479] = 5425, + [5480] = 5418, + [5481] = 5419, + [5482] = 5420, + [5483] = 5421, + [5484] = 5387, + [5485] = 5423, + [5486] = 5424, + [5487] = 5425, + [5488] = 5426, + [5489] = 5408, + [5490] = 5409, + [5491] = 5428, + [5492] = 5492, + [5493] = 5410, + [5494] = 5430, + [5495] = 5431, + [5496] = 5432, + [5497] = 5433, + [5498] = 5434, + [5499] = 5414, + [5500] = 5416, + [5501] = 5406, + [5502] = 5412, + [5503] = 5413, [5504] = 5439, [5505] = 5440, - [5506] = 5443, - [5507] = 5449, - [5508] = 5451, - [5509] = 5427, - [5510] = 5411, - [5511] = 5443, - [5512] = 5455, - [5513] = 5456, - [5514] = 5457, - [5515] = 5436, - [5516] = 5437, - [5517] = 5438, - [5518] = 5439, - [5519] = 5440, - [5520] = 5463, - [5521] = 5464, - [5522] = 5467, - [5523] = 5468, - [5524] = 5469, - [5525] = 5470, - [5526] = 5471, - [5527] = 5472, - [5528] = 5473, - [5529] = 5474, - [5530] = 5475, - [5531] = 5415, - [5532] = 5416, - [5533] = 5417, - [5534] = 5412, - [5535] = 5413, - [5536] = 5414, - [5537] = 5438, - [5538] = 5439, - [5539] = 5421, - [5540] = 5422, - [5541] = 5423, - [5542] = 5424, - [5543] = 5425, - [5544] = 5426, - [5545] = 5449, - [5546] = 5451, - [5547] = 5463, - [5548] = 5427, - [5549] = 5411, - [5550] = 5411, - [5551] = 5464, - [5552] = 5455, - [5553] = 5456, - [5554] = 5432, - [5555] = 5433, - [5556] = 5434, - [5557] = 5435, - [5558] = 5436, - [5559] = 5437, - [5560] = 5438, - [5561] = 5439, - [5562] = 5440, - [5563] = 5457, - [5564] = 5564, - [5565] = 5443, - [5566] = 5443, - [5567] = 5449, - [5568] = 5451, - [5569] = 5427, - [5570] = 5411, - [5571] = 5455, - [5572] = 5456, - [5573] = 5457, - [5574] = 5449, - [5575] = 5575, - [5576] = 5451, - [5577] = 5463, - [5578] = 5464, - [5579] = 5427, - [5580] = 5467, - [5581] = 5468, - [5582] = 5469, - [5583] = 5470, - [5584] = 5471, - [5585] = 5472, - [5586] = 5473, - [5587] = 5474, - [5588] = 5475, - [5589] = 5415, - [5590] = 5416, - [5591] = 5417, - [5592] = 5412, - [5593] = 5413, - [5594] = 5414, - [5595] = 5411, - [5596] = 5455, - [5597] = 5456, - [5598] = 5421, - [5599] = 5422, - [5600] = 5423, - [5601] = 5424, - [5602] = 5425, - [5603] = 5426, - [5604] = 5457, - [5605] = 5463, - [5606] = 5443, - [5607] = 5432, - [5608] = 5433, - [5609] = 5464, - [5610] = 5434, - [5611] = 5435, - [5612] = 5436, - [5613] = 5432, - [5614] = 5433, - [5615] = 5434, - [5616] = 5435, - [5617] = 5436, - [5618] = 5437, - [5619] = 5438, - [5620] = 5439, - [5621] = 5440, - [5622] = 5437, - [5623] = 5438, - [5624] = 5439, - [5625] = 5440, - [5626] = 5443, - [5627] = 5080, - [5628] = 5449, - [5629] = 5451, - [5630] = 5413, - [5631] = 5427, - [5632] = 5411, - [5633] = 5455, - [5634] = 5456, - [5635] = 5457, - [5636] = 5636, - [5637] = 5443, - [5638] = 5463, - [5639] = 5464, - [5640] = 1667, - [5641] = 5467, - [5642] = 5468, - [5643] = 5469, - [5644] = 5470, - [5645] = 5471, - [5646] = 5472, - [5647] = 5473, - [5648] = 5474, - [5649] = 5475, - [5650] = 5415, - [5651] = 5416, - [5652] = 5417, - [5653] = 5412, - [5654] = 5413, - [5655] = 5414, - [5656] = 5449, - [5657] = 5451, - [5658] = 5427, - [5659] = 5411, - [5660] = 5421, - [5661] = 5422, - [5662] = 5423, - [5663] = 5424, - [5664] = 5425, - [5665] = 5426, - [5666] = 5421, - [5667] = 5455, - [5668] = 5456, - [5669] = 5457, - [5670] = 5455, - [5671] = 5463, - [5672] = 5464, - [5673] = 5440, - [5674] = 5432, - [5675] = 5433, - [5676] = 5434, - [5677] = 5435, - [5678] = 5436, - [5679] = 5437, - [5680] = 5438, - [5681] = 5439, - [5682] = 5440, - [5683] = 5443, - [5684] = 5449, - [5685] = 5451, - [5686] = 5463, - [5687] = 5427, - [5688] = 5411, - [5689] = 5455, - [5690] = 5456, - [5691] = 5457, - [5692] = 5464, - [5693] = 5463, - [5694] = 5464, - [5695] = 5467, - [5696] = 5468, - [5697] = 5469, - [5698] = 5470, - [5699] = 5471, - [5700] = 5472, - [5701] = 5473, - [5702] = 5474, - [5703] = 5475, - [5704] = 5415, - [5705] = 5416, - [5706] = 5417, - [5707] = 5412, - [5708] = 5413, - [5709] = 5414, - [5710] = 5467, - [5711] = 5421, - [5712] = 5422, - [5713] = 5423, - [5714] = 5424, - [5715] = 5425, - [5716] = 5426, - [5717] = 5468, - [5718] = 5469, - [5719] = 5470, - [5720] = 5471, - [5721] = 5472, - [5722] = 5473, - [5723] = 5474, - [5724] = 5475, - [5725] = 5415, - [5726] = 5467, - [5727] = 5468, - [5728] = 5469, - [5729] = 5416, - [5730] = 5417, - [5731] = 5412, - [5732] = 5413, - [5733] = 5432, - [5734] = 5433, - [5735] = 5434, - [5736] = 5435, - [5737] = 5436, - [5738] = 5437, - [5739] = 5438, - [5740] = 5439, - [5741] = 5440, - [5742] = 5443, - [5743] = 5743, - [5744] = 5449, - [5745] = 5451, - [5746] = 5427, - [5747] = 5411, - [5748] = 5455, - [5749] = 5456, - [5750] = 5457, - [5751] = 5470, - [5752] = 5471, - [5753] = 5472, - [5754] = 5473, - [5755] = 5474, - [5756] = 5475, - [5757] = 5463, - [5758] = 5464, - [5759] = 5467, - [5760] = 5468, - [5761] = 5469, - [5762] = 5470, - [5763] = 5471, - [5764] = 5472, - [5765] = 5473, - [5766] = 5474, - [5767] = 5475, - [5768] = 5415, - [5769] = 5416, - [5770] = 5417, - [5771] = 5412, - [5772] = 5413, - [5773] = 5414, - [5774] = 5414, - [5775] = 5093, - [5776] = 5421, - [5777] = 5422, - [5778] = 5423, - [5779] = 5424, - [5780] = 5425, - [5781] = 5426, - [5782] = 5467, - [5783] = 5421, - [5784] = 5422, - [5785] = 5423, - [5786] = 5415, - [5787] = 5416, - [5788] = 5417, - [5789] = 5412, - [5790] = 5433, - [5791] = 5434, - [5792] = 5435, - [5793] = 5436, - [5794] = 5437, - [5795] = 5438, - [5796] = 5439, - [5797] = 5440, - [5798] = 5424, - [5799] = 5425, - [5800] = 5426, - [5801] = 5423, - [5802] = 5455, - [5803] = 5456, - [5804] = 5457, - [5805] = 5413, - [5806] = 5469, - [5807] = 5470, - [5808] = 5471, - [5809] = 5472, - [5810] = 5473, - [5811] = 5474, - [5812] = 5475, - [5813] = 5415, - [5814] = 5416, - [5815] = 5417, - [5816] = 5412, - [5817] = 5413, - [5818] = 5421, - [5819] = 5422, - [5820] = 5423, - [5821] = 5424, - [5822] = 5425, - [5823] = 5426, - [5824] = 5433, - [5825] = 5434, - [5826] = 5435, - [5827] = 5436, - [5828] = 5437, - [5829] = 5438, - [5830] = 5439, - [5831] = 5440, - [5832] = 5411, - [5833] = 5455, - [5834] = 5456, - [5835] = 5457, - [5836] = 5469, - [5837] = 5470, - [5838] = 5471, - [5839] = 5472, - [5840] = 5473, - [5841] = 5474, - [5842] = 5475, - [5843] = 5415, - [5844] = 5416, - [5845] = 5417, - [5846] = 5412, - [5847] = 5413, - [5848] = 5421, - [5849] = 5422, - [5850] = 5423, - [5851] = 5424, - [5852] = 5425, - [5853] = 5426, - [5854] = 5080, - [5855] = 5433, - [5856] = 5434, - [5857] = 5435, - [5858] = 5436, - [5859] = 5437, - [5860] = 5438, - [5861] = 5439, - [5862] = 5440, - [5863] = 5468, - [5864] = 5411, - [5865] = 5455, - [5866] = 5456, - [5867] = 5457, - [5868] = 5414, - [5869] = 5469, - [5870] = 5470, - [5871] = 5471, - [5872] = 5472, - [5873] = 5473, - [5874] = 5474, - [5875] = 5475, - [5876] = 5415, - [5877] = 5416, - [5878] = 5417, - [5879] = 5412, - [5880] = 5413, - [5881] = 5421, - [5882] = 5422, - [5883] = 5423, - [5884] = 5424, - [5885] = 5425, - [5886] = 5426, - [5887] = 5887, - [5888] = 5463, - [5889] = 5464, - [5890] = 5433, - [5891] = 5434, - [5892] = 5435, - [5893] = 5436, - [5894] = 5437, - [5895] = 5438, - [5896] = 5439, - [5897] = 5440, - [5898] = 1669, - [5899] = 5432, - [5900] = 5411, - [5901] = 5455, - [5902] = 5456, - [5903] = 5457, - [5904] = 5456, - [5905] = 5421, - [5906] = 5422, - [5907] = 5423, - [5908] = 5424, - [5909] = 5469, - [5910] = 5470, - [5911] = 5471, - [5912] = 5472, - [5913] = 5473, - [5914] = 5474, - [5915] = 5475, - [5916] = 5415, - [5917] = 5416, - [5918] = 5417, - [5919] = 5412, - [5920] = 5413, - [5921] = 5421, - [5922] = 5422, - [5923] = 5423, - [5924] = 5424, - [5925] = 5425, - [5926] = 5426, - [5927] = 5469, - [5928] = 5425, - [5929] = 5426, - [5930] = 5433, - [5931] = 5434, - [5932] = 5435, - [5933] = 5436, - [5934] = 5437, - [5935] = 5438, - [5936] = 5417, - [5937] = 5440, - [5938] = 5470, - [5939] = 5471, - [5940] = 5472, - [5941] = 5411, - [5942] = 5455, - [5943] = 5456, - [5944] = 5457, - [5945] = 5469, - [5946] = 5470, - [5947] = 5471, - [5948] = 5472, - [5949] = 5473, - [5950] = 5474, - [5951] = 5475, - [5952] = 5415, - [5953] = 5416, - [5954] = 5417, - [5955] = 5412, - [5956] = 5413, + [5506] = 5413, + [5507] = 5444, + [5508] = 5445, + [5509] = 5388, + [5510] = 5389, + [5511] = 5390, + [5512] = 5391, + [5513] = 5392, + [5514] = 5393, + [5515] = 5394, + [5516] = 5395, + [5517] = 5396, + [5518] = 5397, + [5519] = 5398, + [5520] = 5399, + [5521] = 5400, + [5522] = 5418, + [5523] = 5419, + [5524] = 5420, + [5525] = 5408, + [5526] = 5409, + [5527] = 5410, + [5528] = 5406, + [5529] = 5412, + [5530] = 5413, + [5531] = 5421, + [5532] = 5387, + [5533] = 5423, + [5534] = 5424, + [5535] = 5425, + [5536] = 5426, + [5537] = 5537, + [5538] = 5418, + [5539] = 5419, + [5540] = 5420, + [5541] = 5421, + [5542] = 5387, + [5543] = 5423, + [5544] = 5424, + [5545] = 5425, + [5546] = 5426, + [5547] = 5434, + [5548] = 5428, + [5549] = 5428, + [5550] = 5414, + [5551] = 5424, + [5552] = 5416, + [5553] = 5430, + [5554] = 5431, + [5555] = 5432, + [5556] = 5433, + [5557] = 5434, + [5558] = 5414, + [5559] = 5416, + [5560] = 5418, + [5561] = 5426, + [5562] = 5425, + [5563] = 5439, + [5564] = 5440, + [5565] = 5430, + [5566] = 5439, + [5567] = 5431, + [5568] = 5444, + [5569] = 5445, + [5570] = 5388, + [5571] = 5389, + [5572] = 5390, + [5573] = 5391, + [5574] = 5392, + [5575] = 5393, + [5576] = 5394, + [5577] = 5395, + [5578] = 5396, + [5579] = 5397, + [5580] = 5398, + [5581] = 5399, + [5582] = 5400, + [5583] = 5440, + [5584] = 5432, + [5585] = 5433, + [5586] = 5434, + [5587] = 5587, + [5588] = 5414, + [5589] = 5408, + [5590] = 5409, + [5591] = 5410, + [5592] = 5406, + [5593] = 5412, + [5594] = 5413, + [5595] = 5416, + [5596] = 5418, + [5597] = 5419, + [5598] = 5420, + [5599] = 5421, + [5600] = 5387, + [5601] = 5423, + [5602] = 5424, + [5603] = 5425, + [5604] = 5426, + [5605] = 5428, + [5606] = 5439, + [5607] = 5440, + [5608] = 5430, + [5609] = 5431, + [5610] = 5432, + [5611] = 5433, + [5612] = 5434, + [5613] = 5414, + [5614] = 5416, + [5615] = 5439, + [5616] = 5440, + [5617] = 5444, + [5618] = 5445, + [5619] = 5388, + [5620] = 5444, + [5621] = 5445, + [5622] = 5388, + [5623] = 5389, + [5624] = 5390, + [5625] = 5391, + [5626] = 5392, + [5627] = 5393, + [5628] = 5394, + [5629] = 5395, + [5630] = 5396, + [5631] = 5397, + [5632] = 5398, + [5633] = 5399, + [5634] = 5400, + [5635] = 5389, + [5636] = 5390, + [5637] = 5391, + [5638] = 5392, + [5639] = 5393, + [5640] = 5394, + [5641] = 5395, + [5642] = 5396, + [5643] = 5408, + [5644] = 5409, + [5645] = 5410, + [5646] = 5406, + [5647] = 5412, + [5648] = 5413, + [5649] = 5397, + [5650] = 5398, + [5651] = 5399, + [5652] = 5057, + [5653] = 5418, + [5654] = 5419, + [5655] = 5420, + [5656] = 5421, + [5657] = 5387, + [5658] = 5423, + [5659] = 5424, + [5660] = 5425, + [5661] = 5426, + [5662] = 5428, + [5663] = 5400, + [5664] = 5430, + [5665] = 5431, + [5666] = 5432, + [5667] = 5433, + [5668] = 5434, + [5669] = 5414, + [5670] = 5416, + [5671] = 5408, + [5672] = 5409, + [5673] = 5439, + [5674] = 5440, + [5675] = 5410, + [5676] = 5406, + [5677] = 5412, + [5678] = 5444, + [5679] = 5445, + [5680] = 5388, + [5681] = 5389, + [5682] = 5390, + [5683] = 5391, + [5684] = 5392, + [5685] = 5393, + [5686] = 5394, + [5687] = 5395, + [5688] = 5396, + [5689] = 5397, + [5690] = 5398, + [5691] = 5399, + [5692] = 5400, + [5693] = 5413, + [5694] = 5418, + [5695] = 5408, + [5696] = 5409, + [5697] = 5410, + [5698] = 5406, + [5699] = 5412, + [5700] = 5413, + [5701] = 5399, + [5702] = 5396, + [5703] = 5439, + [5704] = 5419, + [5705] = 5440, + [5706] = 5418, + [5707] = 5426, + [5708] = 5420, + [5709] = 5418, + [5710] = 5419, + [5711] = 5420, + [5712] = 5421, + [5713] = 5387, + [5714] = 5423, + [5715] = 5424, + [5716] = 5425, + [5717] = 5426, + [5718] = 5428, + [5719] = 5421, + [5720] = 5428, + [5721] = 5423, + [5722] = 5424, + [5723] = 5425, + [5724] = 5426, + [5725] = 5430, + [5726] = 5431, + [5727] = 5432, + [5728] = 5433, + [5729] = 5434, + [5730] = 5414, + [5731] = 5416, + [5732] = 5419, + [5733] = 5398, + [5734] = 5419, + [5735] = 5420, + [5736] = 5439, + [5737] = 5440, + [5738] = 5418, + [5739] = 5444, + [5740] = 5445, + [5741] = 5388, + [5742] = 5389, + [5743] = 5390, + [5744] = 5391, + [5745] = 5392, + [5746] = 5393, + [5747] = 5394, + [5748] = 5395, + [5749] = 5396, + [5750] = 5397, + [5751] = 5398, + [5752] = 5399, + [5753] = 5400, + [5754] = 5419, + [5755] = 5420, + [5756] = 5421, + [5757] = 5387, + [5758] = 5408, + [5759] = 5409, + [5760] = 5410, + [5761] = 5406, + [5762] = 5412, + [5763] = 5413, + [5764] = 5428, + [5765] = 5423, + [5766] = 5424, + [5767] = 5425, + [5768] = 5426, + [5769] = 5430, + [5770] = 5428, + [5771] = 5419, + [5772] = 5420, + [5773] = 5421, + [5774] = 5387, + [5775] = 5423, + [5776] = 5424, + [5777] = 5425, + [5778] = 5426, + [5779] = 5420, + [5780] = 5433, + [5781] = 5434, + [5782] = 5414, + [5783] = 5416, + [5784] = 5421, + [5785] = 5431, + [5786] = 5430, + [5787] = 5388, + [5788] = 5389, + [5789] = 5390, + [5790] = 5391, + [5791] = 5392, + [5792] = 5393, + [5793] = 5394, + [5794] = 5395, + [5795] = 5396, + [5796] = 5397, + [5797] = 5398, + [5798] = 5399, + [5799] = 5408, + [5800] = 5409, + [5801] = 5410, + [5802] = 5406, + [5803] = 5412, + [5804] = 5413, + [5805] = 5431, + [5806] = 5432, + [5807] = 5433, + [5808] = 5434, + [5809] = 5419, + [5810] = 5420, + [5811] = 5421, + [5812] = 5387, + [5813] = 5423, + [5814] = 5424, + [5815] = 5425, + [5816] = 5426, + [5817] = 5414, + [5818] = 5416, + [5819] = 5433, + [5820] = 5434, + [5821] = 5414, + [5822] = 5416, + [5823] = 5421, + [5824] = 5072, + [5825] = 5444, + [5826] = 5388, + [5827] = 5389, + [5828] = 5390, + [5829] = 5391, + [5830] = 5392, + [5831] = 5393, + [5832] = 5394, + [5833] = 5395, + [5834] = 5396, + [5835] = 5397, + [5836] = 5398, + [5837] = 5399, + [5838] = 5408, + [5839] = 5409, + [5840] = 5410, + [5841] = 5406, + [5842] = 5412, + [5843] = 5413, + [5844] = 5844, + [5845] = 5419, + [5846] = 5420, + [5847] = 5421, + [5848] = 5387, + [5849] = 5423, + [5850] = 5424, + [5851] = 5425, + [5852] = 5426, + [5853] = 5433, + [5854] = 5434, + [5855] = 5414, + [5856] = 5416, + [5857] = 5445, + [5858] = 5388, + [5859] = 5389, + [5860] = 5390, + [5861] = 5391, + [5862] = 5392, + [5863] = 5393, + [5864] = 5394, + [5865] = 5395, + [5866] = 5396, + [5867] = 5397, + [5868] = 5398, + [5869] = 5399, + [5870] = 5408, + [5871] = 5409, + [5872] = 5410, + [5873] = 5406, + [5874] = 5412, + [5875] = 5413, + [5876] = 5439, + [5877] = 5440, + [5878] = 5419, + [5879] = 5420, + [5880] = 5421, + [5881] = 5387, + [5882] = 5423, + [5883] = 5424, + [5884] = 5425, + [5885] = 5426, + [5886] = 5388, + [5887] = 5389, + [5888] = 5433, + [5889] = 5434, + [5890] = 5414, + [5891] = 5416, + [5892] = 5388, + [5893] = 5389, + [5894] = 5390, + [5895] = 5391, + [5896] = 5392, + [5897] = 5393, + [5898] = 5394, + [5899] = 5395, + [5900] = 5396, + [5901] = 5397, + [5902] = 5398, + [5903] = 5399, + [5904] = 5408, + [5905] = 5409, + [5906] = 5410, + [5907] = 5406, + [5908] = 5412, + [5909] = 5413, + [5910] = 5400, + [5911] = 5444, + [5912] = 5445, + [5913] = 5388, + [5914] = 5419, + [5915] = 5420, + [5916] = 5421, + [5917] = 5387, + [5918] = 5423, + [5919] = 5424, + [5920] = 5425, + [5921] = 5426, + [5922] = 5389, + [5923] = 5390, + [5924] = 5433, + [5925] = 5434, + [5926] = 5414, + [5927] = 5416, + [5928] = 5391, + [5929] = 5392, + [5930] = 5393, + [5931] = 5394, + [5932] = 5395, + [5933] = 5396, + [5934] = 5388, + [5935] = 5389, + [5936] = 5390, + [5937] = 5391, + [5938] = 5392, + [5939] = 5393, + [5940] = 5394, + [5941] = 5395, + [5942] = 5396, + [5943] = 5445, + [5944] = 5398, + [5945] = 5399, + [5946] = 5408, + [5947] = 5409, + [5948] = 5410, + [5949] = 5406, + [5950] = 5412, + [5951] = 5413, + [5952] = 5397, + [5953] = 5398, + [5954] = 5399, + [5955] = 5419, + [5956] = 5420, [5957] = 5421, - [5958] = 5422, + [5958] = 5387, [5959] = 5423, [5960] = 5424, [5961] = 5425, [5962] = 5426, - [5963] = 5473, - [5964] = 5433, - [5965] = 5434, - [5966] = 5435, - [5967] = 5436, - [5968] = 5437, - [5969] = 5438, - [5970] = 5439, - [5971] = 5440, - [5972] = 5411, - [5973] = 5455, - [5974] = 5456, - [5975] = 5457, - [5976] = 5469, - [5977] = 5470, - [5978] = 5471, - [5979] = 5472, - [5980] = 5473, - [5981] = 5474, - [5982] = 5475, - [5983] = 5415, - [5984] = 5416, - [5985] = 5417, - [5986] = 5412, - [5987] = 5413, - [5988] = 5421, - [5989] = 5422, - [5990] = 5423, - [5991] = 5424, - [5992] = 5425, - [5993] = 5426, - [5994] = 5424, - [5995] = 5424, - [5996] = 5425, - [5997] = 5433, - [5998] = 5434, - [5999] = 5435, - [6000] = 5436, - [6001] = 5437, - [6002] = 5438, - [6003] = 5439, - [6004] = 5440, - [6005] = 5411, - [6006] = 5455, - [6007] = 5456, - [6008] = 5457, - [6009] = 5474, - [6010] = 6010, - [6011] = 5433, - [6012] = 5434, - [6013] = 5435, - [6014] = 5436, - [6015] = 5437, - [6016] = 5438, - [6017] = 5439, - [6018] = 5440, - [6019] = 5411, - [6020] = 5455, - [6021] = 5456, - [6022] = 5457, - [6023] = 5475, - [6024] = 5425, - [6025] = 5433, - [6026] = 5434, - [6027] = 5435, - [6028] = 5436, - [6029] = 5437, - [6030] = 5438, - [6031] = 5439, - [6032] = 5440, - [6033] = 5411, - [6034] = 5455, - [6035] = 5456, - [6036] = 5457, - [6037] = 5432, - [6038] = 5433, - [6039] = 5434, - [6040] = 5433, - [6041] = 5434, - [6042] = 5435, - [6043] = 5436, - [6044] = 5437, - [6045] = 5438, - [6046] = 5439, - [6047] = 5440, - [6048] = 5411, - [6049] = 5455, - [6050] = 5456, - [6051] = 5457, - [6052] = 5435, - [6053] = 5436, - [6054] = 5437, - [6055] = 5438, - [6056] = 5433, - [6057] = 5434, - [6058] = 5435, - [6059] = 5436, - [6060] = 5437, - [6061] = 5438, - [6062] = 5439, - [6063] = 5440, - [6064] = 5411, - [6065] = 5455, - [6066] = 5456, - [6067] = 5457, - [6068] = 5439, - [6069] = 5440, - [6070] = 5433, - [6071] = 5434, - [6072] = 5435, - [6073] = 5436, - [6074] = 5437, - [6075] = 5438, - [6076] = 5439, - [6077] = 5440, - [6078] = 5411, - [6079] = 5455, - [6080] = 5456, - [6081] = 5457, - [6082] = 5434, - [6083] = 5435, - [6084] = 6084, - [6085] = 5433, - [6086] = 5434, - [6087] = 5435, - [6088] = 5436, - [6089] = 5437, - [6090] = 5438, - [6091] = 5439, - [6092] = 5440, - [6093] = 5411, - [6094] = 5455, - [6095] = 5456, - [6096] = 5457, - [6097] = 5467, - [6098] = 5443, - [6099] = 5468, - [6100] = 5426, - [6101] = 5433, - [6102] = 5434, - [6103] = 5435, - [6104] = 5436, - [6105] = 5437, - [6106] = 5438, - [6107] = 5439, - [6108] = 5440, - [6109] = 5411, - [6110] = 5455, - [6111] = 5456, - [6112] = 5457, - [6113] = 5433, - [6114] = 5434, - [6115] = 5435, - [6116] = 5436, - [6117] = 5437, - [6118] = 5438, - [6119] = 5439, - [6120] = 5440, - [6121] = 5411, - [6122] = 5455, - [6123] = 5456, - [6124] = 5457, - [6125] = 5469, - [6126] = 5449, - [6127] = 6127, - [6128] = 5451, - [6129] = 5433, - [6130] = 5434, - [6131] = 5435, - [6132] = 5436, - [6133] = 5437, - [6134] = 5438, - [6135] = 5439, - [6136] = 5440, - [6137] = 5411, - [6138] = 5455, - [6139] = 5456, - [6140] = 5457, - [6141] = 5470, - [6142] = 5427, - [6143] = 5411, - [6144] = 5471, - [6145] = 5433, - [6146] = 5434, - [6147] = 5435, - [6148] = 5436, - [6149] = 5437, - [6150] = 5438, - [6151] = 5439, - [6152] = 5440, - [6153] = 5411, - [6154] = 5455, - [6155] = 5456, - [6156] = 5457, - [6157] = 5455, - [6158] = 5456, - [6159] = 5457, - [6160] = 5426, - [6161] = 5433, - [6162] = 5434, - [6163] = 5435, - [6164] = 5436, - [6165] = 5437, - [6166] = 5438, - [6167] = 5439, - [6168] = 5440, - [6169] = 5411, - [6170] = 5455, - [6171] = 5456, - [6172] = 5457, - [6173] = 6173, - [6174] = 5449, - [6175] = 5451, + [5963] = 5433, + [5964] = 5434, + [5965] = 5414, + [5966] = 5416, + [5967] = 5388, + [5968] = 5389, + [5969] = 5390, + [5970] = 5391, + [5971] = 5392, + [5972] = 5393, + [5973] = 5394, + [5974] = 5395, + [5975] = 5396, + [5976] = 5397, + [5977] = 5398, + [5978] = 5399, + [5979] = 5408, + [5980] = 5409, + [5981] = 5410, + [5982] = 5406, + [5983] = 5412, + [5984] = 5413, + [5985] = 5419, + [5986] = 5420, + [5987] = 5421, + [5988] = 5387, + [5989] = 5423, + [5990] = 5424, + [5991] = 5425, + [5992] = 5426, + [5993] = 5433, + [5994] = 5434, + [5995] = 5414, + [5996] = 5416, + [5997] = 5400, + [5998] = 5419, + [5999] = 5420, + [6000] = 5421, + [6001] = 5387, + [6002] = 5423, + [6003] = 5424, + [6004] = 5425, + [6005] = 5426, + [6006] = 5433, + [6007] = 5434, + [6008] = 5414, + [6009] = 5416, + [6010] = 5390, + [6011] = 5391, + [6012] = 5428, + [6013] = 5419, + [6014] = 5420, + [6015] = 5421, + [6016] = 5387, + [6017] = 5423, + [6018] = 5424, + [6019] = 5425, + [6020] = 5426, + [6021] = 5433, + [6022] = 5434, + [6023] = 5414, + [6024] = 5416, + [6025] = 5392, + [6026] = 5393, + [6027] = 5419, + [6028] = 5420, + [6029] = 5421, + [6030] = 5387, + [6031] = 5423, + [6032] = 5424, + [6033] = 5425, + [6034] = 5426, + [6035] = 5433, + [6036] = 5434, + [6037] = 5414, + [6038] = 5416, + [6039] = 5408, + [6040] = 5409, + [6041] = 5410, + [6042] = 5406, + [6043] = 5419, + [6044] = 5420, + [6045] = 5421, + [6046] = 5387, + [6047] = 5423, + [6048] = 5424, + [6049] = 5425, + [6050] = 5426, + [6051] = 5433, + [6052] = 5434, + [6053] = 5414, + [6054] = 5416, + [6055] = 5412, + [6056] = 5413, + [6057] = 5419, + [6058] = 5420, + [6059] = 5421, + [6060] = 5387, + [6061] = 5423, + [6062] = 5424, + [6063] = 5425, + [6064] = 5426, + [6065] = 5433, + [6066] = 5434, + [6067] = 5414, + [6068] = 5416, + [6069] = 5419, + [6070] = 5420, + [6071] = 5421, + [6072] = 5387, + [6073] = 5423, + [6074] = 5424, + [6075] = 5425, + [6076] = 5426, + [6077] = 5433, + [6078] = 5434, + [6079] = 5414, + [6080] = 5416, + [6081] = 5419, + [6082] = 5420, + [6083] = 5421, + [6084] = 5387, + [6085] = 5423, + [6086] = 5424, + [6087] = 5425, + [6088] = 5426, + [6089] = 5433, + [6090] = 5434, + [6091] = 5414, + [6092] = 5416, + [6093] = 5394, + [6094] = 5418, + [6095] = 5419, + [6096] = 5395, + [6097] = 5419, + [6098] = 5420, + [6099] = 5421, + [6100] = 5387, + [6101] = 5423, + [6102] = 5424, + [6103] = 5425, + [6104] = 5426, + [6105] = 5433, + [6106] = 5434, + [6107] = 5414, + [6108] = 5416, + [6109] = 5420, + [6110] = 1632, + [6111] = 5421, + [6112] = 5419, + [6113] = 5420, + [6114] = 5421, + [6115] = 5387, + [6116] = 5423, + [6117] = 5424, + [6118] = 5425, + [6119] = 5426, + [6120] = 5433, + [6121] = 5434, + [6122] = 5414, + [6123] = 5416, + [6124] = 5387, + [6125] = 5423, + [6126] = 5424, + [6127] = 5419, + [6128] = 5420, + [6129] = 5421, + [6130] = 5387, + [6131] = 5423, + [6132] = 5424, + [6133] = 5425, + [6134] = 5426, + [6135] = 5433, + [6136] = 5434, + [6137] = 5414, + [6138] = 5416, + [6139] = 5425, + [6140] = 5426, + [6141] = 5419, + [6142] = 5420, + [6143] = 5421, + [6144] = 5387, + [6145] = 5423, + [6146] = 5424, + [6147] = 5425, + [6148] = 5426, + [6149] = 5433, + [6150] = 5434, + [6151] = 5414, + [6152] = 5416, + [6153] = 5396, + [6154] = 5397, + [6155] = 5419, + [6156] = 5420, + [6157] = 5421, + [6158] = 5387, + [6159] = 5423, + [6160] = 5424, + [6161] = 5425, + [6162] = 5426, + [6163] = 5433, + [6164] = 5434, + [6165] = 5414, + [6166] = 5416, + [6167] = 5398, + [6168] = 5419, + [6169] = 5420, + [6170] = 5421, + [6171] = 5387, + [6172] = 5423, + [6173] = 5424, + [6174] = 5425, + [6175] = 5426, [6176] = 5433, [6177] = 5434, - [6178] = 5435, - [6179] = 5436, - [6180] = 5437, - [6181] = 5438, - [6182] = 5439, - [6183] = 5440, - [6184] = 5411, - [6185] = 5455, - [6186] = 5456, - [6187] = 5457, - [6188] = 5433, - [6189] = 5434, - [6190] = 5435, - [6191] = 5436, - [6192] = 5437, - [6193] = 5438, - [6194] = 5439, - [6195] = 5440, - [6196] = 5411, - [6197] = 5455, - [6198] = 5456, - [6199] = 5457, - [6200] = 5433, - [6201] = 5434, - [6202] = 5435, - [6203] = 5436, - [6204] = 5411, - [6205] = 5455, - [6206] = 5433, - [6207] = 5434, - [6208] = 5435, - [6209] = 5436, - [6210] = 5411, - [6211] = 5455, - [6212] = 5433, - [6213] = 5434, - [6214] = 5435, - [6215] = 5436, - [6216] = 5411, - [6217] = 5455, + [6178] = 5414, + [6179] = 5416, + [6180] = 5408, + [6181] = 5418, + [6182] = 5419, + [6183] = 5420, + [6184] = 5421, + [6185] = 5387, + [6186] = 5433, + [6187] = 5434, + [6188] = 5419, + [6189] = 5432, + [6190] = 5419, + [6191] = 5420, + [6192] = 5421, + [6193] = 5387, + [6194] = 5433, + [6195] = 5434, + [6196] = 5420, + [6197] = 5421, + [6198] = 5419, + [6199] = 5420, + [6200] = 5421, + [6201] = 5387, + [6202] = 5433, + [6203] = 5434, + [6204] = 5387, + [6205] = 5423, + [6206] = 5419, + [6207] = 5420, + [6208] = 5421, + [6209] = 5387, + [6210] = 5433, + [6211] = 5434, + [6212] = 5424, + [6213] = 5425, + [6214] = 5419, + [6215] = 5420, + [6216] = 5421, + [6217] = 5387, [6218] = 5433, [6219] = 5434, - [6220] = 5435, - [6221] = 5436, - [6222] = 5411, - [6223] = 5455, - [6224] = 5472, - [6225] = 5457, - [6226] = 5433, - [6227] = 5434, - [6228] = 5435, - [6229] = 5436, - [6230] = 5411, - [6231] = 5455, - [6232] = 5463, - [6233] = 5464, - [6234] = 5433, - [6235] = 5434, - [6236] = 5435, - [6237] = 5436, - [6238] = 5411, - [6239] = 5455, - [6240] = 5473, - [6241] = 5433, - [6242] = 5434, - [6243] = 5435, - [6244] = 5436, - [6245] = 5411, - [6246] = 5455, - [6247] = 6247, - [6248] = 5474, - [6249] = 5433, - [6250] = 5434, - [6251] = 5435, - [6252] = 5436, - [6253] = 5411, - [6254] = 5455, - [6255] = 5415, - [6256] = 5416, - [6257] = 5432, - [6258] = 5433, - [6259] = 5434, - [6260] = 5435, - [6261] = 5436, - [6262] = 5437, - [6263] = 5438, + [6220] = 5426, + [6221] = 5419, + [6222] = 5420, + [6223] = 5421, + [6224] = 5387, + [6225] = 5433, + [6226] = 5434, + [6227] = 5428, + [6228] = 5419, + [6229] = 5420, + [6230] = 5421, + [6231] = 5387, + [6232] = 5433, + [6233] = 5434, + [6234] = 5399, + [6235] = 5419, + [6236] = 5420, + [6237] = 5421, + [6238] = 5387, + [6239] = 5433, + [6240] = 5434, + [6241] = 5430, + [6242] = 5431, + [6243] = 5428, + [6244] = 5057, + [6245] = 5432, + [6246] = 5433, + [6247] = 5430, + [6248] = 5430, + [6249] = 5434, + [6250] = 5431, + [6251] = 5432, + [6252] = 5414, + [6253] = 5416, + [6254] = 5433, + [6255] = 5434, + [6256] = 5414, + [6257] = 5416, + [6258] = 5431, + [6259] = 5432, + [6260] = 5433, + [6261] = 5434, + [6262] = 5414, + [6263] = 5416, [6264] = 5439, [6265] = 5440, - [6266] = 5417, - [6267] = 5412, - [6268] = 5413, - [6269] = 5443, - [6270] = 5422, - [6271] = 5449, - [6272] = 5451, - [6273] = 5427, - [6274] = 5411, - [6275] = 5455, - [6276] = 5456, - [6277] = 5457, - [6278] = 5475, - [6279] = 5463, - [6280] = 5464, - [6281] = 5433, - [6282] = 5087, - [6283] = 6283, - [6284] = 5467, - [6285] = 5468, - [6286] = 5469, - [6287] = 5470, - [6288] = 5471, - [6289] = 5472, - [6290] = 5473, - [6291] = 5474, - [6292] = 5475, - [6293] = 5415, - [6294] = 5416, - [6295] = 5417, - [6296] = 5412, - [6297] = 5413, - [6298] = 5093, - [6299] = 5414, - [6300] = 5467, - [6301] = 5468, - [6302] = 5449, - [6303] = 5421, - [6304] = 5422, - [6305] = 5423, - [6306] = 5424, - [6307] = 5425, - [6308] = 5426, - [6309] = 5086, - [6310] = 5434, - [6311] = 5435, - [6312] = 5467, - [6313] = 5414, - [6314] = 5451, - [6315] = 5468, - [6316] = 5469, - [6317] = 5470, - [6318] = 5471, - [6319] = 1669, - [6320] = 5094, - [6321] = 5432, - [6322] = 5433, - [6323] = 5432, - [6324] = 5434, - [6325] = 1633, - [6326] = 5435, - [6327] = 5436, - [6328] = 5469, - [6329] = 5437, - [6330] = 5438, - [6331] = 5439, - [6332] = 5470, - [6333] = 5440, - [6334] = 5432, - [6335] = 5433, - [6336] = 5443, - [6337] = 5471, - [6338] = 5434, - [6339] = 1668, - [6340] = 5435, - [6341] = 5436, - [6342] = 5449, - [6343] = 5472, - [6344] = 5437, - [6345] = 5451, - [6346] = 5438, - [6347] = 5427, - [6348] = 5411, - [6349] = 5439, - [6350] = 5455, - [6351] = 5456, - [6352] = 5457, - [6353] = 5472, - [6354] = 5473, - [6355] = 5474, - [6356] = 5475, - [6357] = 5415, - [6358] = 5416, - [6359] = 5427, - [6360] = 5436, - [6361] = 5463, - [6362] = 5464, - [6363] = 5440, - [6364] = 5437, - [6365] = 5087, - [6366] = 5414, - [6367] = 5467, - [6368] = 5468, - [6369] = 5469, - [6370] = 5470, - [6371] = 5471, - [6372] = 5472, - [6373] = 5473, - [6374] = 5474, - [6375] = 5475, - [6376] = 5415, - [6377] = 5416, - [6378] = 5417, - [6379] = 5473, - [6380] = 5412, - [6381] = 5413, - [6382] = 5474, - [6383] = 5475, - [6384] = 6384, - [6385] = 5415, - [6386] = 5416, - [6387] = 5417, - [6388] = 5412, - [6389] = 5414, - [6390] = 5423, - [6391] = 5433, - [6392] = 5443, - [6393] = 5421, - [6394] = 5422, - [6395] = 5439, + [6266] = 5439, + [6267] = 5440, + [6268] = 5387, + [6269] = 5423, + [6270] = 5444, + [6271] = 5445, + [6272] = 5388, + [6273] = 5389, + [6274] = 5390, + [6275] = 5391, + [6276] = 5392, + [6277] = 5393, + [6278] = 5394, + [6279] = 5397, + [6280] = 5395, + [6281] = 5396, + [6282] = 5073, + [6283] = 5397, + [6284] = 5444, + [6285] = 5445, + [6286] = 5395, + [6287] = 1633, + [6288] = 5398, + [6289] = 5388, + [6290] = 5389, + [6291] = 5390, + [6292] = 5391, + [6293] = 5392, + [6294] = 5393, + [6295] = 5394, + [6296] = 5395, + [6297] = 5396, + [6298] = 5397, + [6299] = 5398, + [6300] = 5399, + [6301] = 5399, + [6302] = 5400, + [6303] = 5073, + [6304] = 5072, + [6305] = 5444, + [6306] = 5445, + [6307] = 5408, + [6308] = 5409, + [6309] = 5410, + [6310] = 5406, + [6311] = 5412, + [6312] = 5413, + [6313] = 5400, + [6314] = 6314, + [6315] = 5057, + [6316] = 5433, + [6317] = 5058, + [6318] = 5408, + [6319] = 5409, + [6320] = 1633, + [6321] = 5410, + [6322] = 5056, + [6323] = 5406, + [6324] = 5412, + [6325] = 5413, + [6326] = 1634, + [6327] = 5388, + [6328] = 5439, + [6329] = 5440, + [6330] = 5389, + [6331] = 6331, + [6332] = 5409, + [6333] = 5418, + [6334] = 5419, + [6335] = 6335, + [6336] = 5420, + [6337] = 5421, + [6338] = 5387, + [6339] = 5423, + [6340] = 5424, + [6341] = 5425, + [6342] = 5426, + [6343] = 5390, + [6344] = 5428, + [6345] = 5434, + [6346] = 5430, + [6347] = 5431, + [6348] = 5432, + [6349] = 5433, + [6350] = 5434, + [6351] = 5414, + [6352] = 5416, + [6353] = 5444, + [6354] = 5445, + [6355] = 5388, + [6356] = 5389, + [6357] = 5390, + [6358] = 5391, + [6359] = 5444, + [6360] = 5391, + [6361] = 5392, + [6362] = 5393, + [6363] = 5394, + [6364] = 5410, + [6365] = 5392, + [6366] = 5439, + [6367] = 5440, + [6368] = 5393, + [6369] = 5394, + [6370] = 5395, + [6371] = 5397, + [6372] = 6372, + [6373] = 6373, + [6374] = 6374, + [6375] = 6375, + [6376] = 6376, + [6377] = 6377, + [6378] = 6372, + [6379] = 6379, + [6380] = 6380, + [6381] = 6381, + [6382] = 6382, + [6383] = 6383, + [6384] = 6383, + [6385] = 6385, + [6386] = 6373, + [6387] = 6374, + [6388] = 6375, + [6389] = 6376, + [6390] = 6377, + [6391] = 6372, + [6392] = 6379, + [6393] = 6380, + [6394] = 6381, + [6395] = 6382, [6396] = 6396, [6397] = 6397, - [6398] = 6398, - [6399] = 6399, - [6400] = 6400, - [6401] = 6397, - [6402] = 6402, - [6403] = 6402, - [6404] = 6404, - [6405] = 6405, - [6406] = 6399, - [6407] = 6396, - [6408] = 6408, - [6409] = 6409, - [6410] = 6410, - [6411] = 6411, - [6412] = 6412, - [6413] = 6402, - [6414] = 6404, - [6415] = 6409, - [6416] = 6410, - [6417] = 6417, - [6418] = 6397, - [6419] = 6398, - [6420] = 6405, - [6421] = 6396, - [6422] = 6399, - [6423] = 6402, - [6424] = 6404, - [6425] = 6396, - [6426] = 6400, - [6427] = 6400, - [6428] = 6409, - [6429] = 6402, - [6430] = 6404, - [6431] = 6396, - [6432] = 6409, - [6433] = 6410, - [6434] = 6417, - [6435] = 6397, - [6436] = 6398, - [6437] = 6405, - [6438] = 6399, - [6439] = 6402, - [6440] = 6404, - [6441] = 6396, - [6442] = 6398, - [6443] = 6411, - [6444] = 6411, - [6445] = 6411, - [6446] = 6417, - [6447] = 6405, - [6448] = 6399, - [6449] = 6400, - [6450] = 6409, - [6451] = 6410, - [6452] = 6417, - [6453] = 6397, - [6454] = 6412, - [6455] = 6412, - [6456] = 6409, - [6457] = 6409, - [6458] = 6400, - [6459] = 6410, - [6460] = 6417, - [6461] = 6412, - [6462] = 6397, - [6463] = 6410, - [6464] = 6398, - [6465] = 6409, - [6466] = 6410, - [6467] = 6409, - [6468] = 6410, - [6469] = 6417, - [6470] = 6411, - [6471] = 6412, - [6472] = 6397, - [6473] = 6398, - [6474] = 6405, - [6475] = 6399, - [6476] = 6402, - [6477] = 6404, - [6478] = 6396, - [6479] = 6398, - [6480] = 6405, - [6481] = 6399, - [6482] = 6402, - [6483] = 6417, - [6484] = 6404, - [6485] = 6485, - [6486] = 6409, - [6487] = 6410, - [6488] = 6417, - [6489] = 6397, - [6490] = 6398, - [6491] = 6405, - [6492] = 6399, - [6493] = 6402, - [6494] = 6404, - [6495] = 6396, - [6496] = 6396, - [6497] = 6409, - [6498] = 6412, - [6499] = 6410, - [6500] = 6417, - [6501] = 6397, - [6502] = 6398, - [6503] = 6405, - [6504] = 6399, - [6505] = 6402, - [6506] = 6402, - [6507] = 6404, - [6508] = 6396, - [6509] = 6409, - [6510] = 6410, - [6511] = 6417, - [6512] = 6397, - [6513] = 6398, - [6514] = 6405, - [6515] = 6399, - [6516] = 6409, - [6517] = 6410, - [6518] = 6417, - [6519] = 6519, - [6520] = 6397, - [6521] = 6398, - [6522] = 6405, - [6523] = 6399, - [6524] = 6400, - [6525] = 6402, - [6526] = 6404, - [6527] = 6411, - [6528] = 6396, - [6529] = 6411, - [6530] = 6410, - [6531] = 6531, - [6532] = 6417, - [6533] = 6397, - [6534] = 6411, - [6535] = 6398, - [6536] = 6405, - [6537] = 6399, - [6538] = 6402, - [6539] = 6404, - [6540] = 6540, - [6541] = 6412, - [6542] = 6542, - [6543] = 6396, - [6544] = 6402, - [6545] = 6412, - [6546] = 6404, - [6547] = 6396, - [6548] = 6404, - [6549] = 6409, - [6550] = 6396, - [6551] = 6417, - [6552] = 6397, - [6553] = 6410, - [6554] = 6417, - [6555] = 6555, - [6556] = 6398, - [6557] = 6397, - [6558] = 6398, - [6559] = 6410, - [6560] = 6417, - [6561] = 6400, - [6562] = 6397, - [6563] = 6398, - [6564] = 6405, - [6565] = 6399, - [6566] = 6411, - [6567] = 6409, - [6568] = 6400, - [6569] = 6569, - [6570] = 6410, - [6571] = 6571, - [6572] = 6417, - [6573] = 6397, - [6574] = 6398, - [6575] = 6405, - [6576] = 6400, - [6577] = 6399, - [6578] = 6402, - [6579] = 6404, - [6580] = 6396, - [6581] = 6405, - [6582] = 6409, - [6583] = 6411, - [6584] = 6409, - [6585] = 6410, - [6586] = 6417, - [6587] = 6397, - [6588] = 6398, - [6589] = 6405, - [6590] = 6409, - [6591] = 6410, - [6592] = 6417, - [6593] = 6397, - [6594] = 6398, - [6595] = 6405, - [6596] = 6399, - [6597] = 6402, - [6598] = 6404, - [6599] = 6396, - [6600] = 6399, - [6601] = 6402, - [6602] = 6404, - [6603] = 6396, - [6604] = 6410, - [6605] = 6417, - [6606] = 6412, - [6607] = 6397, - [6608] = 6398, - [6609] = 6609, - [6610] = 6405, - [6611] = 6399, - [6612] = 6402, - [6613] = 6404, - [6614] = 6396, - [6615] = 6405, - [6616] = 6399, - [6617] = 6411, - [6618] = 6400, - [6619] = 6411, - [6620] = 6402, - [6621] = 6411, - [6622] = 6404, - [6623] = 6396, + [6398] = 6373, + [6399] = 6374, + [6400] = 6375, + [6401] = 6376, + [6402] = 6377, + [6403] = 6372, + [6404] = 6379, + [6405] = 6385, + [6406] = 6380, + [6407] = 6381, + [6408] = 6382, + [6409] = 6373, + [6410] = 6374, + [6411] = 6375, + [6412] = 6376, + [6413] = 6377, + [6414] = 6372, + [6415] = 6379, + [6416] = 6380, + [6417] = 6381, + [6418] = 6382, + [6419] = 6419, + [6420] = 6420, + [6421] = 6421, + [6422] = 6373, + [6423] = 6374, + [6424] = 6373, + [6425] = 6374, + [6426] = 6375, + [6427] = 6376, + [6428] = 6377, + [6429] = 6372, + [6430] = 6379, + [6431] = 6380, + [6432] = 6381, + [6433] = 6382, + [6434] = 6375, + [6435] = 6376, + [6436] = 6383, + [6437] = 6377, + [6438] = 6373, + [6439] = 6374, + [6440] = 6375, + [6441] = 6376, + [6442] = 6377, + [6443] = 6385, + [6444] = 6372, + [6445] = 6379, + [6446] = 6380, + [6447] = 6381, + [6448] = 6383, + [6449] = 6382, + [6450] = 6372, + [6451] = 6379, + [6452] = 6373, + [6453] = 6374, + [6454] = 6375, + [6455] = 6376, + [6456] = 6377, + [6457] = 6372, + [6458] = 6379, + [6459] = 6380, + [6460] = 6381, + [6461] = 6382, + [6462] = 6383, + [6463] = 6380, + [6464] = 6373, + [6465] = 6374, + [6466] = 6375, + [6467] = 6376, + [6468] = 6377, + [6469] = 6372, + [6470] = 6379, + [6471] = 6380, + [6472] = 6472, + [6473] = 6381, + [6474] = 6382, + [6475] = 6373, + [6476] = 6374, + [6477] = 6375, + [6478] = 6376, + [6479] = 6377, + [6480] = 6372, + [6481] = 6379, + [6482] = 6380, + [6483] = 6381, + [6484] = 6382, + [6485] = 6383, + [6486] = 6383, + [6487] = 6373, + [6488] = 6374, + [6489] = 6375, + [6490] = 6376, + [6491] = 6377, + [6492] = 6372, + [6493] = 6379, + [6494] = 6421, + [6495] = 6381, + [6496] = 6382, + [6497] = 6380, + [6498] = 6381, + [6499] = 6382, + [6500] = 6373, + [6501] = 6374, + [6502] = 6375, + [6503] = 6376, + [6504] = 6383, + [6505] = 6372, + [6506] = 6379, + [6507] = 6380, + [6508] = 6381, + [6509] = 6382, + [6510] = 6373, + [6511] = 6373, + [6512] = 6374, + [6513] = 6375, + [6514] = 6376, + [6515] = 6377, + [6516] = 6372, + [6517] = 6379, + [6518] = 6380, + [6519] = 6381, + [6520] = 6383, + [6521] = 6382, + [6522] = 6522, + [6523] = 6421, + [6524] = 6385, + [6525] = 6383, + [6526] = 6383, + [6527] = 6374, + [6528] = 6375, + [6529] = 6529, + [6530] = 6376, + [6531] = 6377, + [6532] = 6372, + [6533] = 6373, + [6534] = 6374, + [6535] = 6375, + [6536] = 6376, + [6537] = 6377, + [6538] = 6372, + [6539] = 6379, + [6540] = 6380, + [6541] = 6381, + [6542] = 6382, + [6543] = 6373, + [6544] = 6374, + [6545] = 6375, + [6546] = 6379, + [6547] = 6373, + [6548] = 6374, + [6549] = 6375, + [6550] = 6376, + [6551] = 6377, + [6552] = 6372, + [6553] = 6379, + [6554] = 6380, + [6555] = 6381, + [6556] = 6376, + [6557] = 6377, + [6558] = 6372, + [6559] = 6382, + [6560] = 6379, + [6561] = 6380, + [6562] = 6381, + [6563] = 6382, + [6564] = 6383, + [6565] = 6385, + [6566] = 6380, + [6567] = 6381, + [6568] = 6382, + [6569] = 6421, + [6570] = 6421, + [6571] = 6373, + [6572] = 6374, + [6573] = 6375, + [6574] = 6376, + [6575] = 6377, + [6576] = 6576, + [6577] = 6577, + [6578] = 6385, + [6579] = 6421, + [6580] = 6372, + [6581] = 6379, + [6582] = 6380, + [6583] = 6381, + [6584] = 6382, + [6585] = 6421, + [6586] = 6383, + [6587] = 6383, + [6588] = 6588, + [6589] = 6385, + [6590] = 6421, + [6591] = 6421, + [6592] = 6385, + [6593] = 6373, + [6594] = 6374, + [6595] = 6375, + [6596] = 6376, + [6597] = 6377, + [6598] = 6372, + [6599] = 6379, + [6600] = 6380, + [6601] = 6381, + [6602] = 6382, + [6603] = 6373, + [6604] = 6374, + [6605] = 6375, + [6606] = 6376, + [6607] = 6377, + [6608] = 6385, + [6609] = 6379, + [6610] = 6380, + [6611] = 6381, + [6612] = 6421, + [6613] = 6613, + [6614] = 6614, + [6615] = 6385, + [6616] = 6382, + [6617] = 6617, + [6618] = 6377, + [6619] = 6619, + [6620] = 6620, + [6621] = 6621, + [6622] = 6622, + [6623] = 6623, [6624] = 6624, - [6625] = 6404, - [6626] = 6409, - [6627] = 6410, - [6628] = 6417, + [6625] = 6625, + [6626] = 6626, + [6627] = 6622, + [6628] = 6628, [6629] = 6629, - [6630] = 6396, - [6631] = 6405, + [6630] = 6620, + [6631] = 6631, [6632] = 6632, - [6633] = 6399, - [6634] = 6397, - [6635] = 6398, - [6636] = 6411, - [6637] = 6405, - [6638] = 6412, - [6639] = 6399, - [6640] = 6402, - [6641] = 6404, - [6642] = 6409, + [6633] = 6619, + [6634] = 6623, + [6635] = 6635, + [6636] = 6636, + [6637] = 6637, + [6638] = 6638, + [6639] = 6639, + [6640] = 6640, + [6641] = 6641, + [6642] = 6642, [6643] = 6643, - [6644] = 6644, + [6644] = 6635, [6645] = 6645, [6646] = 6646, - [6647] = 6647, - [6648] = 6648, - [6649] = 6644, - [6650] = 6645, - [6651] = 6643, + [6647] = 6640, + [6648] = 6621, + [6649] = 6649, + [6650] = 6650, + [6651] = 6651, [6652] = 6652, [6653] = 6653, [6654] = 6654, - [6655] = 6646, + [6655] = 6655, [6656] = 6656, [6657] = 6657, - [6658] = 6658, - [6659] = 6659, - [6660] = 6660, - [6661] = 6661, - [6662] = 6662, - [6663] = 6663, - [6664] = 6664, - [6665] = 6665, - [6666] = 6666, + [6658] = 6650, + [6659] = 6651, + [6660] = 6652, + [6661] = 6653, + [6662] = 6654, + [6663] = 6655, + [6664] = 6656, + [6665] = 6654, + [6666] = 6657, [6667] = 6667, - [6668] = 6668, - [6669] = 6656, - [6670] = 6657, - [6671] = 6658, - [6672] = 6672, - [6673] = 6673, - [6674] = 6674, - [6675] = 6675, - [6676] = 6676, - [6677] = 6677, - [6678] = 6678, - [6679] = 6679, - [6680] = 6680, - [6681] = 6681, - [6682] = 6672, - [6683] = 6531, - [6684] = 6672, - [6685] = 6673, - [6686] = 6673, - [6687] = 6674, - [6688] = 6675, - [6689] = 6676, - [6690] = 6675, - [6691] = 6677, - [6692] = 6678, - [6693] = 6679, - [6694] = 6674, - [6695] = 6675, - [6696] = 6676, - [6697] = 6677, - [6698] = 6678, - [6699] = 6679, - [6700] = 6680, - [6701] = 6681, - [6702] = 6674, - [6703] = 6672, - [6704] = 6673, - [6705] = 6674, - [6706] = 6706, - [6707] = 6675, - [6708] = 6708, - [6709] = 6676, - [6710] = 6710, - [6711] = 6677, - [6712] = 6648, - [6713] = 6644, - [6714] = 6645, - [6715] = 6652, - [6716] = 6653, - [6717] = 6654, - [6718] = 6646, - [6719] = 6656, - [6720] = 6657, - [6721] = 6658, - [6722] = 6659, - [6723] = 6660, - [6724] = 6661, - [6725] = 6662, - [6726] = 6663, - [6727] = 6664, - [6728] = 6665, - [6729] = 6666, - [6730] = 6667, - [6731] = 6678, - [6732] = 6659, - [6733] = 6672, - [6734] = 6660, - [6735] = 6672, - [6736] = 6675, - [6737] = 6672, - [6738] = 6673, - [6739] = 6674, - [6740] = 6675, - [6741] = 6676, - [6742] = 6677, - [6743] = 6678, - [6744] = 6679, - [6745] = 6680, - [6746] = 6681, - [6747] = 6680, - [6748] = 6681, - [6749] = 6679, - [6750] = 6680, - [6751] = 6648, - [6752] = 6644, - [6753] = 6645, - [6754] = 6643, - [6755] = 6652, - [6756] = 6653, - [6757] = 6654, - [6758] = 6646, - [6759] = 6656, - [6760] = 6681, - [6761] = 6657, - [6762] = 6658, - [6763] = 6659, - [6764] = 6660, - [6765] = 6667, - [6766] = 6661, - [6767] = 6662, - [6768] = 6663, - [6769] = 6664, - [6770] = 6665, - [6771] = 6666, - [6772] = 6667, - [6773] = 6773, - [6774] = 6679, - [6775] = 6676, - [6776] = 6680, - [6777] = 6648, - [6778] = 6644, - [6779] = 6645, - [6780] = 6643, - [6781] = 6652, - [6782] = 6653, - [6783] = 6654, - [6784] = 6646, - [6785] = 6656, - [6786] = 6657, - [6787] = 6658, - [6788] = 6659, - [6789] = 6660, - [6790] = 6661, - [6791] = 6662, - [6792] = 6663, - [6793] = 6664, - [6794] = 6665, - [6795] = 6666, - [6796] = 6667, - [6797] = 6672, - [6798] = 6673, - [6799] = 6674, - [6800] = 6675, - [6801] = 6676, - [6802] = 6677, - [6803] = 6672, - [6804] = 6673, - [6805] = 6674, - [6806] = 6675, - [6807] = 6676, - [6808] = 6677, - [6809] = 6678, - [6810] = 6679, - [6811] = 6680, - [6812] = 6681, - [6813] = 6678, - [6814] = 6814, - [6815] = 6679, - [6816] = 6680, - [6817] = 6681, - [6818] = 6673, - [6819] = 6674, - [6820] = 6658, - [6821] = 6675, - [6822] = 6676, - [6823] = 6677, - [6824] = 6678, - [6825] = 6679, + [6668] = 6624, + [6669] = 6629, + [6670] = 6625, + [6671] = 6641, + [6672] = 6649, + [6673] = 6624, + [6674] = 6625, + [6675] = 6626, + [6676] = 6622, + [6677] = 6628, + [6678] = 6629, + [6679] = 6620, + [6680] = 6631, + [6681] = 6632, + [6682] = 6626, + [6683] = 6683, + [6684] = 6622, + [6685] = 6656, + [6686] = 6619, + [6687] = 6620, + [6688] = 6624, + [6689] = 6625, + [6690] = 6626, + [6691] = 6622, + [6692] = 6628, + [6693] = 6629, + [6694] = 6620, + [6695] = 6631, + [6696] = 6632, + [6697] = 6619, + [6698] = 6623, + [6699] = 6635, + [6700] = 6636, + [6701] = 6637, + [6702] = 6638, + [6703] = 6639, + [6704] = 6640, + [6705] = 6641, + [6706] = 6642, + [6707] = 6643, + [6708] = 6623, + [6709] = 6635, + [6710] = 6636, + [6711] = 6637, + [6712] = 6638, + [6713] = 6621, + [6714] = 6649, + [6715] = 6650, + [6716] = 6651, + [6717] = 6652, + [6718] = 6653, + [6719] = 6654, + [6720] = 6655, + [6721] = 6656, + [6722] = 6657, + [6723] = 6639, + [6724] = 6640, + [6725] = 6641, + [6726] = 6624, + [6727] = 6625, + [6728] = 6642, + [6729] = 6643, + [6730] = 6650, + [6731] = 6628, + [6732] = 6626, + [6733] = 6622, + [6734] = 6628, + [6735] = 6735, + [6736] = 6629, + [6737] = 6629, + [6738] = 6620, + [6739] = 6631, + [6740] = 6632, + [6741] = 6619, + [6742] = 6623, + [6743] = 6624, + [6744] = 6625, + [6745] = 6626, + [6746] = 6622, + [6747] = 6628, + [6748] = 6621, + [6749] = 6649, + [6750] = 6650, + [6751] = 6651, + [6752] = 6652, + [6753] = 6753, + [6754] = 6636, + [6755] = 6637, + [6756] = 6756, + [6757] = 6624, + [6758] = 6620, + [6759] = 6624, + [6760] = 6625, + [6761] = 6626, + [6762] = 6622, + [6763] = 6628, + [6764] = 6629, + [6765] = 6620, + [6766] = 6631, + [6767] = 6632, + [6768] = 6619, + [6769] = 6623, + [6770] = 6635, + [6771] = 6636, + [6772] = 6637, + [6773] = 6638, + [6774] = 6639, + [6775] = 6640, + [6776] = 6641, + [6777] = 6642, + [6778] = 6643, + [6779] = 6638, + [6780] = 6638, + [6781] = 6657, + [6782] = 6624, + [6783] = 6625, + [6784] = 6621, + [6785] = 6649, + [6786] = 6650, + [6787] = 6651, + [6788] = 6652, + [6789] = 6653, + [6790] = 6654, + [6791] = 6655, + [6792] = 6656, + [6793] = 6657, + [6794] = 6635, + [6795] = 6636, + [6796] = 6637, + [6797] = 6638, + [6798] = 6639, + [6799] = 6640, + [6800] = 6626, + [6801] = 6622, + [6802] = 6628, + [6803] = 6629, + [6804] = 6620, + [6805] = 6631, + [6806] = 6632, + [6807] = 6619, + [6808] = 6623, + [6809] = 6635, + [6810] = 6636, + [6811] = 6637, + [6812] = 6641, + [6813] = 6642, + [6814] = 6643, + [6815] = 6638, + [6816] = 6639, + [6817] = 6640, + [6818] = 6641, + [6819] = 6642, + [6820] = 6643, + [6821] = 6639, + [6822] = 6622, + [6823] = 6823, + [6824] = 6636, + [6825] = 6639, [6826] = 6826, - [6827] = 6680, - [6828] = 6828, - [6829] = 6674, - [6830] = 6830, - [6831] = 6681, - [6832] = 6661, - [6833] = 6681, - [6834] = 6648, - [6835] = 6644, - [6836] = 6645, - [6837] = 6643, - [6838] = 6648, - [6839] = 6644, - [6840] = 6645, - [6841] = 6643, - [6842] = 6643, - [6843] = 6652, - [6844] = 6653, - [6845] = 6654, - [6846] = 6652, - [6847] = 6646, - [6848] = 6848, - [6849] = 6656, - [6850] = 6653, - [6851] = 6657, - [6852] = 6658, - [6853] = 6654, - [6854] = 6659, - [6855] = 6646, - [6856] = 6660, - [6857] = 6656, - [6858] = 6657, - [6859] = 6658, - [6860] = 6659, - [6861] = 6660, - [6862] = 6661, - [6863] = 6662, - [6864] = 6663, - [6865] = 6664, - [6866] = 6665, - [6867] = 6666, - [6868] = 6667, - [6869] = 6653, - [6870] = 6652, - [6871] = 6653, - [6872] = 6654, - [6873] = 6662, - [6874] = 6874, - [6875] = 6661, - [6876] = 6662, - [6877] = 6646, - [6878] = 6878, - [6879] = 6663, - [6880] = 6664, - [6881] = 6665, - [6882] = 6666, - [6883] = 6667, - [6884] = 6656, - [6885] = 6657, - [6886] = 6663, - [6887] = 6658, - [6888] = 6664, - [6889] = 6672, - [6890] = 6673, - [6891] = 6674, - [6892] = 6675, - [6893] = 6676, - [6894] = 6677, - [6895] = 6678, - [6896] = 6679, - [6897] = 6648, - [6898] = 6644, - [6899] = 6645, - [6900] = 6643, - [6901] = 6652, - [6902] = 6653, - [6903] = 6654, - [6904] = 6646, - [6905] = 6656, - [6906] = 6657, - [6907] = 6658, - [6908] = 6659, - [6909] = 6660, - [6910] = 6661, - [6911] = 6662, - [6912] = 6663, - [6913] = 6664, - [6914] = 6665, - [6915] = 6915, - [6916] = 6666, - [6917] = 6667, - [6918] = 6680, - [6919] = 6681, - [6920] = 6665, - [6921] = 6921, - [6922] = 6666, - [6923] = 6676, - [6924] = 6667, - [6925] = 6672, - [6926] = 6673, - [6927] = 6674, - [6928] = 6675, - [6929] = 6676, - [6930] = 6677, - [6931] = 6678, - [6932] = 6679, - [6933] = 6680, - [6934] = 6681, - [6935] = 6935, - [6936] = 6663, - [6937] = 6659, - [6938] = 6677, - [6939] = 6678, - [6940] = 6679, - [6941] = 6680, - [6942] = 6677, - [6943] = 6943, - [6944] = 6660, - [6945] = 6672, - [6946] = 6661, - [6947] = 6947, - [6948] = 6662, - [6949] = 6663, - [6950] = 6664, - [6951] = 6648, - [6952] = 6644, - [6953] = 6645, - [6954] = 6643, + [6827] = 6827, + [6828] = 6653, + [6829] = 6631, + [6830] = 6640, + [6831] = 6632, + [6832] = 6628, + [6833] = 6619, + [6834] = 6621, + [6835] = 6649, + [6836] = 6650, + [6837] = 6651, + [6838] = 6652, + [6839] = 6653, + [6840] = 6654, + [6841] = 6841, + [6842] = 6655, + [6843] = 6656, + [6844] = 6657, + [6845] = 6623, + [6846] = 6641, + [6847] = 6635, + [6848] = 6624, + [6849] = 6625, + [6850] = 6626, + [6851] = 6622, + [6852] = 6636, + [6853] = 6628, + [6854] = 6654, + [6855] = 6629, + [6856] = 6620, + [6857] = 6631, + [6858] = 6632, + [6859] = 6619, + [6860] = 6623, + [6861] = 6635, + [6862] = 6636, + [6863] = 6637, + [6864] = 6638, + [6865] = 6639, + [6866] = 6640, + [6867] = 6637, + [6868] = 6621, + [6869] = 6649, + [6870] = 6650, + [6871] = 6621, + [6872] = 6649, + [6873] = 6655, + [6874] = 6656, + [6875] = 6657, + [6876] = 6651, + [6877] = 6652, + [6878] = 6641, + [6879] = 6642, + [6880] = 6643, + [6881] = 6651, + [6882] = 6650, + [6883] = 6651, + [6884] = 6652, + [6885] = 6653, + [6886] = 6653, + [6887] = 6654, + [6888] = 6655, + [6889] = 6629, + [6890] = 6620, + [6891] = 6631, + [6892] = 6892, + [6893] = 6632, + [6894] = 6619, + [6895] = 6654, + [6896] = 6655, + [6897] = 6656, + [6898] = 6657, + [6899] = 6651, + [6900] = 6652, + [6901] = 6642, + [6902] = 6902, + [6903] = 6623, + [6904] = 6635, + [6905] = 6636, + [6906] = 6637, + [6907] = 6656, + [6908] = 6657, + [6909] = 6625, + [6910] = 6638, + [6911] = 6639, + [6912] = 6640, + [6913] = 6643, + [6914] = 6653, + [6915] = 6654, + [6916] = 6637, + [6917] = 6641, + [6918] = 6621, + [6919] = 6642, + [6920] = 6643, + [6921] = 6631, + [6922] = 6632, + [6923] = 6619, + [6924] = 6642, + [6925] = 6925, + [6926] = 6926, + [6927] = 6623, + [6928] = 6635, + [6929] = 6636, + [6930] = 6624, + [6931] = 6625, + [6932] = 6626, + [6933] = 6622, + [6934] = 6628, + [6935] = 6629, + [6936] = 6620, + [6937] = 6631, + [6938] = 6632, + [6939] = 6619, + [6940] = 6623, + [6941] = 6635, + [6942] = 6636, + [6943] = 6637, + [6944] = 6638, + [6945] = 6639, + [6946] = 6640, + [6947] = 6641, + [6948] = 6642, + [6949] = 6643, + [6950] = 6637, + [6951] = 6621, + [6952] = 6649, + [6953] = 6650, + [6954] = 6651, [6955] = 6652, - [6956] = 6665, - [6957] = 6672, - [6958] = 6657, - [6959] = 6659, - [6960] = 6960, - [6961] = 6654, - [6962] = 6681, - [6963] = 6673, - [6964] = 6681, - [6965] = 6648, - [6966] = 6666, - [6967] = 6644, - [6968] = 6645, - [6969] = 6648, - [6970] = 6644, - [6971] = 6645, - [6972] = 6643, - [6973] = 6652, - [6974] = 6653, + [6956] = 6653, + [6957] = 6624, + [6958] = 6625, + [6959] = 6626, + [6960] = 6622, + [6961] = 6628, + [6962] = 6629, + [6963] = 6620, + [6964] = 6621, + [6965] = 6649, + [6966] = 6650, + [6967] = 6651, + [6968] = 6652, + [6969] = 6653, + [6970] = 6970, + [6971] = 6654, + [6972] = 6655, + [6973] = 6656, + [6974] = 6657, [6975] = 6654, - [6976] = 6646, + [6976] = 6655, [6977] = 6656, [6978] = 6657, - [6979] = 6658, - [6980] = 6659, - [6981] = 6660, - [6982] = 6661, - [6983] = 6662, - [6984] = 6663, - [6985] = 6664, - [6986] = 6665, - [6987] = 6666, - [6988] = 6667, - [6989] = 6643, - [6990] = 6653, - [6991] = 6648, - [6992] = 6644, - [6993] = 6645, - [6994] = 6672, - [6995] = 6673, - [6996] = 6674, - [6997] = 6675, - [6998] = 6676, - [6999] = 6677, - [7000] = 6678, - [7001] = 6679, - [7002] = 6680, - [7003] = 6681, - [7004] = 6672, - [7005] = 6653, - [7006] = 6654, - [7007] = 6646, - [7008] = 6656, - [7009] = 6673, - [7010] = 6643, - [7011] = 6652, - [7012] = 6653, - [7013] = 6654, - [7014] = 6648, - [7015] = 6644, - [7016] = 6645, - [7017] = 6643, - [7018] = 6674, - [7019] = 6675, - [7020] = 6676, - [7021] = 6677, - [7022] = 6652, - [7023] = 7023, - [7024] = 6653, - [7025] = 6654, - [7026] = 6646, - [7027] = 6657, - [7028] = 6658, - [7029] = 6659, - [7030] = 6660, - [7031] = 6661, - [7032] = 6662, - [7033] = 6656, - [7034] = 6657, - [7035] = 6658, - [7036] = 6659, - [7037] = 7037, + [6979] = 6639, + [6980] = 6631, + [6981] = 6631, + [6982] = 6640, + [6983] = 6632, + [6984] = 6632, + [6985] = 6985, + [6986] = 6619, + [6987] = 6623, + [6988] = 6635, + [6989] = 6636, + [6990] = 6637, + [6991] = 6641, + [6992] = 6638, + [6993] = 6639, + [6994] = 6640, + [6995] = 6641, + [6996] = 6642, + [6997] = 6643, + [6998] = 6649, + [6999] = 6643, + [7000] = 6650, + [7001] = 6642, + [7002] = 6651, + [7003] = 6643, + [7004] = 6621, + [7005] = 6649, + [7006] = 6652, + [7007] = 7007, + [7008] = 6655, + [7009] = 6653, + [7010] = 6621, + [7011] = 6649, + [7012] = 6650, + [7013] = 6651, + [7014] = 7014, + [7015] = 6652, + [7016] = 6626, + [7017] = 6650, + [7018] = 6642, + [7019] = 6651, + [7020] = 6652, + [7021] = 6624, + [7022] = 6625, + [7023] = 6626, + [7024] = 6622, + [7025] = 7025, + [7026] = 1641, + [7027] = 6624, + [7028] = 1632, + [7029] = 5465, + [7030] = 6625, + [7031] = 1634, + [7032] = 6626, + [7033] = 6622, + [7034] = 6653, + [7035] = 6654, + [7036] = 6628, + [7037] = 6655, [7038] = 7038, - [7039] = 1667, - [7040] = 6660, - [7041] = 1633, - [7042] = 6662, - [7043] = 6661, - [7044] = 7044, - [7045] = 6662, - [7046] = 6663, - [7047] = 6664, - [7048] = 6665, - [7049] = 6666, - [7050] = 7050, - [7051] = 6667, - [7052] = 6646, - [7053] = 6648, - [7054] = 6644, - [7055] = 6648, - [7056] = 6645, - [7057] = 6643, - [7058] = 6644, - [7059] = 6652, - [7060] = 6645, - [7061] = 6653, - [7062] = 6643, - [7063] = 6652, - [7064] = 6654, + [7039] = 6397, + [7040] = 6656, + [7041] = 6629, + [7042] = 6657, + [7043] = 7043, + [7044] = 6654, + [7045] = 6628, + [7046] = 6629, + [7047] = 6655, + [7048] = 6620, + [7049] = 6656, + [7050] = 6620, + [7051] = 6631, + [7052] = 6657, + [7053] = 6632, + [7054] = 6619, + [7055] = 6623, + [7056] = 6635, + [7057] = 6636, + [7058] = 6637, + [7059] = 6638, + [7060] = 6639, + [7061] = 6640, + [7062] = 6641, + [7063] = 6642, + [7064] = 6643, [7065] = 6653, [7066] = 6654, - [7067] = 6646, + [7067] = 6655, [7068] = 6656, [7069] = 6657, - [7070] = 6658, - [7071] = 6659, - [7072] = 6660, - [7073] = 6661, - [7074] = 6662, - [7075] = 6663, - [7076] = 6664, - [7077] = 6665, - [7078] = 6666, - [7079] = 6667, - [7080] = 6646, - [7081] = 6656, - [7082] = 7082, - [7083] = 6656, - [7084] = 6657, - [7085] = 6661, - [7086] = 7086, - [7087] = 6658, - [7088] = 6659, - [7089] = 7089, - [7090] = 7090, - [7091] = 6648, - [7092] = 6644, - [7093] = 6672, - [7094] = 6673, - [7095] = 6674, - [7096] = 6675, - [7097] = 6676, - [7098] = 6677, - [7099] = 7099, - [7100] = 6678, - [7101] = 6679, - [7102] = 6680, - [7103] = 6681, - [7104] = 6678, - [7105] = 6663, - [7106] = 6664, - [7107] = 6665, - [7108] = 6648, - [7109] = 6644, - [7110] = 6645, - [7111] = 6643, - [7112] = 6652, - [7113] = 6653, - [7114] = 6654, - [7115] = 6646, - [7116] = 6656, - [7117] = 6657, - [7118] = 6658, - [7119] = 6659, - [7120] = 6660, - [7121] = 6661, - [7122] = 6662, - [7123] = 6663, - [7124] = 6664, - [7125] = 6665, - [7126] = 6666, - [7127] = 6667, - [7128] = 6666, - [7129] = 6660, - [7130] = 6645, - [7131] = 6643, - [7132] = 6661, - [7133] = 6662, - [7134] = 6663, - [7135] = 6664, - [7136] = 6665, - [7137] = 6652, - [7138] = 6653, - [7139] = 6654, - [7140] = 6646, - [7141] = 6656, - [7142] = 6657, - [7143] = 6658, - [7144] = 6679, - [7145] = 6680, - [7146] = 6672, - [7147] = 6673, - [7148] = 6674, - [7149] = 6675, - [7150] = 6676, - [7151] = 6677, - [7152] = 6678, - [7153] = 6679, - [7154] = 6680, - [7155] = 6681, - [7156] = 6681, - [7157] = 6659, - [7158] = 6666, - [7159] = 6667, - [7160] = 6660, - [7161] = 6661, - [7162] = 6662, - [7163] = 6663, - [7164] = 6667, - [7165] = 6664, - [7166] = 6665, - [7167] = 6675, - [7168] = 6676, - [7169] = 6666, - [7170] = 6667, - [7171] = 6644, - [7172] = 6648, - [7173] = 7173, - [7174] = 7174, - [7175] = 6657, - [7176] = 6658, - [7177] = 6659, - [7178] = 7178, - [7179] = 6660, - [7180] = 6661, - [7181] = 6662, - [7182] = 6663, - [7183] = 6664, - [7184] = 6672, - [7185] = 6673, - [7186] = 6674, - [7187] = 6672, - [7188] = 1669, - [7189] = 6673, - [7190] = 6674, - [7191] = 6675, - [7192] = 6648, - [7193] = 6644, - [7194] = 6645, - [7195] = 6643, - [7196] = 6652, - [7197] = 6653, - [7198] = 6654, - [7199] = 6646, - [7200] = 6656, - [7201] = 6657, - [7202] = 6658, - [7203] = 6659, - [7204] = 6660, - [7205] = 6661, - [7206] = 6662, - [7207] = 6663, - [7208] = 6664, - [7209] = 6665, - [7210] = 6666, - [7211] = 6667, - [7212] = 6676, - [7213] = 6677, - [7214] = 6678, - [7215] = 6679, - [7216] = 6680, - [7217] = 6681, - [7218] = 6672, - [7219] = 6673, - [7220] = 6674, - [7221] = 6675, - [7222] = 6676, - [7223] = 6677, - [7224] = 6678, - [7225] = 6679, - [7226] = 6680, - [7227] = 6681, - [7228] = 6664, - [7229] = 7229, - [7230] = 6675, - [7231] = 6676, - [7232] = 6677, - [7233] = 6677, - [7234] = 6678, - [7235] = 6679, - [7236] = 6665, - [7237] = 6680, - [7238] = 6681, - [7239] = 5743, - [7240] = 6645, - [7241] = 6665, - [7242] = 7242, - [7243] = 6643, - [7244] = 6652, - [7245] = 6660, - [7246] = 5418, - [7247] = 6680, - [7248] = 6666, - [7249] = 6667, - [7250] = 1668, - [7251] = 6654, - [7252] = 6648, - [7253] = 6678, - [7254] = 6673, - [7255] = 6674, - [7256] = 6648, - [7257] = 7257, - [7258] = 6644, - [7259] = 6673, - [7260] = 6645, - [7261] = 6643, - [7262] = 6652, - [7263] = 6667, - [7264] = 6653, - [7265] = 6654, - [7266] = 6646, - [7267] = 6656, - [7268] = 6657, - [7269] = 6658, - [7270] = 6659, - [7271] = 6660, - [7272] = 6661, - [7273] = 6662, - [7274] = 6663, - [7275] = 6664, - [7276] = 6665, - [7277] = 6666, - [7278] = 6667, - [7279] = 6666, - [7280] = 6678, + [7070] = 6625, + [7071] = 6621, + [7072] = 6621, + [7073] = 6649, + [7074] = 6631, + [7075] = 6624, + [7076] = 6632, + [7077] = 6619, + [7078] = 6625, + [7079] = 6623, + [7080] = 6626, + [7081] = 6622, + [7082] = 6628, + [7083] = 6629, + [7084] = 6620, + [7085] = 6631, + [7086] = 6632, + [7087] = 6619, + [7088] = 6623, + [7089] = 6635, + [7090] = 6636, + [7091] = 6637, + [7092] = 6638, + [7093] = 6639, + [7094] = 6640, + [7095] = 6641, + [7096] = 6642, + [7097] = 6643, + [7098] = 6655, + [7099] = 6656, + [7100] = 6619, + [7101] = 6624, + [7102] = 6650, + [7103] = 6657, + [7104] = 6626, + [7105] = 6640, + [7106] = 6624, + [7107] = 6625, + [7108] = 6626, + [7109] = 6622, + [7110] = 6628, + [7111] = 6629, + [7112] = 6620, + [7113] = 6631, + [7114] = 6632, + [7115] = 6619, + [7116] = 6623, + [7117] = 6635, + [7118] = 6636, + [7119] = 6651, + [7120] = 6637, + [7121] = 6638, + [7122] = 6639, + [7123] = 6640, + [7124] = 6624, + [7125] = 6641, + [7126] = 6642, + [7127] = 6625, + [7128] = 6643, + [7129] = 6621, + [7130] = 6626, + [7131] = 7131, + [7132] = 6652, + [7133] = 6622, + [7134] = 6621, + [7135] = 6628, + [7136] = 6629, + [7137] = 6620, + [7138] = 6631, + [7139] = 6632, + [7140] = 6619, + [7141] = 6649, + [7142] = 6650, + [7143] = 6623, + [7144] = 6635, + [7145] = 6636, + [7146] = 6651, + [7147] = 6637, + [7148] = 6638, + [7149] = 6652, + [7150] = 6653, + [7151] = 6654, + [7152] = 6655, + [7153] = 6656, + [7154] = 6657, + [7155] = 6621, + [7156] = 6649, + [7157] = 6650, + [7158] = 6651, + [7159] = 6652, + [7160] = 6653, + [7161] = 6654, + [7162] = 6655, + [7163] = 6656, + [7164] = 6639, + [7165] = 6657, + [7166] = 6640, + [7167] = 6641, + [7168] = 6642, + [7169] = 6643, + [7170] = 6635, + [7171] = 6636, + [7172] = 6653, + [7173] = 6654, + [7174] = 6622, + [7175] = 6628, + [7176] = 7176, + [7177] = 6655, + [7178] = 6656, + [7179] = 6657, + [7180] = 6629, + [7181] = 6638, + [7182] = 6621, + [7183] = 6649, + [7184] = 1633, + [7185] = 6620, + [7186] = 7186, + [7187] = 6621, + [7188] = 7188, + [7189] = 6649, + [7190] = 6650, + [7191] = 6651, + [7192] = 6652, + [7193] = 6653, + [7194] = 6654, + [7195] = 6655, + [7196] = 6656, + [7197] = 6657, + [7198] = 7198, + [7199] = 7199, + [7200] = 6650, + [7201] = 6651, + [7202] = 6652, + [7203] = 6653, + [7204] = 6631, + [7205] = 6654, + [7206] = 6655, + [7207] = 6637, + [7208] = 6656, + [7209] = 6639, + [7210] = 6657, + [7211] = 6638, + [7212] = 6639, + [7213] = 6650, + [7214] = 7214, + [7215] = 6624, + [7216] = 6640, + [7217] = 6625, + [7218] = 7218, + [7219] = 7219, + [7220] = 6649, + [7221] = 6623, + [7222] = 7222, + [7223] = 6626, + [7224] = 6622, + [7225] = 6628, + [7226] = 5844, + [7227] = 6629, + [7228] = 6643, + [7229] = 6638, + [7230] = 6641, + [7231] = 6635, + [7232] = 7232, + [7233] = 6652, + [7234] = 7234, + [7235] = 6649, + [7236] = 6643, + [7237] = 6620, + [7238] = 6641, + [7239] = 6639, + [7240] = 6642, + [7241] = 6640, + [7242] = 6632, + [7243] = 6641, + [7244] = 6642, + [7245] = 6643, + [7246] = 7246, + [7247] = 6631, + [7248] = 6632, + [7249] = 6628, + [7250] = 6619, + [7251] = 6623, + [7252] = 6635, + [7253] = 6636, + [7254] = 6637, + [7255] = 6638, + [7256] = 6653, + [7257] = 6624, + [7258] = 6625, + [7259] = 7259, + [7260] = 6629, + [7261] = 7261, + [7262] = 7262, + [7263] = 6626, + [7264] = 7264, + [7265] = 7265, + [7266] = 7266, + [7267] = 7267, + [7268] = 7268, + [7269] = 7269, + [7270] = 7270, + [7271] = 7271, + [7272] = 7272, + [7273] = 7269, + [7274] = 7274, + [7275] = 7275, + [7276] = 7275, + [7277] = 7269, + [7278] = 7269, + [7279] = 7269, + [7280] = 7280, [7281] = 7281, - [7282] = 6646, + [7282] = 7269, [7283] = 7283, - [7284] = 6656, - [7285] = 6679, + [7284] = 7269, + [7285] = 7285, [7286] = 7286, - [7287] = 6652, - [7288] = 7288, + [7287] = 7271, + [7288] = 7280, [7289] = 7289, - [7290] = 7290, - [7291] = 7291, - [7292] = 7292, - [7293] = 7288, - [7294] = 7294, - [7295] = 7292, - [7296] = 7296, - [7297] = 7297, + [7290] = 7289, + [7291] = 7274, + [7292] = 7269, + [7293] = 7289, + [7294] = 7265, + [7295] = 7274, + [7296] = 7275, + [7297] = 7264, [7298] = 7298, - [7299] = 7299, - [7300] = 7288, - [7301] = 7301, - [7302] = 7297, - [7303] = 7292, - [7304] = 7292, - [7305] = 7292, - [7306] = 7292, - [7307] = 7307, - [7308] = 7308, - [7309] = 7309, - [7310] = 7297, - [7311] = 7311, - [7312] = 7288, - [7313] = 7297, - [7314] = 7292, - [7315] = 7297, - [7316] = 7288, - [7317] = 7288, - [7318] = 7307, - [7319] = 7309, - [7320] = 7288, - [7321] = 7321, - [7322] = 7322, - [7323] = 7288, - [7324] = 7288, - [7325] = 7292, - [7326] = 7288, - [7327] = 7296, - [7328] = 7292, - [7329] = 7288, - [7330] = 7321, - [7331] = 7331, - [7332] = 7288, - [7333] = 7307, - [7334] = 7309, - [7335] = 7288, + [7299] = 7265, + [7300] = 7265, + [7301] = 7265, + [7302] = 7264, + [7303] = 7265, + [7304] = 7265, + [7305] = 7269, + [7306] = 7269, + [7307] = 7265, + [7308] = 7264, + [7309] = 7265, + [7310] = 7310, + [7311] = 7274, + [7312] = 7269, + [7313] = 7275, + [7314] = 7265, + [7315] = 7269, + [7316] = 7280, + [7317] = 7265, + [7318] = 7265, + [7319] = 7319, + [7320] = 7265, + [7321] = 7265, + [7322] = 7265, + [7323] = 7265, + [7324] = 7265, + [7325] = 7265, + [7326] = 7326, + [7327] = 7274, + [7328] = 7271, + [7329] = 7275, + [7330] = 7280, + [7331] = 7289, + [7332] = 7289, + [7333] = 7271, + [7334] = 7264, + [7335] = 7264, [7336] = 7336, - [7337] = 7288, - [7338] = 7288, - [7339] = 7339, - [7340] = 7288, - [7341] = 7288, - [7342] = 7288, - [7343] = 7288, - [7344] = 7288, - [7345] = 7307, - [7346] = 7307, - [7347] = 7309, - [7348] = 7309, - [7349] = 7336, - [7350] = 7350, - [7351] = 7321, - [7352] = 7336, - [7353] = 7296, - [7354] = 7321, - [7355] = 7336, - [7356] = 7296, - [7357] = 7292, - [7358] = 7358, - [7359] = 7359, - [7360] = 7307, - [7361] = 7309, - [7362] = 7296, - [7363] = 7292, - [7364] = 7307, - [7365] = 7309, - [7366] = 7297, + [7337] = 7271, + [7338] = 7274, + [7339] = 7275, + [7340] = 7340, + [7341] = 7341, + [7342] = 7280, + [7343] = 7280, + [7344] = 7344, + [7345] = 7345, + [7346] = 7289, + [7347] = 7271, + [7348] = 7271, + [7349] = 7269, + [7350] = 7269, + [7351] = 7351, + [7352] = 7274, + [7353] = 7275, + [7354] = 7280, + [7355] = 7265, + [7356] = 7356, + [7357] = 7289, + [7358] = 7264, + [7359] = 7265, + [7360] = 7360, + [7361] = 7361, + [7362] = 7362, + [7363] = 7363, + [7364] = 7362, + [7365] = 1226, + [7366] = 1217, [7367] = 7367, - [7368] = 7321, - [7369] = 7336, - [7370] = 7321, - [7371] = 7336, - [7372] = 7296, - [7373] = 7296, - [7374] = 7292, - [7375] = 7297, - [7376] = 7292, - [7377] = 7377, - [7378] = 7336, - [7379] = 7379, - [7380] = 7380, - [7381] = 7381, - [7382] = 7292, - [7383] = 7321, - [7384] = 7384, - [7385] = 7385, - [7386] = 7385, - [7387] = 7387, - [7388] = 7387, - [7389] = 7389, - [7390] = 7390, - [7391] = 7391, - [7392] = 7392, - [7393] = 7387, - [7394] = 7394, - [7395] = 7384, - [7396] = 7396, - [7397] = 7389, - [7398] = 7396, + [7368] = 7360, + [7369] = 7360, + [7370] = 7370, + [7371] = 7371, + [7372] = 7371, + [7373] = 1221, + [7374] = 7374, + [7375] = 7370, + [7376] = 7376, + [7377] = 7374, + [7378] = 7378, + [7379] = 7361, + [7380] = 7367, + [7381] = 7376, + [7382] = 7362, + [7383] = 1223, + [7384] = 7378, + [7385] = 7361, + [7386] = 7374, + [7387] = 7360, + [7388] = 7376, + [7389] = 7374, + [7390] = 7378, + [7391] = 7361, + [7392] = 7367, + [7393] = 7362, + [7394] = 7362, + [7395] = 7362, + [7396] = 7378, + [7397] = 7361, + [7398] = 7363, [7399] = 7399, - [7400] = 7394, - [7401] = 7384, - [7402] = 7402, - [7403] = 7403, - [7404] = 7404, - [7405] = 7404, - [7406] = 7394, - [7407] = 7384, - [7408] = 1224, - [7409] = 7385, - [7410] = 7404, - [7411] = 7385, - [7412] = 7394, - [7413] = 7384, - [7414] = 7387, - [7415] = 7415, - [7416] = 7385, - [7417] = 7391, - [7418] = 7394, - [7419] = 7384, - [7420] = 7420, - [7421] = 7389, - [7422] = 7415, - [7423] = 7420, - [7424] = 7394, - [7425] = 7384, - [7426] = 7404, - [7427] = 7396, - [7428] = 7391, - [7429] = 7387, - [7430] = 7394, - [7431] = 7384, - [7432] = 7396, - [7433] = 7404, - [7434] = 1226, - [7435] = 7404, - [7436] = 7394, - [7437] = 7384, - [7438] = 7415, - [7439] = 7389, - [7440] = 7404, - [7441] = 7396, - [7442] = 7394, - [7443] = 7415, + [7400] = 7363, + [7401] = 1224, + [7402] = 7378, + [7403] = 7361, + [7404] = 7370, + [7405] = 7405, + [7406] = 7360, + [7407] = 7405, + [7408] = 7378, + [7409] = 7361, + [7410] = 7374, + [7411] = 7363, + [7412] = 7370, + [7413] = 7376, + [7414] = 7378, + [7415] = 7361, + [7416] = 7367, + [7417] = 7370, + [7418] = 7370, + [7419] = 7376, + [7420] = 7378, + [7421] = 7361, + [7422] = 7370, + [7423] = 7376, + [7424] = 7363, + [7425] = 7405, + [7426] = 7378, + [7427] = 7361, + [7428] = 7374, + [7429] = 7360, + [7430] = 7367, + [7431] = 7362, + [7432] = 7378, + [7433] = 7361, + [7434] = 7371, + [7435] = 7362, + [7436] = 7405, + [7437] = 7374, + [7438] = 7378, + [7439] = 7361, + [7440] = 7360, + [7441] = 7378, + [7442] = 7363, + [7443] = 7370, [7444] = 7444, - [7445] = 7445, - [7446] = 7389, - [7447] = 7390, - [7448] = 7394, - [7449] = 7384, - [7450] = 7390, - [7451] = 7391, - [7452] = 7391, - [7453] = 7389, - [7454] = 7394, - [7455] = 7384, - [7456] = 7396, - [7457] = 7396, - [7458] = 7391, - [7459] = 7396, - [7460] = 7389, - [7461] = 7396, - [7462] = 7390, - [7463] = 7415, - [7464] = 7390, - [7465] = 7420, - [7466] = 7420, - [7467] = 7385, - [7468] = 7396, - [7469] = 7389, - [7470] = 7391, - [7471] = 7396, - [7472] = 7387, - [7473] = 1219, - [7474] = 7404, - [7475] = 7404, - [7476] = 7389, - [7477] = 7420, - [7478] = 7389, - [7479] = 7394, - [7480] = 7387, - [7481] = 7390, - [7482] = 7390, - [7483] = 7415, - [7484] = 7420, - [7485] = 7385, - [7486] = 7390, - [7487] = 7404, - [7488] = 7385, - [7489] = 7391, - [7490] = 7391, - [7491] = 7404, - [7492] = 7492, - [7493] = 7415, - [7494] = 7415, - [7495] = 7390, - [7496] = 7415, - [7497] = 7387, - [7498] = 7391, - [7499] = 1223, - [7500] = 7389, - [7501] = 7385, - [7502] = 7387, - [7503] = 7390, - [7504] = 7385, - [7505] = 7389, - [7506] = 7390, - [7507] = 7385, - [7508] = 1225, - [7509] = 7404, - [7510] = 7402, - [7511] = 7415, - [7512] = 7385, - [7513] = 7391, - [7514] = 7390, - [7515] = 7515, - [7516] = 7394, - [7517] = 7396, - [7518] = 7387, - [7519] = 7404, - [7520] = 7391, - [7521] = 7402, - [7522] = 1218, - [7523] = 7396, - [7524] = 7420, - [7525] = 7391, - [7526] = 7394, - [7527] = 7391, - [7528] = 7384, - [7529] = 7389, - [7530] = 7396, - [7531] = 7387, - [7532] = 7415, - [7533] = 1222, - [7534] = 7389, - [7535] = 7404, - [7536] = 7390, - [7537] = 7390, - [7538] = 7415, - [7539] = 7539, - [7540] = 7415, - [7541] = 7387, - [7542] = 7384, - [7543] = 7384, - [7544] = 7387, - [7545] = 7387, - [7546] = 7385, - [7547] = 7415, - [7548] = 7385, + [7445] = 7360, + [7446] = 7370, + [7447] = 7374, + [7448] = 7367, + [7449] = 7371, + [7450] = 7363, + [7451] = 7376, + [7452] = 7452, + [7453] = 7376, + [7454] = 7405, + [7455] = 7360, + [7456] = 7405, + [7457] = 7457, + [7458] = 7405, + [7459] = 7367, + [7460] = 7362, + [7461] = 7452, + [7462] = 7360, + [7463] = 7463, + [7464] = 7464, + [7465] = 7367, + [7466] = 7466, + [7467] = 7371, + [7468] = 7405, + [7469] = 7469, + [7470] = 7362, + [7471] = 7374, + [7472] = 7376, + [7473] = 7405, + [7474] = 7363, + [7475] = 7363, + [7476] = 7405, + [7477] = 7360, + [7478] = 7374, + [7479] = 7374, + [7480] = 7376, + [7481] = 1222, + [7482] = 7367, + [7483] = 7405, + [7484] = 7376, + [7485] = 7360, + [7486] = 7405, + [7487] = 7361, + [7488] = 7367, + [7489] = 7374, + [7490] = 7360, + [7491] = 7374, + [7492] = 7363, + [7493] = 7370, + [7494] = 7367, + [7495] = 7495, + [7496] = 7363, + [7497] = 7370, + [7498] = 7362, + [7499] = 7363, + [7500] = 7362, + [7501] = 7370, + [7502] = 7367, + [7503] = 7362, + [7504] = 7405, + [7505] = 7371, + [7506] = 7367, + [7507] = 7405, + [7508] = 7362, + [7509] = 7378, + [7510] = 7452, + [7511] = 7370, + [7512] = 7363, + [7513] = 7371, + [7514] = 1225, + [7515] = 7376, + [7516] = 7376, + [7517] = 7363, + [7518] = 7370, + [7519] = 7367, + [7520] = 7378, + [7521] = 7361, + [7522] = 7360, + [7523] = 7374, + [7524] = 7376, }; static TSCharacterRange aux_sym_identifier_token1_character_set_1[] = { @@ -9588,7 +9486,7 @@ static TSCharacterRange aux_sym_identifier_token1_character_set_1[] = { {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10428, 0x1049d}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, - {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x1092b}, + {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, }; static TSCharacterRange aux_sym_identifier_token1_character_set_2[] = { @@ -9612,11 +9510,11 @@ static TSCharacterRange aux_sym_identifier_token1_character_set_2[] = { {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc63}, {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbc, 0xcc4}, {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, - {0xcf1, 0xcf2}, {0xd00, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, + {0xcf1, 0xcf3}, {0xd00, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, {0xd66, 0xd6f}, {0xd7a, 0xd7f}, {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xdca, 0xdca}, {0xdcf, 0xdd4}, {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, {0xe40, 0xe4e}, {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, - {0xec6, 0xec6}, {0xec8, 0xecd}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, + {0xec6, 0xec6}, {0xec8, 0xece}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, {0xf37, 0xf37}, {0xf39, 0xf39}, {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, {0xfc6, 0xfc6}, {0x1000, 0x1049}, {0x1050, 0x109d}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, @@ -9629,13 +9527,13 @@ static TSCharacterRange aux_sym_identifier_token1_character_set_2[] = { {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, - {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x203f, 0x2040}, {0x2054, 0x2054}, - {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, - {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, - {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, - {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, - {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, - {0x3041, 0x3096}, {0x3099, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, + {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, + {0x2054, 0x2054}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, + {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, + {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, + {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, + {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, + {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, @@ -9645,7 +9543,7 @@ static TSCharacterRange aux_sym_identifier_token1_character_set_2[] = { {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdfb}, {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, - {0xff41, 0xff5a}, {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, + {0xff41, 0xff5a}, {0xff65, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, @@ -9655,10 +9553,10 @@ static TSCharacterRange aux_sym_identifier_token1_character_set_2[] = { {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, - {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, + {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, - {0x11213, 0x11237}, {0x1123e, 0x1123e}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, + {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, @@ -9668,25 +9566,27 @@ static TSCharacterRange aux_sym_identifier_token1_character_set_2[] = { {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, - {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342e}, - {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, - {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, - {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, - {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b150, 0x1b152}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, - {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, - {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, - {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, - {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, - {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, - {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, - {0x1df00, 0x1df1e}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, - {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, - {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, - {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, - {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, - {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, - {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b738}, - {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0xe0100, 0xe01ef}, + {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, + {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, + {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, + {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, + {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, + {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, + {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, + {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, + {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, + {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, + {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, + {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, + {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, + {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, + {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, + {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, + {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, + {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, + {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, + {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, + {0x30000, 0x3134a}, {0x31350, 0x323af}, {0xe0100, 0xe01ef}, }; static TSCharacterRange sym_atom__character_set_2[] = { @@ -9709,12 +9609,12 @@ static TSCharacterRange sym_atom__character_set_2[] = { {0xbbe, 0xbc2}, {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, {0xc00, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc63}, {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, - {0xcbc, 0xcc4}, {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, {0xcf1, 0xcf2}, + {0xcbc, 0xcc4}, {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, {0xcf1, 0xcf3}, {0xd00, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, {0xd66, 0xd6f}, {0xd7a, 0xd7f}, {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xdca, 0xdca}, {0xdcf, 0xdd4}, {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, {0xe40, 0xe4e}, {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, - {0xec8, 0xecd}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, {0xf37, 0xf37}, + {0xec8, 0xece}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, {0xf37, 0xf37}, {0xf39, 0xf39}, {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, {0xfc6, 0xfc6}, {0x1000, 0x1049}, {0x1050, 0x109d}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, @@ -9727,13 +9627,13 @@ static TSCharacterRange sym_atom__character_set_2[] = { {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, - {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, - {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, - {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, - {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, - {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, - {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, - {0x3099, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, + {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, {0x2054, 0x2054}, + {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, + {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, + {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, + {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, + {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, + {0x3041, 0x3096}, {0x3099, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, @@ -9743,7 +9643,7 @@ static TSCharacterRange sym_atom__character_set_2[] = { {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdfb}, {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, - {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, + {0xff65, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, @@ -9753,10 +9653,10 @@ static TSCharacterRange sym_atom__character_set_2[] = { {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, - {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, + {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, - {0x1123e, 0x1123e}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, + {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, @@ -9766,25 +9666,27 @@ static TSCharacterRange sym_atom__character_set_2[] = { {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, - {0x11ee0, 0x11ef6}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342e}, {0x14400, 0x14646}, - {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, - {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, - {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, - {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b150, 0x1b152}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, - {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, - {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, - {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, - {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, - {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, - {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, - {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, - {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, - {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, - {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, - {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, - {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, - {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b738}, {0x2b740, 0x2b81d}, - {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0xe0100, 0xe01ef}, + {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, + {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, + {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, + {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, + {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, + {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, + {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, + {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, + {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, + {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, + {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, + {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, + {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, + {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, + {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, + {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, + {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, + {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, + {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, + {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, + {0x31350, 0x323af}, {0xe0100, 0xe01ef}, }; static TSCharacterRange sym_keyword__character_set_1[] = { @@ -9847,29 +9749,31 @@ static TSCharacterRange sym_keyword__character_set_1[] = { {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, - {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, - {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, - {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, - {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, - {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, - {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, - {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, - {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, - {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342e}, - {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, - {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, - {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b150, 0x1b152}, {0x1b164, 0x1b167}, - {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, - {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, - {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, - {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, - {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, - {0x1e2c0, 0x1e2eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, - {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, - {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, - {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, - {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, - {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b738}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, + {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, + {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, + {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, + {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, + {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, + {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, + {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, + {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, + {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, + {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, + {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, + {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, + {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, + {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, + {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, + {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, + {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, + {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, + {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, + {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, + {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, + {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, + {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; static TSCharacterRange sym_keyword__character_set_2[] = { @@ -9892,12 +9796,12 @@ static TSCharacterRange sym_keyword__character_set_2[] = { {0xbbe, 0xbc2}, {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, {0xc00, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc63}, {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, - {0xcbc, 0xcc4}, {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, {0xcf1, 0xcf2}, + {0xcbc, 0xcc4}, {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, {0xcf1, 0xcf3}, {0xd00, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, {0xd66, 0xd6f}, {0xd7a, 0xd7f}, {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xdca, 0xdca}, {0xdcf, 0xdd4}, {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, {0xe40, 0xe4e}, {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, - {0xec8, 0xecd}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, {0xf37, 0xf37}, + {0xec8, 0xece}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, {0xf37, 0xf37}, {0xf39, 0xf39}, {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, {0xfc6, 0xfc6}, {0x1000, 0x1049}, {0x1050, 0x109d}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, @@ -9910,13 +9814,13 @@ static TSCharacterRange sym_keyword__character_set_2[] = { {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, - {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, - {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, - {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, - {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, - {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, - {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, - {0x3099, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, + {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, {0x2054, 0x2054}, + {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, + {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, + {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, + {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, + {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, + {0x3041, 0x3096}, {0x3099, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, @@ -9926,7 +9830,7 @@ static TSCharacterRange sym_keyword__character_set_2[] = { {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdfb}, {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe70, 0xfe74}, {0xfe76, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, - {0xff66, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, + {0xff65, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, @@ -9936,10 +9840,10 @@ static TSCharacterRange sym_keyword__character_set_2[] = { {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, - {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, + {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, - {0x1123e, 0x1123e}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, + {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, @@ -9949,25 +9853,27 @@ static TSCharacterRange sym_keyword__character_set_2[] = { {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, - {0x11ee0, 0x11ef6}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342e}, {0x14400, 0x14646}, - {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, - {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, - {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, - {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b150, 0x1b152}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, - {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, - {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, - {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, - {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, - {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, - {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, - {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, - {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, - {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, - {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, - {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, - {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, - {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b738}, {0x2b740, 0x2b81d}, - {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0xe0100, 0xe01ef}, + {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, + {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, + {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, + {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, + {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, + {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, + {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, + {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, + {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, + {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, + {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, + {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, + {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, + {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, + {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, + {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, + {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, + {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, + {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, + {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, + {0x31350, 0x323af}, {0xe0100, 0xe01ef}, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -9975,118 +9881,118 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(325); + if (eof) ADVANCE(329); ADVANCE_MAP( - '\n', 326, + '\n', 330, '\r', 1, - '!', 595, - '"', 494, - '#', 726, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 724, - ')', 368, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 694, - '/', 517, - '0', 450, - ':', 729, - ';', 366, - '<', 505, - '=', 618, - '>', 509, - '?', 252, - '@', 606, - '[', 725, + '!', 599, + '"', 498, + '#', 730, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 728, + ')', 372, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 698, + '/', 521, + '0', 454, + ':', 733, + ';', 370, + '<', 509, + '=', 622, + '>', 513, + '?', 255, + '@', 610, + '[', 729, '\\', 4, - ']', 503, - '^', 598, - 'a', 530, - 'c', 528, - 'd', 535, - 'e', 533, - 'f', 527, - 'i', 534, - 'n', 532, - 'o', 536, - 'r', 529, - 't', 537, - 'w', 531, - '{', 500, - '|', 514, - '}', 501, - '~', 524, - 0x2e2f, 444, + ']', 507, + '^', 602, + 'a', 534, + 'c', 532, + 'd', 539, + 'e', 537, + 'f', 531, + 'i', 538, + 'n', 536, + 'o', 540, + 'r', 533, + 't', 541, + 'w', 535, + '{', 504, + '|', 518, + '}', 505, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(538); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(539); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + lookahead == ' ') SKIP(317); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(542); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(543); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(330); END_STATE(); case 2: ADVANCE_MAP( - '\n', 326, + '\n', 330, '\r', 1, - '!', 595, - '"', 494, - '#', 726, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - ')', 368, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 694, - '/', 517, - '0', 450, - ':', 729, - ';', 366, - '<', 505, - '=', 618, - '>', 509, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 730, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + ')', 372, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 698, + '/', 521, + '0', 454, + ':', 733, + ';', 370, + '<', 509, + '=', 622, + '>', 513, + '?', 255, + '@', 610, + '[', 506, '\\', 4, - ']', 503, - '^', 598, - 'a', 384, - 'c', 372, - 'd', 395, - 'e', 388, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 'r', 381, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '}', 501, - '~', 524, - 0x2e2f, 444, + ']', 507, + '^', 602, + 'a', 388, + 'c', 376, + 'd', 399, + 'e', 392, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 'r', 385, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '}', 505, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(2); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 3: if (lookahead == '\n') SKIP(2); @@ -10094,7 +10000,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 4: if (lookahead == '\n') SKIP(2); if (lookahead == '\r') SKIP(3); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 5: if (lookahead == '\n') SKIP(97); @@ -10102,7 +10008,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 6: if (lookahead == '\n') SKIP(97); if (lookahead == '\r') SKIP(5); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 7: if (lookahead == '\n') SKIP(99); @@ -10110,7 +10016,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 8: if (lookahead == '\n') SKIP(99); if (lookahead == '\r') SKIP(7); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 9: if (lookahead == '\n') SKIP(104); @@ -10118,7 +10024,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 10: if (lookahead == '\n') SKIP(104); if (lookahead == '\r') SKIP(9); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 11: if (lookahead == '\n') SKIP(115); @@ -10126,7 +10032,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 12: if (lookahead == '\n') SKIP(115); if (lookahead == '\r') SKIP(11); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 13: if (lookahead == '\n') SKIP(117); @@ -10134,7 +10040,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 14: if (lookahead == '\n') SKIP(117); if (lookahead == '\r') SKIP(13); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 15: if (lookahead == '\n') SKIP(119); @@ -10142,7 +10048,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 16: if (lookahead == '\n') SKIP(119); if (lookahead == '\r') SKIP(15); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 17: if (lookahead == '\n') SKIP(121); @@ -10150,7 +10056,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 18: if (lookahead == '\n') SKIP(121); if (lookahead == '\r') SKIP(17); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 19: if (lookahead == '\n') SKIP(123); @@ -10158,7 +10064,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 20: if (lookahead == '\n') SKIP(123); if (lookahead == '\r') SKIP(19); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 21: if (lookahead == '\n') SKIP(143); @@ -10166,7 +10072,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 22: if (lookahead == '\n') SKIP(143); if (lookahead == '\r') SKIP(21); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 23: if (lookahead == '\n') SKIP(145); @@ -10174,7 +10080,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 24: if (lookahead == '\n') SKIP(145); if (lookahead == '\r') SKIP(23); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 25: if (lookahead == '\n') SKIP(148); @@ -10182,7 +10088,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 26: if (lookahead == '\n') SKIP(148); if (lookahead == '\r') SKIP(25); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 27: if (lookahead == '\n') SKIP(154); @@ -10190,15 +10096,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 28: if (lookahead == '\n') SKIP(154); if (lookahead == '\r') SKIP(27); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 29: - if (lookahead == '\n') SKIP(159); + if (lookahead == '\n') SKIP(156); END_STATE(); case 30: - if (lookahead == '\n') SKIP(159); + if (lookahead == '\n') SKIP(156); if (lookahead == '\r') SKIP(29); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 31: if (lookahead == '\n') SKIP(162); @@ -10206,7 +10112,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 32: if (lookahead == '\n') SKIP(162); if (lookahead == '\r') SKIP(31); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 33: if (lookahead == '\n') SKIP(164); @@ -10214,7 +10120,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 34: if (lookahead == '\n') SKIP(164); if (lookahead == '\r') SKIP(33); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 35: if (lookahead == '\n') SKIP(167); @@ -10222,7 +10128,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 36: if (lookahead == '\n') SKIP(167); if (lookahead == '\r') SKIP(35); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 37: if (lookahead == '\n') SKIP(173); @@ -10230,7 +10136,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 38: if (lookahead == '\n') SKIP(173); if (lookahead == '\r') SKIP(37); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 39: if (lookahead == '\n') SKIP(176); @@ -10238,7 +10144,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 40: if (lookahead == '\n') SKIP(176); if (lookahead == '\r') SKIP(39); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 41: if (lookahead == '\n') SKIP(182); @@ -10246,7 +10152,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 42: if (lookahead == '\n') SKIP(182); if (lookahead == '\r') SKIP(41); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 43: if (lookahead == '\n') SKIP(185); @@ -10254,7 +10160,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 44: if (lookahead == '\n') SKIP(185); if (lookahead == '\r') SKIP(43); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 45: if (lookahead == '\n') SKIP(188); @@ -10262,7 +10168,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 46: if (lookahead == '\n') SKIP(188); if (lookahead == '\r') SKIP(45); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 47: if (lookahead == '\n') SKIP(50); @@ -10272,70 +10178,70 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(47); END_STATE(); case 49: - if (lookahead == '\n') ADVANCE(327); + if (lookahead == '\n') ADVANCE(331); END_STATE(); case 50: ADVANCE_MAP( - '\n', 327, + '\n', 331, '\r', 49, - '!', 594, - '"', 494, - '#', 727, - '&', 584, - '\'', 496, - '(', 367, - '+', 587, - ',', 568, - '-', 590, - '/', 516, - '<', 504, - '>', 247, - '@', 605, - '[', 502, + '!', 598, + '"', 498, + '#', 731, + '&', 588, + '\'', 500, + '(', 371, + '+', 591, + ',', 572, + '-', 594, + '/', 520, + '<', 508, + '>', 250, + '@', 609, + '[', 506, ); if (lookahead == '\\') SKIP(48); - if (lookahead == ']') ADVANCE(503); - if (lookahead == '^') ADVANCE(597); - if (lookahead == 'n') ADVANCE(277); - if (lookahead == '{') ADVANCE(499); - if (lookahead == '|') ADVANCE(513); - if (lookahead == '}') ADVANCE(501); - if (lookahead == '~') ADVANCE(295); + if (lookahead == ']') ADVANCE(507); + if (lookahead == '^') ADVANCE(601); + if (lookahead == 'n') ADVANCE(280); + if (lookahead == '{') ADVANCE(503); + if (lookahead == '|') ADVANCE(517); + if (lookahead == '}') ADVANCE(505); + if (lookahead == '~') ADVANCE(298); if (lookahead == '\t' || lookahead == ' ') SKIP(50); END_STATE(); case 51: - if (lookahead == '\n') ADVANCE(327); + if (lookahead == '\n') ADVANCE(331); if (lookahead == '\r') ADVANCE(49); - if (lookahead == '#') ADVANCE(727); - if (lookahead == ')') ADVANCE(368); - if (lookahead == ',') ADVANCE(568); - if (lookahead == '-') ADVANCE(242); - if (lookahead == '>') ADVANCE(247); + if (lookahead == '#') ADVANCE(731); + if (lookahead == ')') ADVANCE(372); + if (lookahead == ',') ADVANCE(572); + if (lookahead == '-') ADVANCE(245); + if (lookahead == '>') ADVANCE(250); if (lookahead == '\\') SKIP(57); - if (lookahead == ']') ADVANCE(503); - if (lookahead == 'w') ADVANCE(270); - if (lookahead == '}') ADVANCE(501); + if (lookahead == ']') ADVANCE(507); + if (lookahead == 'w') ADVANCE(273); + if (lookahead == '}') ADVANCE(505); if (lookahead == '\t' || lookahead == ' ') SKIP(51); END_STATE(); case 52: - if (lookahead == '\n') ADVANCE(327); + if (lookahead == '\n') ADVANCE(331); if (lookahead == '\r') ADVANCE(49); - if (lookahead == '#') ADVANCE(727); + if (lookahead == '#') ADVANCE(731); if (lookahead == '\\') SKIP(60); if (lookahead == '\t' || lookahead == ' ') SKIP(52); END_STATE(); case 53: - if (lookahead == '\n') ADVANCE(327); + if (lookahead == '\n') ADVANCE(331); if (lookahead == '\r') ADVANCE(49); - if (lookahead == '#') ADVANCE(727); + if (lookahead == '#') ADVANCE(731); if (lookahead == '\\') SKIP(60); if (lookahead == '\t' || lookahead == ' ') SKIP(52); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(540); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(526); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(544); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(530); END_STATE(); case 54: if (lookahead == '\n') SKIP(193); @@ -10343,7 +10249,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 55: if (lookahead == '\n') SKIP(193); if (lookahead == '\r') SKIP(54); - if (lookahead == '\\') ADVANCE(220); + if (lookahead == '\\') ADVANCE(223); END_STATE(); case 56: if (lookahead == '\n') SKIP(51); @@ -10353,11 +10259,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(56); END_STATE(); case 58: - if (lookahead == '\n') ADVANCE(522); - if (lookahead == '\r') ADVANCE(521); - if (lookahead == 'u') ADVANCE(287); - if (lookahead == 'x') ADVANCE(286); - if (lookahead != 0) ADVANCE(521); + if (lookahead == '\n') ADVANCE(526); + if (lookahead == '\r') ADVANCE(525); + if (lookahead == 'u') ADVANCE(290); + if (lookahead == 'x') ADVANCE(289); + if (lookahead != 0) ADVANCE(525); END_STATE(); case 59: if (lookahead == '\n') SKIP(52); @@ -10367,61 +10273,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(59); END_STATE(); case 61: - if (lookahead == '\n') ADVANCE(328); + if (lookahead == '\n') ADVANCE(332); END_STATE(); case 62: - ADVANCE_MAP( - '\n', 328, - '\r', 61, - '"', 493, - '#', 726, - '\'', 495, - ')', 368, - '/', 516, - '>', 508, - '\\', 58, - ']', 503, - '|', 513, - '}', 501, - ); + if (lookahead == '\n') ADVANCE(332); + if (lookahead == '\r') ADVANCE(61); + if (lookahead == '"') ADVANCE(497); + if (lookahead == '#') ADVANCE(730); + if (lookahead == '\'') ADVANCE(199); + if (lookahead == '\\') ADVANCE(58); if (lookahead == '\t' || lookahead == ' ') SKIP(62); END_STATE(); case 63: - if (lookahead == '\n') ADVANCE(328); - if (lookahead == '\r') ADVANCE(61); - if (lookahead == '"') ADVANCE(493); - if (lookahead == '#') ADVANCE(727); - if (lookahead == '\'') ADVANCE(495); - if (lookahead == '\\') ADVANCE(58); + ADVANCE_MAP( + '\n', 332, + '\r', 61, + '"', 497, + '#', 731, + '\'', 499, + ')', 372, + '/', 520, + '>', 512, + '\\', 58, + ']', 507, + '|', 517, + '}', 505, + ); if (lookahead == '\t' || lookahead == ' ') SKIP(63); END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(328); - if (lookahead == '\r') ADVANCE(61); - if (lookahead == '"') ADVANCE(194); - if (lookahead == '#') ADVANCE(726); - if (lookahead == '\'') ADVANCE(199); - if (lookahead == '\\') ADVANCE(58); - if (lookahead == '\t' || - lookahead == ' ') SKIP(64); - END_STATE(); - case 65: ADVANCE_MAP( - '\n', 328, + '\n', 332, '\r', 61, '"', 194, - '#', 727, - '\'', 199, - ')', 368, - '/', 516, - '>', 508, + '#', 730, + '\'', 499, + ')', 372, + '/', 520, + '>', 512, '\\', 58, - ']', 503, - '|', 513, - '}', 501, + ']', 507, + '|', 517, + '}', 505, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(64); + END_STATE(); + case 65: + if (lookahead == '\n') ADVANCE(332); + if (lookahead == '\r') ADVANCE(61); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '#') ADVANCE(731); + if (lookahead == '\'') ADVANCE(199); + if (lookahead == '\\') ADVANCE(58); if (lookahead == '\t' || lookahead == ' ') SKIP(65); END_STATE(); @@ -10431,7 +10337,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 67: if (lookahead == '\n') SKIP(102); if (lookahead == '\r') SKIP(66); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 68: if (lookahead == '\n') SKIP(128); @@ -10439,7 +10345,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 69: if (lookahead == '\n') SKIP(128); if (lookahead == '\r') SKIP(68); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 70: if (lookahead == '\n') SKIP(107); @@ -10447,7 +10353,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 71: if (lookahead == '\n') SKIP(107); if (lookahead == '\r') SKIP(70); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 72: if (lookahead == '\n') SKIP(110); @@ -10455,7 +10361,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 73: if (lookahead == '\n') SKIP(110); if (lookahead == '\r') SKIP(72); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 74: if (lookahead == '\n') SKIP(140); @@ -10463,7 +10369,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 75: if (lookahead == '\n') SKIP(140); if (lookahead == '\r') SKIP(74); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 76: if (lookahead == '\n') SKIP(151); @@ -10471,15 +10377,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 77: if (lookahead == '\n') SKIP(151); if (lookahead == '\r') SKIP(76); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 78: - if (lookahead == '\n') SKIP(157); + if (lookahead == '\n') SKIP(159); END_STATE(); case 79: - if (lookahead == '\n') SKIP(157); + if (lookahead == '\n') SKIP(159); if (lookahead == '\r') SKIP(78); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 80: if (lookahead == '\n') SKIP(170); @@ -10487,7 +10393,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 81: if (lookahead == '\n') SKIP(170); if (lookahead == '\r') SKIP(80); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 82: if (lookahead == '\n') SKIP(179); @@ -10495,7 +10401,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 83: if (lookahead == '\n') SKIP(179); if (lookahead == '\r') SKIP(82); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 84: if (lookahead == '\n') SKIP(191); @@ -10503,7 +10409,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 85: if (lookahead == '\n') SKIP(191); if (lookahead == '\r') SKIP(84); - if (lookahead == '\\') ADVANCE(609); + if (lookahead == '\\') ADVANCE(613); END_STATE(); case 86: if (lookahead == '\n') SKIP(126); @@ -10511,7 +10417,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 87: if (lookahead == '\n') SKIP(126); if (lookahead == '\r') SKIP(86); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 88: if (lookahead == '\n') SKIP(131); @@ -10519,7 +10425,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 89: if (lookahead == '\n') SKIP(131); if (lookahead == '\r') SKIP(88); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 90: if (lookahead == '\n') SKIP(113); @@ -10527,7 +10433,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 91: if (lookahead == '\n') SKIP(113); if (lookahead == '\r') SKIP(90); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 92: if (lookahead == '\n') SKIP(134); @@ -10535,7 +10441,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 93: if (lookahead == '\n') SKIP(134); if (lookahead == '\r') SKIP(92); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 94: if (lookahead == '\n') SKIP(137); @@ -10543,5951 +10449,5972 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 95: if (lookahead == '\n') SKIP(137); if (lookahead == '\r') SKIP(94); - if (lookahead == '\\') ADVANCE(610); + if (lookahead == '\\') ADVANCE(614); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(329); + if (lookahead == '\n') ADVANCE(333); END_STATE(); case 97: ADVANCE_MAP( - '\n', 329, + '\n', 333, '\r', 96, - '!', 596, - '"', 494, - '#', 727, - '$', 312, - '%', 577, - '&', 586, - '\'', 496, - '(', 367, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 593, - '.', 207, - '/', 516, - '0', 450, - ':', 730, - ';', 366, - '<', 506, - '=', 621, - '>', 512, - '?', 252, - '@', 605, - '[', 502, + '!', 600, + '"', 498, + '#', 731, + '$', 206, + '%', 581, + '&', 590, + '\'', 500, + '(', 371, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 597, + '.', 209, + '/', 520, + '0', 454, + ':', 734, + ';', 370, + '<', 510, + '=', 625, + '>', 516, + '?', 255, + '@', 609, + '[', 506, '\\', 6, - ']', 503, - '^', 599, - 'a', 428, - 'f', 408, - 'i', 429, - 'n', 424, - 'o', 433, - 't', 434, - 'w', 422, - '{', 499, - '|', 515, - '}', 501, - '~', 525, + ']', 507, + '^', 603, + 'a', 432, + 'f', 412, + 'i', 433, + 'n', 428, + 'o', 437, + 't', 438, + 'w', 426, + '{', 503, + '|', 519, + '}', 505, + '~', 529, ); if (lookahead == '\t' || lookahead == ' ') SKIP(97); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(449); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(444); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(453); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(448); END_STATE(); case 98: - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(334); END_STATE(); case 99: ADVANCE_MAP( - '\n', 330, + '\n', 334, '\r', 98, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - '*', 688, - '+', 588, - '-', 591, - '.', 212, - '/', 518, - '0', 450, - ':', 730, - ';', 366, - '<', 505, - '=', 619, - '>', 510, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + '*', 692, + '+', 592, + '-', 595, + '.', 215, + '/', 522, + '0', 454, + ':', 734, + ';', 370, + '<', 509, + '=', 623, + '>', 514, + '?', 255, + '@', 610, + '[', 506, '\\', 8, - '^', 598, - 'a', 384, - 'c', 372, - 'e', 388, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 'r', 381, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 388, + 'c', 376, + 'e', 392, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 'r', 385, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(99); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 100: - if (lookahead == '\n') ADVANCE(331); + if (lookahead == '\n') ADVANCE(335); END_STATE(); case 101: ADVANCE_MAP( - '\n', 331, + '\n', 335, '\r', 100, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 724, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 730, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 725, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 728, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 734, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 729, '\\', 67, - '^', 598, - 'a', 384, - 'c', 372, - 'd', 395, - 'e', 388, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 'r', 381, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 388, + 'c', 376, + 'd', 399, + 'e', 392, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 'r', 385, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(102); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 102: ADVANCE_MAP( - '\n', 331, + '\n', 335, '\r', 100, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 730, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 734, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 506, '\\', 67, - '^', 598, - 'a', 384, - 'c', 372, - 'd', 395, - 'e', 388, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 'r', 381, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 388, + 'c', 376, + 'd', 399, + 'e', 392, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 'r', 385, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(102); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 103: - if (lookahead == '\n') ADVANCE(332); + if (lookahead == '\n') ADVANCE(336); END_STATE(); case 104: ADVANCE_MAP( - '\n', 332, + '\n', 336, '\r', 103, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - ')', 368, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 730, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + ')', 372, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 734, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 506, '\\', 10, - ']', 503, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '}', 501, - '~', 524, - 0x2e2f, 444, + ']', 507, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '}', 505, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(104); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(333); + if (lookahead == '\n') ADVANCE(337); END_STATE(); case 106: ADVANCE_MAP( - '\n', 333, + '\n', 337, '\r', 105, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 724, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 730, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 725, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 728, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 734, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 729, '\\', 71, - '^', 598, - 'a', 391, - 'd', 395, - 'e', 394, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'd', 399, + 'e', 398, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(107); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 107: ADVANCE_MAP( - '\n', 333, + '\n', 337, '\r', 105, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 730, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 734, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 506, '\\', 71, - '^', 598, - 'a', 391, - 'd', 395, - 'e', 394, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'd', 399, + 'e', 398, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(107); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(334); + if (lookahead == '\n') ADVANCE(338); END_STATE(); case 109: ADVANCE_MAP( - '\n', 334, + '\n', 338, '\r', 108, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 724, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 730, - '<', 505, - '=', 618, - '>', 509, - '?', 252, - '@', 606, - '[', 725, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 728, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 698, + '/', 521, + '0', 454, + ':', 734, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 729, '\\', 73, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(110); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 110: ADVANCE_MAP( - '\n', 334, + '\n', 338, '\r', 108, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 730, - '<', 505, - '=', 618, - '>', 509, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 698, + '/', 521, + '0', 454, + ':', 734, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 506, '\\', 73, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(110); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 111: - if (lookahead == '\n') ADVANCE(335); + if (lookahead == '\n') ADVANCE(339); END_STATE(); case 112: ADVANCE_MAP( - '\n', 335, + '\n', 339, '\r', 111, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 724, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 694, - '/', 517, - '0', 450, - ':', 730, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 725, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 728, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 734, + '<', 509, + '=', 622, + '>', 513, + '?', 255, + '@', 610, + '[', 729, '\\', 91, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(113); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 113: ADVANCE_MAP( - '\n', 335, + '\n', 339, '\r', 111, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 694, - '/', 517, - '0', 450, - ':', 730, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 734, + '<', 509, + '=', 622, + '>', 513, + '?', 255, + '@', 610, + '[', 506, '\\', 91, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(113); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(336); + if (lookahead == '\n') ADVANCE(340); END_STATE(); case 115: ADVANCE_MAP( - '\n', 336, + '\n', 340, '\r', 114, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - '*', 688, - '+', 588, - '-', 591, - '.', 212, - '/', 518, - '0', 450, - ':', 730, - ';', 366, - '<', 505, - '=', 619, - '>', 510, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + ')', 372, + '*', 692, + '+', 592, + '-', 595, + '.', 215, + '/', 522, + '0', 454, + ':', 734, + ';', 370, + '<', 509, + '=', 623, + '>', 514, + '?', 255, + '@', 610, + '[', 506, '\\', 12, - '^', 598, - 'a', 391, - 'e', 394, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + ']', 507, + '^', 602, + 'a', 395, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '}', 505, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(337); + if (lookahead == '\n') ADVANCE(341); END_STATE(); case 117: ADVANCE_MAP( - '\n', 337, + '\n', 341, '\r', 116, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - ')', 368, - '*', 688, - '+', 588, - '-', 591, - '.', 212, - '/', 518, - '0', 450, - ':', 730, - ';', 366, - '<', 505, - '=', 619, - '>', 510, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + '*', 692, + '+', 592, + '-', 595, + '.', 215, + '/', 522, + '0', 454, + ':', 734, + ';', 370, + '<', 509, + '=', 623, + '>', 514, + '?', 255, + '@', 610, + '[', 506, '\\', 14, - ']', 503, - '^', 598, - 'a', 391, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '}', 501, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'e', 398, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(117); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(338); + if (lookahead == '\n') ADVANCE(342); END_STATE(); case 119: ADVANCE_MAP( - '\n', 338, + '\n', 342, '\r', 118, - '!', 596, - '"', 494, - '#', 727, - '$', 312, - '%', 577, - '&', 586, - '\'', 496, - '(', 367, - '*', 689, - '+', 589, - '-', 593, - '.', 207, - '/', 516, - '0', 450, - ':', 730, - ';', 366, - '<', 506, - '=', 621, - '>', 512, - '?', 252, - '@', 605, - '[', 502, + '!', 600, + '"', 498, + '#', 731, + '$', 206, + '%', 581, + '&', 590, + '\'', 500, + '(', 371, + '*', 693, + '+', 593, + '-', 597, + '.', 209, + '/', 520, + '0', 454, + ':', 734, + ';', 370, + '<', 510, + '=', 625, + '>', 516, + '?', 255, + '@', 609, + '[', 506, '\\', 16, - '^', 599, - 'a', 421, - 'c', 409, - 'e', 427, - 'f', 408, - 'i', 429, - 'n', 424, - 'o', 433, - 'r', 418, - 't', 434, - 'w', 422, - '{', 499, - '|', 515, - '~', 525, + '^', 603, + 'a', 425, + 'c', 413, + 'e', 431, + 'f', 412, + 'i', 433, + 'n', 428, + 'o', 437, + 'r', 422, + 't', 438, + 'w', 426, + '{', 503, + '|', 519, + '~', 529, ); if (lookahead == '\t' || lookahead == ' ') SKIP(119); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(449); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(444); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(453); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(448); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(339); + if (lookahead == '\n') ADVANCE(343); END_STATE(); case 121: ADVANCE_MAP( - '\n', 339, + '\n', 343, '\r', 120, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - '*', 688, - '+', 588, - '-', 591, - '.', 212, - '/', 518, - '0', 450, - ':', 730, - '<', 505, - '=', 619, - '>', 509, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + '*', 692, + '+', 592, + '-', 595, + '.', 215, + '/', 522, + '0', 454, + ':', 734, + '<', 509, + '=', 623, + '>', 513, + '?', 255, + '@', 610, + '[', 506, '\\', 18, - '^', 598, - 'a', 391, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(121); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(340); + if (lookahead == '\n') ADVANCE(344); END_STATE(); case 123: ADVANCE_MAP( - '\n', 340, + '\n', 344, '\r', 122, - '!', 596, - '"', 494, - '#', 727, - '$', 312, - '%', 577, - '&', 586, - '\'', 496, - '(', 367, - '*', 689, - '+', 589, - '-', 593, - '.', 207, - '/', 516, - '0', 450, - ':', 730, - ';', 366, - '<', 506, - '=', 621, - '>', 512, - '?', 252, - '@', 605, - '[', 502, + '!', 600, + '"', 498, + '#', 731, + '$', 206, + '%', 581, + '&', 590, + '\'', 500, + '(', 371, + '*', 693, + '+', 593, + '-', 597, + '.', 209, + '/', 520, + '0', 454, + ':', 734, + ';', 370, + '<', 510, + '=', 625, + '>', 516, + '?', 255, + '@', 609, + '[', 506, '\\', 20, - '^', 599, - 'a', 428, - 'e', 431, - 'f', 408, - 'i', 429, - 'n', 424, - 'o', 433, - 't', 434, - 'w', 422, - '{', 499, - '|', 515, - '~', 525, + '^', 603, + 'a', 432, + 'e', 435, + 'f', 412, + 'i', 433, + 'n', 428, + 'o', 437, + 't', 438, + 'w', 426, + '{', 503, + '|', 519, + '~', 529, ); if (lookahead == '\t' || lookahead == ' ') SKIP(123); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(449); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(444); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(453); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(448); END_STATE(); case 124: - if (lookahead == '\n') ADVANCE(341); + if (lookahead == '\n') ADVANCE(345); END_STATE(); case 125: ADVANCE_MAP( - '\n', 341, + '\n', 345, '\r', 124, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 724, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 729, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 725, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 728, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 733, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 729, '\\', 87, - '^', 598, - 'a', 384, - 'c', 372, - 'd', 395, - 'e', 388, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 'r', 381, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 388, + 'c', 376, + 'd', 399, + 'e', 392, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 'r', 385, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 126: ADVANCE_MAP( - '\n', 341, + '\n', 345, '\r', 124, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 729, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 733, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 506, '\\', 87, - '^', 598, - 'a', 384, - 'c', 372, - 'd', 395, - 'e', 388, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 'r', 381, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 388, + 'c', 376, + 'd', 399, + 'e', 392, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 'r', 385, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(126); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 127: - if (lookahead == '\n') ADVANCE(342); + if (lookahead == '\n') ADVANCE(346); END_STATE(); case 128: ADVANCE_MAP( - '\n', 342, + '\n', 346, '\r', 127, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - ')', 368, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 729, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + ')', 372, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 733, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 506, '\\', 69, - ']', 503, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '}', 501, - '~', 524, - 0x2e2f, 444, + ']', 507, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '}', 505, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(128); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 129: - if (lookahead == '\n') ADVANCE(343); + if (lookahead == '\n') ADVANCE(347); END_STATE(); case 130: ADVANCE_MAP( - '\n', 343, + '\n', 347, '\r', 129, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 724, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 729, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 725, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 728, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 733, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 729, '\\', 89, - '^', 598, - 'a', 391, - 'd', 395, - 'e', 394, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'd', 399, + 'e', 398, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(131); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 131: ADVANCE_MAP( - '\n', 343, + '\n', 347, '\r', 129, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 729, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 733, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 506, '\\', 89, - '^', 598, - 'a', 391, - 'd', 395, - 'e', 394, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'd', 399, + 'e', 398, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(131); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 132: - if (lookahead == '\n') ADVANCE(344); + if (lookahead == '\n') ADVANCE(348); END_STATE(); case 133: ADVANCE_MAP( - '\n', 344, + '\n', 348, '\r', 132, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 724, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 694, - '/', 517, - '0', 450, - ':', 729, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 725, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 728, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 733, + '<', 509, + '=', 622, + '>', 513, + '?', 255, + '@', 610, + '[', 729, '\\', 93, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(134); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 134: ADVANCE_MAP( - '\n', 344, + '\n', 348, '\r', 132, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 694, - '/', 517, - '0', 450, - ':', 729, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 733, + '<', 509, + '=', 622, + '>', 513, + '?', 255, + '@', 610, + '[', 506, '\\', 93, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(134); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 135: - if (lookahead == '\n') ADVANCE(345); + if (lookahead == '\n') ADVANCE(349); END_STATE(); case 136: ADVANCE_MAP( - '\n', 345, + '\n', 349, '\r', 135, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 724, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 729, - '<', 505, - '=', 618, - '>', 509, - '?', 252, - '@', 606, - '[', 725, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 728, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 698, + '/', 521, + '0', 454, + ':', 733, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 729, '\\', 95, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 137: ADVANCE_MAP( - '\n', 345, + '\n', 349, '\r', 135, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 729, - '<', 505, - '=', 618, - '>', 509, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 698, + '/', 521, + '0', 454, + ':', 733, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 506, '\\', 95, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '~', 524, - 0x2e2f, 444, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 138: - if (lookahead == '\n') ADVANCE(346); + if (lookahead == '\n') ADVANCE(350); END_STATE(); case 139: ADVANCE_MAP( - '\n', 346, + '\n', 350, '\r', 138, - '!', 596, - '"', 493, - '#', 727, - '$', 312, - '&', 586, - '\'', 495, - '(', 367, - '*', 689, - '+', 589, - '-', 593, - '.', 214, - '/', 516, - '0', 455, - ':', 233, - '<', 507, - '=', 621, - '>', 512, - '@', 605, + '!', 600, + '"', 497, + '#', 731, + '$', 315, + '&', 590, + '\'', 499, + '(', 371, + '*', 693, + '+', 593, + '-', 597, + '.', 217, + '/', 520, + '0', 459, + ':', 236, + '<', 511, + '=', 625, + '>', 516, + '@', 609, '\\', 75, - '^', 599, - 'a', 421, - 'c', 409, - 'd', 432, - 'e', 427, - 'f', 408, - 'i', 429, - 'n', 424, - 'o', 433, - 'r', 418, - 't', 434, - 'w', 422, - '{', 499, - '|', 515, - '~', 244, + '^', 603, + 'a', 425, + 'c', 413, + 'd', 436, + 'e', 431, + 'f', 412, + 'i', 433, + 'n', 428, + 'o', 437, + 'r', 422, + 't', 438, + 'w', 426, + '{', 503, + '|', 519, + '~', 247, ); if (lookahead == '\t' || lookahead == ' ') SKIP(140); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(449); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(444); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(460); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(453); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(448); END_STATE(); case 140: ADVANCE_MAP( - '\n', 346, + '\n', 350, '\r', 138, - '!', 596, - '"', 493, - '#', 727, - '$', 312, - '&', 586, - '\'', 495, - '(', 367, - '*', 689, - '+', 589, - '-', 593, - '.', 214, - '/', 516, - '0', 455, - ':', 232, - '<', 507, - '=', 621, - '>', 512, - '@', 605, + '!', 600, + '"', 497, + '#', 731, + '$', 315, + '&', 590, + '\'', 499, + '(', 371, + '*', 693, + '+', 593, + '-', 597, + '.', 217, + '/', 520, + '0', 459, + ':', 235, + '<', 511, + '=', 625, + '>', 516, + '@', 609, '\\', 75, - '^', 599, - 'a', 421, - 'c', 409, - 'd', 432, - 'e', 427, - 'f', 408, - 'i', 429, - 'n', 424, - 'o', 433, - 'r', 418, - 't', 434, - 'w', 422, - '{', 499, - '|', 515, - '~', 244, + '^', 603, + 'a', 425, + 'c', 413, + 'd', 436, + 'e', 431, + 'f', 412, + 'i', 433, + 'n', 428, + 'o', 437, + 'r', 422, + 't', 438, + 'w', 426, + '{', 503, + '|', 519, + '~', 247, ); if (lookahead == '\t' || lookahead == ' ') SKIP(140); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(456); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(449); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(444); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(460); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(453); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(448); END_STATE(); case 141: - if (lookahead == '\n') ADVANCE(347); + if (lookahead == '\n') ADVANCE(351); END_STATE(); case 142: ADVANCE_MAP( - '\n', 347, + '\n', 351, '\r', 141, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '(', 367, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 593, - '.', 695, - '/', 519, - ':', 233, - ';', 366, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + '(', 371, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 597, + '.', 699, + '/', 523, + ':', 236, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 22, - '^', 257, - 'a', 268, - 'c', 258, - 'd', 276, - 'e', 271, - 'i', 273, - 'o', 278, - 'r', 267, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 271, + 'c', 261, + 'd', 279, + 'e', 274, + 'i', 276, + 'o', 281, + 'r', 270, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(143); END_STATE(); case 143: ADVANCE_MAP( - '\n', 347, + '\n', 351, '\r', 141, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '(', 367, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 593, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + '(', 371, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 597, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, '\\', 22, - '^', 257, - 'a', 268, - 'c', 258, - 'd', 276, - 'e', 271, - 'i', 273, - 'o', 278, - 'r', 267, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 271, + 'c', 261, + 'd', 279, + 'e', 274, + 'i', 276, + 'o', 281, + 'r', 270, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(143); END_STATE(); case 144: - if (lookahead == '\n') ADVANCE(348); + if (lookahead == '\n') ADVANCE(352); END_STATE(); case 145: ADVANCE_MAP( - '\n', 348, + '\n', 352, '\r', 144, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '(', 367, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + '(', 371, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, '\\', 24, - ']', 503, - '^', 257, - 'a', 268, - 'c', 258, - 'd', 276, - 'e', 271, - 'i', 273, - 'o', 278, - 'r', 267, - 'w', 270, - '{', 499, - '|', 515, - '}', 501, - '~', 243, + ']', 507, + '^', 260, + 'a', 271, + 'c', 261, + 'd', 279, + 'e', 274, + 'i', 276, + 'o', 281, + 'r', 270, + 'w', 273, + '{', 503, + '|', 519, + '}', 505, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(145); END_STATE(); case 146: - if (lookahead == '\n') ADVANCE(349); + if (lookahead == '\n') ADVANCE(353); END_STATE(); case 147: ADVANCE_MAP( - '\n', 349, + '\n', 353, '\r', 146, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 593, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + '*', 693, + '+', 593, + ',', 572, + '-', 597, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 26, - '^', 257, - 'a', 551, - 'c', 541, - 'd', 559, - 'e', 554, - 'i', 556, - 'o', 560, - 'r', 550, - 'w', 553, - '|', 515, - '~', 243, + '^', 260, + 'a', 555, + 'c', 545, + 'd', 563, + 'e', 558, + 'i', 560, + 'o', 564, + 'r', 554, + 'w', 557, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(148); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 148: ADVANCE_MAP( - '\n', 349, + '\n', 353, '\r', 146, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 593, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + '*', 693, + '+', 593, + ',', 572, + '-', 597, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, '\\', 26, - '^', 257, - 'a', 268, - 'c', 258, - 'd', 276, - 'e', 271, - 'i', 273, - 'o', 278, - 'r', 267, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 271, + 'c', 261, + 'd', 279, + 'e', 274, + 'i', 276, + 'o', 281, + 'r', 270, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(148); END_STATE(); case 149: - if (lookahead == '\n') ADVANCE(350); + if (lookahead == '\n') ADVANCE(354); END_STATE(); case 150: ADVANCE_MAP( - '\n', 350, + '\n', 354, '\r', 149, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 77, - '^', 257, - 'a', 551, - 'c', 541, - 'd', 559, - 'e', 554, - 'i', 556, - 'o', 560, - 'r', 550, - 'w', 553, - '|', 515, - '~', 243, + '^', 260, + 'a', 555, + 'c', 545, + 'd', 563, + 'e', 558, + 'i', 560, + 'o', 564, + 'r', 554, + 'w', 557, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(151); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 151: ADVANCE_MAP( - '\n', 350, + '\n', 354, '\r', 149, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, '\\', 77, - '^', 257, - 'a', 268, - 'c', 258, - 'd', 276, - 'e', 271, - 'i', 273, - 'o', 278, - 'r', 267, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 271, + 'c', 261, + 'd', 279, + 'e', 274, + 'i', 276, + 'o', 281, + 'r', 270, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(151); END_STATE(); case 152: - if (lookahead == '\n') ADVANCE(351); + if (lookahead == '\n') ADVANCE(355); END_STATE(); case 153: ADVANCE_MAP( - '\n', 351, + '\n', 355, '\r', 152, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 593, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + '*', 693, + '+', 593, + ',', 572, + '-', 597, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 28, - '^', 257, - 'a', 551, - 'c', 541, - 'e', 554, - 'i', 556, - 'o', 560, - 'r', 550, - 'w', 553, - '|', 515, - '~', 243, + '^', 260, + 'a', 555, + 'c', 545, + 'e', 558, + 'i', 560, + 'o', 564, + 'r', 554, + 'w', 557, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(154); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 154: ADVANCE_MAP( - '\n', 351, + '\n', 355, '\r', 152, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 593, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + '*', 693, + '+', 593, + ',', 572, + '-', 597, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, '\\', 28, - '^', 257, - 'a', 268, - 'c', 258, - 'e', 271, - 'i', 273, - 'o', 278, - 'r', 267, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 271, + 'c', 261, + 'e', 274, + 'i', 276, + 'o', 281, + 'r', 270, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(154); END_STATE(); case 155: - if (lookahead == '\n') ADVANCE(352); + if (lookahead == '\n') ADVANCE(356); END_STATE(); case 156: ADVANCE_MAP( - '\n', 352, + '\n', 356, '\r', 155, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, - '[', 725, - '\\', 79, - '^', 257, - 'a', 551, - 'c', 541, - 'e', 554, - 'i', 556, - 'o', 560, - 'r', 550, - 'w', 553, - '|', 515, - '~', 243, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '\\', 30, + ']', 507, + '^', 260, + 'a', 275, + 'd', 279, + 'i', 276, + 'o', 281, + 'w', 273, + '{', 503, + '|', 519, + '}', 505, + '~', 246, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(157); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + lookahead == ' ') SKIP(156); END_STATE(); case 157: + if (lookahead == '\n') ADVANCE(357); + END_STATE(); + case 158: ADVANCE_MAP( - '\n', 352, - '\r', 155, - '!', 235, - '#', 727, + '\n', 357, + '\r', 157, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 79, - '^', 257, - 'a', 268, - 'c', 258, - 'e', 271, - 'i', 273, - 'o', 278, - 'r', 267, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 555, + 'c', 545, + 'e', 558, + 'i', 560, + 'o', 564, + 'r', 554, + 'w', 557, + '|', 519, + '~', 246, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(157); - END_STATE(); - case 158: - if (lookahead == '\n') ADVANCE(353); + lookahead == ' ') SKIP(159); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 159: ADVANCE_MAP( - '\n', 353, - '\r', 158, - '!', 235, - '#', 727, + '\n', 357, + '\r', 157, + '!', 238, + '#', 731, '&', 197, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, - '\\', 30, - ']', 503, - '^', 257, - 'a', 272, - 'd', 276, - 'i', 273, - 'o', 278, - 'w', 270, - '{', 499, - '|', 515, - '}', 501, - '~', 243, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '\\', 79, + '^', 260, + 'a', 271, + 'c', 261, + 'e', 274, + 'i', 276, + 'o', 281, + 'r', 270, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(159); END_STATE(); case 160: - if (lookahead == '\n') ADVANCE(354); + if (lookahead == '\n') ADVANCE(358); END_STATE(); case 161: ADVANCE_MAP( - '\n', 354, + '\n', 358, '\r', 160, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 593, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 597, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 32, - '^', 257, - 'a', 555, - 'd', 559, - 'i', 556, - 'o', 560, - 'w', 553, - '|', 515, - '~', 243, + '^', 260, + 'a', 559, + 'd', 563, + 'i', 560, + 'o', 564, + 'w', 557, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 162: ADVANCE_MAP( - '\n', 354, + '\n', 358, '\r', 160, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 593, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 597, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, '\\', 32, - '^', 257, - 'a', 272, - 'd', 276, - 'i', 273, - 'o', 278, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 275, + 'd', 279, + 'i', 276, + 'o', 281, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); END_STATE(); case 163: - if (lookahead == '\n') ADVANCE(355); + if (lookahead == '\n') ADVANCE(359); END_STATE(); case 164: ADVANCE_MAP( - '\n', 355, + '\n', 359, '\r', 163, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, '\\', 34, - ']', 503, - '^', 257, - 'a', 272, - 'i', 273, - 'o', 278, - 'w', 270, - '{', 499, - '|', 515, - '}', 501, - '~', 243, + ']', 507, + '^', 260, + 'a', 275, + 'i', 276, + 'o', 281, + 'w', 273, + '{', 503, + '|', 519, + '}', 505, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); END_STATE(); case 165: - if (lookahead == '\n') ADVANCE(356); + if (lookahead == '\n') ADVANCE(360); END_STATE(); case 166: ADVANCE_MAP( - '\n', 356, + '\n', 360, '\r', 165, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '(', 367, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 233, - '<', 507, - '=', 620, - '>', 511, - '[', 725, + '(', 371, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 236, + '<', 511, + '=', 624, + '>', 515, + '[', 729, '\\', 36, - '^', 257, - 'a', 272, - 'd', 276, - 'i', 273, - 'o', 278, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 275, + 'd', 279, + 'i', 276, + 'o', 281, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(167); END_STATE(); case 167: ADVANCE_MAP( - '\n', 356, + '\n', 360, '\r', 165, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '(', 367, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - '<', 507, - '=', 620, - '>', 511, + '(', 371, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + '<', 511, + '=', 624, + '>', 515, '\\', 36, - '^', 257, - 'a', 272, - 'd', 276, - 'i', 273, - 'o', 278, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 275, + 'd', 279, + 'i', 276, + 'o', 281, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(167); END_STATE(); case 168: - if (lookahead == '\n') ADVANCE(357); + if (lookahead == '\n') ADVANCE(361); END_STATE(); case 169: ADVANCE_MAP( - '\n', 357, + '\n', 361, '\r', 168, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '(', 367, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 697, - '/', 519, - ':', 233, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + '(', 371, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 701, + '/', 523, + ':', 236, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 81, - '^', 257, - 'a', 272, - 'd', 276, - 'i', 273, - 'o', 278, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 275, + 'd', 279, + 'i', 276, + 'o', 281, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(170); END_STATE(); case 170: ADVANCE_MAP( - '\n', 357, + '\n', 361, '\r', 168, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '(', 367, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 697, - '/', 519, - ':', 232, - '<', 507, - '=', 620, - '>', 512, + '(', 371, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 701, + '/', 523, + ':', 235, + '<', 511, + '=', 624, + '>', 516, '\\', 81, - '^', 257, - 'a', 272, - 'd', 276, - 'i', 273, - 'o', 278, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 275, + 'd', 279, + 'i', 276, + 'o', 281, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(170); END_STATE(); case 171: - if (lookahead == '\n') ADVANCE(358); + if (lookahead == '\n') ADVANCE(362); END_STATE(); case 172: ADVANCE_MAP( - '\n', 358, + '\n', 362, '\r', 171, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 38, - '^', 257, - 'a', 555, - 'd', 559, - 'e', 558, - 'i', 556, - 'o', 560, - 'w', 553, - '|', 515, - '~', 243, + '^', 260, + 'a', 559, + 'd', 563, + 'e', 562, + 'i', 560, + 'o', 564, + 'w', 557, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 173: ADVANCE_MAP( - '\n', 358, + '\n', 362, '\r', 171, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, '\\', 38, - '^', 257, - 'a', 272, - 'd', 276, - 'e', 275, - 'i', 273, - 'o', 278, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 275, + 'd', 279, + 'e', 278, + 'i', 276, + 'o', 281, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(173); END_STATE(); case 174: - if (lookahead == '\n') ADVANCE(359); + if (lookahead == '\n') ADVANCE(363); END_STATE(); case 175: ADVANCE_MAP( - '\n', 359, + '\n', 363, '\r', 174, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - '<', 507, - '=', 620, - '>', 511, - '[', 725, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + '<', 511, + '=', 624, + '>', 515, + '[', 729, '\\', 40, - '^', 257, - 'a', 555, - 'd', 559, - 'i', 556, - 'o', 560, - 'w', 553, - '|', 515, - '~', 243, + '^', 260, + 'a', 559, + 'd', 563, + 'i', 560, + 'o', 564, + 'w', 557, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 176: ADVANCE_MAP( - '\n', 359, + '\n', 363, '\r', 174, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - '<', 507, - '=', 620, - '>', 511, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + '<', 511, + '=', 624, + '>', 515, '\\', 40, - '^', 257, - 'a', 272, - 'd', 276, - 'i', 273, - 'o', 278, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 275, + 'd', 279, + 'i', 276, + 'o', 281, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(176); END_STATE(); case 177: - if (lookahead == '\n') ADVANCE(360); + if (lookahead == '\n') ADVANCE(364); END_STATE(); case 178: ADVANCE_MAP( - '\n', 360, + '\n', 364, '\r', 177, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 697, - '/', 519, - ':', 232, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 701, + '/', 523, + ':', 235, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 83, - '^', 257, - 'a', 555, - 'd', 559, - 'i', 556, - 'o', 560, - 'w', 553, - '|', 515, - '~', 243, + '^', 260, + 'a', 559, + 'd', 563, + 'i', 560, + 'o', 564, + 'w', 557, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(179); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 179: ADVANCE_MAP( - '\n', 360, + '\n', 364, '\r', 177, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 697, - '/', 519, - ':', 232, - '<', 507, - '=', 620, - '>', 512, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 701, + '/', 523, + ':', 235, + '<', 511, + '=', 624, + '>', 516, '\\', 83, - '^', 257, - 'a', 272, - 'd', 276, - 'i', 273, - 'o', 278, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 275, + 'd', 279, + 'i', 276, + 'o', 281, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(179); END_STATE(); case 180: - if (lookahead == '\n') ADVANCE(361); + if (lookahead == '\n') ADVANCE(365); END_STATE(); case 181: ADVANCE_MAP( - '\n', 361, + '\n', 365, '\r', 180, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 593, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 597, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 42, - '^', 257, - 'a', 555, - 'i', 556, - 'o', 560, - 'w', 553, - '|', 515, - '~', 243, + '^', 260, + 'a', 559, + 'i', 560, + 'o', 564, + 'w', 557, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(182); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 182: ADVANCE_MAP( - '\n', 361, + '\n', 365, '\r', 180, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 593, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 597, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, '\\', 42, - '^', 257, - 'a', 272, - 'i', 273, - 'o', 278, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 275, + 'i', 276, + 'o', 281, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(182); END_STATE(); case 183: - if (lookahead == '\n') ADVANCE(362); + if (lookahead == '\n') ADVANCE(366); END_STATE(); case 184: ADVANCE_MAP( - '\n', 362, + '\n', 366, '\r', 183, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 44, - '^', 257, - 'a', 555, - 'e', 558, - 'i', 556, - 'o', 560, - 'w', 553, - '|', 515, - '~', 243, + '^', 260, + 'a', 559, + 'e', 562, + 'i', 560, + 'o', 564, + 'w', 557, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 185: ADVANCE_MAP( - '\n', 362, + '\n', 366, '\r', 183, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, '\\', 44, - '^', 257, - 'a', 272, - 'e', 275, - 'i', 273, - 'o', 278, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 275, + 'e', 278, + 'i', 276, + 'o', 281, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(185); END_STATE(); case 186: - if (lookahead == '\n') ADVANCE(363); + if (lookahead == '\n') ADVANCE(367); END_STATE(); case 187: ADVANCE_MAP( - '\n', 363, + '\n', 367, '\r', 186, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - '<', 507, - '=', 620, - '>', 511, - '[', 725, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + '<', 511, + '=', 624, + '>', 515, + '[', 729, '\\', 46, - '^', 257, - 'a', 555, - 'i', 556, - 'o', 560, - 'w', 553, - '|', 515, - '~', 243, + '^', 260, + 'a', 559, + 'i', 560, + 'o', 564, + 'w', 557, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(188); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 188: ADVANCE_MAP( - '\n', 363, + '\n', 367, '\r', 186, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - '<', 507, - '=', 620, - '>', 511, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + '<', 511, + '=', 624, + '>', 515, '\\', 46, - '^', 257, - 'a', 272, - 'i', 273, - 'o', 278, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 275, + 'i', 276, + 'o', 281, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(188); END_STATE(); case 189: - if (lookahead == '\n') ADVANCE(364); + if (lookahead == '\n') ADVANCE(368); END_STATE(); case 190: ADVANCE_MAP( - '\n', 364, + '\n', 368, '\r', 189, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 697, - '/', 519, - ':', 232, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 701, + '/', 523, + ':', 235, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 85, - '^', 257, - 'a', 555, - 'i', 556, - 'o', 560, - 'w', 553, - '|', 515, - '~', 243, + '^', 260, + 'a', 559, + 'i', 560, + 'o', 564, + 'w', 557, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 191: ADVANCE_MAP( - '\n', 364, + '\n', 368, '\r', 189, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 697, - '/', 519, - ':', 232, - '<', 507, - '=', 620, - '>', 512, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 701, + '/', 523, + ':', 235, + '<', 511, + '=', 624, + '>', 516, '\\', 85, - '^', 257, - 'a', 272, - 'i', 273, - 'o', 278, - 'w', 270, - '|', 515, - '~', 243, + '^', 260, + 'a', 275, + 'i', 276, + 'o', 281, + 'w', 273, + '|', 519, + '~', 246, ); if (lookahead == '\t' || lookahead == ' ') SKIP(191); END_STATE(); case 192: - if (lookahead == '\n') ADVANCE(365); + if (lookahead == '\n') ADVANCE(369); END_STATE(); case 193: ADVANCE_MAP( - '\n', 365, + '\n', 369, '\r', 192, - '!', 224, - '"', 493, - '#', 727, - '$', 312, - '%', 229, + '!', 227, + '"', 497, + '#', 731, + '$', 206, + '%', 232, '&', 198, - '\'', 495, - ')', 368, + '\'', 499, + ')', 372, '*', 201, '+', 203, '-', 205, - '.', 211, - '/', 217, - '<', 221, - '=', 225, - '>', 223, - '@', 220, + '.', 213, + '/', 220, + '<', 224, + '=', 228, + '>', 226, + '@', 223, '\\', 55, - ']', 503, - '^', 228, - '{', 289, - '|', 227, - '}', 501, - '~', 248, + ']', 507, + '^', 231, + '{', 292, + '|', 230, + '}', 505, + '~', 251, ); if (lookahead == '\t' || lookahead == ' ') SKIP(193); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); case 194: if (lookahead == '"') ADVANCE(195); END_STATE(); case 195: - if (lookahead == '"') ADVANCE(498); + if (lookahead == '"') ADVANCE(502); END_STATE(); case 196: - if (lookahead == '&') ADVANCE(220); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '&') ADVANCE(223); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 197: - if (lookahead == '&') ADVANCE(631); + if (lookahead == '&') ADVANCE(635); END_STATE(); case 198: if (lookahead == '&') ADVANCE(196); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 199: if (lookahead == '\'') ADVANCE(200); END_STATE(); case 200: - if (lookahead == '\'') ADVANCE(497); + if (lookahead == '\'') ADVANCE(501); END_STATE(); case 201: - if (lookahead == '*') ADVANCE(220); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '*') ADVANCE(223); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 202: - if (lookahead == '+') ADVANCE(220); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '+') ADVANCE(223); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 203: if (lookahead == '+') ADVANCE(202); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 204: - if (lookahead == '-') ADVANCE(220); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '-') ADVANCE(223); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 205: if (lookahead == '-') ADVANCE(204); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '>') ADVANCE(220); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '>') ADVANCE(223); END_STATE(); case 206: - if (lookahead == '.') ADVANCE(732); + if (lookahead == '.') ADVANCE(214); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(735); END_STATE(); case 207: - if (lookahead == '.') ADVANCE(581); + if (lookahead == '.') ADVANCE(316); END_STATE(); case 208: - if (lookahead == '.') ADVANCE(299); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(208); + if (lookahead == '.') ADVANCE(737); END_STATE(); case 209: - if (lookahead == '.') ADVANCE(445); + if (lookahead == '.') ADVANCE(585); END_STATE(); case 210: - if (lookahead == '.') ADVANCE(446); - if (lookahead == '/') ADVANCE(216); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '.') ADVANCE(302); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(210); END_STATE(); case 211: - if (lookahead == '.') ADVANCE(210); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '.') ADVANCE(449); END_STATE(); case 212: - if (lookahead == '.') ADVANCE(582); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '.') ADVANCE(450); + if (lookahead == '/') ADVANCE(219); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 213: - if (lookahead == '.') ADVANCE(206); + if (lookahead == '.') ADVANCE(212); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 214: - if (lookahead == '.') ADVANCE(209); + if (lookahead == '.') ADVANCE(207); END_STATE(); case 215: - if (lookahead == '/') ADVANCE(471); + if (lookahead == '.') ADVANCE(586); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 216: - if (lookahead == '/') ADVANCE(220); + if (lookahead == '.') ADVANCE(208); END_STATE(); case 217: - if (lookahead == '/') ADVANCE(220); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '.') ADVANCE(211); END_STATE(); case 218: - if (lookahead == '0') ADVANCE(461); - if (lookahead == '+' || - lookahead == '-') ADVANCE(219); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(462); + if (lookahead == '/') ADVANCE(475); END_STATE(); case 219: - if (lookahead == '0') ADVANCE(461); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(462); + if (lookahead == '/') ADVANCE(223); END_STATE(); case 220: - if (lookahead == ':') ADVANCE(298); + if (lookahead == '/') ADVANCE(223); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 221: - if (lookahead == ':') ADVANCE(298); - if (lookahead == '<') ADVANCE(250); - if (lookahead == '|') ADVANCE(237); - if (lookahead == '~') ADVANCE(226); - if (lookahead == '-' || - lookahead == '=' || - lookahead == '>') ADVANCE(220); + if (lookahead == '0') ADVANCE(465); + if (lookahead == '+' || + lookahead == '-') ADVANCE(222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(466); END_STATE(); case 222: - if (lookahead == ':') ADVANCE(298); - if (lookahead == '=') ADVANCE(220); + if (lookahead == '0') ADVANCE(465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(466); END_STATE(); case 223: - if (lookahead == ':') ADVANCE(298); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(574); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 224: - if (lookahead == ':') ADVANCE(298); - if (lookahead == '=') ADVANCE(222); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '<') ADVANCE(253); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '~') ADVANCE(229); + if (lookahead == '-' || + lookahead == '=' || + lookahead == '>') ADVANCE(223); END_STATE(); case 225: - if (lookahead == ':') ADVANCE(298); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '~') ADVANCE(220); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '=') ADVANCE(223); END_STATE(); case 226: - if (lookahead == ':') ADVANCE(298); - if (lookahead == '>') ADVANCE(220); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '=') ADVANCE(223); + if (lookahead == '>') ADVANCE(578); END_STATE(); case 227: - if (lookahead == ':') ADVANCE(298); - if (lookahead == '>') ADVANCE(220); - if (lookahead == '|') ADVANCE(230); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '=') ADVANCE(225); END_STATE(); case 228: - if (lookahead == ':') ADVANCE(298); - if (lookahead == '^') ADVANCE(254); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '=') ADVANCE(225); + if (lookahead == '~') ADVANCE(223); END_STATE(); case 229: - if (lookahead == ':') ADVANCE(298); - if (lookahead == '{') ADVANCE(289); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '>') ADVANCE(223); END_STATE(); case 230: - if (lookahead == ':') ADVANCE(298); - if (lookahead == '|') ADVANCE(220); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '>') ADVANCE(223); + if (lookahead == '|') ADVANCE(233); END_STATE(); case 231: - if (lookahead == ':') ADVANCE(298); - if (lookahead == '!' || - lookahead == '?') ADVANCE(220); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '^') ADVANCE(257); END_STATE(); case 232: - if (lookahead == ':') ADVANCE(615); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '{') ADVANCE(292); END_STATE(); case 233: - if (lookahead == ':') ADVANCE(615); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(570); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '|') ADVANCE(223); END_STATE(); case 234: - if (lookahead == '<') ADVANCE(654); - if (lookahead == '~') ADVANCE(658); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '!' || + lookahead == '?') ADVANCE(223); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(234); END_STATE(); case 235: - if (lookahead == '=') ADVANCE(641); + if (lookahead == ':') ADVANCE(619); END_STATE(); case 236: - if (lookahead == '>') ADVANCE(471); + if (lookahead == ':') ADVANCE(619); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(574); END_STATE(); case 237: - if (lookahead == '>') ADVANCE(220); + if (lookahead == '<') ADVANCE(658); + if (lookahead == '~') ADVANCE(662); END_STATE(); case 238: - if (lookahead == '>') ADVANCE(487); - if (lookahead == '~') ADVANCE(291); + if (lookahead == '=') ADVANCE(645); END_STATE(); case 239: - if (lookahead == '>') ADVANCE(669); + if (lookahead == '>') ADVANCE(475); END_STATE(); case 240: - if (lookahead == '>') ADVANCE(657); + if (lookahead == '>') ADVANCE(223); END_STATE(); case 241: - if (lookahead == '>') ADVANCE(733); + if (lookahead == '>') ADVANCE(491); + if (lookahead == '~') ADVANCE(294); END_STATE(); case 242: - if (lookahead == '>') ADVANCE(692); + if (lookahead == '>') ADVANCE(673); END_STATE(); case 243: - if (lookahead == '>') ADVANCE(665); + if (lookahead == '>') ADVANCE(661); END_STATE(); case 244: - if (lookahead == '>') ADVANCE(665); - if (lookahead == '~') ADVANCE(294); + if (lookahead == '>') ADVANCE(738); END_STATE(); case 245: - if (lookahead == '>') ADVANCE(668); + if (lookahead == '>') ADVANCE(696); END_STATE(); case 246: - if (lookahead == '>') ADVANCE(656); + if (lookahead == '>') ADVANCE(669); END_STATE(); case 247: - if (lookahead == '>') ADVANCE(573); + if (lookahead == '>') ADVANCE(669); + if (lookahead == '~') ADVANCE(297); END_STATE(); case 248: - if (lookahead == '>') ADVANCE(226); - if (lookahead == '~') ADVANCE(292); + if (lookahead == '>') ADVANCE(672); END_STATE(); case 249: - if (lookahead == '>') ADVANCE(236); - if (lookahead == '<' || - lookahead == '~') ADVANCE(471); + if (lookahead == '>') ADVANCE(660); END_STATE(); case 250: - if (lookahead == '>') ADVANCE(237); - if (lookahead == '<' || - lookahead == '~') ADVANCE(220); + if (lookahead == '>') ADVANCE(577); END_STATE(); case 251: - if (lookahead == '\\') ADVANCE(471); + if (lookahead == '>') ADVANCE(229); + if (lookahead == '~') ADVANCE(295); END_STATE(); case 252: - if (lookahead == '\\') ADVANCE(464); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(463); + if (lookahead == '>') ADVANCE(239); + if (lookahead == '<' || + lookahead == '~') ADVANCE(475); END_STATE(); case 253: - if (lookahead == '^') ADVANCE(471); + if (lookahead == '>') ADVANCE(240); + if (lookahead == '<' || + lookahead == '~') ADVANCE(223); END_STATE(); case 254: - if (lookahead == '^') ADVANCE(220); + if (lookahead == '\\') ADVANCE(475); END_STATE(); case 255: - if (lookahead == '^') ADVANCE(675); + if (lookahead == '\\') ADVANCE(468); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(467); END_STATE(); case 256: - if (lookahead == '^') ADVANCE(674); + if (lookahead == '^') ADVANCE(475); END_STATE(); case 257: - if (lookahead == '^') ADVANCE(256); + if (lookahead == '^') ADVANCE(223); END_STATE(); case 258: - if (lookahead == 'a') ADVANCE(282); + if (lookahead == '^') ADVANCE(679); END_STATE(); case 259: - if (lookahead == 'c') ADVANCE(285); + if (lookahead == '^') ADVANCE(678); END_STATE(); case 260: - if (lookahead == 'c') ADVANCE(269); + if (lookahead == '^') ADVANCE(259); END_STATE(); case 261: - if (lookahead == 'd') ADVANCE(634); + if (lookahead == 'a') ADVANCE(285); END_STATE(); case 262: - if (lookahead == 'd') ADVANCE(714); + if (lookahead == 'c') ADVANCE(288); END_STATE(); case 263: - if (lookahead == 'e') ADVANCE(710); + if (lookahead == 'c') ADVANCE(272); END_STATE(); case 264: - if (lookahead == 'e') ADVANCE(720); + if (lookahead == 'd') ADVANCE(638); END_STATE(); case 265: - if (lookahead == 'e') ADVANCE(274); + if (lookahead == 'd') ADVANCE(718); END_STATE(); case 266: - if (lookahead == 'e') ADVANCE(279); + if (lookahead == 'e') ADVANCE(714); END_STATE(); case 267: - if (lookahead == 'e') ADVANCE(280); + if (lookahead == 'e') ADVANCE(724); END_STATE(); case 268: - if (lookahead == 'f') ADVANCE(284); - if (lookahead == 'n') ADVANCE(261); + if (lookahead == 'e') ADVANCE(277); END_STATE(); case 269: - if (lookahead == 'h') ADVANCE(702); + if (lookahead == 'e') ADVANCE(282); END_STATE(); case 270: - if (lookahead == 'h') ADVANCE(265); + if (lookahead == 'e') ADVANCE(283); END_STATE(); case 271: - if (lookahead == 'l') ADVANCE(281); - if (lookahead == 'n') ADVANCE(262); + if (lookahead == 'f') ADVANCE(287); + if (lookahead == 'n') ADVANCE(264); END_STATE(); case 272: - if (lookahead == 'n') ADVANCE(261); + if (lookahead == 'h') ADVANCE(706); END_STATE(); case 273: - if (lookahead == 'n') ADVANCE(670); + if (lookahead == 'h') ADVANCE(268); END_STATE(); case 274: - if (lookahead == 'n') ADVANCE(611); + if (lookahead == 'l') ADVANCE(284); + if (lookahead == 'n') ADVANCE(265); END_STATE(); case 275: - if (lookahead == 'n') ADVANCE(262); + if (lookahead == 'n') ADVANCE(264); END_STATE(); case 276: - if (lookahead == 'o') ADVANCE(706); + if (lookahead == 'n') ADVANCE(674); END_STATE(); case 277: - if (lookahead == 'o') ADVANCE(283); + if (lookahead == 'n') ADVANCE(615); END_STATE(); case 278: - if (lookahead == 'r') ADVANCE(626); + if (lookahead == 'n') ADVANCE(265); END_STATE(); case 279: - if (lookahead == 'r') ADVANCE(698); + if (lookahead == 'o') ADVANCE(710); END_STATE(); case 280: - if (lookahead == 's') ADVANCE(259); + if (lookahead == 'o') ADVANCE(286); END_STATE(); case 281: - if (lookahead == 's') ADVANCE(263); + if (lookahead == 'r') ADVANCE(630); END_STATE(); case 282: - if (lookahead == 't') ADVANCE(260); + if (lookahead == 'r') ADVANCE(702); END_STATE(); case 283: - if (lookahead == 't') ADVANCE(602); + if (lookahead == 's') ADVANCE(262); END_STATE(); case 284: - if (lookahead == 't') ADVANCE(266); + if (lookahead == 's') ADVANCE(266); END_STATE(); case 285: - if (lookahead == 'u') ADVANCE(264); + if (lookahead == 't') ADVANCE(263); END_STATE(); case 286: - if (lookahead == '{') ADVANCE(309); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(523); + if (lookahead == 't') ADVANCE(606); END_STATE(); case 287: - if (lookahead == '{') ADVANCE(309); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); + if (lookahead == 't') ADVANCE(269); END_STATE(); case 288: - if (lookahead == '}') ADVANCE(471); + if (lookahead == 'u') ADVANCE(267); END_STATE(); case 289: - if (lookahead == '}') ADVANCE(220); + if (lookahead == '{') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(527); END_STATE(); case 290: - if (lookahead == '}') ADVANCE(521); + if (lookahead == '{') ADVANCE(312); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(290); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); END_STATE(); case 291: - if (lookahead == '~') ADVANCE(471); + if (lookahead == '}') ADVANCE(475); END_STATE(); case 292: - if (lookahead == '~') ADVANCE(220); + if (lookahead == '}') ADVANCE(223); END_STATE(); case 293: - if (lookahead == '~') ADVANCE(601); + if (lookahead == '}') ADVANCE(525); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(293); END_STATE(); case 294: - if (lookahead == '~') ADVANCE(600); + if (lookahead == '~') ADVANCE(475); END_STATE(); case 295: - if (lookahead == '~') ADVANCE(294); + if (lookahead == '~') ADVANCE(223); END_STATE(); case 296: - if (lookahead == '0' || - lookahead == '1') ADVANCE(452); + if (lookahead == '~') ADVANCE(605); END_STATE(); case 297: - if (lookahead == '0' || - lookahead == '1') ADVANCE(458); + if (lookahead == '~') ADVANCE(604); END_STATE(); case 298: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(569); + if (lookahead == '~') ADVANCE(297); END_STATE(); case 299: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(299); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(449); + if (lookahead == '0' || + lookahead == '1') ADVANCE(456); END_STATE(); case 300: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(453); + if (lookahead == '0' || + lookahead == '1') ADVANCE(462); END_STATE(); case 301: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(459); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(573); END_STATE(); case 302: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(451); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(302); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(453); END_STATE(); case 303: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(457); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(457); END_STATE(); case 304: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(462); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(463); END_STATE(); case 305: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(455); END_STATE(); case 306: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(454); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(461); END_STATE(); case 307: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(460); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(466); END_STATE(); case 308: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(521); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(460); END_STATE(); case 309: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(290); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(458); END_STATE(); case 310: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(308); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(464); END_STATE(); case 311: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(310); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(525); END_STATE(); case 312: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(731); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(293); END_STATE(); case 313: - if (eof) ADVANCE(325); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); + END_STATE(); + case 314: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(313); + END_STATE(); + case 315: + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(735); + END_STATE(); + case 316: + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(736); + END_STATE(); + case 317: + if (eof) ADVANCE(329); ADVANCE_MAP( - '\n', 326, + '\n', 330, '\r', 1, - '!', 595, - '"', 494, - '#', 726, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - ')', 368, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 694, - '/', 517, - '0', 450, - ':', 729, - ';', 366, - '<', 505, - '=', 618, - '>', 509, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 730, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + ')', 372, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 698, + '/', 521, + '0', 454, + ':', 733, + ';', 370, + '<', 509, + '=', 622, + '>', 513, + '?', 255, + '@', 610, + '[', 506, '\\', 4, - ']', 503, - '^', 598, - 'a', 384, - 'c', 372, - 'd', 395, - 'e', 388, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 'r', 381, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '}', 501, - '~', 524, - 0x2e2f, 444, + ']', 507, + '^', 602, + 'a', 388, + 'c', 376, + 'd', 399, + 'e', 392, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 'r', 385, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '}', 505, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + lookahead == ' ') SKIP(317); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); - case 314: - if (eof) ADVANCE(325); + case 318: + if (eof) ADVANCE(329); ADVANCE_MAP( - '\n', 329, + '\n', 333, '\r', 96, - '!', 596, - '"', 494, - '#', 727, - '$', 312, - '%', 577, - '&', 586, - '\'', 496, - '(', 367, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 593, - '.', 207, - '/', 516, - '0', 450, - ':', 730, - ';', 366, - '<', 506, - '=', 621, - '>', 512, - '?', 252, - '@', 605, - '[', 502, + '!', 600, + '"', 498, + '#', 731, + '$', 206, + '%', 581, + '&', 590, + '\'', 500, + '(', 371, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 597, + '.', 209, + '/', 520, + '0', 454, + ':', 734, + ';', 370, + '<', 510, + '=', 625, + '>', 516, + '?', 255, + '@', 609, + '[', 506, '\\', 6, - ']', 503, - '^', 599, - 'a', 428, - 'f', 408, - 'i', 429, - 'n', 424, - 'o', 433, - 't', 434, - 'w', 422, - '{', 499, - '|', 515, - '}', 501, - '~', 525, + ']', 507, + '^', 603, + 'a', 432, + 'f', 412, + 'i', 433, + 'n', 428, + 'o', 437, + 't', 438, + 'w', 426, + '{', 503, + '|', 519, + '}', 505, + '~', 529, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(314); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(449); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(444); + lookahead == ' ') SKIP(318); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(453); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(448); END_STATE(); - case 315: - if (eof) ADVANCE(325); + case 319: + if (eof) ADVANCE(329); ADVANCE_MAP( - '\n', 332, + '\n', 336, '\r', 103, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 724, - ')', 368, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 730, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 725, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 728, + ')', 372, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 734, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 729, '\\', 10, - ']', 503, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '}', 501, - '~', 524, - 0x2e2f, 444, + ']', 507, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '}', 505, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(316); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + lookahead == ' ') SKIP(320); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); - case 316: - if (eof) ADVANCE(325); + case 320: + if (eof) ADVANCE(329); ADVANCE_MAP( - '\n', 332, + '\n', 336, '\r', 103, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - ')', 368, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 730, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + ')', 372, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 734, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 506, '\\', 10, - ']', 503, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '}', 501, - '~', 524, - 0x2e2f, 444, + ']', 507, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '}', 505, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(316); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + lookahead == ' ') SKIP(320); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); - case 317: - if (eof) ADVANCE(325); + case 321: + if (eof) ADVANCE(329); ADVANCE_MAP( - '\n', 342, + '\n', 346, '\r', 127, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 724, - ')', 368, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 729, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 725, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 728, + ')', 372, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 733, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 729, '\\', 69, - ']', 503, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '}', 501, - '~', 524, - 0x2e2f, 444, + ']', 507, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '}', 505, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + lookahead == ' ') SKIP(322); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); - case 318: - if (eof) ADVANCE(325); + case 322: + if (eof) ADVANCE(329); ADVANCE_MAP( - '\n', 342, + '\n', 346, '\r', 127, - '!', 595, - '"', 494, - '#', 727, - '$', 312, - '%', 578, - '&', 585, - '\'', 496, - '(', 367, - ')', 368, - '*', 688, - '+', 588, - ',', 568, - '-', 591, - '.', 696, - '/', 517, - '0', 450, - ':', 729, - ';', 366, - '<', 505, - '=', 618, - '>', 510, - '?', 252, - '@', 606, - '[', 502, + '!', 599, + '"', 498, + '#', 731, + '$', 206, + '%', 582, + '&', 589, + '\'', 500, + '(', 371, + ')', 372, + '*', 692, + '+', 592, + ',', 572, + '-', 595, + '.', 700, + '/', 521, + '0', 454, + ':', 733, + ';', 370, + '<', 509, + '=', 622, + '>', 514, + '?', 255, + '@', 610, + '[', 506, '\\', 69, - ']', 503, - '^', 598, - 'a', 391, - 'd', 395, - 'f', 371, - 'i', 392, - 'n', 387, - 'o', 396, - 't', 397, - 'w', 385, - '{', 500, - '|', 514, - '}', 501, - '~', 524, - 0x2e2f, 444, + ']', 507, + '^', 602, + 'a', 395, + 'd', 399, + 'f', 375, + 'i', 396, + 'n', 391, + 'o', 400, + 't', 401, + 'w', 389, + '{', 504, + '|', 518, + '}', 505, + '~', 528, + 0x2e2f, 448, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(451); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(448); - if (set_contains(aux_sym_identifier_token1_character_set_1, 958, lookahead)) ADVANCE(407); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(231); + lookahead == ' ') SKIP(322); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(455); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(452); + if (set_contains(aux_sym_identifier_token1_character_set_1, 957, lookahead)) ADVANCE(411); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(234); END_STATE(); - case 319: - if (eof) ADVANCE(325); + case 323: + if (eof) ADVANCE(329); ADVANCE_MAP( - '\n', 348, + '\n', 352, '\r', 144, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '(', 367, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 233, - ';', 366, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + '(', 371, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 236, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 24, - ']', 503, - '^', 257, - 'a', 268, - 'c', 258, - 'd', 276, - 'e', 271, - 'i', 273, - 'o', 278, - 'r', 267, - 'w', 270, - '{', 499, - '|', 515, - '}', 501, - '~', 243, + ']', 507, + '^', 260, + 'a', 271, + 'c', 261, + 'd', 279, + 'e', 274, + 'i', 276, + 'o', 281, + 'r', 270, + 'w', 273, + '{', 503, + '|', 519, + '}', 505, + '~', 246, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(320); + lookahead == ' ') SKIP(324); END_STATE(); - case 320: - if (eof) ADVANCE(325); + case 324: + if (eof) ADVANCE(329); ADVANCE_MAP( - '\n', 348, + '\n', 352, '\r', 144, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - '(', 367, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + '(', 371, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, '\\', 24, - ']', 503, - '^', 257, - 'a', 268, - 'c', 258, - 'd', 276, - 'e', 271, - 'i', 273, - 'o', 278, - 'r', 267, - 'w', 270, - '{', 499, - '|', 515, - '}', 501, - '~', 243, + ']', 507, + '^', 260, + 'a', 271, + 'c', 261, + 'd', 279, + 'e', 274, + 'i', 276, + 'o', 281, + 'r', 270, + 'w', 273, + '{', 503, + '|', 519, + '}', 505, + '~', 246, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(320); + lookahead == ' ') SKIP(324); END_STATE(); - case 321: - if (eof) ADVANCE(325); + case 325: + if (eof) ADVANCE(329); ADVANCE_MAP( - '\n', 353, - '\r', 158, - '!', 235, - '#', 727, + '\n', 356, + '\r', 155, + '!', 238, + '#', 731, '&', 197, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 30, - ']', 503, - '^', 257, - 'a', 555, - 'd', 559, - 'i', 556, - 'o', 560, - 'w', 553, - '{', 499, - '|', 515, - '}', 501, - '~', 243, + ']', 507, + '^', 260, + 'a', 559, + 'd', 563, + 'i', 560, + 'o', 564, + 'w', 557, + '{', 503, + '|', 519, + '}', 505, + '~', 246, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(322); + lookahead == ' ') SKIP(326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); - case 322: - if (eof) ADVANCE(325); + case 326: + if (eof) ADVANCE(329); ADVANCE_MAP( - '\n', 353, - '\r', 158, - '!', 235, - '#', 727, + '\n', 356, + '\r', 155, + '!', 238, + '#', 731, '&', 197, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, '\\', 30, - ']', 503, - '^', 257, - 'a', 272, - 'd', 276, - 'i', 273, - 'o', 278, - 'w', 270, - '{', 499, - '|', 515, - '}', 501, - '~', 243, + ']', 507, + '^', 260, + 'a', 275, + 'd', 279, + 'i', 276, + 'o', 281, + 'w', 273, + '{', 503, + '|', 519, + '}', 505, + '~', 246, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(322); + lookahead == ' ') SKIP(326); END_STATE(); - case 323: - if (eof) ADVANCE(325); + case 327: + if (eof) ADVANCE(329); ADVANCE_MAP( - '\n', 355, + '\n', 359, '\r', 163, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, - '[', 725, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, + '[', 729, '\\', 34, - ']', 503, - '^', 257, - 'a', 555, - 'i', 556, - 'o', 560, - 'w', 553, - '{', 499, - '|', 515, - '}', 501, - '~', 243, + ']', 507, + '^', 260, + 'a', 559, + 'i', 560, + 'o', 564, + 'w', 557, + '{', 503, + '|', 519, + '}', 505, + '~', 246, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(324); + lookahead == ' ') SKIP(328); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); - case 324: - if (eof) ADVANCE(325); + case 328: + if (eof) ADVANCE(329); ADVANCE_MAP( - '\n', 355, + '\n', 359, '\r', 163, - '!', 235, - '#', 727, + '!', 238, + '#', 731, '&', 197, - ')', 368, - '*', 689, - '+', 589, - ',', 568, - '-', 592, - '.', 695, - '/', 519, - ':', 232, - ';', 366, - '<', 507, - '=', 620, - '>', 512, + ')', 372, + '*', 693, + '+', 593, + ',', 572, + '-', 596, + '.', 699, + '/', 523, + ':', 235, + ';', 370, + '<', 511, + '=', 624, + '>', 516, '\\', 34, - ']', 503, - '^', 257, - 'a', 272, - 'i', 273, - 'o', 278, - 'w', 270, - '{', 499, - '|', 515, - '}', 501, - '~', 243, + ']', 507, + '^', 260, + 'a', 275, + 'i', 276, + 'o', 281, + 'w', 273, + '{', 503, + '|', 519, + '}', 505, + '~', 246, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(324); + lookahead == ' ') SKIP(328); END_STATE(); - case 325: + case 329: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 326: + case 330: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(326); + if (lookahead == '\n') ADVANCE(330); if (lookahead == '\r') ADVANCE(1); if (lookahead == '\\') ADVANCE(4); END_STATE(); - case 327: + case 331: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(327); + if (lookahead == '\n') ADVANCE(331); if (lookahead == '\r') ADVANCE(49); END_STATE(); - case 328: + case 332: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(328); + if (lookahead == '\n') ADVANCE(332); if (lookahead == '\r') ADVANCE(61); if (lookahead == '\\') ADVANCE(58); END_STATE(); - case 329: + case 333: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(329); + if (lookahead == '\n') ADVANCE(333); if (lookahead == '\r') ADVANCE(96); if (lookahead == '\\') ADVANCE(6); END_STATE(); - case 330: + case 334: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(330); + if (lookahead == '\n') ADVANCE(334); if (lookahead == '\r') ADVANCE(98); if (lookahead == '\\') ADVANCE(8); END_STATE(); - case 331: + case 335: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(331); + if (lookahead == '\n') ADVANCE(335); if (lookahead == '\r') ADVANCE(100); if (lookahead == '\\') ADVANCE(67); END_STATE(); - case 332: + case 336: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(332); + if (lookahead == '\n') ADVANCE(336); if (lookahead == '\r') ADVANCE(103); if (lookahead == '\\') ADVANCE(10); END_STATE(); - case 333: + case 337: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(333); + if (lookahead == '\n') ADVANCE(337); if (lookahead == '\r') ADVANCE(105); if (lookahead == '\\') ADVANCE(71); END_STATE(); - case 334: + case 338: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(334); + if (lookahead == '\n') ADVANCE(338); if (lookahead == '\r') ADVANCE(108); if (lookahead == '\\') ADVANCE(73); END_STATE(); - case 335: + case 339: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(335); + if (lookahead == '\n') ADVANCE(339); if (lookahead == '\r') ADVANCE(111); if (lookahead == '\\') ADVANCE(91); END_STATE(); - case 336: + case 340: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(336); + if (lookahead == '\n') ADVANCE(340); if (lookahead == '\r') ADVANCE(114); if (lookahead == '\\') ADVANCE(12); END_STATE(); - case 337: + case 341: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(337); + if (lookahead == '\n') ADVANCE(341); if (lookahead == '\r') ADVANCE(116); if (lookahead == '\\') ADVANCE(14); END_STATE(); - case 338: + case 342: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(338); + if (lookahead == '\n') ADVANCE(342); if (lookahead == '\r') ADVANCE(118); if (lookahead == '\\') ADVANCE(16); END_STATE(); - case 339: + case 343: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(339); + if (lookahead == '\n') ADVANCE(343); if (lookahead == '\r') ADVANCE(120); if (lookahead == '\\') ADVANCE(18); END_STATE(); - case 340: + case 344: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(340); + if (lookahead == '\n') ADVANCE(344); if (lookahead == '\r') ADVANCE(122); if (lookahead == '\\') ADVANCE(20); END_STATE(); - case 341: + case 345: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(341); + if (lookahead == '\n') ADVANCE(345); if (lookahead == '\r') ADVANCE(124); if (lookahead == '\\') ADVANCE(87); END_STATE(); - case 342: + case 346: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(342); + if (lookahead == '\n') ADVANCE(346); if (lookahead == '\r') ADVANCE(127); if (lookahead == '\\') ADVANCE(69); END_STATE(); - case 343: + case 347: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(343); + if (lookahead == '\n') ADVANCE(347); if (lookahead == '\r') ADVANCE(129); if (lookahead == '\\') ADVANCE(89); END_STATE(); - case 344: + case 348: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(344); + if (lookahead == '\n') ADVANCE(348); if (lookahead == '\r') ADVANCE(132); if (lookahead == '\\') ADVANCE(93); END_STATE(); - case 345: + case 349: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(345); + if (lookahead == '\n') ADVANCE(349); if (lookahead == '\r') ADVANCE(135); if (lookahead == '\\') ADVANCE(95); END_STATE(); - case 346: + case 350: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(346); + if (lookahead == '\n') ADVANCE(350); if (lookahead == '\r') ADVANCE(138); if (lookahead == '\\') ADVANCE(75); END_STATE(); - case 347: + case 351: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(347); + if (lookahead == '\n') ADVANCE(351); if (lookahead == '\r') ADVANCE(141); if (lookahead == '\\') ADVANCE(22); END_STATE(); - case 348: + case 352: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(348); + if (lookahead == '\n') ADVANCE(352); if (lookahead == '\r') ADVANCE(144); if (lookahead == '\\') ADVANCE(24); END_STATE(); - case 349: + case 353: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(349); + if (lookahead == '\n') ADVANCE(353); if (lookahead == '\r') ADVANCE(146); if (lookahead == '\\') ADVANCE(26); END_STATE(); - case 350: + case 354: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(350); + if (lookahead == '\n') ADVANCE(354); if (lookahead == '\r') ADVANCE(149); if (lookahead == '\\') ADVANCE(77); END_STATE(); - case 351: + case 355: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(351); + if (lookahead == '\n') ADVANCE(355); if (lookahead == '\r') ADVANCE(152); if (lookahead == '\\') ADVANCE(28); END_STATE(); - case 352: + case 356: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(352); + if (lookahead == '\n') ADVANCE(356); if (lookahead == '\r') ADVANCE(155); - if (lookahead == '\\') ADVANCE(79); + if (lookahead == '\\') ADVANCE(30); END_STATE(); - case 353: + case 357: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(353); - if (lookahead == '\r') ADVANCE(158); - if (lookahead == '\\') ADVANCE(30); + if (lookahead == '\n') ADVANCE(357); + if (lookahead == '\r') ADVANCE(157); + if (lookahead == '\\') ADVANCE(79); END_STATE(); - case 354: + case 358: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(354); + if (lookahead == '\n') ADVANCE(358); if (lookahead == '\r') ADVANCE(160); if (lookahead == '\\') ADVANCE(32); END_STATE(); - case 355: + case 359: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(355); + if (lookahead == '\n') ADVANCE(359); if (lookahead == '\r') ADVANCE(163); if (lookahead == '\\') ADVANCE(34); END_STATE(); - case 356: + case 360: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(356); + if (lookahead == '\n') ADVANCE(360); if (lookahead == '\r') ADVANCE(165); if (lookahead == '\\') ADVANCE(36); END_STATE(); - case 357: + case 361: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(357); + if (lookahead == '\n') ADVANCE(361); if (lookahead == '\r') ADVANCE(168); if (lookahead == '\\') ADVANCE(81); END_STATE(); - case 358: + case 362: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(358); + if (lookahead == '\n') ADVANCE(362); if (lookahead == '\r') ADVANCE(171); if (lookahead == '\\') ADVANCE(38); END_STATE(); - case 359: + case 363: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(359); + if (lookahead == '\n') ADVANCE(363); if (lookahead == '\r') ADVANCE(174); if (lookahead == '\\') ADVANCE(40); END_STATE(); - case 360: + case 364: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(360); + if (lookahead == '\n') ADVANCE(364); if (lookahead == '\r') ADVANCE(177); if (lookahead == '\\') ADVANCE(83); END_STATE(); - case 361: + case 365: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(361); + if (lookahead == '\n') ADVANCE(365); if (lookahead == '\r') ADVANCE(180); if (lookahead == '\\') ADVANCE(42); END_STATE(); - case 362: + case 366: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(362); + if (lookahead == '\n') ADVANCE(366); if (lookahead == '\r') ADVANCE(183); if (lookahead == '\\') ADVANCE(44); END_STATE(); - case 363: + case 367: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(363); + if (lookahead == '\n') ADVANCE(367); if (lookahead == '\r') ADVANCE(186); if (lookahead == '\\') ADVANCE(46); END_STATE(); - case 364: + case 368: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(364); + if (lookahead == '\n') ADVANCE(368); if (lookahead == '\r') ADVANCE(189); if (lookahead == '\\') ADVANCE(85); END_STATE(); - case 365: + case 369: ACCEPT_TOKEN(aux_sym_terminator_token1); - if (lookahead == '\n') ADVANCE(365); + if (lookahead == '\n') ADVANCE(369); if (lookahead == '\r') ADVANCE(192); if (lookahead == '\\') ADVANCE(55); END_STATE(); - case 366: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 367: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 368: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 369: - ACCEPT_TOKEN(aux_sym_identifier_token1); - END_STATE(); case 370: - ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 371: - ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'a') ADVANCE(390); - if (lookahead == 'n') ADVANCE(718); - if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 372: - ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'a') ADVANCE(402); - if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 373: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'c') ADVANCE(386); - if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); END_STATE(); case 374: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'c') ADVANCE(406); - if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 375: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'd') ADVANCE(635); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'a') ADVANCE(394); + if (lookahead == 'n') ADVANCE(722); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 376: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'd') ADVANCE(715); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'a') ADVANCE(406); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 377: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'e') ADVANCE(711); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'c') ADVANCE(390); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 378: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'e') ADVANCE(465); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'c') ADVANCE(410); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 379: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'e') ADVANCE(467); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'd') ADVANCE(639); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 380: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'e') ADVANCE(721); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'd') ADVANCE(719); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 381: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'e') ADVANCE(399); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'e') ADVANCE(715); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 382: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'e') ADVANCE(393); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'e') ADVANCE(469); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 383: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'e') ADVANCE(398); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'e') ADVANCE(471); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 384: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'f') ADVANCE(404); - if (lookahead == 'n') ADVANCE(375); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'e') ADVANCE(725); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 385: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'h') ADVANCE(382); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'e') ADVANCE(403); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 386: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'h') ADVANCE(703); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'e') ADVANCE(397); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 387: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'i') ADVANCE(389); - if (lookahead == 'o') ADVANCE(403); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'e') ADVANCE(402); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 388: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'l') ADVANCE(400); - if (lookahead == 'n') ADVANCE(376); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'f') ADVANCE(408); + if (lookahead == 'n') ADVANCE(379); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 389: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'l') ADVANCE(469); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'h') ADVANCE(386); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 390: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'l') ADVANCE(401); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'h') ADVANCE(707); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 391: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'n') ADVANCE(375); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'i') ADVANCE(393); + if (lookahead == 'o') ADVANCE(407); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 392: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'n') ADVANCE(671); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'l') ADVANCE(404); + if (lookahead == 'n') ADVANCE(380); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 393: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'n') ADVANCE(612); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'l') ADVANCE(473); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 394: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'n') ADVANCE(376); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'l') ADVANCE(405); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 395: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'o') ADVANCE(707); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'n') ADVANCE(379); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 396: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'r') ADVANCE(627); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'n') ADVANCE(675); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 397: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'r') ADVANCE(405); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'n') ADVANCE(616); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 398: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'r') ADVANCE(699); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'n') ADVANCE(380); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 399: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 's') ADVANCE(374); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'o') ADVANCE(711); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 400: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 's') ADVANCE(377); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'r') ADVANCE(631); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 401: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 's') ADVANCE(379); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'r') ADVANCE(409); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 402: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 't') ADVANCE(373); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'r') ADVANCE(703); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 403: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 't') ADVANCE(603); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 's') ADVANCE(378); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 404: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 't') ADVANCE(383); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 's') ADVANCE(381); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 405: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'u') ADVANCE(378); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 's') ADVANCE(383); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 406: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'u') ADVANCE(380); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 't') ADVANCE(377); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 407: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 't') ADVANCE(607); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 408: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'a') ADVANCE(425); - if (lookahead == 'n') ADVANCE(719); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 't') ADVANCE(387); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 409: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'a') ADVANCE(440); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'u') ADVANCE(382); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 410: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'c') ADVANCE(423); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'u') ADVANCE(384); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 411: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'c') ADVANCE(443); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 412: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'd') ADVANCE(636); + if (lookahead == 'a') ADVANCE(429); + if (lookahead == 'n') ADVANCE(723); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 413: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'd') ADVANCE(716); + if (lookahead == 'a') ADVANCE(444); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 414: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(466); + if (lookahead == 'c') ADVANCE(427); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 415: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(468); + if (lookahead == 'c') ADVANCE(447); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 416: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(712); + if (lookahead == 'd') ADVANCE(640); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 417: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(722); + if (lookahead == 'd') ADVANCE(720); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 418: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(436); + if (lookahead == 'e') ADVANCE(470); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 419: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(430); + if (lookahead == 'e') ADVANCE(472); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 420: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(435); + if (lookahead == 'e') ADVANCE(716); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 421: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'f') ADVANCE(441); - if (lookahead == 'n') ADVANCE(412); + if (lookahead == 'e') ADVANCE(726); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 422: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'h') ADVANCE(419); + if (lookahead == 'e') ADVANCE(440); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 423: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'h') ADVANCE(704); + if (lookahead == 'e') ADVANCE(434); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 424: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'i') ADVANCE(426); - if (lookahead == 'o') ADVANCE(439); + if (lookahead == 'e') ADVANCE(439); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 425: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'l') ADVANCE(437); + if (lookahead == 'f') ADVANCE(445); + if (lookahead == 'n') ADVANCE(416); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 426: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'l') ADVANCE(470); + if (lookahead == 'h') ADVANCE(423); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 427: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'l') ADVANCE(438); - if (lookahead == 'n') ADVANCE(413); + if (lookahead == 'h') ADVANCE(708); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 428: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'n') ADVANCE(412); + if (lookahead == 'i') ADVANCE(430); + if (lookahead == 'o') ADVANCE(443); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 429: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'n') ADVANCE(672); + if (lookahead == 'l') ADVANCE(441); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 430: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'n') ADVANCE(613); + if (lookahead == 'l') ADVANCE(474); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 431: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'n') ADVANCE(413); + if (lookahead == 'l') ADVANCE(442); + if (lookahead == 'n') ADVANCE(417); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 432: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'o') ADVANCE(708); + if (lookahead == 'n') ADVANCE(416); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 433: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(628); + if (lookahead == 'n') ADVANCE(676); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 434: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(442); + if (lookahead == 'n') ADVANCE(617); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 435: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(700); + if (lookahead == 'n') ADVANCE(417); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 436: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 's') ADVANCE(411); + if (lookahead == 'o') ADVANCE(712); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 437: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 's') ADVANCE(415); + if (lookahead == 'r') ADVANCE(632); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 438: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 's') ADVANCE(416); + if (lookahead == 'r') ADVANCE(446); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 439: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(604); + if (lookahead == 'r') ADVANCE(704); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 440: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(410); + if (lookahead == 's') ADVANCE(415); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 441: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(420); + if (lookahead == 's') ADVANCE(419); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 442: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'u') ADVANCE(414); + if (lookahead == 's') ADVANCE(420); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 443: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'u') ADVANCE(417); + if (lookahead == 't') ADVANCE(608); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 444: ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 't') ADVANCE(414); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 445: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 't') ADVANCE(424); + if (lookahead == '!' || + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 446: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if (lookahead == ':') ADVANCE(298); + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'u') ADVANCE(418); + if (lookahead == '!' || + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 447: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '>') ADVANCE(733); + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'u') ADVANCE(421); + if (lookahead == '!' || + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 448: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '!' || + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); + END_STATE(); + case 449: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 450: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if (lookahead == ':') ADVANCE(301); + END_STATE(); + case 451: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '>') ADVANCE(738); + END_STATE(); + case 452: ACCEPT_TOKEN(sym_alias); - if (lookahead == '.') ADVANCE(299); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(301); if (lookahead == '!' || - lookahead == '?') ADVANCE(220); + lookahead == '?') ADVANCE(223); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(208); + lookahead == ' ') ADVANCE(210); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(448); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(231); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(452); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(234); END_STATE(); - case 449: + case 453: ACCEPT_TOKEN(sym_alias); - if (lookahead == '.') ADVANCE(299); + if (lookahead == '.') ADVANCE(302); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(208); + lookahead == ' ') ADVANCE(210); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(449); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(453); END_STATE(); - case 450: + case 454: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(303); - if (lookahead == '_') ADVANCE(302); - if (lookahead == 'b') ADVANCE(296); - if (lookahead == 'o') ADVANCE(300); - if (lookahead == 'x') ADVANCE(306); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(451); + if (lookahead == '.') ADVANCE(306); + if (lookahead == '_') ADVANCE(305); + if (lookahead == 'b') ADVANCE(299); + if (lookahead == 'o') ADVANCE(303); + if (lookahead == 'x') ADVANCE(309); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(455); END_STATE(); - case 451: + case 455: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(303); - if (lookahead == '_') ADVANCE(302); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(451); + if (lookahead == '.') ADVANCE(306); + if (lookahead == '_') ADVANCE(305); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(455); END_STATE(); - case 452: + case 456: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(296); + if (lookahead == '_') ADVANCE(299); if (lookahead == '0' || - lookahead == '1') ADVANCE(452); + lookahead == '1') ADVANCE(456); END_STATE(); - case 453: + case 457: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(300); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(453); + if (lookahead == '_') ADVANCE(303); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(457); END_STATE(); - case 454: + case 458: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(306); + if (lookahead == '_') ADVANCE(309); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(454); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(458); END_STATE(); - case 455: + case 459: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(305); - if (lookahead == 'b') ADVANCE(296); - if (lookahead == 'o') ADVANCE(300); - if (lookahead == 'x') ADVANCE(306); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (lookahead == '_') ADVANCE(308); + if (lookahead == 'b') ADVANCE(299); + if (lookahead == 'o') ADVANCE(303); + if (lookahead == 'x') ADVANCE(309); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(460); END_STATE(); - case 456: + case 460: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(305); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(456); + if (lookahead == '_') ADVANCE(308); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(460); END_STATE(); - case 457: + case 461: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(303); + if (lookahead == '_') ADVANCE(306); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(457); + lookahead == 'e') ADVANCE(221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(461); END_STATE(); - case 458: + case 462: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(297); + if (lookahead == '_') ADVANCE(300); if (lookahead == '0' || - lookahead == '1') ADVANCE(458); + lookahead == '1') ADVANCE(462); END_STATE(); - case 459: + case 463: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(301); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(459); + if (lookahead == '_') ADVANCE(304); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(463); END_STATE(); - case 460: + case 464: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(307); + if (lookahead == '_') ADVANCE(310); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(460); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(464); END_STATE(); - case 461: + case 465: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(304); - if (lookahead == 'b') ADVANCE(297); - if (lookahead == 'o') ADVANCE(301); - if (lookahead == 'x') ADVANCE(307); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(462); + if (lookahead == '_') ADVANCE(307); + if (lookahead == 'b') ADVANCE(300); + if (lookahead == 'o') ADVANCE(304); + if (lookahead == 'x') ADVANCE(310); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(466); END_STATE(); - case 462: + case 466: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(304); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(462); + if (lookahead == '_') ADVANCE(307); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(466); END_STATE(); - case 463: + case 467: ACCEPT_TOKEN(sym_char); END_STATE(); - case 464: + case 468: ACCEPT_TOKEN(sym_char); if (lookahead != 0 && - lookahead != '\n') ADVANCE(463); + lookahead != '\n') ADVANCE(467); END_STATE(); - case 465: + case 469: ACCEPT_TOKEN(anon_sym_true); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 466: + case 470: ACCEPT_TOKEN(anon_sym_true); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 467: + case 471: ACCEPT_TOKEN(anon_sym_false); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 468: + case 472: ACCEPT_TOKEN(anon_sym_false); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 469: + case 473: ACCEPT_TOKEN(anon_sym_nil); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 470: + case 474: ACCEPT_TOKEN(anon_sym_nil); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); - END_STATE(); - case 471: - ACCEPT_TOKEN(sym_atom_); - END_STATE(); - case 472: - ACCEPT_TOKEN(sym_atom_); - if (lookahead == '&') ADVANCE(471); - END_STATE(); - case 473: - ACCEPT_TOKEN(sym_atom_); - if (lookahead == '&') ADVANCE(472); - END_STATE(); - case 474: - ACCEPT_TOKEN(sym_atom_); - if (lookahead == '*') ADVANCE(471); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); case 475: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '+') ADVANCE(471); END_STATE(); case 476: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '+') ADVANCE(475); + if (lookahead == '&') ADVANCE(475); END_STATE(); case 477: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '-') ADVANCE(471); + if (lookahead == '&') ADVANCE(476); END_STATE(); case 478: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '-') ADVANCE(477); - if (lookahead == '>') ADVANCE(471); + if (lookahead == '*') ADVANCE(475); END_STATE(); case 479: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '.') ADVANCE(471); - if (lookahead == '/') ADVANCE(215); + if (lookahead == '+') ADVANCE(475); END_STATE(); case 480: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '.') ADVANCE(479); + if (lookahead == '+') ADVANCE(479); END_STATE(); case 481: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '/') ADVANCE(471); + if (lookahead == '-') ADVANCE(475); END_STATE(); case 482: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '<') ADVANCE(249); - if (lookahead == '|') ADVANCE(236); - if (lookahead == '~') ADVANCE(487); - if (lookahead == '-' || - lookahead == '=' || - lookahead == '>') ADVANCE(471); + if (lookahead == '-') ADVANCE(481); + if (lookahead == '>') ADVANCE(475); END_STATE(); case 483: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '=') ADVANCE(471); + if (lookahead == '.') ADVANCE(475); + if (lookahead == '/') ADVANCE(218); END_STATE(); case 484: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '=') ADVANCE(471); - if (lookahead == '>') ADVANCE(236); + if (lookahead == '.') ADVANCE(483); END_STATE(); case 485: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '=') ADVANCE(483); + if (lookahead == '/') ADVANCE(475); END_STATE(); case 486: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '=') ADVANCE(483); - if (lookahead == '~') ADVANCE(471); + if (lookahead == '<') ADVANCE(252); + if (lookahead == '|') ADVANCE(239); + if (lookahead == '~') ADVANCE(491); + if (lookahead == '-' || + lookahead == '=' || + lookahead == '>') ADVANCE(475); END_STATE(); case 487: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '>') ADVANCE(471); + if (lookahead == '=') ADVANCE(475); END_STATE(); case 488: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '>') ADVANCE(471); - if (lookahead == '|') ADVANCE(491); + if (lookahead == '=') ADVANCE(475); + if (lookahead == '>') ADVANCE(239); END_STATE(); case 489: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '^') ADVANCE(253); + if (lookahead == '=') ADVANCE(487); END_STATE(); case 490: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '{') ADVANCE(288); + if (lookahead == '=') ADVANCE(487); + if (lookahead == '~') ADVANCE(475); END_STATE(); case 491: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '|') ADVANCE(471); + if (lookahead == '>') ADVANCE(475); END_STATE(); case 492: ACCEPT_TOKEN(sym_atom_); - if (lookahead == '!' || - lookahead == '?') ADVANCE(471); - if (set_contains(sym_atom__character_set_2, 757, lookahead)) ADVANCE(492); + if (lookahead == '>') ADVANCE(475); + if (lookahead == '|') ADVANCE(495); END_STATE(); case 493: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(sym_atom_); + if (lookahead == '^') ADVANCE(256); END_STATE(); case 494: - ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == '"') ADVANCE(195); + ACCEPT_TOKEN(sym_atom_); + if (lookahead == '{') ADVANCE(291); END_STATE(); case 495: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(sym_atom_); + if (lookahead == '|') ADVANCE(475); END_STATE(); case 496: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(200); + ACCEPT_TOKEN(sym_atom_); + if (lookahead == '!' || + lookahead == '?') ADVANCE(475); + if (set_contains(sym_atom__character_set_2, 770, lookahead)) ADVANCE(496); END_STATE(); case 497: - ACCEPT_TOKEN(anon_sym_SQUOTE_SQUOTE_SQUOTE); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 498: - ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); + ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == '"') ADVANCE(195); END_STATE(); case 499: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 500: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '}') ADVANCE(220); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(200); END_STATE(); case 501: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_SQUOTE_SQUOTE_SQUOTE); END_STATE(); case 502: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); END_STATE(); case 503: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 504: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '}') ADVANCE(223); END_STATE(); case 505: - ACCEPT_TOKEN(anon_sym_LT); - ADVANCE_MAP( - '-', 608, - '.', 213, - ':', 298, - '<', 571, - '=', 649, - '>', 687, - '|', 239, - '~', 662, - ); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 506: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(607); - if (lookahead == '.') ADVANCE(213); - if (lookahead == '<') ADVANCE(572); - if (lookahead == '=') ADVANCE(648); - if (lookahead == '>') ADVANCE(686); - if (lookahead == '|') ADVANCE(245); - if (lookahead == '~') ADVANCE(663); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 507: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(607); - if (lookahead == '<') ADVANCE(234); - if (lookahead == '=') ADVANCE(648); - if (lookahead == '>') ADVANCE(686); - if (lookahead == '|') ADVANCE(245); - if (lookahead == '~') ADVANCE(663); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 508: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 509: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '=') ADVANCE(651); - if (lookahead == '>') ADVANCE(575); + ACCEPT_TOKEN(anon_sym_LT); + ADVANCE_MAP( + '-', 612, + '.', 216, + ':', 301, + '<', 575, + '=', 653, + '>', 691, + '|', 242, + '~', 666, + ); END_STATE(); case 510: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '=') ADVANCE(651); - if (lookahead == '>') ADVANCE(240); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '-') ADVANCE(611); + if (lookahead == '.') ADVANCE(216); + if (lookahead == '<') ADVANCE(576); + if (lookahead == '=') ADVANCE(652); + if (lookahead == '>') ADVANCE(690); + if (lookahead == '|') ADVANCE(248); + if (lookahead == '~') ADVANCE(667); END_STATE(); case 511: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(650); - if (lookahead == '>') ADVANCE(576); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '-') ADVANCE(611); + if (lookahead == '<') ADVANCE(237); + if (lookahead == '=') ADVANCE(652); + if (lookahead == '>') ADVANCE(690); + if (lookahead == '|') ADVANCE(248); + if (lookahead == '~') ADVANCE(667); END_STATE(); case 512: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(650); - if (lookahead == '>') ADVANCE(246); END_STATE(); case 513: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '=') ADVANCE(655); + if (lookahead == '>') ADVANCE(579); END_STATE(); case 514: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '>') ADVANCE(653); - if (lookahead == '|') ADVANCE(622); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '=') ADVANCE(655); + if (lookahead == '>') ADVANCE(243); END_STATE(); case 515: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '>') ADVANCE(652); - if (lookahead == '|') ADVANCE(623); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(654); + if (lookahead == '>') ADVANCE(580); END_STATE(); case 516: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(654); + if (lookahead == '>') ADVANCE(249); END_STATE(); case 517: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(677); - if (lookahead == ':') ADVANCE(298); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 518: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(220); - if (lookahead == ':') ADVANCE(298); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '>') ADVANCE(657); + if (lookahead == '|') ADVANCE(626); END_STATE(); case 519: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(676); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '>') ADVANCE(656); + if (lookahead == '|') ADVANCE(627); END_STATE(); case 520: - ACCEPT_TOKEN(anon_sym_POUND_LBRACE); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 521: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(681); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 522: - ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\n') ADVANCE(328); - if (lookahead == '\r') ADVANCE(61); - if (lookahead == '\\') ADVANCE(58); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(223); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 523: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(521); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(680); END_STATE(); case 524: - ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '>') ADVANCE(664); - if (lookahead == '~') ADVANCE(293); + ACCEPT_TOKEN(anon_sym_POUND_LBRACE); END_STATE(); case 525: - ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '>') ADVANCE(665); - if (lookahead == '~') ADVANCE(294); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 526: - ACCEPT_TOKEN(aux_sym_sigil_token1); + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\n') ADVANCE(332); + if (lookahead == '\r') ADVANCE(61); + if (lookahead == '\\') ADVANCE(58); END_STATE(); case 527: - ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'a') ADVANCE(390); - if (lookahead == 'n') ADVANCE(718); - if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(525); END_STATE(); case 528: - ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'a') ADVANCE(402); - if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '>') ADVANCE(668); + if (lookahead == '~') ADVANCE(296); END_STATE(); case 529: - ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'e') ADVANCE(399); - if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '>') ADVANCE(669); + if (lookahead == '~') ADVANCE(297); END_STATE(); case 530: ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'f') ADVANCE(404); - if (lookahead == 'n') ADVANCE(375); - if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); END_STATE(); case 531: ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'h') ADVANCE(382); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'a') ADVANCE(394); + if (lookahead == 'n') ADVANCE(722); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 532: ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'i') ADVANCE(389); - if (lookahead == 'o') ADVANCE(403); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'a') ADVANCE(406); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 533: ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'l') ADVANCE(400); - if (lookahead == 'n') ADVANCE(376); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'e') ADVANCE(403); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 534: ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'n') ADVANCE(671); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'f') ADVANCE(408); + if (lookahead == 'n') ADVANCE(379); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 535: ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'o') ADVANCE(707); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'h') ADVANCE(386); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 536: ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'r') ADVANCE(627); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'i') ADVANCE(393); + if (lookahead == 'o') ADVANCE(407); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 537: ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); - if (lookahead == 'r') ADVANCE(405); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'l') ADVANCE(404); + if (lookahead == 'n') ADVANCE(380); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 538: ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'n') ADVANCE(675); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 539: - ACCEPT_TOKEN(aux_sym_sigil_token2); - if (lookahead == ':') ADVANCE(298); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'o') ADVANCE(711); if (lookahead == '!' || - lookahead == '?') ADVANCE(220); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(539); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(231); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 540: - ACCEPT_TOKEN(aux_sym_sigil_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(540); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'r') ADVANCE(631); + if (lookahead == '!' || + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 541: - ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'a') ADVANCE(564); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == 'r') ADVANCE(409); + if (lookahead == '!' || + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 542: - ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'c') ADVANCE(566); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); + if (lookahead == '!' || + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); case 543: - ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'c') ADVANCE(552); + ACCEPT_TOKEN(aux_sym_sigil_token2); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '!' || + lookahead == '?') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(543); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(234); END_STATE(); case 544: - ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'd') ADVANCE(637); + ACCEPT_TOKEN(aux_sym_sigil_token2); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(544); END_STATE(); case 545: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'd') ADVANCE(717); + if (lookahead == 'a') ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 546: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'e') ADVANCE(713); + if (lookahead == 'c') ADVANCE(570); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 547: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'e') ADVANCE(723); + if (lookahead == 'c') ADVANCE(556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 548: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'e') ADVANCE(557); + if (lookahead == 'd') ADVANCE(641); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 549: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'e') ADVANCE(561); + if (lookahead == 'd') ADVANCE(721); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 550: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'e') ADVANCE(562); + if (lookahead == 'e') ADVANCE(717); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 551: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'f') ADVANCE(565); - if (lookahead == 'n') ADVANCE(544); + if (lookahead == 'e') ADVANCE(727); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 552: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'h') ADVANCE(705); + if (lookahead == 'e') ADVANCE(561); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 553: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'h') ADVANCE(548); + if (lookahead == 'e') ADVANCE(565); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 554: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'l') ADVANCE(563); - if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'e') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 555: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'n') ADVANCE(544); + if (lookahead == 'f') ADVANCE(569); + if (lookahead == 'n') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 556: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'n') ADVANCE(673); + if (lookahead == 'h') ADVANCE(709); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 557: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'n') ADVANCE(614); + if (lookahead == 'h') ADVANCE(552); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 558: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'n') ADVANCE(545); + if (lookahead == 'l') ADVANCE(567); + if (lookahead == 'n') ADVANCE(549); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 559: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'o') ADVANCE(709); + if (lookahead == 'n') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 560: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'r') ADVANCE(629); + if (lookahead == 'n') ADVANCE(677); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 561: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'r') ADVANCE(701); + if (lookahead == 'n') ADVANCE(618); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 562: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 's') ADVANCE(542); + if (lookahead == 'n') ADVANCE(549); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 563: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 's') ADVANCE(546); + if (lookahead == 'o') ADVANCE(713); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 564: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 't') ADVANCE(543); + if (lookahead == 'r') ADVANCE(633); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 565: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 't') ADVANCE(549); + if (lookahead == 'r') ADVANCE(705); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 566: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'u') ADVANCE(547); + if (lookahead == 's') ADVANCE(546); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 567: ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 's') ADVANCE(550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 568: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 't') ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 569: - ACCEPT_TOKEN(sym_keyword_); + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 't') ADVANCE(553); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 570: - ACCEPT_TOKEN(aux_sym_quoted_keyword_token1); + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'u') ADVANCE(551); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 571: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(655); - if (lookahead == '>') ADVANCE(237); - if (lookahead == '~') ADVANCE(659); + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); case 572: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(654); - if (lookahead == '~') ADVANCE(658); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 573: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(sym_keyword_); END_STATE(); case 574: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(220); + ACCEPT_TOKEN(aux_sym_quoted_keyword_token1); END_STATE(); case 575: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(657); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(659); + if (lookahead == '>') ADVANCE(240); + if (lookahead == '~') ADVANCE(663); END_STATE(); case 576: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(656); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(658); + if (lookahead == '~') ADVANCE(662); END_STATE(); case 577: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 578: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '{') ADVANCE(289); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(223); END_STATE(); case 579: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(661); END_STATE(); case 580: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(447); - if (lookahead == '/') ADVANCE(216); - if (lookahead == ':') ADVANCE(298); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(660); END_STATE(); case 581: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(445); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 582: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(446); - if (lookahead == '/') ADVANCE(216); - if (lookahead == ':') ADVANCE(298); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '{') ADVANCE(292); END_STATE(); case 583: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(241); END_STATE(); case 584: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(219); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 585: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(630); - if (lookahead == ':') ADVANCE(298); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(449); END_STATE(); case 586: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(631); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(450); + if (lookahead == '/') ADVANCE(219); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 587: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(244); END_STATE(); case 588: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(678); - if (lookahead == ':') ADVANCE(298); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 589: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(679); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(634); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 590: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(635); END_STATE(); case 591: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(680); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '>') ADVANCE(693); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 592: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(681); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(682); + if (lookahead == ':') ADVANCE(301); END_STATE(); case 593: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(681); - if (lookahead == '>') ADVANCE(692); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(683); END_STATE(); case 594: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 595: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '=') ADVANCE(640); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(684); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '>') ADVANCE(697); END_STATE(); case 596: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(641); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(685); END_STATE(); case 597: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(685); + if (lookahead == '>') ADVANCE(696); END_STATE(); case 598: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '^') ADVANCE(255); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 599: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(256); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '=') ADVANCE(644); END_STATE(); case 600: - ACCEPT_TOKEN(anon_sym_TILDE_TILDE_TILDE); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(645); END_STATE(); case 601: - ACCEPT_TOKEN(anon_sym_TILDE_TILDE_TILDE); - if (lookahead == ':') ADVANCE(298); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 602: - ACCEPT_TOKEN(anon_sym_not); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '^') ADVANCE(258); END_STATE(); case 603: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '^') ADVANCE(259); + END_STATE(); + case 604: + ACCEPT_TOKEN(anon_sym_TILDE_TILDE_TILDE); + END_STATE(); + case 605: + ACCEPT_TOKEN(anon_sym_TILDE_TILDE_TILDE); + if (lookahead == ':') ADVANCE(301); + END_STATE(); + case 606: + ACCEPT_TOKEN(anon_sym_not); + END_STATE(); + case 607: ACCEPT_TOKEN(anon_sym_not); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 604: + case 608: ACCEPT_TOKEN(anon_sym_not); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 605: + case 609: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 606: + case 610: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 607: + case 611: ACCEPT_TOKEN(anon_sym_LT_DASH); END_STATE(); - case 608: + case 612: ACCEPT_TOKEN(anon_sym_LT_DASH); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 609: + case 613: ACCEPT_TOKEN(anon_sym_BSLASH_BSLASH); END_STATE(); - case 610: + case 614: ACCEPT_TOKEN(anon_sym_BSLASH_BSLASH); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 611: + case 615: ACCEPT_TOKEN(anon_sym_when); END_STATE(); - case 612: + case 616: ACCEPT_TOKEN(anon_sym_when); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 613: + case 617: ACCEPT_TOKEN(anon_sym_when); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 614: + case 618: ACCEPT_TOKEN(anon_sym_when); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); - case 615: + case 619: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 616: + case 620: ACCEPT_TOKEN(anon_sym_COLON_COLON); - if (lookahead == ':') ADVANCE(471); + if (lookahead == ':') ADVANCE(475); END_STATE(); - case 617: + case 621: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 618: + case 622: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '=') ADVANCE(638); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '~') ADVANCE(643); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '=') ADVANCE(642); + if (lookahead == '>') ADVANCE(621); + if (lookahead == '~') ADVANCE(647); END_STATE(); - case 619: + case 623: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '=') ADVANCE(638); - if (lookahead == '~') ADVANCE(643); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '=') ADVANCE(642); + if (lookahead == '~') ADVANCE(647); END_STATE(); - case 620: + case 624: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(639); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '~') ADVANCE(642); + if (lookahead == '=') ADVANCE(643); + if (lookahead == '>') ADVANCE(621); + if (lookahead == '~') ADVANCE(646); END_STATE(); - case 621: + case 625: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(639); - if (lookahead == '~') ADVANCE(642); + if (lookahead == '=') ADVANCE(643); + if (lookahead == '~') ADVANCE(646); END_STATE(); - case 622: + case 626: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '|') ADVANCE(625); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '|') ADVANCE(629); END_STATE(); - case 623: + case 627: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '|') ADVANCE(624); + if (lookahead == '|') ADVANCE(628); END_STATE(); - case 624: + case 628: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_PIPE); END_STATE(); - case 625: + case 629: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_PIPE); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 626: + case 630: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 627: + case 631: ACCEPT_TOKEN(anon_sym_or); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 628: + case 632: ACCEPT_TOKEN(anon_sym_or); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 629: + case 633: ACCEPT_TOKEN(anon_sym_or); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); - case 630: + case 634: ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '&') ADVANCE(633); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '&') ADVANCE(637); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 631: + case 635: ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '&') ADVANCE(632); + if (lookahead == '&') ADVANCE(636); END_STATE(); - case 632: + case 636: ACCEPT_TOKEN(anon_sym_AMP_AMP_AMP); END_STATE(); - case 633: + case 637: ACCEPT_TOKEN(anon_sym_AMP_AMP_AMP); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 634: + case 638: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 635: + case 639: ACCEPT_TOKEN(anon_sym_and); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 636: + case 640: ACCEPT_TOKEN(anon_sym_and); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 637: + case 641: ACCEPT_TOKEN(anon_sym_and); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); - case 638: + case 642: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '=') ADVANCE(645); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '=') ADVANCE(649); END_STATE(); - case 639: + case 643: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(644); + if (lookahead == '=') ADVANCE(648); END_STATE(); - case 640: + case 644: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '=') ADVANCE(647); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '=') ADVANCE(651); END_STATE(); - case 641: + case 645: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(646); + if (lookahead == '=') ADVANCE(650); END_STATE(); - case 642: + case 646: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 643: + case 647: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 644: + case 648: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 645: + case 649: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 646: + case 650: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 647: + case 651: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 648: + case 652: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 649: + case 653: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 650: + case 654: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 651: + case 655: ACCEPT_TOKEN(anon_sym_GT_EQ); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 652: + case 656: ACCEPT_TOKEN(anon_sym_PIPE_GT); END_STATE(); - case 653: + case 657: ACCEPT_TOKEN(anon_sym_PIPE_GT); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 654: + case 658: ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); - case 655: + case 659: ACCEPT_TOKEN(anon_sym_LT_LT_LT); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 656: + case 660: ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 657: + case 661: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 658: + case 662: ACCEPT_TOKEN(anon_sym_LT_LT_TILDE); END_STATE(); - case 659: + case 663: ACCEPT_TOKEN(anon_sym_LT_LT_TILDE); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 660: + case 664: ACCEPT_TOKEN(anon_sym_TILDE_GT_GT); END_STATE(); - case 661: + case 665: ACCEPT_TOKEN(anon_sym_TILDE_GT_GT); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 662: + case 666: ACCEPT_TOKEN(anon_sym_LT_TILDE); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '>') ADVANCE(667); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '>') ADVANCE(671); END_STATE(); - case 663: + case 667: ACCEPT_TOKEN(anon_sym_LT_TILDE); - if (lookahead == '>') ADVANCE(666); + if (lookahead == '>') ADVANCE(670); END_STATE(); - case 664: + case 668: ACCEPT_TOKEN(anon_sym_TILDE_GT); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '>') ADVANCE(661); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '>') ADVANCE(665); END_STATE(); - case 665: + case 669: ACCEPT_TOKEN(anon_sym_TILDE_GT); - if (lookahead == '>') ADVANCE(660); + if (lookahead == '>') ADVANCE(664); END_STATE(); - case 666: + case 670: ACCEPT_TOKEN(anon_sym_LT_TILDE_GT); END_STATE(); - case 667: + case 671: ACCEPT_TOKEN(anon_sym_LT_TILDE_GT); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 668: + case 672: ACCEPT_TOKEN(anon_sym_LT_PIPE_GT); END_STATE(); - case 669: + case 673: ACCEPT_TOKEN(anon_sym_LT_PIPE_GT); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 670: + case 674: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 671: + case 675: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 672: + case 676: ACCEPT_TOKEN(anon_sym_in); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 673: + case 677: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); - case 674: + case 678: ACCEPT_TOKEN(anon_sym_CARET_CARET_CARET); END_STATE(); - case 675: + case 679: ACCEPT_TOKEN(anon_sym_CARET_CARET_CARET); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 676: + case 680: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 677: + case 681: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 678: + case 682: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '+') ADVANCE(683); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '+') ADVANCE(687); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 679: + case 683: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '+') ADVANCE(682); + if (lookahead == '+') ADVANCE(686); END_STATE(); - case 680: + case 684: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '-') ADVANCE(685); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '-') ADVANCE(689); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 681: + case 685: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '-') ADVANCE(684); + if (lookahead == '-') ADVANCE(688); END_STATE(); - case 682: + case 686: ACCEPT_TOKEN(anon_sym_PLUS_PLUS_PLUS); END_STATE(); - case 683: + case 687: ACCEPT_TOKEN(anon_sym_PLUS_PLUS_PLUS); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 684: + case 688: ACCEPT_TOKEN(anon_sym_DASH_DASH_DASH); END_STATE(); - case 685: + case 689: ACCEPT_TOKEN(anon_sym_DASH_DASH_DASH); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 686: + case 690: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 687: + case 691: ACCEPT_TOKEN(anon_sym_LT_GT); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 688: + case 692: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(691); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '*') ADVANCE(695); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 689: + case 693: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(690); + if (lookahead == '*') ADVANCE(694); END_STATE(); - case 690: + case 694: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 691: + case 695: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 692: + case 696: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 693: + case 697: ACCEPT_TOKEN(anon_sym_DASH_GT); - if (lookahead == ':') ADVANCE(298); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 694: + case 698: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(580); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '.') ADVANCE(584); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 695: + case 699: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(579); + if (lookahead == '.') ADVANCE(583); END_STATE(); - case 696: + case 700: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(582); - if (lookahead == ':') ADVANCE(298); + if (lookahead == '.') ADVANCE(586); + if (lookahead == ':') ADVANCE(301); END_STATE(); - case 697: + case 701: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(583); + if (lookahead == '.') ADVANCE(587); END_STATE(); - case 698: + case 702: ACCEPT_TOKEN(anon_sym_after); END_STATE(); - case 699: + case 703: ACCEPT_TOKEN(anon_sym_after); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 700: + case 704: ACCEPT_TOKEN(anon_sym_after); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 701: + case 705: ACCEPT_TOKEN(anon_sym_after); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); - case 702: + case 706: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 703: + case 707: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 704: + case 708: ACCEPT_TOKEN(anon_sym_catch); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 705: + case 709: ACCEPT_TOKEN(anon_sym_catch); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); - case 706: + case 710: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 707: + case 711: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 708: + case 712: ACCEPT_TOKEN(anon_sym_do); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 709: + case 713: ACCEPT_TOKEN(anon_sym_do); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); - case 710: + case 714: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 711: + case 715: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 712: + case 716: ACCEPT_TOKEN(anon_sym_else); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 713: + case 717: ACCEPT_TOKEN(anon_sym_else); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); - case 714: + case 718: ACCEPT_TOKEN(anon_sym_end); END_STATE(); - case 715: + case 719: ACCEPT_TOKEN(anon_sym_end); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 716: + case 720: ACCEPT_TOKEN(anon_sym_end); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 717: + case 721: ACCEPT_TOKEN(anon_sym_end); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); - case 718: + case 722: ACCEPT_TOKEN(anon_sym_fn); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 719: + case 723: ACCEPT_TOKEN(anon_sym_fn); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 720: + case 724: ACCEPT_TOKEN(anon_sym_rescue); END_STATE(); - case 721: + case 725: ACCEPT_TOKEN(anon_sym_rescue); - if (lookahead == ':') ADVANCE(298); - if (lookahead == '@') ADVANCE(231); + if (lookahead == ':') ADVANCE(301); + if (lookahead == '@') ADVANCE(234); if (lookahead == '!' || - lookahead == '?') ADVANCE(370); - if (set_contains(sym_keyword__character_set_2, 757, lookahead)) ADVANCE(407); + lookahead == '?') ADVANCE(374); + if (set_contains(sym_keyword__character_set_2, 770, lookahead)) ADVANCE(411); END_STATE(); - case 722: + case 726: ACCEPT_TOKEN(anon_sym_rescue); if (lookahead == '!' || - lookahead == '?') ADVANCE(369); - if (set_contains(aux_sym_identifier_token1_character_set_2, 758, lookahead)) ADVANCE(444); + lookahead == '?') ADVANCE(373); + if (set_contains(aux_sym_identifier_token1_character_set_2, 771, lookahead)) ADVANCE(448); END_STATE(); - case 723: + case 727: ACCEPT_TOKEN(anon_sym_rescue); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); - case 724: + case 728: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 725: + case 729: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 726: + case 730: ACCEPT_TOKEN(sym_comment); - if (lookahead == '{') ADVANCE(520); + if (lookahead == '{') ADVANCE(524); if (lookahead != 0 && - lookahead != '\n') ADVANCE(727); + lookahead != '\n') ADVANCE(731); END_STATE(); - case 727: + case 731: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(727); + lookahead != '\n') ADVANCE(731); END_STATE(); - case 728: + case 732: ACCEPT_TOKEN(aux_sym_metavariable_keyword_token1); END_STATE(); - case 729: + case 733: ACCEPT_TOKEN(anon_sym_COLON); ADVANCE_MAP( - '!', 485, - '%', 490, - '&', 473, - '*', 474, - '+', 476, - '-', 478, - '.', 480, - '/', 481, - ':', 616, - '<', 482, - '=', 486, - '>', 484, - '@', 471, - '\\', 251, - '^', 489, - '{', 288, - '|', 488, - '~', 238, + '!', 489, + '%', 494, + '&', 477, + '*', 478, + '+', 480, + '-', 482, + '.', 484, + '/', 485, + ':', 620, + '<', 486, + '=', 490, + '>', 488, + '@', 475, + '\\', 254, + '^', 493, + '{', 291, + '|', 492, + '~', 241, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(728); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(492); + lookahead == ' ') ADVANCE(732); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(496); END_STATE(); - case 730: + case 734: ACCEPT_TOKEN(anon_sym_COLON); ADVANCE_MAP( - '!', 485, - '%', 490, - '&', 473, - '*', 474, - '+', 476, - '-', 478, - '.', 480, - '/', 481, - ':', 616, - '<', 482, - '=', 486, - '>', 484, - '@', 471, - '\\', 251, - '^', 489, - '{', 288, - '|', 488, - '~', 238, + '!', 489, + '%', 494, + '&', 477, + '*', 478, + '+', 480, + '-', 482, + '.', 484, + '/', 485, + ':', 620, + '<', 486, + '=', 490, + '>', 488, + '@', 475, + '\\', 254, + '^', 493, + '{', 291, + '|', 492, + '~', 241, ); - if (set_contains(sym_keyword__character_set_1, 656, lookahead)) ADVANCE(492); + if (set_contains(sym_keyword__character_set_1, 668, lookahead)) ADVANCE(496); END_STATE(); - case 731: + case 735: ACCEPT_TOKEN(sym_semgrep_metavariable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(731); + lookahead == '_') ADVANCE(735); END_STATE(); - case 732: + case 736: + ACCEPT_TOKEN(sym_semgrep_ellipsis_metavariable); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(736); + END_STATE(); + case 737: ACCEPT_TOKEN(anon_sym_LT_DOT_DOT_DOT); END_STATE(); - case 733: + case 738: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_GT); END_STATE(); default: @@ -16497,7 +16424,7 @@ 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 = 314, .external_lex_state = 2}, + [1] = {.lex_state = 318, .external_lex_state = 2}, [2] = {.lex_state = 99, .external_lex_state = 2}, [3] = {.lex_state = 99, .external_lex_state = 2}, [4] = {.lex_state = 99, .external_lex_state = 2}, @@ -16523,137 +16450,137 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [24] = {.lex_state = 99, .external_lex_state = 2}, [25] = {.lex_state = 99, .external_lex_state = 2}, [26] = {.lex_state = 99, .external_lex_state = 2}, - [27] = {.lex_state = 101, .external_lex_state = 2}, - [28] = {.lex_state = 99, .external_lex_state = 2}, + [27] = {.lex_state = 99, .external_lex_state = 2}, + [28] = {.lex_state = 101, .external_lex_state = 2}, [29] = {.lex_state = 99, .external_lex_state = 2}, [30] = {.lex_state = 99, .external_lex_state = 2}, [31] = {.lex_state = 99, .external_lex_state = 2}, [32] = {.lex_state = 99, .external_lex_state = 2}, [33] = {.lex_state = 99, .external_lex_state = 2}, - [34] = {.lex_state = 99, .external_lex_state = 2}, - [35] = {.lex_state = 101, .external_lex_state = 2}, + [34] = {.lex_state = 101, .external_lex_state = 2}, + [35] = {.lex_state = 99, .external_lex_state = 2}, [36] = {.lex_state = 99, .external_lex_state = 2}, [37] = {.lex_state = 99, .external_lex_state = 2}, [38] = {.lex_state = 99, .external_lex_state = 2}, [39] = {.lex_state = 99, .external_lex_state = 2}, [40] = {.lex_state = 99, .external_lex_state = 2}, [41] = {.lex_state = 99, .external_lex_state = 2}, - [42] = {.lex_state = 315, .external_lex_state = 3}, - [43] = {.lex_state = 315, .external_lex_state = 3}, - [44] = {.lex_state = 315, .external_lex_state = 3}, - [45] = {.lex_state = 315, .external_lex_state = 3}, - [46] = {.lex_state = 315, .external_lex_state = 3}, + [42] = {.lex_state = 319, .external_lex_state = 3}, + [43] = {.lex_state = 319, .external_lex_state = 3}, + [44] = {.lex_state = 319, .external_lex_state = 3}, + [45] = {.lex_state = 319, .external_lex_state = 3}, + [46] = {.lex_state = 319, .external_lex_state = 3}, [47] = {.lex_state = 106, .external_lex_state = 3}, [48] = {.lex_state = 106, .external_lex_state = 3}, - [49] = {.lex_state = 315, .external_lex_state = 3}, - [50] = {.lex_state = 315, .external_lex_state = 2}, - [51] = {.lex_state = 315, .external_lex_state = 3}, - [52] = {.lex_state = 315, .external_lex_state = 3}, - [53] = {.lex_state = 315, .external_lex_state = 3}, - [54] = {.lex_state = 315, .external_lex_state = 3}, - [55] = {.lex_state = 315, .external_lex_state = 3}, - [56] = {.lex_state = 315, .external_lex_state = 3}, - [57] = {.lex_state = 106, .external_lex_state = 3}, - [58] = {.lex_state = 109, .external_lex_state = 3}, - [59] = {.lex_state = 315, .external_lex_state = 3}, - [60] = {.lex_state = 315, .external_lex_state = 2}, - [61] = {.lex_state = 112, .external_lex_state = 3}, - [62] = {.lex_state = 315, .external_lex_state = 2}, - [63] = {.lex_state = 315, .external_lex_state = 2}, - [64] = {.lex_state = 109, .external_lex_state = 3}, - [65] = {.lex_state = 315, .external_lex_state = 3}, - [66] = {.lex_state = 109, .external_lex_state = 3}, - [67] = {.lex_state = 106, .external_lex_state = 2}, - [68] = {.lex_state = 315, .external_lex_state = 3}, - [69] = {.lex_state = 112, .external_lex_state = 3}, - [70] = {.lex_state = 112, .external_lex_state = 3}, - [71] = {.lex_state = 99, .external_lex_state = 2}, + [49] = {.lex_state = 106, .external_lex_state = 3}, + [50] = {.lex_state = 319, .external_lex_state = 3}, + [51] = {.lex_state = 319, .external_lex_state = 3}, + [52] = {.lex_state = 319, .external_lex_state = 3}, + [53] = {.lex_state = 319, .external_lex_state = 2}, + [54] = {.lex_state = 319, .external_lex_state = 3}, + [55] = {.lex_state = 319, .external_lex_state = 3}, + [56] = {.lex_state = 319, .external_lex_state = 3}, + [57] = {.lex_state = 319, .external_lex_state = 3}, + [58] = {.lex_state = 319, .external_lex_state = 2}, + [59] = {.lex_state = 109, .external_lex_state = 3}, + [60] = {.lex_state = 112, .external_lex_state = 3}, + [61] = {.lex_state = 109, .external_lex_state = 3}, + [62] = {.lex_state = 319, .external_lex_state = 3}, + [63] = {.lex_state = 319, .external_lex_state = 2}, + [64] = {.lex_state = 319, .external_lex_state = 2}, + [65] = {.lex_state = 112, .external_lex_state = 3}, + [66] = {.lex_state = 319, .external_lex_state = 3}, + [67] = {.lex_state = 112, .external_lex_state = 3}, + [68] = {.lex_state = 106, .external_lex_state = 2}, + [69] = {.lex_state = 319, .external_lex_state = 3}, + [70] = {.lex_state = 109, .external_lex_state = 3}, + [71] = {.lex_state = 319, .external_lex_state = 2}, [72] = {.lex_state = 99, .external_lex_state = 2}, [73] = {.lex_state = 99, .external_lex_state = 2}, - [74] = {.lex_state = 315, .external_lex_state = 2}, - [75] = {.lex_state = 112, .external_lex_state = 2}, - [76] = {.lex_state = 315, .external_lex_state = 3}, - [77] = {.lex_state = 315, .external_lex_state = 3}, - [78] = {.lex_state = 109, .external_lex_state = 2}, - [79] = {.lex_state = 99, .external_lex_state = 2}, - [80] = {.lex_state = 315, .external_lex_state = 3}, + [74] = {.lex_state = 109, .external_lex_state = 2}, + [75] = {.lex_state = 319, .external_lex_state = 3}, + [76] = {.lex_state = 99, .external_lex_state = 2}, + [77] = {.lex_state = 99, .external_lex_state = 2}, + [78] = {.lex_state = 319, .external_lex_state = 3}, + [79] = {.lex_state = 112, .external_lex_state = 2}, + [80] = {.lex_state = 319, .external_lex_state = 3}, [81] = {.lex_state = 115, .external_lex_state = 2}, [82] = {.lex_state = 115, .external_lex_state = 2}, - [83] = {.lex_state = 117, .external_lex_state = 2}, - [84] = {.lex_state = 117, .external_lex_state = 2}, + [83] = {.lex_state = 115, .external_lex_state = 2}, + [84] = {.lex_state = 115, .external_lex_state = 2}, [85] = {.lex_state = 117, .external_lex_state = 2}, - [86] = {.lex_state = 115, .external_lex_state = 2}, - [87] = {.lex_state = 117, .external_lex_state = 2}, - [88] = {.lex_state = 117, .external_lex_state = 2}, + [86] = {.lex_state = 319, .external_lex_state = 2}, + [87] = {.lex_state = 115, .external_lex_state = 2}, + [88] = {.lex_state = 115, .external_lex_state = 2}, [89] = {.lex_state = 117, .external_lex_state = 2}, [90] = {.lex_state = 115, .external_lex_state = 2}, - [91] = {.lex_state = 117, .external_lex_state = 2}, + [91] = {.lex_state = 115, .external_lex_state = 2}, [92] = {.lex_state = 117, .external_lex_state = 2}, - [93] = {.lex_state = 117, .external_lex_state = 2}, - [94] = {.lex_state = 117, .external_lex_state = 2}, + [93] = {.lex_state = 115, .external_lex_state = 2}, + [94] = {.lex_state = 115, .external_lex_state = 2}, [95] = {.lex_state = 115, .external_lex_state = 2}, [96] = {.lex_state = 117, .external_lex_state = 2}, [97] = {.lex_state = 115, .external_lex_state = 2}, - [98] = {.lex_state = 117, .external_lex_state = 2}, - [99] = {.lex_state = 117, .external_lex_state = 2}, - [100] = {.lex_state = 115, .external_lex_state = 2}, + [98] = {.lex_state = 115, .external_lex_state = 2}, + [99] = {.lex_state = 115, .external_lex_state = 2}, + [100] = {.lex_state = 117, .external_lex_state = 2}, [101] = {.lex_state = 117, .external_lex_state = 2}, - [102] = {.lex_state = 117, .external_lex_state = 2}, - [103] = {.lex_state = 117, .external_lex_state = 2}, + [102] = {.lex_state = 115, .external_lex_state = 2}, + [103] = {.lex_state = 115, .external_lex_state = 2}, [104] = {.lex_state = 115, .external_lex_state = 2}, - [105] = {.lex_state = 315, .external_lex_state = 2}, + [105] = {.lex_state = 117, .external_lex_state = 2}, [106] = {.lex_state = 117, .external_lex_state = 2}, [107] = {.lex_state = 117, .external_lex_state = 2}, [108] = {.lex_state = 115, .external_lex_state = 2}, - [109] = {.lex_state = 117, .external_lex_state = 2}, - [110] = {.lex_state = 117, .external_lex_state = 2}, + [109] = {.lex_state = 115, .external_lex_state = 2}, + [110] = {.lex_state = 115, .external_lex_state = 2}, [111] = {.lex_state = 117, .external_lex_state = 2}, [112] = {.lex_state = 115, .external_lex_state = 2}, - [113] = {.lex_state = 117, .external_lex_state = 2}, - [114] = {.lex_state = 115, .external_lex_state = 2}, - [115] = {.lex_state = 117, .external_lex_state = 2}, - [116] = {.lex_state = 117, .external_lex_state = 2}, - [117] = {.lex_state = 115, .external_lex_state = 2}, - [118] = {.lex_state = 117, .external_lex_state = 2}, - [119] = {.lex_state = 117, .external_lex_state = 2}, - [120] = {.lex_state = 115, .external_lex_state = 2}, - [121] = {.lex_state = 117, .external_lex_state = 2}, + [113] = {.lex_state = 115, .external_lex_state = 2}, + [114] = {.lex_state = 117, .external_lex_state = 2}, + [115] = {.lex_state = 115, .external_lex_state = 2}, + [116] = {.lex_state = 115, .external_lex_state = 2}, + [117] = {.lex_state = 117, .external_lex_state = 2}, + [118] = {.lex_state = 115, .external_lex_state = 2}, + [119] = {.lex_state = 115, .external_lex_state = 2}, + [120] = {.lex_state = 117, .external_lex_state = 2}, + [121] = {.lex_state = 115, .external_lex_state = 2}, [122] = {.lex_state = 115, .external_lex_state = 2}, [123] = {.lex_state = 117, .external_lex_state = 2}, - [124] = {.lex_state = 117, .external_lex_state = 2}, - [125] = {.lex_state = 117, .external_lex_state = 2}, - [126] = {.lex_state = 315, .external_lex_state = 2}, + [124] = {.lex_state = 115, .external_lex_state = 2}, + [125] = {.lex_state = 115, .external_lex_state = 2}, + [126] = {.lex_state = 319, .external_lex_state = 2}, [127] = {.lex_state = 117, .external_lex_state = 2}, - [128] = {.lex_state = 115, .external_lex_state = 2}, - [129] = {.lex_state = 117, .external_lex_state = 2}, - [130] = {.lex_state = 117, .external_lex_state = 2}, + [128] = {.lex_state = 117, .external_lex_state = 2}, + [129] = {.lex_state = 115, .external_lex_state = 2}, + [130] = {.lex_state = 115, .external_lex_state = 2}, [131] = {.lex_state = 115, .external_lex_state = 2}, [132] = {.lex_state = 117, .external_lex_state = 2}, - [133] = {.lex_state = 115, .external_lex_state = 2}, - [134] = {.lex_state = 117, .external_lex_state = 2}, + [133] = {.lex_state = 117, .external_lex_state = 2}, + [134] = {.lex_state = 115, .external_lex_state = 2}, [135] = {.lex_state = 115, .external_lex_state = 2}, [136] = {.lex_state = 117, .external_lex_state = 2}, [137] = {.lex_state = 115, .external_lex_state = 2}, - [138] = {.lex_state = 117, .external_lex_state = 2}, - [139] = {.lex_state = 115, .external_lex_state = 2}, - [140] = {.lex_state = 117, .external_lex_state = 2}, - [141] = {.lex_state = 115, .external_lex_state = 2}, + [138] = {.lex_state = 115, .external_lex_state = 2}, + [139] = {.lex_state = 117, .external_lex_state = 2}, + [140] = {.lex_state = 115, .external_lex_state = 2}, + [141] = {.lex_state = 117, .external_lex_state = 2}, [142] = {.lex_state = 117, .external_lex_state = 2}, - [143] = {.lex_state = 115, .external_lex_state = 2}, + [143] = {.lex_state = 117, .external_lex_state = 2}, [144] = {.lex_state = 115, .external_lex_state = 2}, [145] = {.lex_state = 117, .external_lex_state = 2}, [146] = {.lex_state = 115, .external_lex_state = 2}, [147] = {.lex_state = 117, .external_lex_state = 2}, [148] = {.lex_state = 115, .external_lex_state = 2}, - [149] = {.lex_state = 115, .external_lex_state = 2}, - [150] = {.lex_state = 117, .external_lex_state = 2}, + [149] = {.lex_state = 117, .external_lex_state = 2}, + [150] = {.lex_state = 115, .external_lex_state = 2}, [151] = {.lex_state = 117, .external_lex_state = 2}, [152] = {.lex_state = 115, .external_lex_state = 2}, - [153] = {.lex_state = 115, .external_lex_state = 2}, - [154] = {.lex_state = 117, .external_lex_state = 2}, - [155] = {.lex_state = 117, .external_lex_state = 2}, - [156] = {.lex_state = 117, .external_lex_state = 2}, - [157] = {.lex_state = 117, .external_lex_state = 2}, + [153] = {.lex_state = 117, .external_lex_state = 2}, + [154] = {.lex_state = 115, .external_lex_state = 2}, + [155] = {.lex_state = 115, .external_lex_state = 2}, + [156] = {.lex_state = 115, .external_lex_state = 2}, + [157] = {.lex_state = 115, .external_lex_state = 2}, [158] = {.lex_state = 119, .external_lex_state = 2}, [159] = {.lex_state = 119, .external_lex_state = 2}, [160] = {.lex_state = 119, .external_lex_state = 2}, @@ -16696,1028 +16623,1028 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [197] = {.lex_state = 119, .external_lex_state = 2}, [198] = {.lex_state = 119, .external_lex_state = 2}, [199] = {.lex_state = 119, .external_lex_state = 2}, - [200] = {.lex_state = 117, .external_lex_state = 2}, - [201] = {.lex_state = 117, .external_lex_state = 2}, - [202] = {.lex_state = 117, .external_lex_state = 2}, - [203] = {.lex_state = 117, .external_lex_state = 2}, + [200] = {.lex_state = 115, .external_lex_state = 2}, + [201] = {.lex_state = 115, .external_lex_state = 2}, + [202] = {.lex_state = 115, .external_lex_state = 2}, + [203] = {.lex_state = 115, .external_lex_state = 2}, [204] = {.lex_state = 121, .external_lex_state = 2}, - [205] = {.lex_state = 117, .external_lex_state = 2}, - [206] = {.lex_state = 117, .external_lex_state = 2}, - [207] = {.lex_state = 117, .external_lex_state = 2}, - [208] = {.lex_state = 117, .external_lex_state = 2}, - [209] = {.lex_state = 117, .external_lex_state = 2}, - [210] = {.lex_state = 117, .external_lex_state = 2}, - [211] = {.lex_state = 121, .external_lex_state = 2}, - [212] = {.lex_state = 117, .external_lex_state = 2}, - [213] = {.lex_state = 117, .external_lex_state = 2}, - [214] = {.lex_state = 117, .external_lex_state = 2}, - [215] = {.lex_state = 117, .external_lex_state = 2}, - [216] = {.lex_state = 117, .external_lex_state = 2}, - [217] = {.lex_state = 117, .external_lex_state = 2}, - [218] = {.lex_state = 119, .external_lex_state = 2}, - [219] = {.lex_state = 117, .external_lex_state = 2}, - [220] = {.lex_state = 117, .external_lex_state = 2}, - [221] = {.lex_state = 121, .external_lex_state = 2}, - [222] = {.lex_state = 117, .external_lex_state = 2}, - [223] = {.lex_state = 117, .external_lex_state = 2}, - [224] = {.lex_state = 117, .external_lex_state = 2}, - [225] = {.lex_state = 117, .external_lex_state = 2}, - [226] = {.lex_state = 119, .external_lex_state = 2}, - [227] = {.lex_state = 117, .external_lex_state = 2}, - [228] = {.lex_state = 117, .external_lex_state = 2}, - [229] = {.lex_state = 121, .external_lex_state = 2}, - [230] = {.lex_state = 117, .external_lex_state = 2}, - [231] = {.lex_state = 117, .external_lex_state = 2}, - [232] = {.lex_state = 117, .external_lex_state = 2}, - [233] = {.lex_state = 117, .external_lex_state = 2}, - [234] = {.lex_state = 117, .external_lex_state = 2}, - [235] = {.lex_state = 117, .external_lex_state = 2}, - [236] = {.lex_state = 117, .external_lex_state = 2}, - [237] = {.lex_state = 121, .external_lex_state = 2}, - [238] = {.lex_state = 121, .external_lex_state = 2}, - [239] = {.lex_state = 117, .external_lex_state = 2}, - [240] = {.lex_state = 117, .external_lex_state = 2}, - [241] = {.lex_state = 117, .external_lex_state = 2}, - [242] = {.lex_state = 117, .external_lex_state = 2}, - [243] = {.lex_state = 117, .external_lex_state = 2}, - [244] = {.lex_state = 117, .external_lex_state = 2}, + [205] = {.lex_state = 115, .external_lex_state = 2}, + [206] = {.lex_state = 115, .external_lex_state = 2}, + [207] = {.lex_state = 115, .external_lex_state = 2}, + [208] = {.lex_state = 115, .external_lex_state = 2}, + [209] = {.lex_state = 115, .external_lex_state = 2}, + [210] = {.lex_state = 115, .external_lex_state = 2}, + [211] = {.lex_state = 115, .external_lex_state = 2}, + [212] = {.lex_state = 121, .external_lex_state = 2}, + [213] = {.lex_state = 115, .external_lex_state = 2}, + [214] = {.lex_state = 115, .external_lex_state = 2}, + [215] = {.lex_state = 115, .external_lex_state = 2}, + [216] = {.lex_state = 115, .external_lex_state = 2}, + [217] = {.lex_state = 115, .external_lex_state = 2}, + [218] = {.lex_state = 115, .external_lex_state = 2}, + [219] = {.lex_state = 115, .external_lex_state = 2}, + [220] = {.lex_state = 121, .external_lex_state = 2}, + [221] = {.lex_state = 119, .external_lex_state = 2}, + [222] = {.lex_state = 115, .external_lex_state = 2}, + [223] = {.lex_state = 115, .external_lex_state = 2}, + [224] = {.lex_state = 115, .external_lex_state = 2}, + [225] = {.lex_state = 115, .external_lex_state = 2}, + [226] = {.lex_state = 115, .external_lex_state = 2}, + [227] = {.lex_state = 119, .external_lex_state = 2}, + [228] = {.lex_state = 115, .external_lex_state = 2}, + [229] = {.lex_state = 115, .external_lex_state = 2}, + [230] = {.lex_state = 121, .external_lex_state = 2}, + [231] = {.lex_state = 115, .external_lex_state = 2}, + [232] = {.lex_state = 115, .external_lex_state = 2}, + [233] = {.lex_state = 115, .external_lex_state = 2}, + [234] = {.lex_state = 115, .external_lex_state = 2}, + [235] = {.lex_state = 115, .external_lex_state = 2}, + [236] = {.lex_state = 121, .external_lex_state = 2}, + [237] = {.lex_state = 115, .external_lex_state = 2}, + [238] = {.lex_state = 115, .external_lex_state = 2}, + [239] = {.lex_state = 115, .external_lex_state = 2}, + [240] = {.lex_state = 115, .external_lex_state = 2}, + [241] = {.lex_state = 115, .external_lex_state = 2}, + [242] = {.lex_state = 115, .external_lex_state = 2}, + [243] = {.lex_state = 115, .external_lex_state = 2}, + [244] = {.lex_state = 115, .external_lex_state = 2}, [245] = {.lex_state = 121, .external_lex_state = 2}, - [246] = {.lex_state = 117, .external_lex_state = 2}, - [247] = {.lex_state = 117, .external_lex_state = 2}, - [248] = {.lex_state = 117, .external_lex_state = 2}, - [249] = {.lex_state = 117, .external_lex_state = 2}, - [250] = {.lex_state = 117, .external_lex_state = 2}, - [251] = {.lex_state = 117, .external_lex_state = 2}, - [252] = {.lex_state = 117, .external_lex_state = 2}, - [253] = {.lex_state = 121, .external_lex_state = 2}, - [254] = {.lex_state = 117, .external_lex_state = 2}, - [255] = {.lex_state = 117, .external_lex_state = 2}, - [256] = {.lex_state = 117, .external_lex_state = 2}, - [257] = {.lex_state = 117, .external_lex_state = 2}, - [258] = {.lex_state = 117, .external_lex_state = 2}, + [246] = {.lex_state = 115, .external_lex_state = 2}, + [247] = {.lex_state = 115, .external_lex_state = 2}, + [248] = {.lex_state = 115, .external_lex_state = 2}, + [249] = {.lex_state = 115, .external_lex_state = 2}, + [250] = {.lex_state = 115, .external_lex_state = 2}, + [251] = {.lex_state = 115, .external_lex_state = 2}, + [252] = {.lex_state = 121, .external_lex_state = 2}, + [253] = {.lex_state = 115, .external_lex_state = 2}, + [254] = {.lex_state = 115, .external_lex_state = 2}, + [255] = {.lex_state = 115, .external_lex_state = 2}, + [256] = {.lex_state = 115, .external_lex_state = 2}, + [257] = {.lex_state = 115, .external_lex_state = 2}, + [258] = {.lex_state = 115, .external_lex_state = 2}, [259] = {.lex_state = 121, .external_lex_state = 2}, - [260] = {.lex_state = 117, .external_lex_state = 2}, - [261] = {.lex_state = 117, .external_lex_state = 2}, - [262] = {.lex_state = 117, .external_lex_state = 2}, - [263] = {.lex_state = 117, .external_lex_state = 2}, - [264] = {.lex_state = 117, .external_lex_state = 2}, - [265] = {.lex_state = 121, .external_lex_state = 2}, - [266] = {.lex_state = 117, .external_lex_state = 2}, - [267] = {.lex_state = 117, .external_lex_state = 2}, - [268] = {.lex_state = 117, .external_lex_state = 2}, - [269] = {.lex_state = 117, .external_lex_state = 2}, - [270] = {.lex_state = 117, .external_lex_state = 2}, - [271] = {.lex_state = 121, .external_lex_state = 2}, - [272] = {.lex_state = 117, .external_lex_state = 2}, - [273] = {.lex_state = 117, .external_lex_state = 2}, - [274] = {.lex_state = 117, .external_lex_state = 2}, - [275] = {.lex_state = 117, .external_lex_state = 2}, - [276] = {.lex_state = 117, .external_lex_state = 2}, - [277] = {.lex_state = 121, .external_lex_state = 2}, - [278] = {.lex_state = 117, .external_lex_state = 2}, - [279] = {.lex_state = 117, .external_lex_state = 2}, - [280] = {.lex_state = 117, .external_lex_state = 2}, - [281] = {.lex_state = 117, .external_lex_state = 2}, - [282] = {.lex_state = 117, .external_lex_state = 2}, - [283] = {.lex_state = 117, .external_lex_state = 2}, + [260] = {.lex_state = 115, .external_lex_state = 2}, + [261] = {.lex_state = 115, .external_lex_state = 2}, + [262] = {.lex_state = 115, .external_lex_state = 2}, + [263] = {.lex_state = 115, .external_lex_state = 2}, + [264] = {.lex_state = 115, .external_lex_state = 2}, + [265] = {.lex_state = 115, .external_lex_state = 2}, + [266] = {.lex_state = 121, .external_lex_state = 2}, + [267] = {.lex_state = 115, .external_lex_state = 2}, + [268] = {.lex_state = 115, .external_lex_state = 2}, + [269] = {.lex_state = 115, .external_lex_state = 2}, + [270] = {.lex_state = 115, .external_lex_state = 2}, + [271] = {.lex_state = 115, .external_lex_state = 2}, + [272] = {.lex_state = 121, .external_lex_state = 2}, + [273] = {.lex_state = 115, .external_lex_state = 2}, + [274] = {.lex_state = 115, .external_lex_state = 2}, + [275] = {.lex_state = 115, .external_lex_state = 2}, + [276] = {.lex_state = 115, .external_lex_state = 2}, + [277] = {.lex_state = 115, .external_lex_state = 2}, + [278] = {.lex_state = 121, .external_lex_state = 2}, + [279] = {.lex_state = 115, .external_lex_state = 2}, + [280] = {.lex_state = 115, .external_lex_state = 2}, + [281] = {.lex_state = 115, .external_lex_state = 2}, + [282] = {.lex_state = 115, .external_lex_state = 2}, + [283] = {.lex_state = 115, .external_lex_state = 2}, [284] = {.lex_state = 121, .external_lex_state = 2}, - [285] = {.lex_state = 117, .external_lex_state = 2}, - [286] = {.lex_state = 117, .external_lex_state = 2}, - [287] = {.lex_state = 117, .external_lex_state = 2}, - [288] = {.lex_state = 117, .external_lex_state = 2}, - [289] = {.lex_state = 117, .external_lex_state = 2}, - [290] = {.lex_state = 121, .external_lex_state = 2}, - [291] = {.lex_state = 117, .external_lex_state = 2}, - [292] = {.lex_state = 117, .external_lex_state = 2}, - [293] = {.lex_state = 117, .external_lex_state = 2}, - [294] = {.lex_state = 117, .external_lex_state = 2}, + [285] = {.lex_state = 115, .external_lex_state = 2}, + [286] = {.lex_state = 115, .external_lex_state = 2}, + [287] = {.lex_state = 115, .external_lex_state = 2}, + [288] = {.lex_state = 121, .external_lex_state = 2}, + [289] = {.lex_state = 115, .external_lex_state = 2}, + [290] = {.lex_state = 115, .external_lex_state = 2}, + [291] = {.lex_state = 121, .external_lex_state = 2}, + [292] = {.lex_state = 115, .external_lex_state = 2}, + [293] = {.lex_state = 115, .external_lex_state = 2}, + [294] = {.lex_state = 115, .external_lex_state = 2}, [295] = {.lex_state = 121, .external_lex_state = 2}, [296] = {.lex_state = 121, .external_lex_state = 2}, - [297] = {.lex_state = 117, .external_lex_state = 2}, - [298] = {.lex_state = 117, .external_lex_state = 2}, - [299] = {.lex_state = 117, .external_lex_state = 2}, - [300] = {.lex_state = 117, .external_lex_state = 2}, - [301] = {.lex_state = 117, .external_lex_state = 2}, - [302] = {.lex_state = 117, .external_lex_state = 2}, - [303] = {.lex_state = 117, .external_lex_state = 2}, - [304] = {.lex_state = 117, .external_lex_state = 2}, - [305] = {.lex_state = 117, .external_lex_state = 2}, - [306] = {.lex_state = 117, .external_lex_state = 2}, - [307] = {.lex_state = 117, .external_lex_state = 2}, - [308] = {.lex_state = 117, .external_lex_state = 2}, - [309] = {.lex_state = 117, .external_lex_state = 2}, - [310] = {.lex_state = 117, .external_lex_state = 2}, - [311] = {.lex_state = 117, .external_lex_state = 2}, - [312] = {.lex_state = 117, .external_lex_state = 2}, - [313] = {.lex_state = 117, .external_lex_state = 2}, - [314] = {.lex_state = 117, .external_lex_state = 2}, - [315] = {.lex_state = 117, .external_lex_state = 2}, - [316] = {.lex_state = 117, .external_lex_state = 2}, - [317] = {.lex_state = 117, .external_lex_state = 2}, - [318] = {.lex_state = 117, .external_lex_state = 2}, - [319] = {.lex_state = 117, .external_lex_state = 2}, - [320] = {.lex_state = 117, .external_lex_state = 2}, - [321] = {.lex_state = 117, .external_lex_state = 2}, - [322] = {.lex_state = 117, .external_lex_state = 2}, - [323] = {.lex_state = 117, .external_lex_state = 2}, - [324] = {.lex_state = 117, .external_lex_state = 2}, - [325] = {.lex_state = 117, .external_lex_state = 2}, - [326] = {.lex_state = 117, .external_lex_state = 2}, - [327] = {.lex_state = 117, .external_lex_state = 2}, - [328] = {.lex_state = 117, .external_lex_state = 2}, - [329] = {.lex_state = 117, .external_lex_state = 2}, - [330] = {.lex_state = 117, .external_lex_state = 2}, - [331] = {.lex_state = 117, .external_lex_state = 2}, - [332] = {.lex_state = 117, .external_lex_state = 2}, - [333] = {.lex_state = 117, .external_lex_state = 2}, - [334] = {.lex_state = 117, .external_lex_state = 2}, - [335] = {.lex_state = 117, .external_lex_state = 2}, - [336] = {.lex_state = 117, .external_lex_state = 2}, - [337] = {.lex_state = 117, .external_lex_state = 2}, - [338] = {.lex_state = 117, .external_lex_state = 2}, - [339] = {.lex_state = 117, .external_lex_state = 2}, - [340] = {.lex_state = 117, .external_lex_state = 2}, - [341] = {.lex_state = 117, .external_lex_state = 2}, - [342] = {.lex_state = 117, .external_lex_state = 2}, - [343] = {.lex_state = 117, .external_lex_state = 2}, - [344] = {.lex_state = 117, .external_lex_state = 2}, - [345] = {.lex_state = 117, .external_lex_state = 2}, - [346] = {.lex_state = 117, .external_lex_state = 2}, - [347] = {.lex_state = 117, .external_lex_state = 2}, - [348] = {.lex_state = 117, .external_lex_state = 2}, - [349] = {.lex_state = 117, .external_lex_state = 2}, - [350] = {.lex_state = 117, .external_lex_state = 2}, - [351] = {.lex_state = 117, .external_lex_state = 2}, - [352] = {.lex_state = 117, .external_lex_state = 2}, - [353] = {.lex_state = 117, .external_lex_state = 2}, - [354] = {.lex_state = 117, .external_lex_state = 2}, - [355] = {.lex_state = 117, .external_lex_state = 2}, - [356] = {.lex_state = 117, .external_lex_state = 2}, - [357] = {.lex_state = 117, .external_lex_state = 2}, - [358] = {.lex_state = 117, .external_lex_state = 2}, - [359] = {.lex_state = 117, .external_lex_state = 2}, - [360] = {.lex_state = 117, .external_lex_state = 2}, - [361] = {.lex_state = 117, .external_lex_state = 2}, - [362] = {.lex_state = 117, .external_lex_state = 2}, - [363] = {.lex_state = 117, .external_lex_state = 2}, - [364] = {.lex_state = 117, .external_lex_state = 2}, - [365] = {.lex_state = 117, .external_lex_state = 2}, - [366] = {.lex_state = 117, .external_lex_state = 2}, - [367] = {.lex_state = 117, .external_lex_state = 2}, - [368] = {.lex_state = 117, .external_lex_state = 2}, - [369] = {.lex_state = 117, .external_lex_state = 2}, - [370] = {.lex_state = 117, .external_lex_state = 2}, - [371] = {.lex_state = 117, .external_lex_state = 2}, - [372] = {.lex_state = 117, .external_lex_state = 2}, - [373] = {.lex_state = 117, .external_lex_state = 2}, - [374] = {.lex_state = 117, .external_lex_state = 2}, - [375] = {.lex_state = 117, .external_lex_state = 2}, - [376] = {.lex_state = 117, .external_lex_state = 2}, - [377] = {.lex_state = 117, .external_lex_state = 2}, - [378] = {.lex_state = 117, .external_lex_state = 2}, - [379] = {.lex_state = 117, .external_lex_state = 2}, - [380] = {.lex_state = 117, .external_lex_state = 2}, - [381] = {.lex_state = 117, .external_lex_state = 2}, - [382] = {.lex_state = 117, .external_lex_state = 2}, - [383] = {.lex_state = 117, .external_lex_state = 2}, - [384] = {.lex_state = 117, .external_lex_state = 2}, + [297] = {.lex_state = 115, .external_lex_state = 2}, + [298] = {.lex_state = 115, .external_lex_state = 2}, + [299] = {.lex_state = 115, .external_lex_state = 2}, + [300] = {.lex_state = 115, .external_lex_state = 2}, + [301] = {.lex_state = 115, .external_lex_state = 2}, + [302] = {.lex_state = 115, .external_lex_state = 2}, + [303] = {.lex_state = 115, .external_lex_state = 2}, + [304] = {.lex_state = 115, .external_lex_state = 2}, + [305] = {.lex_state = 115, .external_lex_state = 2}, + [306] = {.lex_state = 115, .external_lex_state = 2}, + [307] = {.lex_state = 115, .external_lex_state = 2}, + [308] = {.lex_state = 115, .external_lex_state = 2}, + [309] = {.lex_state = 115, .external_lex_state = 2}, + [310] = {.lex_state = 115, .external_lex_state = 2}, + [311] = {.lex_state = 115, .external_lex_state = 2}, + [312] = {.lex_state = 115, .external_lex_state = 2}, + [313] = {.lex_state = 115, .external_lex_state = 2}, + [314] = {.lex_state = 115, .external_lex_state = 2}, + [315] = {.lex_state = 115, .external_lex_state = 2}, + [316] = {.lex_state = 115, .external_lex_state = 2}, + [317] = {.lex_state = 115, .external_lex_state = 2}, + [318] = {.lex_state = 115, .external_lex_state = 2}, + [319] = {.lex_state = 115, .external_lex_state = 2}, + [320] = {.lex_state = 115, .external_lex_state = 2}, + [321] = {.lex_state = 115, .external_lex_state = 2}, + [322] = {.lex_state = 115, .external_lex_state = 2}, + [323] = {.lex_state = 115, .external_lex_state = 2}, + [324] = {.lex_state = 115, .external_lex_state = 2}, + [325] = {.lex_state = 115, .external_lex_state = 2}, + [326] = {.lex_state = 115, .external_lex_state = 2}, + [327] = {.lex_state = 115, .external_lex_state = 2}, + [328] = {.lex_state = 115, .external_lex_state = 2}, + [329] = {.lex_state = 115, .external_lex_state = 2}, + [330] = {.lex_state = 115, .external_lex_state = 2}, + [331] = {.lex_state = 115, .external_lex_state = 2}, + [332] = {.lex_state = 115, .external_lex_state = 2}, + [333] = {.lex_state = 115, .external_lex_state = 2}, + [334] = {.lex_state = 115, .external_lex_state = 2}, + [335] = {.lex_state = 115, .external_lex_state = 2}, + [336] = {.lex_state = 115, .external_lex_state = 2}, + [337] = {.lex_state = 115, .external_lex_state = 2}, + [338] = {.lex_state = 115, .external_lex_state = 2}, + [339] = {.lex_state = 115, .external_lex_state = 2}, + [340] = {.lex_state = 115, .external_lex_state = 2}, + [341] = {.lex_state = 115, .external_lex_state = 2}, + [342] = {.lex_state = 115, .external_lex_state = 2}, + [343] = {.lex_state = 115, .external_lex_state = 2}, + [344] = {.lex_state = 115, .external_lex_state = 2}, + [345] = {.lex_state = 115, .external_lex_state = 2}, + [346] = {.lex_state = 115, .external_lex_state = 2}, + [347] = {.lex_state = 115, .external_lex_state = 2}, + [348] = {.lex_state = 115, .external_lex_state = 2}, + [349] = {.lex_state = 115, .external_lex_state = 2}, + [350] = {.lex_state = 115, .external_lex_state = 2}, + [351] = {.lex_state = 115, .external_lex_state = 2}, + [352] = {.lex_state = 115, .external_lex_state = 2}, + [353] = {.lex_state = 115, .external_lex_state = 2}, + [354] = {.lex_state = 115, .external_lex_state = 2}, + [355] = {.lex_state = 115, .external_lex_state = 2}, + [356] = {.lex_state = 115, .external_lex_state = 2}, + [357] = {.lex_state = 115, .external_lex_state = 2}, + [358] = {.lex_state = 115, .external_lex_state = 2}, + [359] = {.lex_state = 115, .external_lex_state = 2}, + [360] = {.lex_state = 115, .external_lex_state = 2}, + [361] = {.lex_state = 115, .external_lex_state = 2}, + [362] = {.lex_state = 115, .external_lex_state = 2}, + [363] = {.lex_state = 115, .external_lex_state = 2}, + [364] = {.lex_state = 115, .external_lex_state = 2}, + [365] = {.lex_state = 115, .external_lex_state = 2}, + [366] = {.lex_state = 115, .external_lex_state = 2}, + [367] = {.lex_state = 115, .external_lex_state = 2}, + [368] = {.lex_state = 115, .external_lex_state = 2}, + [369] = {.lex_state = 115, .external_lex_state = 2}, + [370] = {.lex_state = 115, .external_lex_state = 2}, + [371] = {.lex_state = 115, .external_lex_state = 2}, + [372] = {.lex_state = 115, .external_lex_state = 2}, + [373] = {.lex_state = 115, .external_lex_state = 2}, + [374] = {.lex_state = 115, .external_lex_state = 2}, + [375] = {.lex_state = 115, .external_lex_state = 2}, + [376] = {.lex_state = 115, .external_lex_state = 2}, + [377] = {.lex_state = 115, .external_lex_state = 2}, + [378] = {.lex_state = 115, .external_lex_state = 2}, + [379] = {.lex_state = 115, .external_lex_state = 2}, + [380] = {.lex_state = 115, .external_lex_state = 2}, + [381] = {.lex_state = 115, .external_lex_state = 2}, + [382] = {.lex_state = 115, .external_lex_state = 2}, + [383] = {.lex_state = 115, .external_lex_state = 2}, + [384] = {.lex_state = 115, .external_lex_state = 2}, [385] = {.lex_state = 119, .external_lex_state = 2}, [386] = {.lex_state = 119, .external_lex_state = 2}, [387] = {.lex_state = 119, .external_lex_state = 2}, [388] = {.lex_state = 119, .external_lex_state = 2}, - [389] = {.lex_state = 123, .external_lex_state = 2}, + [389] = {.lex_state = 119, .external_lex_state = 2}, [390] = {.lex_state = 119, .external_lex_state = 2}, - [391] = {.lex_state = 119, .external_lex_state = 2}, - [392] = {.lex_state = 123, .external_lex_state = 2}, - [393] = {.lex_state = 314, .external_lex_state = 2}, + [391] = {.lex_state = 318, .external_lex_state = 2}, + [392] = {.lex_state = 318, .external_lex_state = 2}, + [393] = {.lex_state = 123, .external_lex_state = 2}, [394] = {.lex_state = 119, .external_lex_state = 2}, [395] = {.lex_state = 119, .external_lex_state = 2}, - [396] = {.lex_state = 119, .external_lex_state = 2}, + [396] = {.lex_state = 123, .external_lex_state = 2}, [397] = {.lex_state = 119, .external_lex_state = 2}, [398] = {.lex_state = 119, .external_lex_state = 2}, [399] = {.lex_state = 119, .external_lex_state = 2}, [400] = {.lex_state = 119, .external_lex_state = 2}, - [401] = {.lex_state = 314, .external_lex_state = 2}, + [401] = {.lex_state = 119, .external_lex_state = 2}, [402] = {.lex_state = 119, .external_lex_state = 2}, [403] = {.lex_state = 119, .external_lex_state = 2}, [404] = {.lex_state = 119, .external_lex_state = 2}, - [405] = {.lex_state = 314, .external_lex_state = 2}, - [406] = {.lex_state = 314, .external_lex_state = 2}, + [405] = {.lex_state = 123, .external_lex_state = 2}, + [406] = {.lex_state = 318, .external_lex_state = 2}, [407] = {.lex_state = 123, .external_lex_state = 2}, - [408] = {.lex_state = 123, .external_lex_state = 2}, + [408] = {.lex_state = 318, .external_lex_state = 2}, [409] = {.lex_state = 123, .external_lex_state = 2}, - [410] = {.lex_state = 314, .external_lex_state = 2}, - [411] = {.lex_state = 314, .external_lex_state = 2}, + [410] = {.lex_state = 318, .external_lex_state = 2}, + [411] = {.lex_state = 318, .external_lex_state = 2}, [412] = {.lex_state = 123, .external_lex_state = 2}, - [413] = {.lex_state = 314, .external_lex_state = 2}, - [414] = {.lex_state = 314, .external_lex_state = 2}, - [415] = {.lex_state = 314, .external_lex_state = 2}, - [416] = {.lex_state = 314, .external_lex_state = 2}, - [417] = {.lex_state = 314, .external_lex_state = 2}, - [418] = {.lex_state = 314, .external_lex_state = 2}, - [419] = {.lex_state = 314, .external_lex_state = 2}, - [420] = {.lex_state = 314, .external_lex_state = 2}, - [421] = {.lex_state = 314, .external_lex_state = 2}, - [422] = {.lex_state = 314, .external_lex_state = 2}, - [423] = {.lex_state = 314, .external_lex_state = 2}, - [424] = {.lex_state = 314, .external_lex_state = 2}, - [425] = {.lex_state = 314, .external_lex_state = 2}, - [426] = {.lex_state = 314, .external_lex_state = 2}, - [427] = {.lex_state = 314, .external_lex_state = 2}, - [428] = {.lex_state = 314, .external_lex_state = 2}, - [429] = {.lex_state = 314, .external_lex_state = 2}, - [430] = {.lex_state = 314, .external_lex_state = 2}, - [431] = {.lex_state = 314, .external_lex_state = 2}, - [432] = {.lex_state = 314, .external_lex_state = 2}, - [433] = {.lex_state = 314, .external_lex_state = 2}, - [434] = {.lex_state = 314, .external_lex_state = 2}, - [435] = {.lex_state = 314, .external_lex_state = 2}, - [436] = {.lex_state = 314, .external_lex_state = 2}, - [437] = {.lex_state = 314, .external_lex_state = 2}, - [438] = {.lex_state = 314, .external_lex_state = 2}, - [439] = {.lex_state = 314, .external_lex_state = 2}, - [440] = {.lex_state = 314, .external_lex_state = 2}, - [441] = {.lex_state = 314, .external_lex_state = 2}, - [442] = {.lex_state = 314, .external_lex_state = 2}, - [443] = {.lex_state = 314, .external_lex_state = 2}, - [444] = {.lex_state = 314, .external_lex_state = 2}, - [445] = {.lex_state = 314, .external_lex_state = 2}, - [446] = {.lex_state = 314, .external_lex_state = 2}, - [447] = {.lex_state = 314, .external_lex_state = 2}, - [448] = {.lex_state = 314, .external_lex_state = 2}, - [449] = {.lex_state = 314, .external_lex_state = 2}, - [450] = {.lex_state = 314, .external_lex_state = 2}, - [451] = {.lex_state = 314, .external_lex_state = 2}, - [452] = {.lex_state = 314, .external_lex_state = 2}, - [453] = {.lex_state = 314, .external_lex_state = 2}, - [454] = {.lex_state = 314, .external_lex_state = 2}, - [455] = {.lex_state = 314, .external_lex_state = 2}, - [456] = {.lex_state = 314, .external_lex_state = 2}, - [457] = {.lex_state = 314, .external_lex_state = 2}, - [458] = {.lex_state = 314, .external_lex_state = 2}, - [459] = {.lex_state = 314, .external_lex_state = 2}, - [460] = {.lex_state = 314, .external_lex_state = 2}, - [461] = {.lex_state = 314, .external_lex_state = 2}, - [462] = {.lex_state = 314, .external_lex_state = 2}, - [463] = {.lex_state = 314, .external_lex_state = 2}, - [464] = {.lex_state = 314, .external_lex_state = 2}, - [465] = {.lex_state = 314, .external_lex_state = 2}, - [466] = {.lex_state = 314, .external_lex_state = 2}, - [467] = {.lex_state = 314, .external_lex_state = 2}, - [468] = {.lex_state = 314, .external_lex_state = 2}, - [469] = {.lex_state = 314, .external_lex_state = 2}, - [470] = {.lex_state = 314, .external_lex_state = 2}, - [471] = {.lex_state = 314, .external_lex_state = 2}, - [472] = {.lex_state = 314, .external_lex_state = 2}, - [473] = {.lex_state = 314, .external_lex_state = 2}, - [474] = {.lex_state = 314, .external_lex_state = 2}, - [475] = {.lex_state = 314, .external_lex_state = 2}, - [476] = {.lex_state = 314, .external_lex_state = 2}, - [477] = {.lex_state = 314, .external_lex_state = 2}, - [478] = {.lex_state = 314, .external_lex_state = 2}, - [479] = {.lex_state = 314, .external_lex_state = 2}, - [480] = {.lex_state = 314, .external_lex_state = 2}, - [481] = {.lex_state = 314, .external_lex_state = 2}, - [482] = {.lex_state = 314, .external_lex_state = 2}, - [483] = {.lex_state = 314, .external_lex_state = 2}, - [484] = {.lex_state = 314, .external_lex_state = 2}, - [485] = {.lex_state = 314, .external_lex_state = 2}, - [486] = {.lex_state = 314, .external_lex_state = 2}, - [487] = {.lex_state = 314, .external_lex_state = 2}, - [488] = {.lex_state = 314, .external_lex_state = 2}, - [489] = {.lex_state = 314, .external_lex_state = 2}, - [490] = {.lex_state = 314, .external_lex_state = 2}, - [491] = {.lex_state = 314, .external_lex_state = 2}, - [492] = {.lex_state = 314, .external_lex_state = 2}, - [493] = {.lex_state = 314, .external_lex_state = 2}, - [494] = {.lex_state = 314, .external_lex_state = 2}, - [495] = {.lex_state = 314, .external_lex_state = 2}, - [496] = {.lex_state = 314, .external_lex_state = 2}, - [497] = {.lex_state = 314, .external_lex_state = 2}, - [498] = {.lex_state = 314, .external_lex_state = 2}, - [499] = {.lex_state = 314, .external_lex_state = 2}, - [500] = {.lex_state = 314, .external_lex_state = 2}, - [501] = {.lex_state = 314, .external_lex_state = 2}, - [502] = {.lex_state = 314, .external_lex_state = 2}, - [503] = {.lex_state = 314, .external_lex_state = 2}, - [504] = {.lex_state = 314, .external_lex_state = 2}, - [505] = {.lex_state = 314, .external_lex_state = 2}, - [506] = {.lex_state = 314, .external_lex_state = 2}, - [507] = {.lex_state = 314, .external_lex_state = 2}, - [508] = {.lex_state = 314, .external_lex_state = 2}, - [509] = {.lex_state = 314, .external_lex_state = 2}, - [510] = {.lex_state = 314, .external_lex_state = 2}, - [511] = {.lex_state = 314, .external_lex_state = 2}, - [512] = {.lex_state = 314, .external_lex_state = 2}, - [513] = {.lex_state = 314, .external_lex_state = 2}, - [514] = {.lex_state = 314, .external_lex_state = 2}, - [515] = {.lex_state = 314, .external_lex_state = 2}, - [516] = {.lex_state = 314, .external_lex_state = 2}, - [517] = {.lex_state = 314, .external_lex_state = 2}, - [518] = {.lex_state = 314, .external_lex_state = 2}, - [519] = {.lex_state = 314, .external_lex_state = 2}, - [520] = {.lex_state = 314, .external_lex_state = 2}, - [521] = {.lex_state = 314, .external_lex_state = 2}, - [522] = {.lex_state = 314, .external_lex_state = 2}, - [523] = {.lex_state = 314, .external_lex_state = 2}, - [524] = {.lex_state = 314, .external_lex_state = 2}, - [525] = {.lex_state = 314, .external_lex_state = 2}, - [526] = {.lex_state = 314, .external_lex_state = 2}, - [527] = {.lex_state = 314, .external_lex_state = 2}, - [528] = {.lex_state = 314, .external_lex_state = 2}, - [529] = {.lex_state = 314, .external_lex_state = 2}, - [530] = {.lex_state = 314, .external_lex_state = 2}, - [531] = {.lex_state = 314, .external_lex_state = 2}, - [532] = {.lex_state = 314, .external_lex_state = 2}, - [533] = {.lex_state = 314, .external_lex_state = 2}, - [534] = {.lex_state = 314, .external_lex_state = 2}, - [535] = {.lex_state = 314, .external_lex_state = 2}, - [536] = {.lex_state = 314, .external_lex_state = 2}, - [537] = {.lex_state = 314, .external_lex_state = 2}, - [538] = {.lex_state = 314, .external_lex_state = 2}, - [539] = {.lex_state = 314, .external_lex_state = 2}, - [540] = {.lex_state = 314, .external_lex_state = 2}, - [541] = {.lex_state = 314, .external_lex_state = 2}, - [542] = {.lex_state = 314, .external_lex_state = 2}, - [543] = {.lex_state = 314, .external_lex_state = 2}, - [544] = {.lex_state = 314, .external_lex_state = 2}, - [545] = {.lex_state = 314, .external_lex_state = 2}, - [546] = {.lex_state = 314, .external_lex_state = 2}, - [547] = {.lex_state = 314, .external_lex_state = 2}, - [548] = {.lex_state = 314, .external_lex_state = 2}, - [549] = {.lex_state = 314, .external_lex_state = 2}, - [550] = {.lex_state = 314, .external_lex_state = 2}, - [551] = {.lex_state = 314, .external_lex_state = 2}, - [552] = {.lex_state = 314, .external_lex_state = 2}, - [553] = {.lex_state = 314, .external_lex_state = 2}, - [554] = {.lex_state = 314, .external_lex_state = 2}, - [555] = {.lex_state = 314, .external_lex_state = 2}, - [556] = {.lex_state = 314, .external_lex_state = 2}, - [557] = {.lex_state = 314, .external_lex_state = 2}, - [558] = {.lex_state = 314, .external_lex_state = 2}, - [559] = {.lex_state = 314, .external_lex_state = 2}, - [560] = {.lex_state = 314, .external_lex_state = 2}, - [561] = {.lex_state = 314, .external_lex_state = 2}, - [562] = {.lex_state = 314, .external_lex_state = 2}, - [563] = {.lex_state = 314, .external_lex_state = 2}, - [564] = {.lex_state = 314, .external_lex_state = 2}, - [565] = {.lex_state = 314, .external_lex_state = 2}, - [566] = {.lex_state = 314, .external_lex_state = 2}, - [567] = {.lex_state = 314, .external_lex_state = 2}, - [568] = {.lex_state = 314, .external_lex_state = 2}, - [569] = {.lex_state = 314, .external_lex_state = 2}, - [570] = {.lex_state = 314, .external_lex_state = 2}, - [571] = {.lex_state = 314, .external_lex_state = 2}, - [572] = {.lex_state = 314, .external_lex_state = 2}, - [573] = {.lex_state = 314, .external_lex_state = 2}, - [574] = {.lex_state = 314, .external_lex_state = 2}, - [575] = {.lex_state = 314, .external_lex_state = 2}, - [576] = {.lex_state = 314, .external_lex_state = 2}, - [577] = {.lex_state = 314, .external_lex_state = 2}, - [578] = {.lex_state = 314, .external_lex_state = 2}, - [579] = {.lex_state = 314, .external_lex_state = 2}, - [580] = {.lex_state = 314, .external_lex_state = 2}, - [581] = {.lex_state = 314, .external_lex_state = 2}, - [582] = {.lex_state = 314, .external_lex_state = 2}, - [583] = {.lex_state = 314, .external_lex_state = 2}, - [584] = {.lex_state = 314, .external_lex_state = 2}, - [585] = {.lex_state = 314, .external_lex_state = 2}, - [586] = {.lex_state = 314, .external_lex_state = 2}, - [587] = {.lex_state = 314, .external_lex_state = 2}, - [588] = {.lex_state = 314, .external_lex_state = 2}, - [589] = {.lex_state = 314, .external_lex_state = 2}, - [590] = {.lex_state = 314, .external_lex_state = 2}, - [591] = {.lex_state = 314, .external_lex_state = 2}, - [592] = {.lex_state = 314, .external_lex_state = 2}, - [593] = {.lex_state = 314, .external_lex_state = 2}, - [594] = {.lex_state = 314, .external_lex_state = 2}, - [595] = {.lex_state = 314, .external_lex_state = 2}, - [596] = {.lex_state = 314, .external_lex_state = 2}, - [597] = {.lex_state = 314, .external_lex_state = 2}, - [598] = {.lex_state = 314, .external_lex_state = 2}, - [599] = {.lex_state = 314, .external_lex_state = 2}, - [600] = {.lex_state = 314, .external_lex_state = 2}, - [601] = {.lex_state = 314, .external_lex_state = 2}, - [602] = {.lex_state = 314, .external_lex_state = 2}, - [603] = {.lex_state = 314, .external_lex_state = 2}, - [604] = {.lex_state = 314, .external_lex_state = 2}, - [605] = {.lex_state = 314, .external_lex_state = 2}, - [606] = {.lex_state = 314, .external_lex_state = 2}, - [607] = {.lex_state = 314, .external_lex_state = 2}, - [608] = {.lex_state = 314, .external_lex_state = 2}, - [609] = {.lex_state = 314, .external_lex_state = 2}, - [610] = {.lex_state = 314, .external_lex_state = 2}, - [611] = {.lex_state = 314, .external_lex_state = 2}, - [612] = {.lex_state = 314, .external_lex_state = 2}, - [613] = {.lex_state = 314, .external_lex_state = 2}, - [614] = {.lex_state = 314, .external_lex_state = 2}, - [615] = {.lex_state = 314, .external_lex_state = 2}, - [616] = {.lex_state = 314, .external_lex_state = 2}, - [617] = {.lex_state = 314, .external_lex_state = 2}, - [618] = {.lex_state = 314, .external_lex_state = 2}, - [619] = {.lex_state = 314, .external_lex_state = 2}, - [620] = {.lex_state = 314, .external_lex_state = 2}, - [621] = {.lex_state = 314, .external_lex_state = 2}, - [622] = {.lex_state = 314, .external_lex_state = 2}, - [623] = {.lex_state = 314, .external_lex_state = 2}, - [624] = {.lex_state = 314, .external_lex_state = 2}, - [625] = {.lex_state = 314, .external_lex_state = 2}, - [626] = {.lex_state = 314, .external_lex_state = 2}, - [627] = {.lex_state = 314, .external_lex_state = 2}, - [628] = {.lex_state = 314, .external_lex_state = 2}, - [629] = {.lex_state = 314, .external_lex_state = 2}, - [630] = {.lex_state = 314, .external_lex_state = 2}, - [631] = {.lex_state = 314, .external_lex_state = 2}, - [632] = {.lex_state = 314, .external_lex_state = 2}, - [633] = {.lex_state = 314, .external_lex_state = 2}, - [634] = {.lex_state = 314, .external_lex_state = 2}, - [635] = {.lex_state = 314, .external_lex_state = 2}, - [636] = {.lex_state = 314, .external_lex_state = 2}, - [637] = {.lex_state = 314, .external_lex_state = 2}, - [638] = {.lex_state = 314, .external_lex_state = 2}, - [639] = {.lex_state = 314, .external_lex_state = 2}, - [640] = {.lex_state = 314, .external_lex_state = 2}, - [641] = {.lex_state = 314, .external_lex_state = 2}, - [642] = {.lex_state = 314, .external_lex_state = 2}, - [643] = {.lex_state = 314, .external_lex_state = 2}, - [644] = {.lex_state = 314, .external_lex_state = 2}, - [645] = {.lex_state = 314, .external_lex_state = 2}, - [646] = {.lex_state = 314, .external_lex_state = 2}, - [647] = {.lex_state = 314, .external_lex_state = 2}, - [648] = {.lex_state = 314, .external_lex_state = 2}, - [649] = {.lex_state = 314, .external_lex_state = 2}, - [650] = {.lex_state = 314, .external_lex_state = 2}, - [651] = {.lex_state = 314, .external_lex_state = 2}, - [652] = {.lex_state = 314, .external_lex_state = 2}, - [653] = {.lex_state = 314, .external_lex_state = 2}, - [654] = {.lex_state = 314, .external_lex_state = 2}, - [655] = {.lex_state = 314, .external_lex_state = 2}, - [656] = {.lex_state = 314, .external_lex_state = 2}, - [657] = {.lex_state = 314, .external_lex_state = 2}, - [658] = {.lex_state = 314, .external_lex_state = 2}, - [659] = {.lex_state = 314, .external_lex_state = 2}, - [660] = {.lex_state = 314, .external_lex_state = 2}, - [661] = {.lex_state = 314, .external_lex_state = 2}, - [662] = {.lex_state = 314, .external_lex_state = 2}, - [663] = {.lex_state = 314, .external_lex_state = 2}, - [664] = {.lex_state = 314, .external_lex_state = 2}, - [665] = {.lex_state = 314, .external_lex_state = 2}, - [666] = {.lex_state = 314, .external_lex_state = 2}, - [667] = {.lex_state = 314, .external_lex_state = 2}, - [668] = {.lex_state = 314, .external_lex_state = 2}, - [669] = {.lex_state = 314, .external_lex_state = 2}, - [670] = {.lex_state = 314, .external_lex_state = 2}, - [671] = {.lex_state = 314, .external_lex_state = 2}, - [672] = {.lex_state = 314, .external_lex_state = 2}, - [673] = {.lex_state = 314, .external_lex_state = 2}, - [674] = {.lex_state = 314, .external_lex_state = 2}, - [675] = {.lex_state = 314, .external_lex_state = 2}, - [676] = {.lex_state = 314, .external_lex_state = 2}, - [677] = {.lex_state = 314, .external_lex_state = 2}, - [678] = {.lex_state = 314, .external_lex_state = 2}, - [679] = {.lex_state = 314, .external_lex_state = 2}, - [680] = {.lex_state = 314, .external_lex_state = 2}, - [681] = {.lex_state = 314, .external_lex_state = 2}, - [682] = {.lex_state = 314, .external_lex_state = 2}, - [683] = {.lex_state = 314, .external_lex_state = 2}, - [684] = {.lex_state = 314, .external_lex_state = 2}, - [685] = {.lex_state = 314, .external_lex_state = 2}, - [686] = {.lex_state = 314, .external_lex_state = 2}, - [687] = {.lex_state = 314, .external_lex_state = 2}, - [688] = {.lex_state = 314, .external_lex_state = 2}, - [689] = {.lex_state = 314, .external_lex_state = 2}, - [690] = {.lex_state = 314, .external_lex_state = 2}, - [691] = {.lex_state = 314, .external_lex_state = 2}, - [692] = {.lex_state = 314, .external_lex_state = 2}, - [693] = {.lex_state = 314, .external_lex_state = 2}, - [694] = {.lex_state = 314, .external_lex_state = 2}, - [695] = {.lex_state = 314, .external_lex_state = 2}, - [696] = {.lex_state = 314, .external_lex_state = 2}, - [697] = {.lex_state = 314, .external_lex_state = 2}, - [698] = {.lex_state = 314, .external_lex_state = 2}, - [699] = {.lex_state = 314, .external_lex_state = 2}, - [700] = {.lex_state = 314, .external_lex_state = 2}, - [701] = {.lex_state = 314, .external_lex_state = 2}, - [702] = {.lex_state = 314, .external_lex_state = 2}, - [703] = {.lex_state = 314, .external_lex_state = 2}, - [704] = {.lex_state = 314, .external_lex_state = 2}, - [705] = {.lex_state = 314, .external_lex_state = 2}, - [706] = {.lex_state = 314, .external_lex_state = 2}, - [707] = {.lex_state = 314, .external_lex_state = 2}, - [708] = {.lex_state = 314, .external_lex_state = 2}, - [709] = {.lex_state = 314, .external_lex_state = 2}, - [710] = {.lex_state = 314, .external_lex_state = 2}, - [711] = {.lex_state = 314, .external_lex_state = 2}, - [712] = {.lex_state = 314, .external_lex_state = 2}, - [713] = {.lex_state = 314, .external_lex_state = 2}, - [714] = {.lex_state = 314, .external_lex_state = 2}, - [715] = {.lex_state = 314, .external_lex_state = 2}, - [716] = {.lex_state = 314, .external_lex_state = 2}, - [717] = {.lex_state = 314, .external_lex_state = 2}, - [718] = {.lex_state = 314, .external_lex_state = 2}, - [719] = {.lex_state = 314, .external_lex_state = 2}, - [720] = {.lex_state = 314, .external_lex_state = 2}, - [721] = {.lex_state = 314, .external_lex_state = 2}, - [722] = {.lex_state = 314, .external_lex_state = 2}, - [723] = {.lex_state = 314, .external_lex_state = 2}, - [724] = {.lex_state = 314, .external_lex_state = 2}, - [725] = {.lex_state = 314, .external_lex_state = 2}, - [726] = {.lex_state = 314, .external_lex_state = 2}, - [727] = {.lex_state = 314, .external_lex_state = 2}, - [728] = {.lex_state = 314, .external_lex_state = 2}, - [729] = {.lex_state = 314, .external_lex_state = 2}, - [730] = {.lex_state = 314, .external_lex_state = 2}, - [731] = {.lex_state = 314, .external_lex_state = 2}, - [732] = {.lex_state = 314, .external_lex_state = 2}, - [733] = {.lex_state = 314, .external_lex_state = 2}, - [734] = {.lex_state = 314, .external_lex_state = 2}, - [735] = {.lex_state = 314, .external_lex_state = 2}, - [736] = {.lex_state = 314, .external_lex_state = 2}, - [737] = {.lex_state = 314, .external_lex_state = 2}, - [738] = {.lex_state = 314, .external_lex_state = 2}, - [739] = {.lex_state = 314, .external_lex_state = 2}, - [740] = {.lex_state = 314, .external_lex_state = 2}, - [741] = {.lex_state = 314, .external_lex_state = 2}, - [742] = {.lex_state = 314, .external_lex_state = 2}, - [743] = {.lex_state = 314, .external_lex_state = 2}, - [744] = {.lex_state = 314, .external_lex_state = 2}, - [745] = {.lex_state = 314, .external_lex_state = 2}, - [746] = {.lex_state = 314, .external_lex_state = 2}, - [747] = {.lex_state = 314, .external_lex_state = 2}, - [748] = {.lex_state = 314, .external_lex_state = 2}, - [749] = {.lex_state = 314, .external_lex_state = 2}, - [750] = {.lex_state = 314, .external_lex_state = 2}, - [751] = {.lex_state = 314, .external_lex_state = 2}, - [752] = {.lex_state = 314, .external_lex_state = 2}, - [753] = {.lex_state = 314, .external_lex_state = 2}, - [754] = {.lex_state = 314, .external_lex_state = 2}, - [755] = {.lex_state = 314, .external_lex_state = 2}, - [756] = {.lex_state = 314, .external_lex_state = 2}, - [757] = {.lex_state = 314, .external_lex_state = 2}, - [758] = {.lex_state = 314, .external_lex_state = 2}, - [759] = {.lex_state = 314, .external_lex_state = 2}, - [760] = {.lex_state = 314, .external_lex_state = 2}, - [761] = {.lex_state = 314, .external_lex_state = 2}, - [762] = {.lex_state = 314, .external_lex_state = 2}, - [763] = {.lex_state = 314, .external_lex_state = 2}, - [764] = {.lex_state = 314, .external_lex_state = 2}, - [765] = {.lex_state = 314, .external_lex_state = 2}, - [766] = {.lex_state = 314, .external_lex_state = 2}, - [767] = {.lex_state = 314, .external_lex_state = 2}, - [768] = {.lex_state = 314, .external_lex_state = 2}, - [769] = {.lex_state = 314, .external_lex_state = 2}, - [770] = {.lex_state = 314, .external_lex_state = 2}, - [771] = {.lex_state = 314, .external_lex_state = 2}, - [772] = {.lex_state = 314, .external_lex_state = 2}, - [773] = {.lex_state = 314, .external_lex_state = 2}, - [774] = {.lex_state = 314, .external_lex_state = 2}, - [775] = {.lex_state = 314, .external_lex_state = 2}, - [776] = {.lex_state = 314, .external_lex_state = 2}, - [777] = {.lex_state = 314, .external_lex_state = 2}, - [778] = {.lex_state = 314, .external_lex_state = 2}, - [779] = {.lex_state = 314, .external_lex_state = 2}, - [780] = {.lex_state = 314, .external_lex_state = 2}, - [781] = {.lex_state = 314, .external_lex_state = 2}, - [782] = {.lex_state = 314, .external_lex_state = 2}, - [783] = {.lex_state = 314, .external_lex_state = 2}, - [784] = {.lex_state = 314, .external_lex_state = 2}, - [785] = {.lex_state = 314, .external_lex_state = 2}, - [786] = {.lex_state = 314, .external_lex_state = 2}, - [787] = {.lex_state = 314, .external_lex_state = 2}, - [788] = {.lex_state = 314, .external_lex_state = 2}, - [789] = {.lex_state = 314, .external_lex_state = 2}, - [790] = {.lex_state = 314, .external_lex_state = 2}, - [791] = {.lex_state = 314, .external_lex_state = 2}, - [792] = {.lex_state = 314, .external_lex_state = 2}, - [793] = {.lex_state = 314, .external_lex_state = 2}, - [794] = {.lex_state = 314, .external_lex_state = 2}, - [795] = {.lex_state = 314, .external_lex_state = 2}, - [796] = {.lex_state = 314, .external_lex_state = 2}, - [797] = {.lex_state = 314, .external_lex_state = 2}, - [798] = {.lex_state = 314, .external_lex_state = 2}, - [799] = {.lex_state = 314, .external_lex_state = 2}, - [800] = {.lex_state = 314, .external_lex_state = 2}, - [801] = {.lex_state = 314, .external_lex_state = 2}, - [802] = {.lex_state = 314, .external_lex_state = 2}, - [803] = {.lex_state = 314, .external_lex_state = 2}, - [804] = {.lex_state = 314, .external_lex_state = 2}, - [805] = {.lex_state = 314, .external_lex_state = 2}, - [806] = {.lex_state = 314, .external_lex_state = 2}, - [807] = {.lex_state = 314, .external_lex_state = 2}, - [808] = {.lex_state = 314, .external_lex_state = 2}, - [809] = {.lex_state = 314, .external_lex_state = 2}, - [810] = {.lex_state = 314, .external_lex_state = 2}, - [811] = {.lex_state = 314, .external_lex_state = 2}, - [812] = {.lex_state = 314, .external_lex_state = 2}, - [813] = {.lex_state = 314, .external_lex_state = 2}, - [814] = {.lex_state = 314, .external_lex_state = 2}, - [815] = {.lex_state = 314, .external_lex_state = 2}, - [816] = {.lex_state = 314, .external_lex_state = 2}, - [817] = {.lex_state = 314, .external_lex_state = 2}, - [818] = {.lex_state = 314, .external_lex_state = 2}, - [819] = {.lex_state = 314, .external_lex_state = 2}, - [820] = {.lex_state = 314, .external_lex_state = 2}, - [821] = {.lex_state = 314, .external_lex_state = 2}, - [822] = {.lex_state = 314, .external_lex_state = 2}, - [823] = {.lex_state = 314, .external_lex_state = 2}, - [824] = {.lex_state = 314, .external_lex_state = 2}, - [825] = {.lex_state = 314, .external_lex_state = 2}, - [826] = {.lex_state = 314, .external_lex_state = 2}, - [827] = {.lex_state = 314, .external_lex_state = 2}, - [828] = {.lex_state = 314, .external_lex_state = 2}, - [829] = {.lex_state = 314, .external_lex_state = 2}, - [830] = {.lex_state = 314, .external_lex_state = 2}, - [831] = {.lex_state = 314, .external_lex_state = 2}, - [832] = {.lex_state = 314, .external_lex_state = 2}, - [833] = {.lex_state = 314, .external_lex_state = 2}, - [834] = {.lex_state = 314, .external_lex_state = 2}, - [835] = {.lex_state = 314, .external_lex_state = 2}, - [836] = {.lex_state = 314, .external_lex_state = 2}, - [837] = {.lex_state = 314, .external_lex_state = 2}, - [838] = {.lex_state = 314, .external_lex_state = 2}, - [839] = {.lex_state = 314, .external_lex_state = 2}, - [840] = {.lex_state = 314, .external_lex_state = 2}, - [841] = {.lex_state = 314, .external_lex_state = 2}, - [842] = {.lex_state = 314, .external_lex_state = 2}, - [843] = {.lex_state = 314, .external_lex_state = 2}, - [844] = {.lex_state = 314, .external_lex_state = 2}, - [845] = {.lex_state = 314, .external_lex_state = 2}, - [846] = {.lex_state = 314, .external_lex_state = 2}, - [847] = {.lex_state = 314, .external_lex_state = 2}, - [848] = {.lex_state = 314, .external_lex_state = 2}, - [849] = {.lex_state = 314, .external_lex_state = 2}, - [850] = {.lex_state = 314, .external_lex_state = 2}, - [851] = {.lex_state = 314, .external_lex_state = 2}, - [852] = {.lex_state = 314, .external_lex_state = 2}, - [853] = {.lex_state = 314, .external_lex_state = 2}, - [854] = {.lex_state = 314, .external_lex_state = 2}, - [855] = {.lex_state = 314, .external_lex_state = 2}, - [856] = {.lex_state = 314, .external_lex_state = 2}, - [857] = {.lex_state = 314, .external_lex_state = 2}, - [858] = {.lex_state = 314, .external_lex_state = 2}, - [859] = {.lex_state = 314, .external_lex_state = 2}, - [860] = {.lex_state = 314, .external_lex_state = 2}, - [861] = {.lex_state = 314, .external_lex_state = 2}, - [862] = {.lex_state = 314, .external_lex_state = 2}, - [863] = {.lex_state = 314, .external_lex_state = 2}, - [864] = {.lex_state = 314, .external_lex_state = 2}, - [865] = {.lex_state = 314, .external_lex_state = 2}, - [866] = {.lex_state = 314, .external_lex_state = 2}, - [867] = {.lex_state = 314, .external_lex_state = 2}, - [868] = {.lex_state = 314, .external_lex_state = 2}, - [869] = {.lex_state = 314, .external_lex_state = 2}, - [870] = {.lex_state = 314, .external_lex_state = 2}, - [871] = {.lex_state = 314, .external_lex_state = 2}, - [872] = {.lex_state = 314, .external_lex_state = 2}, - [873] = {.lex_state = 314, .external_lex_state = 2}, - [874] = {.lex_state = 314, .external_lex_state = 2}, - [875] = {.lex_state = 314, .external_lex_state = 2}, - [876] = {.lex_state = 314, .external_lex_state = 2}, - [877] = {.lex_state = 314, .external_lex_state = 2}, - [878] = {.lex_state = 314, .external_lex_state = 2}, - [879] = {.lex_state = 314, .external_lex_state = 2}, - [880] = {.lex_state = 314, .external_lex_state = 2}, - [881] = {.lex_state = 314, .external_lex_state = 2}, - [882] = {.lex_state = 314, .external_lex_state = 2}, - [883] = {.lex_state = 314, .external_lex_state = 2}, - [884] = {.lex_state = 314, .external_lex_state = 2}, - [885] = {.lex_state = 314, .external_lex_state = 2}, - [886] = {.lex_state = 314, .external_lex_state = 2}, - [887] = {.lex_state = 314, .external_lex_state = 2}, - [888] = {.lex_state = 314, .external_lex_state = 2}, - [889] = {.lex_state = 314, .external_lex_state = 2}, - [890] = {.lex_state = 314, .external_lex_state = 2}, - [891] = {.lex_state = 314, .external_lex_state = 2}, - [892] = {.lex_state = 314, .external_lex_state = 2}, - [893] = {.lex_state = 314, .external_lex_state = 2}, - [894] = {.lex_state = 314, .external_lex_state = 2}, - [895] = {.lex_state = 314, .external_lex_state = 2}, - [896] = {.lex_state = 314, .external_lex_state = 2}, - [897] = {.lex_state = 314, .external_lex_state = 2}, - [898] = {.lex_state = 314, .external_lex_state = 2}, - [899] = {.lex_state = 314, .external_lex_state = 2}, - [900] = {.lex_state = 314, .external_lex_state = 2}, - [901] = {.lex_state = 314, .external_lex_state = 2}, - [902] = {.lex_state = 314, .external_lex_state = 2}, - [903] = {.lex_state = 314, .external_lex_state = 2}, - [904] = {.lex_state = 314, .external_lex_state = 2}, - [905] = {.lex_state = 314, .external_lex_state = 2}, - [906] = {.lex_state = 314, .external_lex_state = 2}, - [907] = {.lex_state = 314, .external_lex_state = 2}, - [908] = {.lex_state = 314, .external_lex_state = 2}, - [909] = {.lex_state = 314, .external_lex_state = 2}, - [910] = {.lex_state = 314, .external_lex_state = 2}, - [911] = {.lex_state = 314, .external_lex_state = 2}, - [912] = {.lex_state = 314, .external_lex_state = 2}, - [913] = {.lex_state = 314, .external_lex_state = 2}, - [914] = {.lex_state = 314, .external_lex_state = 2}, - [915] = {.lex_state = 314, .external_lex_state = 2}, - [916] = {.lex_state = 314, .external_lex_state = 2}, - [917] = {.lex_state = 314, .external_lex_state = 2}, - [918] = {.lex_state = 314, .external_lex_state = 2}, - [919] = {.lex_state = 314, .external_lex_state = 2}, - [920] = {.lex_state = 314, .external_lex_state = 2}, - [921] = {.lex_state = 314, .external_lex_state = 2}, - [922] = {.lex_state = 314, .external_lex_state = 2}, - [923] = {.lex_state = 314, .external_lex_state = 2}, - [924] = {.lex_state = 314, .external_lex_state = 2}, - [925] = {.lex_state = 314, .external_lex_state = 2}, - [926] = {.lex_state = 314, .external_lex_state = 2}, - [927] = {.lex_state = 314, .external_lex_state = 2}, - [928] = {.lex_state = 314, .external_lex_state = 2}, - [929] = {.lex_state = 314, .external_lex_state = 2}, - [930] = {.lex_state = 314, .external_lex_state = 2}, - [931] = {.lex_state = 314, .external_lex_state = 2}, - [932] = {.lex_state = 314, .external_lex_state = 2}, - [933] = {.lex_state = 314, .external_lex_state = 2}, - [934] = {.lex_state = 314, .external_lex_state = 2}, - [935] = {.lex_state = 314, .external_lex_state = 2}, - [936] = {.lex_state = 314, .external_lex_state = 2}, - [937] = {.lex_state = 314, .external_lex_state = 2}, - [938] = {.lex_state = 314, .external_lex_state = 2}, - [939] = {.lex_state = 314, .external_lex_state = 2}, - [940] = {.lex_state = 314, .external_lex_state = 2}, - [941] = {.lex_state = 314, .external_lex_state = 2}, - [942] = {.lex_state = 314, .external_lex_state = 2}, - [943] = {.lex_state = 314, .external_lex_state = 2}, - [944] = {.lex_state = 314, .external_lex_state = 2}, - [945] = {.lex_state = 314, .external_lex_state = 2}, - [946] = {.lex_state = 314, .external_lex_state = 2}, - [947] = {.lex_state = 314, .external_lex_state = 2}, - [948] = {.lex_state = 314, .external_lex_state = 2}, - [949] = {.lex_state = 314, .external_lex_state = 2}, - [950] = {.lex_state = 314, .external_lex_state = 2}, - [951] = {.lex_state = 314, .external_lex_state = 2}, - [952] = {.lex_state = 314, .external_lex_state = 2}, - [953] = {.lex_state = 314, .external_lex_state = 2}, - [954] = {.lex_state = 314, .external_lex_state = 2}, - [955] = {.lex_state = 314, .external_lex_state = 2}, - [956] = {.lex_state = 314, .external_lex_state = 2}, - [957] = {.lex_state = 314, .external_lex_state = 2}, - [958] = {.lex_state = 314, .external_lex_state = 2}, - [959] = {.lex_state = 314, .external_lex_state = 2}, - [960] = {.lex_state = 314, .external_lex_state = 2}, - [961] = {.lex_state = 314, .external_lex_state = 2}, - [962] = {.lex_state = 314, .external_lex_state = 2}, - [963] = {.lex_state = 314, .external_lex_state = 2}, - [964] = {.lex_state = 314, .external_lex_state = 2}, - [965] = {.lex_state = 314, .external_lex_state = 2}, - [966] = {.lex_state = 314, .external_lex_state = 2}, - [967] = {.lex_state = 314, .external_lex_state = 2}, - [968] = {.lex_state = 314, .external_lex_state = 2}, - [969] = {.lex_state = 314, .external_lex_state = 2}, - [970] = {.lex_state = 314, .external_lex_state = 2}, - [971] = {.lex_state = 314, .external_lex_state = 2}, - [972] = {.lex_state = 314, .external_lex_state = 2}, - [973] = {.lex_state = 314, .external_lex_state = 2}, - [974] = {.lex_state = 314, .external_lex_state = 2}, - [975] = {.lex_state = 314, .external_lex_state = 2}, - [976] = {.lex_state = 314, .external_lex_state = 2}, - [977] = {.lex_state = 314, .external_lex_state = 2}, - [978] = {.lex_state = 314, .external_lex_state = 2}, - [979] = {.lex_state = 314, .external_lex_state = 2}, - [980] = {.lex_state = 314, .external_lex_state = 2}, - [981] = {.lex_state = 314, .external_lex_state = 2}, - [982] = {.lex_state = 314, .external_lex_state = 2}, - [983] = {.lex_state = 314, .external_lex_state = 2}, - [984] = {.lex_state = 314, .external_lex_state = 2}, - [985] = {.lex_state = 314, .external_lex_state = 2}, - [986] = {.lex_state = 314, .external_lex_state = 2}, - [987] = {.lex_state = 314, .external_lex_state = 2}, - [988] = {.lex_state = 314, .external_lex_state = 2}, - [989] = {.lex_state = 314, .external_lex_state = 2}, - [990] = {.lex_state = 314, .external_lex_state = 2}, - [991] = {.lex_state = 314, .external_lex_state = 2}, - [992] = {.lex_state = 314, .external_lex_state = 2}, - [993] = {.lex_state = 314, .external_lex_state = 2}, - [994] = {.lex_state = 314, .external_lex_state = 2}, - [995] = {.lex_state = 314, .external_lex_state = 2}, - [996] = {.lex_state = 314, .external_lex_state = 2}, - [997] = {.lex_state = 314, .external_lex_state = 2}, - [998] = {.lex_state = 314, .external_lex_state = 2}, - [999] = {.lex_state = 314, .external_lex_state = 2}, - [1000] = {.lex_state = 314, .external_lex_state = 2}, - [1001] = {.lex_state = 314, .external_lex_state = 2}, - [1002] = {.lex_state = 314, .external_lex_state = 2}, - [1003] = {.lex_state = 314, .external_lex_state = 2}, - [1004] = {.lex_state = 314, .external_lex_state = 2}, - [1005] = {.lex_state = 314, .external_lex_state = 2}, - [1006] = {.lex_state = 314, .external_lex_state = 2}, - [1007] = {.lex_state = 314, .external_lex_state = 2}, - [1008] = {.lex_state = 314, .external_lex_state = 2}, - [1009] = {.lex_state = 314, .external_lex_state = 2}, - [1010] = {.lex_state = 314, .external_lex_state = 2}, - [1011] = {.lex_state = 314, .external_lex_state = 2}, - [1012] = {.lex_state = 314, .external_lex_state = 2}, - [1013] = {.lex_state = 314, .external_lex_state = 2}, - [1014] = {.lex_state = 314, .external_lex_state = 2}, - [1015] = {.lex_state = 314, .external_lex_state = 2}, - [1016] = {.lex_state = 314, .external_lex_state = 2}, - [1017] = {.lex_state = 314, .external_lex_state = 2}, - [1018] = {.lex_state = 314, .external_lex_state = 2}, - [1019] = {.lex_state = 314, .external_lex_state = 2}, - [1020] = {.lex_state = 314, .external_lex_state = 2}, - [1021] = {.lex_state = 314, .external_lex_state = 2}, - [1022] = {.lex_state = 314, .external_lex_state = 2}, - [1023] = {.lex_state = 314, .external_lex_state = 2}, - [1024] = {.lex_state = 314, .external_lex_state = 2}, - [1025] = {.lex_state = 314, .external_lex_state = 2}, - [1026] = {.lex_state = 314, .external_lex_state = 2}, - [1027] = {.lex_state = 314, .external_lex_state = 2}, - [1028] = {.lex_state = 314, .external_lex_state = 2}, - [1029] = {.lex_state = 314, .external_lex_state = 2}, - [1030] = {.lex_state = 314, .external_lex_state = 2}, - [1031] = {.lex_state = 314, .external_lex_state = 2}, - [1032] = {.lex_state = 314, .external_lex_state = 2}, - [1033] = {.lex_state = 314, .external_lex_state = 2}, - [1034] = {.lex_state = 314, .external_lex_state = 2}, - [1035] = {.lex_state = 314, .external_lex_state = 2}, - [1036] = {.lex_state = 314, .external_lex_state = 2}, - [1037] = {.lex_state = 314, .external_lex_state = 2}, - [1038] = {.lex_state = 314, .external_lex_state = 2}, - [1039] = {.lex_state = 314, .external_lex_state = 2}, - [1040] = {.lex_state = 314, .external_lex_state = 2}, - [1041] = {.lex_state = 314, .external_lex_state = 2}, - [1042] = {.lex_state = 314, .external_lex_state = 2}, - [1043] = {.lex_state = 314, .external_lex_state = 2}, - [1044] = {.lex_state = 314, .external_lex_state = 2}, - [1045] = {.lex_state = 314, .external_lex_state = 2}, - [1046] = {.lex_state = 314, .external_lex_state = 2}, - [1047] = {.lex_state = 314, .external_lex_state = 2}, - [1048] = {.lex_state = 314, .external_lex_state = 2}, - [1049] = {.lex_state = 314, .external_lex_state = 2}, - [1050] = {.lex_state = 314, .external_lex_state = 2}, - [1051] = {.lex_state = 314, .external_lex_state = 2}, - [1052] = {.lex_state = 314, .external_lex_state = 2}, - [1053] = {.lex_state = 314, .external_lex_state = 2}, - [1054] = {.lex_state = 314, .external_lex_state = 2}, - [1055] = {.lex_state = 314, .external_lex_state = 2}, - [1056] = {.lex_state = 314, .external_lex_state = 2}, - [1057] = {.lex_state = 314, .external_lex_state = 2}, - [1058] = {.lex_state = 314, .external_lex_state = 2}, - [1059] = {.lex_state = 314, .external_lex_state = 2}, - [1060] = {.lex_state = 314, .external_lex_state = 2}, - [1061] = {.lex_state = 314, .external_lex_state = 2}, - [1062] = {.lex_state = 314, .external_lex_state = 2}, - [1063] = {.lex_state = 314, .external_lex_state = 2}, - [1064] = {.lex_state = 314, .external_lex_state = 2}, - [1065] = {.lex_state = 314, .external_lex_state = 2}, - [1066] = {.lex_state = 314, .external_lex_state = 2}, - [1067] = {.lex_state = 314, .external_lex_state = 2}, - [1068] = {.lex_state = 314, .external_lex_state = 2}, - [1069] = {.lex_state = 314, .external_lex_state = 2}, - [1070] = {.lex_state = 314, .external_lex_state = 2}, - [1071] = {.lex_state = 314, .external_lex_state = 2}, - [1072] = {.lex_state = 314, .external_lex_state = 2}, - [1073] = {.lex_state = 314, .external_lex_state = 2}, - [1074] = {.lex_state = 314, .external_lex_state = 2}, - [1075] = {.lex_state = 314, .external_lex_state = 2}, - [1076] = {.lex_state = 314, .external_lex_state = 2}, - [1077] = {.lex_state = 314, .external_lex_state = 2}, - [1078] = {.lex_state = 314, .external_lex_state = 2}, - [1079] = {.lex_state = 314, .external_lex_state = 2}, - [1080] = {.lex_state = 314, .external_lex_state = 2}, - [1081] = {.lex_state = 314, .external_lex_state = 2}, - [1082] = {.lex_state = 314, .external_lex_state = 2}, - [1083] = {.lex_state = 314, .external_lex_state = 2}, - [1084] = {.lex_state = 314, .external_lex_state = 2}, - [1085] = {.lex_state = 314, .external_lex_state = 2}, - [1086] = {.lex_state = 314, .external_lex_state = 2}, - [1087] = {.lex_state = 314, .external_lex_state = 2}, - [1088] = {.lex_state = 314, .external_lex_state = 2}, - [1089] = {.lex_state = 314, .external_lex_state = 2}, - [1090] = {.lex_state = 314, .external_lex_state = 2}, - [1091] = {.lex_state = 314, .external_lex_state = 2}, - [1092] = {.lex_state = 314, .external_lex_state = 2}, - [1093] = {.lex_state = 314, .external_lex_state = 2}, - [1094] = {.lex_state = 314, .external_lex_state = 2}, - [1095] = {.lex_state = 314, .external_lex_state = 2}, - [1096] = {.lex_state = 314, .external_lex_state = 2}, - [1097] = {.lex_state = 314, .external_lex_state = 2}, - [1098] = {.lex_state = 314, .external_lex_state = 2}, - [1099] = {.lex_state = 314, .external_lex_state = 2}, - [1100] = {.lex_state = 314, .external_lex_state = 2}, - [1101] = {.lex_state = 314, .external_lex_state = 2}, - [1102] = {.lex_state = 314, .external_lex_state = 2}, - [1103] = {.lex_state = 314, .external_lex_state = 2}, - [1104] = {.lex_state = 314, .external_lex_state = 2}, - [1105] = {.lex_state = 314, .external_lex_state = 2}, - [1106] = {.lex_state = 314, .external_lex_state = 2}, - [1107] = {.lex_state = 314, .external_lex_state = 2}, - [1108] = {.lex_state = 314, .external_lex_state = 2}, - [1109] = {.lex_state = 314, .external_lex_state = 2}, - [1110] = {.lex_state = 314, .external_lex_state = 2}, - [1111] = {.lex_state = 314, .external_lex_state = 2}, - [1112] = {.lex_state = 314, .external_lex_state = 2}, - [1113] = {.lex_state = 314, .external_lex_state = 2}, - [1114] = {.lex_state = 314, .external_lex_state = 2}, - [1115] = {.lex_state = 314, .external_lex_state = 2}, - [1116] = {.lex_state = 314, .external_lex_state = 2}, - [1117] = {.lex_state = 314, .external_lex_state = 2}, - [1118] = {.lex_state = 314, .external_lex_state = 2}, - [1119] = {.lex_state = 314, .external_lex_state = 2}, - [1120] = {.lex_state = 314, .external_lex_state = 2}, - [1121] = {.lex_state = 314, .external_lex_state = 2}, - [1122] = {.lex_state = 314, .external_lex_state = 2}, - [1123] = {.lex_state = 314, .external_lex_state = 2}, - [1124] = {.lex_state = 314, .external_lex_state = 2}, - [1125] = {.lex_state = 314, .external_lex_state = 2}, - [1126] = {.lex_state = 314, .external_lex_state = 2}, - [1127] = {.lex_state = 314, .external_lex_state = 2}, - [1128] = {.lex_state = 314, .external_lex_state = 2}, - [1129] = {.lex_state = 314, .external_lex_state = 2}, - [1130] = {.lex_state = 314, .external_lex_state = 2}, - [1131] = {.lex_state = 314, .external_lex_state = 2}, - [1132] = {.lex_state = 314, .external_lex_state = 2}, - [1133] = {.lex_state = 314, .external_lex_state = 2}, - [1134] = {.lex_state = 314, .external_lex_state = 2}, - [1135] = {.lex_state = 314, .external_lex_state = 2}, - [1136] = {.lex_state = 314, .external_lex_state = 2}, - [1137] = {.lex_state = 314, .external_lex_state = 2}, - [1138] = {.lex_state = 314, .external_lex_state = 2}, - [1139] = {.lex_state = 314, .external_lex_state = 2}, - [1140] = {.lex_state = 314, .external_lex_state = 2}, - [1141] = {.lex_state = 314, .external_lex_state = 2}, - [1142] = {.lex_state = 314, .external_lex_state = 2}, - [1143] = {.lex_state = 314, .external_lex_state = 2}, - [1144] = {.lex_state = 314, .external_lex_state = 2}, - [1145] = {.lex_state = 314, .external_lex_state = 2}, - [1146] = {.lex_state = 314, .external_lex_state = 2}, - [1147] = {.lex_state = 314, .external_lex_state = 2}, - [1148] = {.lex_state = 314, .external_lex_state = 2}, - [1149] = {.lex_state = 314, .external_lex_state = 2}, - [1150] = {.lex_state = 314, .external_lex_state = 2}, - [1151] = {.lex_state = 314, .external_lex_state = 2}, - [1152] = {.lex_state = 314, .external_lex_state = 2}, - [1153] = {.lex_state = 314, .external_lex_state = 2}, - [1154] = {.lex_state = 314, .external_lex_state = 2}, - [1155] = {.lex_state = 314, .external_lex_state = 2}, - [1156] = {.lex_state = 314, .external_lex_state = 2}, - [1157] = {.lex_state = 314, .external_lex_state = 2}, - [1158] = {.lex_state = 314, .external_lex_state = 2}, - [1159] = {.lex_state = 314, .external_lex_state = 2}, - [1160] = {.lex_state = 314, .external_lex_state = 2}, - [1161] = {.lex_state = 314, .external_lex_state = 2}, - [1162] = {.lex_state = 314, .external_lex_state = 2}, - [1163] = {.lex_state = 314, .external_lex_state = 2}, - [1164] = {.lex_state = 314, .external_lex_state = 2}, - [1165] = {.lex_state = 314, .external_lex_state = 2}, - [1166] = {.lex_state = 314, .external_lex_state = 2}, - [1167] = {.lex_state = 314, .external_lex_state = 2}, - [1168] = {.lex_state = 314, .external_lex_state = 2}, - [1169] = {.lex_state = 314, .external_lex_state = 2}, - [1170] = {.lex_state = 314, .external_lex_state = 2}, - [1171] = {.lex_state = 314, .external_lex_state = 2}, - [1172] = {.lex_state = 314, .external_lex_state = 2}, - [1173] = {.lex_state = 314, .external_lex_state = 2}, - [1174] = {.lex_state = 314, .external_lex_state = 2}, - [1175] = {.lex_state = 314, .external_lex_state = 2}, - [1176] = {.lex_state = 314, .external_lex_state = 2}, - [1177] = {.lex_state = 314, .external_lex_state = 2}, - [1178] = {.lex_state = 314, .external_lex_state = 2}, - [1179] = {.lex_state = 314, .external_lex_state = 2}, - [1180] = {.lex_state = 314, .external_lex_state = 2}, - [1181] = {.lex_state = 314, .external_lex_state = 2}, - [1182] = {.lex_state = 314, .external_lex_state = 2}, - [1183] = {.lex_state = 314, .external_lex_state = 2}, - [1184] = {.lex_state = 314, .external_lex_state = 2}, - [1185] = {.lex_state = 314, .external_lex_state = 2}, - [1186] = {.lex_state = 314, .external_lex_state = 2}, - [1187] = {.lex_state = 314, .external_lex_state = 2}, - [1188] = {.lex_state = 314, .external_lex_state = 2}, - [1189] = {.lex_state = 314, .external_lex_state = 2}, - [1190] = {.lex_state = 314, .external_lex_state = 2}, - [1191] = {.lex_state = 314, .external_lex_state = 2}, - [1192] = {.lex_state = 314, .external_lex_state = 2}, - [1193] = {.lex_state = 314, .external_lex_state = 2}, - [1194] = {.lex_state = 314, .external_lex_state = 2}, - [1195] = {.lex_state = 314, .external_lex_state = 2}, - [1196] = {.lex_state = 314, .external_lex_state = 2}, - [1197] = {.lex_state = 314, .external_lex_state = 2}, - [1198] = {.lex_state = 314, .external_lex_state = 2}, - [1199] = {.lex_state = 314, .external_lex_state = 2}, - [1200] = {.lex_state = 314, .external_lex_state = 2}, - [1201] = {.lex_state = 314, .external_lex_state = 2}, - [1202] = {.lex_state = 314, .external_lex_state = 2}, - [1203] = {.lex_state = 314, .external_lex_state = 2}, - [1204] = {.lex_state = 314, .external_lex_state = 2}, - [1205] = {.lex_state = 314, .external_lex_state = 2}, - [1206] = {.lex_state = 314, .external_lex_state = 2}, - [1207] = {.lex_state = 314, .external_lex_state = 2}, - [1208] = {.lex_state = 314, .external_lex_state = 2}, - [1209] = {.lex_state = 314, .external_lex_state = 2}, - [1210] = {.lex_state = 314, .external_lex_state = 2}, - [1211] = {.lex_state = 314, .external_lex_state = 2}, - [1212] = {.lex_state = 314, .external_lex_state = 2}, - [1213] = {.lex_state = 314, .external_lex_state = 2}, - [1214] = {.lex_state = 314, .external_lex_state = 2}, - [1215] = {.lex_state = 314, .external_lex_state = 2}, + [413] = {.lex_state = 318, .external_lex_state = 2}, + [414] = {.lex_state = 318, .external_lex_state = 2}, + [415] = {.lex_state = 318, .external_lex_state = 2}, + [416] = {.lex_state = 318, .external_lex_state = 2}, + [417] = {.lex_state = 318, .external_lex_state = 2}, + [418] = {.lex_state = 318, .external_lex_state = 2}, + [419] = {.lex_state = 318, .external_lex_state = 2}, + [420] = {.lex_state = 318, .external_lex_state = 2}, + [421] = {.lex_state = 318, .external_lex_state = 2}, + [422] = {.lex_state = 318, .external_lex_state = 2}, + [423] = {.lex_state = 318, .external_lex_state = 2}, + [424] = {.lex_state = 318, .external_lex_state = 2}, + [425] = {.lex_state = 318, .external_lex_state = 2}, + [426] = {.lex_state = 318, .external_lex_state = 2}, + [427] = {.lex_state = 318, .external_lex_state = 2}, + [428] = {.lex_state = 318, .external_lex_state = 2}, + [429] = {.lex_state = 318, .external_lex_state = 2}, + [430] = {.lex_state = 318, .external_lex_state = 2}, + [431] = {.lex_state = 318, .external_lex_state = 2}, + [432] = {.lex_state = 318, .external_lex_state = 2}, + [433] = {.lex_state = 318, .external_lex_state = 2}, + [434] = {.lex_state = 318, .external_lex_state = 2}, + [435] = {.lex_state = 318, .external_lex_state = 2}, + [436] = {.lex_state = 318, .external_lex_state = 2}, + [437] = {.lex_state = 318, .external_lex_state = 2}, + [438] = {.lex_state = 318, .external_lex_state = 2}, + [439] = {.lex_state = 318, .external_lex_state = 2}, + [440] = {.lex_state = 318, .external_lex_state = 2}, + [441] = {.lex_state = 318, .external_lex_state = 2}, + [442] = {.lex_state = 318, .external_lex_state = 2}, + [443] = {.lex_state = 318, .external_lex_state = 2}, + [444] = {.lex_state = 318, .external_lex_state = 2}, + [445] = {.lex_state = 318, .external_lex_state = 2}, + [446] = {.lex_state = 318, .external_lex_state = 2}, + [447] = {.lex_state = 318, .external_lex_state = 2}, + [448] = {.lex_state = 318, .external_lex_state = 2}, + [449] = {.lex_state = 318, .external_lex_state = 2}, + [450] = {.lex_state = 318, .external_lex_state = 2}, + [451] = {.lex_state = 318, .external_lex_state = 2}, + [452] = {.lex_state = 318, .external_lex_state = 2}, + [453] = {.lex_state = 318, .external_lex_state = 2}, + [454] = {.lex_state = 318, .external_lex_state = 2}, + [455] = {.lex_state = 318, .external_lex_state = 2}, + [456] = {.lex_state = 318, .external_lex_state = 2}, + [457] = {.lex_state = 318, .external_lex_state = 2}, + [458] = {.lex_state = 318, .external_lex_state = 2}, + [459] = {.lex_state = 318, .external_lex_state = 2}, + [460] = {.lex_state = 318, .external_lex_state = 2}, + [461] = {.lex_state = 318, .external_lex_state = 2}, + [462] = {.lex_state = 318, .external_lex_state = 2}, + [463] = {.lex_state = 318, .external_lex_state = 2}, + [464] = {.lex_state = 318, .external_lex_state = 2}, + [465] = {.lex_state = 318, .external_lex_state = 2}, + [466] = {.lex_state = 318, .external_lex_state = 2}, + [467] = {.lex_state = 318, .external_lex_state = 2}, + [468] = {.lex_state = 318, .external_lex_state = 2}, + [469] = {.lex_state = 318, .external_lex_state = 2}, + [470] = {.lex_state = 318, .external_lex_state = 2}, + [471] = {.lex_state = 318, .external_lex_state = 2}, + [472] = {.lex_state = 318, .external_lex_state = 2}, + [473] = {.lex_state = 318, .external_lex_state = 2}, + [474] = {.lex_state = 318, .external_lex_state = 2}, + [475] = {.lex_state = 318, .external_lex_state = 2}, + [476] = {.lex_state = 318, .external_lex_state = 2}, + [477] = {.lex_state = 318, .external_lex_state = 2}, + [478] = {.lex_state = 318, .external_lex_state = 2}, + [479] = {.lex_state = 318, .external_lex_state = 2}, + [480] = {.lex_state = 318, .external_lex_state = 2}, + [481] = {.lex_state = 318, .external_lex_state = 2}, + [482] = {.lex_state = 318, .external_lex_state = 2}, + [483] = {.lex_state = 318, .external_lex_state = 2}, + [484] = {.lex_state = 318, .external_lex_state = 2}, + [485] = {.lex_state = 318, .external_lex_state = 2}, + [486] = {.lex_state = 318, .external_lex_state = 2}, + [487] = {.lex_state = 318, .external_lex_state = 2}, + [488] = {.lex_state = 318, .external_lex_state = 2}, + [489] = {.lex_state = 318, .external_lex_state = 2}, + [490] = {.lex_state = 318, .external_lex_state = 2}, + [491] = {.lex_state = 318, .external_lex_state = 2}, + [492] = {.lex_state = 318, .external_lex_state = 2}, + [493] = {.lex_state = 318, .external_lex_state = 2}, + [494] = {.lex_state = 318, .external_lex_state = 2}, + [495] = {.lex_state = 318, .external_lex_state = 2}, + [496] = {.lex_state = 318, .external_lex_state = 2}, + [497] = {.lex_state = 318, .external_lex_state = 2}, + [498] = {.lex_state = 318, .external_lex_state = 2}, + [499] = {.lex_state = 318, .external_lex_state = 2}, + [500] = {.lex_state = 318, .external_lex_state = 2}, + [501] = {.lex_state = 318, .external_lex_state = 2}, + [502] = {.lex_state = 318, .external_lex_state = 2}, + [503] = {.lex_state = 318, .external_lex_state = 2}, + [504] = {.lex_state = 318, .external_lex_state = 2}, + [505] = {.lex_state = 318, .external_lex_state = 2}, + [506] = {.lex_state = 318, .external_lex_state = 2}, + [507] = {.lex_state = 318, .external_lex_state = 2}, + [508] = {.lex_state = 318, .external_lex_state = 2}, + [509] = {.lex_state = 318, .external_lex_state = 2}, + [510] = {.lex_state = 318, .external_lex_state = 2}, + [511] = {.lex_state = 318, .external_lex_state = 2}, + [512] = {.lex_state = 318, .external_lex_state = 2}, + [513] = {.lex_state = 318, .external_lex_state = 2}, + [514] = {.lex_state = 318, .external_lex_state = 2}, + [515] = {.lex_state = 318, .external_lex_state = 2}, + [516] = {.lex_state = 318, .external_lex_state = 2}, + [517] = {.lex_state = 318, .external_lex_state = 2}, + [518] = {.lex_state = 318, .external_lex_state = 2}, + [519] = {.lex_state = 318, .external_lex_state = 2}, + [520] = {.lex_state = 318, .external_lex_state = 2}, + [521] = {.lex_state = 318, .external_lex_state = 2}, + [522] = {.lex_state = 318, .external_lex_state = 2}, + [523] = {.lex_state = 318, .external_lex_state = 2}, + [524] = {.lex_state = 318, .external_lex_state = 2}, + [525] = {.lex_state = 318, .external_lex_state = 2}, + [526] = {.lex_state = 318, .external_lex_state = 2}, + [527] = {.lex_state = 318, .external_lex_state = 2}, + [528] = {.lex_state = 318, .external_lex_state = 2}, + [529] = {.lex_state = 318, .external_lex_state = 2}, + [530] = {.lex_state = 318, .external_lex_state = 2}, + [531] = {.lex_state = 318, .external_lex_state = 2}, + [532] = {.lex_state = 318, .external_lex_state = 2}, + [533] = {.lex_state = 318, .external_lex_state = 2}, + [534] = {.lex_state = 318, .external_lex_state = 2}, + [535] = {.lex_state = 318, .external_lex_state = 2}, + [536] = {.lex_state = 318, .external_lex_state = 2}, + [537] = {.lex_state = 318, .external_lex_state = 2}, + [538] = {.lex_state = 318, .external_lex_state = 2}, + [539] = {.lex_state = 318, .external_lex_state = 2}, + [540] = {.lex_state = 318, .external_lex_state = 2}, + [541] = {.lex_state = 318, .external_lex_state = 2}, + [542] = {.lex_state = 318, .external_lex_state = 2}, + [543] = {.lex_state = 318, .external_lex_state = 2}, + [544] = {.lex_state = 318, .external_lex_state = 2}, + [545] = {.lex_state = 318, .external_lex_state = 2}, + [546] = {.lex_state = 318, .external_lex_state = 2}, + [547] = {.lex_state = 318, .external_lex_state = 2}, + [548] = {.lex_state = 318, .external_lex_state = 2}, + [549] = {.lex_state = 318, .external_lex_state = 2}, + [550] = {.lex_state = 318, .external_lex_state = 2}, + [551] = {.lex_state = 318, .external_lex_state = 2}, + [552] = {.lex_state = 318, .external_lex_state = 2}, + [553] = {.lex_state = 318, .external_lex_state = 2}, + [554] = {.lex_state = 318, .external_lex_state = 2}, + [555] = {.lex_state = 318, .external_lex_state = 2}, + [556] = {.lex_state = 318, .external_lex_state = 2}, + [557] = {.lex_state = 318, .external_lex_state = 2}, + [558] = {.lex_state = 318, .external_lex_state = 2}, + [559] = {.lex_state = 318, .external_lex_state = 2}, + [560] = {.lex_state = 318, .external_lex_state = 2}, + [561] = {.lex_state = 318, .external_lex_state = 2}, + [562] = {.lex_state = 318, .external_lex_state = 2}, + [563] = {.lex_state = 318, .external_lex_state = 2}, + [564] = {.lex_state = 318, .external_lex_state = 2}, + [565] = {.lex_state = 318, .external_lex_state = 2}, + [566] = {.lex_state = 318, .external_lex_state = 2}, + [567] = {.lex_state = 318, .external_lex_state = 2}, + [568] = {.lex_state = 318, .external_lex_state = 2}, + [569] = {.lex_state = 318, .external_lex_state = 2}, + [570] = {.lex_state = 318, .external_lex_state = 2}, + [571] = {.lex_state = 318, .external_lex_state = 2}, + [572] = {.lex_state = 318, .external_lex_state = 2}, + [573] = {.lex_state = 318, .external_lex_state = 2}, + [574] = {.lex_state = 318, .external_lex_state = 2}, + [575] = {.lex_state = 318, .external_lex_state = 2}, + [576] = {.lex_state = 318, .external_lex_state = 2}, + [577] = {.lex_state = 318, .external_lex_state = 2}, + [578] = {.lex_state = 318, .external_lex_state = 2}, + [579] = {.lex_state = 318, .external_lex_state = 2}, + [580] = {.lex_state = 318, .external_lex_state = 2}, + [581] = {.lex_state = 318, .external_lex_state = 2}, + [582] = {.lex_state = 318, .external_lex_state = 2}, + [583] = {.lex_state = 318, .external_lex_state = 2}, + [584] = {.lex_state = 318, .external_lex_state = 2}, + [585] = {.lex_state = 318, .external_lex_state = 2}, + [586] = {.lex_state = 318, .external_lex_state = 2}, + [587] = {.lex_state = 318, .external_lex_state = 2}, + [588] = {.lex_state = 318, .external_lex_state = 2}, + [589] = {.lex_state = 318, .external_lex_state = 2}, + [590] = {.lex_state = 318, .external_lex_state = 2}, + [591] = {.lex_state = 318, .external_lex_state = 2}, + [592] = {.lex_state = 318, .external_lex_state = 2}, + [593] = {.lex_state = 318, .external_lex_state = 2}, + [594] = {.lex_state = 318, .external_lex_state = 2}, + [595] = {.lex_state = 318, .external_lex_state = 2}, + [596] = {.lex_state = 318, .external_lex_state = 2}, + [597] = {.lex_state = 318, .external_lex_state = 2}, + [598] = {.lex_state = 318, .external_lex_state = 2}, + [599] = {.lex_state = 318, .external_lex_state = 2}, + [600] = {.lex_state = 318, .external_lex_state = 2}, + [601] = {.lex_state = 318, .external_lex_state = 2}, + [602] = {.lex_state = 318, .external_lex_state = 2}, + [603] = {.lex_state = 318, .external_lex_state = 2}, + [604] = {.lex_state = 318, .external_lex_state = 2}, + [605] = {.lex_state = 318, .external_lex_state = 2}, + [606] = {.lex_state = 318, .external_lex_state = 2}, + [607] = {.lex_state = 318, .external_lex_state = 2}, + [608] = {.lex_state = 318, .external_lex_state = 2}, + [609] = {.lex_state = 318, .external_lex_state = 2}, + [610] = {.lex_state = 318, .external_lex_state = 2}, + [611] = {.lex_state = 318, .external_lex_state = 2}, + [612] = {.lex_state = 318, .external_lex_state = 2}, + [613] = {.lex_state = 318, .external_lex_state = 2}, + [614] = {.lex_state = 318, .external_lex_state = 2}, + [615] = {.lex_state = 318, .external_lex_state = 2}, + [616] = {.lex_state = 318, .external_lex_state = 2}, + [617] = {.lex_state = 318, .external_lex_state = 2}, + [618] = {.lex_state = 318, .external_lex_state = 2}, + [619] = {.lex_state = 318, .external_lex_state = 2}, + [620] = {.lex_state = 318, .external_lex_state = 2}, + [621] = {.lex_state = 318, .external_lex_state = 2}, + [622] = {.lex_state = 318, .external_lex_state = 2}, + [623] = {.lex_state = 318, .external_lex_state = 2}, + [624] = {.lex_state = 318, .external_lex_state = 2}, + [625] = {.lex_state = 318, .external_lex_state = 2}, + [626] = {.lex_state = 318, .external_lex_state = 2}, + [627] = {.lex_state = 318, .external_lex_state = 2}, + [628] = {.lex_state = 318, .external_lex_state = 2}, + [629] = {.lex_state = 318, .external_lex_state = 2}, + [630] = {.lex_state = 318, .external_lex_state = 2}, + [631] = {.lex_state = 318, .external_lex_state = 2}, + [632] = {.lex_state = 318, .external_lex_state = 2}, + [633] = {.lex_state = 318, .external_lex_state = 2}, + [634] = {.lex_state = 318, .external_lex_state = 2}, + [635] = {.lex_state = 318, .external_lex_state = 2}, + [636] = {.lex_state = 318, .external_lex_state = 2}, + [637] = {.lex_state = 318, .external_lex_state = 2}, + [638] = {.lex_state = 318, .external_lex_state = 2}, + [639] = {.lex_state = 318, .external_lex_state = 2}, + [640] = {.lex_state = 318, .external_lex_state = 2}, + [641] = {.lex_state = 318, .external_lex_state = 2}, + [642] = {.lex_state = 318, .external_lex_state = 2}, + [643] = {.lex_state = 318, .external_lex_state = 2}, + [644] = {.lex_state = 318, .external_lex_state = 2}, + [645] = {.lex_state = 318, .external_lex_state = 2}, + [646] = {.lex_state = 318, .external_lex_state = 2}, + [647] = {.lex_state = 318, .external_lex_state = 2}, + [648] = {.lex_state = 318, .external_lex_state = 2}, + [649] = {.lex_state = 318, .external_lex_state = 2}, + [650] = {.lex_state = 318, .external_lex_state = 2}, + [651] = {.lex_state = 318, .external_lex_state = 2}, + [652] = {.lex_state = 318, .external_lex_state = 2}, + [653] = {.lex_state = 318, .external_lex_state = 2}, + [654] = {.lex_state = 318, .external_lex_state = 2}, + [655] = {.lex_state = 318, .external_lex_state = 2}, + [656] = {.lex_state = 318, .external_lex_state = 2}, + [657] = {.lex_state = 318, .external_lex_state = 2}, + [658] = {.lex_state = 318, .external_lex_state = 2}, + [659] = {.lex_state = 318, .external_lex_state = 2}, + [660] = {.lex_state = 318, .external_lex_state = 2}, + [661] = {.lex_state = 318, .external_lex_state = 2}, + [662] = {.lex_state = 318, .external_lex_state = 2}, + [663] = {.lex_state = 318, .external_lex_state = 2}, + [664] = {.lex_state = 318, .external_lex_state = 2}, + [665] = {.lex_state = 318, .external_lex_state = 2}, + [666] = {.lex_state = 318, .external_lex_state = 2}, + [667] = {.lex_state = 318, .external_lex_state = 2}, + [668] = {.lex_state = 318, .external_lex_state = 2}, + [669] = {.lex_state = 318, .external_lex_state = 2}, + [670] = {.lex_state = 318, .external_lex_state = 2}, + [671] = {.lex_state = 318, .external_lex_state = 2}, + [672] = {.lex_state = 318, .external_lex_state = 2}, + [673] = {.lex_state = 318, .external_lex_state = 2}, + [674] = {.lex_state = 318, .external_lex_state = 2}, + [675] = {.lex_state = 318, .external_lex_state = 2}, + [676] = {.lex_state = 318, .external_lex_state = 2}, + [677] = {.lex_state = 318, .external_lex_state = 2}, + [678] = {.lex_state = 318, .external_lex_state = 2}, + [679] = {.lex_state = 318, .external_lex_state = 2}, + [680] = {.lex_state = 318, .external_lex_state = 2}, + [681] = {.lex_state = 318, .external_lex_state = 2}, + [682] = {.lex_state = 318, .external_lex_state = 2}, + [683] = {.lex_state = 318, .external_lex_state = 2}, + [684] = {.lex_state = 318, .external_lex_state = 2}, + [685] = {.lex_state = 318, .external_lex_state = 2}, + [686] = {.lex_state = 318, .external_lex_state = 2}, + [687] = {.lex_state = 318, .external_lex_state = 2}, + [688] = {.lex_state = 318, .external_lex_state = 2}, + [689] = {.lex_state = 318, .external_lex_state = 2}, + [690] = {.lex_state = 318, .external_lex_state = 2}, + [691] = {.lex_state = 318, .external_lex_state = 2}, + [692] = {.lex_state = 318, .external_lex_state = 2}, + [693] = {.lex_state = 318, .external_lex_state = 2}, + [694] = {.lex_state = 318, .external_lex_state = 2}, + [695] = {.lex_state = 318, .external_lex_state = 2}, + [696] = {.lex_state = 318, .external_lex_state = 2}, + [697] = {.lex_state = 318, .external_lex_state = 2}, + [698] = {.lex_state = 318, .external_lex_state = 2}, + [699] = {.lex_state = 318, .external_lex_state = 2}, + [700] = {.lex_state = 318, .external_lex_state = 2}, + [701] = {.lex_state = 318, .external_lex_state = 2}, + [702] = {.lex_state = 318, .external_lex_state = 2}, + [703] = {.lex_state = 318, .external_lex_state = 2}, + [704] = {.lex_state = 318, .external_lex_state = 2}, + [705] = {.lex_state = 318, .external_lex_state = 2}, + [706] = {.lex_state = 318, .external_lex_state = 2}, + [707] = {.lex_state = 318, .external_lex_state = 2}, + [708] = {.lex_state = 318, .external_lex_state = 2}, + [709] = {.lex_state = 318, .external_lex_state = 2}, + [710] = {.lex_state = 318, .external_lex_state = 2}, + [711] = {.lex_state = 318, .external_lex_state = 2}, + [712] = {.lex_state = 318, .external_lex_state = 2}, + [713] = {.lex_state = 318, .external_lex_state = 2}, + [714] = {.lex_state = 318, .external_lex_state = 2}, + [715] = {.lex_state = 318, .external_lex_state = 2}, + [716] = {.lex_state = 318, .external_lex_state = 2}, + [717] = {.lex_state = 318, .external_lex_state = 2}, + [718] = {.lex_state = 318, .external_lex_state = 2}, + [719] = {.lex_state = 318, .external_lex_state = 2}, + [720] = {.lex_state = 318, .external_lex_state = 2}, + [721] = {.lex_state = 318, .external_lex_state = 2}, + [722] = {.lex_state = 318, .external_lex_state = 2}, + [723] = {.lex_state = 318, .external_lex_state = 2}, + [724] = {.lex_state = 318, .external_lex_state = 2}, + [725] = {.lex_state = 318, .external_lex_state = 2}, + [726] = {.lex_state = 318, .external_lex_state = 2}, + [727] = {.lex_state = 318, .external_lex_state = 2}, + [728] = {.lex_state = 318, .external_lex_state = 2}, + [729] = {.lex_state = 318, .external_lex_state = 2}, + [730] = {.lex_state = 318, .external_lex_state = 2}, + [731] = {.lex_state = 318, .external_lex_state = 2}, + [732] = {.lex_state = 318, .external_lex_state = 2}, + [733] = {.lex_state = 318, .external_lex_state = 2}, + [734] = {.lex_state = 318, .external_lex_state = 2}, + [735] = {.lex_state = 318, .external_lex_state = 2}, + [736] = {.lex_state = 318, .external_lex_state = 2}, + [737] = {.lex_state = 318, .external_lex_state = 2}, + [738] = {.lex_state = 318, .external_lex_state = 2}, + [739] = {.lex_state = 318, .external_lex_state = 2}, + [740] = {.lex_state = 318, .external_lex_state = 2}, + [741] = {.lex_state = 318, .external_lex_state = 2}, + [742] = {.lex_state = 318, .external_lex_state = 2}, + [743] = {.lex_state = 318, .external_lex_state = 2}, + [744] = {.lex_state = 318, .external_lex_state = 2}, + [745] = {.lex_state = 318, .external_lex_state = 2}, + [746] = {.lex_state = 318, .external_lex_state = 2}, + [747] = {.lex_state = 318, .external_lex_state = 2}, + [748] = {.lex_state = 318, .external_lex_state = 2}, + [749] = {.lex_state = 318, .external_lex_state = 2}, + [750] = {.lex_state = 318, .external_lex_state = 2}, + [751] = {.lex_state = 318, .external_lex_state = 2}, + [752] = {.lex_state = 318, .external_lex_state = 2}, + [753] = {.lex_state = 318, .external_lex_state = 2}, + [754] = {.lex_state = 318, .external_lex_state = 2}, + [755] = {.lex_state = 318, .external_lex_state = 2}, + [756] = {.lex_state = 318, .external_lex_state = 2}, + [757] = {.lex_state = 318, .external_lex_state = 2}, + [758] = {.lex_state = 318, .external_lex_state = 2}, + [759] = {.lex_state = 318, .external_lex_state = 2}, + [760] = {.lex_state = 318, .external_lex_state = 2}, + [761] = {.lex_state = 318, .external_lex_state = 2}, + [762] = {.lex_state = 318, .external_lex_state = 2}, + [763] = {.lex_state = 318, .external_lex_state = 2}, + [764] = {.lex_state = 318, .external_lex_state = 2}, + [765] = {.lex_state = 318, .external_lex_state = 2}, + [766] = {.lex_state = 318, .external_lex_state = 2}, + [767] = {.lex_state = 318, .external_lex_state = 2}, + [768] = {.lex_state = 318, .external_lex_state = 2}, + [769] = {.lex_state = 318, .external_lex_state = 2}, + [770] = {.lex_state = 318, .external_lex_state = 2}, + [771] = {.lex_state = 318, .external_lex_state = 2}, + [772] = {.lex_state = 318, .external_lex_state = 2}, + [773] = {.lex_state = 318, .external_lex_state = 2}, + [774] = {.lex_state = 318, .external_lex_state = 2}, + [775] = {.lex_state = 318, .external_lex_state = 2}, + [776] = {.lex_state = 318, .external_lex_state = 2}, + [777] = {.lex_state = 318, .external_lex_state = 2}, + [778] = {.lex_state = 318, .external_lex_state = 2}, + [779] = {.lex_state = 318, .external_lex_state = 2}, + [780] = {.lex_state = 318, .external_lex_state = 2}, + [781] = {.lex_state = 318, .external_lex_state = 2}, + [782] = {.lex_state = 318, .external_lex_state = 2}, + [783] = {.lex_state = 318, .external_lex_state = 2}, + [784] = {.lex_state = 318, .external_lex_state = 2}, + [785] = {.lex_state = 318, .external_lex_state = 2}, + [786] = {.lex_state = 318, .external_lex_state = 2}, + [787] = {.lex_state = 318, .external_lex_state = 2}, + [788] = {.lex_state = 318, .external_lex_state = 2}, + [789] = {.lex_state = 318, .external_lex_state = 2}, + [790] = {.lex_state = 318, .external_lex_state = 2}, + [791] = {.lex_state = 318, .external_lex_state = 2}, + [792] = {.lex_state = 318, .external_lex_state = 2}, + [793] = {.lex_state = 318, .external_lex_state = 2}, + [794] = {.lex_state = 318, .external_lex_state = 2}, + [795] = {.lex_state = 318, .external_lex_state = 2}, + [796] = {.lex_state = 318, .external_lex_state = 2}, + [797] = {.lex_state = 318, .external_lex_state = 2}, + [798] = {.lex_state = 318, .external_lex_state = 2}, + [799] = {.lex_state = 318, .external_lex_state = 2}, + [800] = {.lex_state = 318, .external_lex_state = 2}, + [801] = {.lex_state = 318, .external_lex_state = 2}, + [802] = {.lex_state = 318, .external_lex_state = 2}, + [803] = {.lex_state = 318, .external_lex_state = 2}, + [804] = {.lex_state = 318, .external_lex_state = 2}, + [805] = {.lex_state = 318, .external_lex_state = 2}, + [806] = {.lex_state = 318, .external_lex_state = 2}, + [807] = {.lex_state = 318, .external_lex_state = 2}, + [808] = {.lex_state = 318, .external_lex_state = 2}, + [809] = {.lex_state = 318, .external_lex_state = 2}, + [810] = {.lex_state = 318, .external_lex_state = 2}, + [811] = {.lex_state = 318, .external_lex_state = 2}, + [812] = {.lex_state = 318, .external_lex_state = 2}, + [813] = {.lex_state = 318, .external_lex_state = 2}, + [814] = {.lex_state = 318, .external_lex_state = 2}, + [815] = {.lex_state = 318, .external_lex_state = 2}, + [816] = {.lex_state = 318, .external_lex_state = 2}, + [817] = {.lex_state = 318, .external_lex_state = 2}, + [818] = {.lex_state = 318, .external_lex_state = 2}, + [819] = {.lex_state = 318, .external_lex_state = 2}, + [820] = {.lex_state = 318, .external_lex_state = 2}, + [821] = {.lex_state = 318, .external_lex_state = 2}, + [822] = {.lex_state = 318, .external_lex_state = 2}, + [823] = {.lex_state = 318, .external_lex_state = 2}, + [824] = {.lex_state = 318, .external_lex_state = 2}, + [825] = {.lex_state = 318, .external_lex_state = 2}, + [826] = {.lex_state = 318, .external_lex_state = 2}, + [827] = {.lex_state = 318, .external_lex_state = 2}, + [828] = {.lex_state = 318, .external_lex_state = 2}, + [829] = {.lex_state = 318, .external_lex_state = 2}, + [830] = {.lex_state = 318, .external_lex_state = 2}, + [831] = {.lex_state = 318, .external_lex_state = 2}, + [832] = {.lex_state = 318, .external_lex_state = 2}, + [833] = {.lex_state = 318, .external_lex_state = 2}, + [834] = {.lex_state = 318, .external_lex_state = 2}, + [835] = {.lex_state = 318, .external_lex_state = 2}, + [836] = {.lex_state = 318, .external_lex_state = 2}, + [837] = {.lex_state = 318, .external_lex_state = 2}, + [838] = {.lex_state = 318, .external_lex_state = 2}, + [839] = {.lex_state = 318, .external_lex_state = 2}, + [840] = {.lex_state = 318, .external_lex_state = 2}, + [841] = {.lex_state = 318, .external_lex_state = 2}, + [842] = {.lex_state = 318, .external_lex_state = 2}, + [843] = {.lex_state = 318, .external_lex_state = 2}, + [844] = {.lex_state = 318, .external_lex_state = 2}, + [845] = {.lex_state = 318, .external_lex_state = 2}, + [846] = {.lex_state = 318, .external_lex_state = 2}, + [847] = {.lex_state = 318, .external_lex_state = 2}, + [848] = {.lex_state = 318, .external_lex_state = 2}, + [849] = {.lex_state = 318, .external_lex_state = 2}, + [850] = {.lex_state = 318, .external_lex_state = 2}, + [851] = {.lex_state = 318, .external_lex_state = 2}, + [852] = {.lex_state = 318, .external_lex_state = 2}, + [853] = {.lex_state = 318, .external_lex_state = 2}, + [854] = {.lex_state = 318, .external_lex_state = 2}, + [855] = {.lex_state = 318, .external_lex_state = 2}, + [856] = {.lex_state = 318, .external_lex_state = 2}, + [857] = {.lex_state = 318, .external_lex_state = 2}, + [858] = {.lex_state = 318, .external_lex_state = 2}, + [859] = {.lex_state = 318, .external_lex_state = 2}, + [860] = {.lex_state = 318, .external_lex_state = 2}, + [861] = {.lex_state = 318, .external_lex_state = 2}, + [862] = {.lex_state = 318, .external_lex_state = 2}, + [863] = {.lex_state = 318, .external_lex_state = 2}, + [864] = {.lex_state = 318, .external_lex_state = 2}, + [865] = {.lex_state = 318, .external_lex_state = 2}, + [866] = {.lex_state = 318, .external_lex_state = 2}, + [867] = {.lex_state = 318, .external_lex_state = 2}, + [868] = {.lex_state = 318, .external_lex_state = 2}, + [869] = {.lex_state = 318, .external_lex_state = 2}, + [870] = {.lex_state = 318, .external_lex_state = 2}, + [871] = {.lex_state = 318, .external_lex_state = 2}, + [872] = {.lex_state = 318, .external_lex_state = 2}, + [873] = {.lex_state = 318, .external_lex_state = 2}, + [874] = {.lex_state = 318, .external_lex_state = 2}, + [875] = {.lex_state = 318, .external_lex_state = 2}, + [876] = {.lex_state = 318, .external_lex_state = 2}, + [877] = {.lex_state = 318, .external_lex_state = 2}, + [878] = {.lex_state = 318, .external_lex_state = 2}, + [879] = {.lex_state = 318, .external_lex_state = 2}, + [880] = {.lex_state = 318, .external_lex_state = 2}, + [881] = {.lex_state = 318, .external_lex_state = 2}, + [882] = {.lex_state = 318, .external_lex_state = 2}, + [883] = {.lex_state = 318, .external_lex_state = 2}, + [884] = {.lex_state = 318, .external_lex_state = 2}, + [885] = {.lex_state = 318, .external_lex_state = 2}, + [886] = {.lex_state = 318, .external_lex_state = 2}, + [887] = {.lex_state = 318, .external_lex_state = 2}, + [888] = {.lex_state = 318, .external_lex_state = 2}, + [889] = {.lex_state = 318, .external_lex_state = 2}, + [890] = {.lex_state = 318, .external_lex_state = 2}, + [891] = {.lex_state = 318, .external_lex_state = 2}, + [892] = {.lex_state = 318, .external_lex_state = 2}, + [893] = {.lex_state = 318, .external_lex_state = 2}, + [894] = {.lex_state = 318, .external_lex_state = 2}, + [895] = {.lex_state = 318, .external_lex_state = 2}, + [896] = {.lex_state = 318, .external_lex_state = 2}, + [897] = {.lex_state = 318, .external_lex_state = 2}, + [898] = {.lex_state = 318, .external_lex_state = 2}, + [899] = {.lex_state = 318, .external_lex_state = 2}, + [900] = {.lex_state = 318, .external_lex_state = 2}, + [901] = {.lex_state = 318, .external_lex_state = 2}, + [902] = {.lex_state = 318, .external_lex_state = 2}, + [903] = {.lex_state = 318, .external_lex_state = 2}, + [904] = {.lex_state = 318, .external_lex_state = 2}, + [905] = {.lex_state = 318, .external_lex_state = 2}, + [906] = {.lex_state = 318, .external_lex_state = 2}, + [907] = {.lex_state = 318, .external_lex_state = 2}, + [908] = {.lex_state = 318, .external_lex_state = 2}, + [909] = {.lex_state = 318, .external_lex_state = 2}, + [910] = {.lex_state = 318, .external_lex_state = 2}, + [911] = {.lex_state = 318, .external_lex_state = 2}, + [912] = {.lex_state = 318, .external_lex_state = 2}, + [913] = {.lex_state = 318, .external_lex_state = 2}, + [914] = {.lex_state = 318, .external_lex_state = 2}, + [915] = {.lex_state = 318, .external_lex_state = 2}, + [916] = {.lex_state = 318, .external_lex_state = 2}, + [917] = {.lex_state = 318, .external_lex_state = 2}, + [918] = {.lex_state = 318, .external_lex_state = 2}, + [919] = {.lex_state = 318, .external_lex_state = 2}, + [920] = {.lex_state = 318, .external_lex_state = 2}, + [921] = {.lex_state = 318, .external_lex_state = 2}, + [922] = {.lex_state = 318, .external_lex_state = 2}, + [923] = {.lex_state = 318, .external_lex_state = 2}, + [924] = {.lex_state = 318, .external_lex_state = 2}, + [925] = {.lex_state = 318, .external_lex_state = 2}, + [926] = {.lex_state = 318, .external_lex_state = 2}, + [927] = {.lex_state = 318, .external_lex_state = 2}, + [928] = {.lex_state = 318, .external_lex_state = 2}, + [929] = {.lex_state = 318, .external_lex_state = 2}, + [930] = {.lex_state = 318, .external_lex_state = 2}, + [931] = {.lex_state = 318, .external_lex_state = 2}, + [932] = {.lex_state = 318, .external_lex_state = 2}, + [933] = {.lex_state = 318, .external_lex_state = 2}, + [934] = {.lex_state = 318, .external_lex_state = 2}, + [935] = {.lex_state = 318, .external_lex_state = 2}, + [936] = {.lex_state = 318, .external_lex_state = 2}, + [937] = {.lex_state = 318, .external_lex_state = 2}, + [938] = {.lex_state = 318, .external_lex_state = 2}, + [939] = {.lex_state = 318, .external_lex_state = 2}, + [940] = {.lex_state = 318, .external_lex_state = 2}, + [941] = {.lex_state = 318, .external_lex_state = 2}, + [942] = {.lex_state = 318, .external_lex_state = 2}, + [943] = {.lex_state = 318, .external_lex_state = 2}, + [944] = {.lex_state = 318, .external_lex_state = 2}, + [945] = {.lex_state = 318, .external_lex_state = 2}, + [946] = {.lex_state = 318, .external_lex_state = 2}, + [947] = {.lex_state = 318, .external_lex_state = 2}, + [948] = {.lex_state = 318, .external_lex_state = 2}, + [949] = {.lex_state = 318, .external_lex_state = 2}, + [950] = {.lex_state = 318, .external_lex_state = 2}, + [951] = {.lex_state = 318, .external_lex_state = 2}, + [952] = {.lex_state = 318, .external_lex_state = 2}, + [953] = {.lex_state = 318, .external_lex_state = 2}, + [954] = {.lex_state = 318, .external_lex_state = 2}, + [955] = {.lex_state = 318, .external_lex_state = 2}, + [956] = {.lex_state = 318, .external_lex_state = 2}, + [957] = {.lex_state = 318, .external_lex_state = 2}, + [958] = {.lex_state = 318, .external_lex_state = 2}, + [959] = {.lex_state = 318, .external_lex_state = 2}, + [960] = {.lex_state = 318, .external_lex_state = 2}, + [961] = {.lex_state = 318, .external_lex_state = 2}, + [962] = {.lex_state = 318, .external_lex_state = 2}, + [963] = {.lex_state = 318, .external_lex_state = 2}, + [964] = {.lex_state = 318, .external_lex_state = 2}, + [965] = {.lex_state = 318, .external_lex_state = 2}, + [966] = {.lex_state = 318, .external_lex_state = 2}, + [967] = {.lex_state = 318, .external_lex_state = 2}, + [968] = {.lex_state = 318, .external_lex_state = 2}, + [969] = {.lex_state = 318, .external_lex_state = 2}, + [970] = {.lex_state = 318, .external_lex_state = 2}, + [971] = {.lex_state = 318, .external_lex_state = 2}, + [972] = {.lex_state = 318, .external_lex_state = 2}, + [973] = {.lex_state = 318, .external_lex_state = 2}, + [974] = {.lex_state = 318, .external_lex_state = 2}, + [975] = {.lex_state = 318, .external_lex_state = 2}, + [976] = {.lex_state = 318, .external_lex_state = 2}, + [977] = {.lex_state = 318, .external_lex_state = 2}, + [978] = {.lex_state = 318, .external_lex_state = 2}, + [979] = {.lex_state = 318, .external_lex_state = 2}, + [980] = {.lex_state = 318, .external_lex_state = 2}, + [981] = {.lex_state = 318, .external_lex_state = 2}, + [982] = {.lex_state = 318, .external_lex_state = 2}, + [983] = {.lex_state = 318, .external_lex_state = 2}, + [984] = {.lex_state = 318, .external_lex_state = 2}, + [985] = {.lex_state = 318, .external_lex_state = 2}, + [986] = {.lex_state = 318, .external_lex_state = 2}, + [987] = {.lex_state = 318, .external_lex_state = 2}, + [988] = {.lex_state = 318, .external_lex_state = 2}, + [989] = {.lex_state = 318, .external_lex_state = 2}, + [990] = {.lex_state = 318, .external_lex_state = 2}, + [991] = {.lex_state = 318, .external_lex_state = 2}, + [992] = {.lex_state = 318, .external_lex_state = 2}, + [993] = {.lex_state = 318, .external_lex_state = 2}, + [994] = {.lex_state = 318, .external_lex_state = 2}, + [995] = {.lex_state = 318, .external_lex_state = 2}, + [996] = {.lex_state = 318, .external_lex_state = 2}, + [997] = {.lex_state = 318, .external_lex_state = 2}, + [998] = {.lex_state = 318, .external_lex_state = 2}, + [999] = {.lex_state = 318, .external_lex_state = 2}, + [1000] = {.lex_state = 318, .external_lex_state = 2}, + [1001] = {.lex_state = 318, .external_lex_state = 2}, + [1002] = {.lex_state = 318, .external_lex_state = 2}, + [1003] = {.lex_state = 318, .external_lex_state = 2}, + [1004] = {.lex_state = 318, .external_lex_state = 2}, + [1005] = {.lex_state = 318, .external_lex_state = 2}, + [1006] = {.lex_state = 318, .external_lex_state = 2}, + [1007] = {.lex_state = 318, .external_lex_state = 2}, + [1008] = {.lex_state = 318, .external_lex_state = 2}, + [1009] = {.lex_state = 318, .external_lex_state = 2}, + [1010] = {.lex_state = 318, .external_lex_state = 2}, + [1011] = {.lex_state = 318, .external_lex_state = 2}, + [1012] = {.lex_state = 318, .external_lex_state = 2}, + [1013] = {.lex_state = 318, .external_lex_state = 2}, + [1014] = {.lex_state = 318, .external_lex_state = 2}, + [1015] = {.lex_state = 318, .external_lex_state = 2}, + [1016] = {.lex_state = 318, .external_lex_state = 2}, + [1017] = {.lex_state = 318, .external_lex_state = 2}, + [1018] = {.lex_state = 318, .external_lex_state = 2}, + [1019] = {.lex_state = 318, .external_lex_state = 2}, + [1020] = {.lex_state = 318, .external_lex_state = 2}, + [1021] = {.lex_state = 318, .external_lex_state = 2}, + [1022] = {.lex_state = 318, .external_lex_state = 2}, + [1023] = {.lex_state = 318, .external_lex_state = 2}, + [1024] = {.lex_state = 318, .external_lex_state = 2}, + [1025] = {.lex_state = 318, .external_lex_state = 2}, + [1026] = {.lex_state = 318, .external_lex_state = 2}, + [1027] = {.lex_state = 318, .external_lex_state = 2}, + [1028] = {.lex_state = 318, .external_lex_state = 2}, + [1029] = {.lex_state = 318, .external_lex_state = 2}, + [1030] = {.lex_state = 318, .external_lex_state = 2}, + [1031] = {.lex_state = 318, .external_lex_state = 2}, + [1032] = {.lex_state = 318, .external_lex_state = 2}, + [1033] = {.lex_state = 318, .external_lex_state = 2}, + [1034] = {.lex_state = 318, .external_lex_state = 2}, + [1035] = {.lex_state = 318, .external_lex_state = 2}, + [1036] = {.lex_state = 318, .external_lex_state = 2}, + [1037] = {.lex_state = 318, .external_lex_state = 2}, + [1038] = {.lex_state = 318, .external_lex_state = 2}, + [1039] = {.lex_state = 318, .external_lex_state = 2}, + [1040] = {.lex_state = 318, .external_lex_state = 2}, + [1041] = {.lex_state = 318, .external_lex_state = 2}, + [1042] = {.lex_state = 318, .external_lex_state = 2}, + [1043] = {.lex_state = 318, .external_lex_state = 2}, + [1044] = {.lex_state = 318, .external_lex_state = 2}, + [1045] = {.lex_state = 318, .external_lex_state = 2}, + [1046] = {.lex_state = 318, .external_lex_state = 2}, + [1047] = {.lex_state = 318, .external_lex_state = 2}, + [1048] = {.lex_state = 318, .external_lex_state = 2}, + [1049] = {.lex_state = 318, .external_lex_state = 2}, + [1050] = {.lex_state = 318, .external_lex_state = 2}, + [1051] = {.lex_state = 318, .external_lex_state = 2}, + [1052] = {.lex_state = 318, .external_lex_state = 2}, + [1053] = {.lex_state = 318, .external_lex_state = 2}, + [1054] = {.lex_state = 318, .external_lex_state = 2}, + [1055] = {.lex_state = 318, .external_lex_state = 2}, + [1056] = {.lex_state = 318, .external_lex_state = 2}, + [1057] = {.lex_state = 318, .external_lex_state = 2}, + [1058] = {.lex_state = 318, .external_lex_state = 2}, + [1059] = {.lex_state = 318, .external_lex_state = 2}, + [1060] = {.lex_state = 318, .external_lex_state = 2}, + [1061] = {.lex_state = 318, .external_lex_state = 2}, + [1062] = {.lex_state = 318, .external_lex_state = 2}, + [1063] = {.lex_state = 318, .external_lex_state = 2}, + [1064] = {.lex_state = 318, .external_lex_state = 2}, + [1065] = {.lex_state = 318, .external_lex_state = 2}, + [1066] = {.lex_state = 318, .external_lex_state = 2}, + [1067] = {.lex_state = 318, .external_lex_state = 2}, + [1068] = {.lex_state = 318, .external_lex_state = 2}, + [1069] = {.lex_state = 318, .external_lex_state = 2}, + [1070] = {.lex_state = 318, .external_lex_state = 2}, + [1071] = {.lex_state = 318, .external_lex_state = 2}, + [1072] = {.lex_state = 318, .external_lex_state = 2}, + [1073] = {.lex_state = 318, .external_lex_state = 2}, + [1074] = {.lex_state = 318, .external_lex_state = 2}, + [1075] = {.lex_state = 318, .external_lex_state = 2}, + [1076] = {.lex_state = 318, .external_lex_state = 2}, + [1077] = {.lex_state = 318, .external_lex_state = 2}, + [1078] = {.lex_state = 318, .external_lex_state = 2}, + [1079] = {.lex_state = 318, .external_lex_state = 2}, + [1080] = {.lex_state = 318, .external_lex_state = 2}, + [1081] = {.lex_state = 318, .external_lex_state = 2}, + [1082] = {.lex_state = 318, .external_lex_state = 2}, + [1083] = {.lex_state = 318, .external_lex_state = 2}, + [1084] = {.lex_state = 318, .external_lex_state = 2}, + [1085] = {.lex_state = 318, .external_lex_state = 2}, + [1086] = {.lex_state = 318, .external_lex_state = 2}, + [1087] = {.lex_state = 318, .external_lex_state = 2}, + [1088] = {.lex_state = 318, .external_lex_state = 2}, + [1089] = {.lex_state = 318, .external_lex_state = 2}, + [1090] = {.lex_state = 318, .external_lex_state = 2}, + [1091] = {.lex_state = 318, .external_lex_state = 2}, + [1092] = {.lex_state = 318, .external_lex_state = 2}, + [1093] = {.lex_state = 318, .external_lex_state = 2}, + [1094] = {.lex_state = 318, .external_lex_state = 2}, + [1095] = {.lex_state = 318, .external_lex_state = 2}, + [1096] = {.lex_state = 318, .external_lex_state = 2}, + [1097] = {.lex_state = 318, .external_lex_state = 2}, + [1098] = {.lex_state = 318, .external_lex_state = 2}, + [1099] = {.lex_state = 318, .external_lex_state = 2}, + [1100] = {.lex_state = 318, .external_lex_state = 2}, + [1101] = {.lex_state = 318, .external_lex_state = 2}, + [1102] = {.lex_state = 318, .external_lex_state = 2}, + [1103] = {.lex_state = 318, .external_lex_state = 2}, + [1104] = {.lex_state = 318, .external_lex_state = 2}, + [1105] = {.lex_state = 318, .external_lex_state = 2}, + [1106] = {.lex_state = 318, .external_lex_state = 2}, + [1107] = {.lex_state = 318, .external_lex_state = 2}, + [1108] = {.lex_state = 318, .external_lex_state = 2}, + [1109] = {.lex_state = 318, .external_lex_state = 2}, + [1110] = {.lex_state = 318, .external_lex_state = 2}, + [1111] = {.lex_state = 318, .external_lex_state = 2}, + [1112] = {.lex_state = 318, .external_lex_state = 2}, + [1113] = {.lex_state = 318, .external_lex_state = 2}, + [1114] = {.lex_state = 318, .external_lex_state = 2}, + [1115] = {.lex_state = 318, .external_lex_state = 2}, + [1116] = {.lex_state = 318, .external_lex_state = 2}, + [1117] = {.lex_state = 318, .external_lex_state = 2}, + [1118] = {.lex_state = 318, .external_lex_state = 2}, + [1119] = {.lex_state = 318, .external_lex_state = 2}, + [1120] = {.lex_state = 318, .external_lex_state = 2}, + [1121] = {.lex_state = 318, .external_lex_state = 2}, + [1122] = {.lex_state = 318, .external_lex_state = 2}, + [1123] = {.lex_state = 318, .external_lex_state = 2}, + [1124] = {.lex_state = 318, .external_lex_state = 2}, + [1125] = {.lex_state = 318, .external_lex_state = 2}, + [1126] = {.lex_state = 318, .external_lex_state = 2}, + [1127] = {.lex_state = 318, .external_lex_state = 2}, + [1128] = {.lex_state = 318, .external_lex_state = 2}, + [1129] = {.lex_state = 318, .external_lex_state = 2}, + [1130] = {.lex_state = 318, .external_lex_state = 2}, + [1131] = {.lex_state = 318, .external_lex_state = 2}, + [1132] = {.lex_state = 318, .external_lex_state = 2}, + [1133] = {.lex_state = 318, .external_lex_state = 2}, + [1134] = {.lex_state = 318, .external_lex_state = 2}, + [1135] = {.lex_state = 318, .external_lex_state = 2}, + [1136] = {.lex_state = 318, .external_lex_state = 2}, + [1137] = {.lex_state = 318, .external_lex_state = 2}, + [1138] = {.lex_state = 318, .external_lex_state = 2}, + [1139] = {.lex_state = 318, .external_lex_state = 2}, + [1140] = {.lex_state = 318, .external_lex_state = 2}, + [1141] = {.lex_state = 318, .external_lex_state = 2}, + [1142] = {.lex_state = 318, .external_lex_state = 2}, + [1143] = {.lex_state = 318, .external_lex_state = 2}, + [1144] = {.lex_state = 318, .external_lex_state = 2}, + [1145] = {.lex_state = 318, .external_lex_state = 2}, + [1146] = {.lex_state = 318, .external_lex_state = 2}, + [1147] = {.lex_state = 318, .external_lex_state = 2}, + [1148] = {.lex_state = 318, .external_lex_state = 2}, + [1149] = {.lex_state = 318, .external_lex_state = 2}, + [1150] = {.lex_state = 318, .external_lex_state = 2}, + [1151] = {.lex_state = 318, .external_lex_state = 2}, + [1152] = {.lex_state = 318, .external_lex_state = 2}, + [1153] = {.lex_state = 318, .external_lex_state = 2}, + [1154] = {.lex_state = 318, .external_lex_state = 2}, + [1155] = {.lex_state = 318, .external_lex_state = 2}, + [1156] = {.lex_state = 318, .external_lex_state = 2}, + [1157] = {.lex_state = 318, .external_lex_state = 2}, + [1158] = {.lex_state = 318, .external_lex_state = 2}, + [1159] = {.lex_state = 318, .external_lex_state = 2}, + [1160] = {.lex_state = 318, .external_lex_state = 2}, + [1161] = {.lex_state = 318, .external_lex_state = 2}, + [1162] = {.lex_state = 318, .external_lex_state = 2}, + [1163] = {.lex_state = 318, .external_lex_state = 2}, + [1164] = {.lex_state = 318, .external_lex_state = 2}, + [1165] = {.lex_state = 318, .external_lex_state = 2}, + [1166] = {.lex_state = 318, .external_lex_state = 2}, + [1167] = {.lex_state = 318, .external_lex_state = 2}, + [1168] = {.lex_state = 318, .external_lex_state = 2}, + [1169] = {.lex_state = 318, .external_lex_state = 2}, + [1170] = {.lex_state = 318, .external_lex_state = 2}, + [1171] = {.lex_state = 318, .external_lex_state = 2}, + [1172] = {.lex_state = 318, .external_lex_state = 2}, + [1173] = {.lex_state = 318, .external_lex_state = 2}, + [1174] = {.lex_state = 318, .external_lex_state = 2}, + [1175] = {.lex_state = 318, .external_lex_state = 2}, + [1176] = {.lex_state = 318, .external_lex_state = 2}, + [1177] = {.lex_state = 318, .external_lex_state = 2}, + [1178] = {.lex_state = 318, .external_lex_state = 2}, + [1179] = {.lex_state = 318, .external_lex_state = 2}, + [1180] = {.lex_state = 318, .external_lex_state = 2}, + [1181] = {.lex_state = 318, .external_lex_state = 2}, + [1182] = {.lex_state = 318, .external_lex_state = 2}, + [1183] = {.lex_state = 318, .external_lex_state = 2}, + [1184] = {.lex_state = 318, .external_lex_state = 2}, + [1185] = {.lex_state = 318, .external_lex_state = 2}, + [1186] = {.lex_state = 318, .external_lex_state = 2}, + [1187] = {.lex_state = 318, .external_lex_state = 2}, + [1188] = {.lex_state = 318, .external_lex_state = 2}, + [1189] = {.lex_state = 318, .external_lex_state = 2}, + [1190] = {.lex_state = 318, .external_lex_state = 2}, + [1191] = {.lex_state = 318, .external_lex_state = 2}, + [1192] = {.lex_state = 318, .external_lex_state = 2}, + [1193] = {.lex_state = 318, .external_lex_state = 2}, + [1194] = {.lex_state = 318, .external_lex_state = 2}, + [1195] = {.lex_state = 318, .external_lex_state = 2}, + [1196] = {.lex_state = 318, .external_lex_state = 2}, + [1197] = {.lex_state = 318, .external_lex_state = 2}, + [1198] = {.lex_state = 318, .external_lex_state = 2}, + [1199] = {.lex_state = 318, .external_lex_state = 2}, + [1200] = {.lex_state = 318, .external_lex_state = 2}, + [1201] = {.lex_state = 318, .external_lex_state = 2}, + [1202] = {.lex_state = 318, .external_lex_state = 2}, + [1203] = {.lex_state = 318, .external_lex_state = 2}, + [1204] = {.lex_state = 318, .external_lex_state = 2}, + [1205] = {.lex_state = 318, .external_lex_state = 2}, + [1206] = {.lex_state = 318, .external_lex_state = 2}, + [1207] = {.lex_state = 318, .external_lex_state = 2}, + [1208] = {.lex_state = 318, .external_lex_state = 2}, + [1209] = {.lex_state = 318, .external_lex_state = 2}, + [1210] = {.lex_state = 318, .external_lex_state = 2}, + [1211] = {.lex_state = 318, .external_lex_state = 2}, + [1212] = {.lex_state = 318, .external_lex_state = 2}, + [1213] = {.lex_state = 318, .external_lex_state = 2}, + [1214] = {.lex_state = 318, .external_lex_state = 2}, + [1215] = {.lex_state = 318, .external_lex_state = 2}, [1216] = {.lex_state = 125, .external_lex_state = 3}, [1217] = {.lex_state = 101, .external_lex_state = 3}, [1218] = {.lex_state = 101, .external_lex_state = 3}, [1219] = {.lex_state = 101, .external_lex_state = 3}, - [1220] = {.lex_state = 101, .external_lex_state = 3}, - [1221] = {.lex_state = 125, .external_lex_state = 2}, + [1220] = {.lex_state = 125, .external_lex_state = 2}, + [1221] = {.lex_state = 101, .external_lex_state = 3}, [1222] = {.lex_state = 101, .external_lex_state = 3}, [1223] = {.lex_state = 101, .external_lex_state = 3}, [1224] = {.lex_state = 101, .external_lex_state = 3}, @@ -17729,206 +17656,206 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1230] = {.lex_state = 101, .external_lex_state = 3}, [1231] = {.lex_state = 101, .external_lex_state = 3}, [1232] = {.lex_state = 101, .external_lex_state = 3}, - [1233] = {.lex_state = 101, .external_lex_state = 3}, + [1233] = {.lex_state = 101, .external_lex_state = 2}, [1234] = {.lex_state = 101, .external_lex_state = 2}, [1235] = {.lex_state = 101, .external_lex_state = 2}, - [1236] = {.lex_state = 101, .external_lex_state = 2}, - [1237] = {.lex_state = 101, .external_lex_state = 2}, - [1238] = {.lex_state = 317, .external_lex_state = 3}, - [1239] = {.lex_state = 315, .external_lex_state = 3}, - [1240] = {.lex_state = 315, .external_lex_state = 3}, - [1241] = {.lex_state = 130, .external_lex_state = 3}, - [1242] = {.lex_state = 315, .external_lex_state = 3}, - [1243] = {.lex_state = 315, .external_lex_state = 3}, - [1244] = {.lex_state = 317, .external_lex_state = 3}, - [1245] = {.lex_state = 315, .external_lex_state = 3}, - [1246] = {.lex_state = 315, .external_lex_state = 3}, - [1247] = {.lex_state = 317, .external_lex_state = 2}, - [1248] = {.lex_state = 315, .external_lex_state = 3}, - [1249] = {.lex_state = 315, .external_lex_state = 3}, - [1250] = {.lex_state = 315, .external_lex_state = 3}, - [1251] = {.lex_state = 315, .external_lex_state = 3}, - [1252] = {.lex_state = 315, .external_lex_state = 3}, - [1253] = {.lex_state = 317, .external_lex_state = 3}, - [1254] = {.lex_state = 315, .external_lex_state = 3}, - [1255] = {.lex_state = 315, .external_lex_state = 3}, - [1256] = {.lex_state = 315, .external_lex_state = 3}, - [1257] = {.lex_state = 315, .external_lex_state = 3}, - [1258] = {.lex_state = 315, .external_lex_state = 3}, - [1259] = {.lex_state = 315, .external_lex_state = 2}, - [1260] = {.lex_state = 315, .external_lex_state = 3}, - [1261] = {.lex_state = 315, .external_lex_state = 3}, - [1262] = {.lex_state = 315, .external_lex_state = 2}, - [1263] = {.lex_state = 315, .external_lex_state = 2}, - [1264] = {.lex_state = 315, .external_lex_state = 3}, - [1265] = {.lex_state = 315, .external_lex_state = 3}, - [1266] = {.lex_state = 133, .external_lex_state = 3}, - [1267] = {.lex_state = 315, .external_lex_state = 3}, - [1268] = {.lex_state = 315, .external_lex_state = 3}, - [1269] = {.lex_state = 315, .external_lex_state = 3}, - [1270] = {.lex_state = 315, .external_lex_state = 3}, - [1271] = {.lex_state = 315, .external_lex_state = 3}, - [1272] = {.lex_state = 315, .external_lex_state = 3}, - [1273] = {.lex_state = 317, .external_lex_state = 2}, - [1274] = {.lex_state = 106, .external_lex_state = 3}, - [1275] = {.lex_state = 106, .external_lex_state = 3}, - [1276] = {.lex_state = 106, .external_lex_state = 3}, - [1277] = {.lex_state = 106, .external_lex_state = 3}, - [1278] = {.lex_state = 106, .external_lex_state = 3}, - [1279] = {.lex_state = 106, .external_lex_state = 3}, - [1280] = {.lex_state = 317, .external_lex_state = 2}, - [1281] = {.lex_state = 315, .external_lex_state = 3}, - [1282] = {.lex_state = 315, .external_lex_state = 3}, - [1283] = {.lex_state = 315, .external_lex_state = 3}, - [1284] = {.lex_state = 315, .external_lex_state = 3}, - [1285] = {.lex_state = 315, .external_lex_state = 3}, - [1286] = {.lex_state = 315, .external_lex_state = 3}, - [1287] = {.lex_state = 315, .external_lex_state = 3}, + [1236] = {.lex_state = 321, .external_lex_state = 3}, + [1237] = {.lex_state = 319, .external_lex_state = 3}, + [1238] = {.lex_state = 130, .external_lex_state = 3}, + [1239] = {.lex_state = 319, .external_lex_state = 3}, + [1240] = {.lex_state = 321, .external_lex_state = 2}, + [1241] = {.lex_state = 319, .external_lex_state = 3}, + [1242] = {.lex_state = 319, .external_lex_state = 3}, + [1243] = {.lex_state = 319, .external_lex_state = 3}, + [1244] = {.lex_state = 321, .external_lex_state = 3}, + [1245] = {.lex_state = 319, .external_lex_state = 3}, + [1246] = {.lex_state = 319, .external_lex_state = 3}, + [1247] = {.lex_state = 319, .external_lex_state = 3}, + [1248] = {.lex_state = 319, .external_lex_state = 3}, + [1249] = {.lex_state = 319, .external_lex_state = 3}, + [1250] = {.lex_state = 319, .external_lex_state = 3}, + [1251] = {.lex_state = 319, .external_lex_state = 3}, + [1252] = {.lex_state = 319, .external_lex_state = 3}, + [1253] = {.lex_state = 319, .external_lex_state = 3}, + [1254] = {.lex_state = 319, .external_lex_state = 3}, + [1255] = {.lex_state = 321, .external_lex_state = 3}, + [1256] = {.lex_state = 319, .external_lex_state = 3}, + [1257] = {.lex_state = 106, .external_lex_state = 3}, + [1258] = {.lex_state = 106, .external_lex_state = 3}, + [1259] = {.lex_state = 106, .external_lex_state = 3}, + [1260] = {.lex_state = 106, .external_lex_state = 3}, + [1261] = {.lex_state = 106, .external_lex_state = 3}, + [1262] = {.lex_state = 106, .external_lex_state = 3}, + [1263] = {.lex_state = 106, .external_lex_state = 3}, + [1264] = {.lex_state = 319, .external_lex_state = 3}, + [1265] = {.lex_state = 321, .external_lex_state = 2}, + [1266] = {.lex_state = 319, .external_lex_state = 3}, + [1267] = {.lex_state = 133, .external_lex_state = 3}, + [1268] = {.lex_state = 319, .external_lex_state = 2}, + [1269] = {.lex_state = 130, .external_lex_state = 2}, + [1270] = {.lex_state = 319, .external_lex_state = 3}, + [1271] = {.lex_state = 319, .external_lex_state = 2}, + [1272] = {.lex_state = 106, .external_lex_state = 3}, + [1273] = {.lex_state = 136, .external_lex_state = 3}, + [1274] = {.lex_state = 319, .external_lex_state = 3}, + [1275] = {.lex_state = 319, .external_lex_state = 3}, + [1276] = {.lex_state = 319, .external_lex_state = 3}, + [1277] = {.lex_state = 319, .external_lex_state = 3}, + [1278] = {.lex_state = 319, .external_lex_state = 3}, + [1279] = {.lex_state = 319, .external_lex_state = 3}, + [1280] = {.lex_state = 319, .external_lex_state = 3}, + [1281] = {.lex_state = 319, .external_lex_state = 3}, + [1282] = {.lex_state = 319, .external_lex_state = 3}, + [1283] = {.lex_state = 319, .external_lex_state = 3}, + [1284] = {.lex_state = 106, .external_lex_state = 3}, + [1285] = {.lex_state = 106, .external_lex_state = 3}, + [1286] = {.lex_state = 106, .external_lex_state = 3}, + [1287] = {.lex_state = 106, .external_lex_state = 3}, [1288] = {.lex_state = 106, .external_lex_state = 3}, - [1289] = {.lex_state = 315, .external_lex_state = 3}, - [1290] = {.lex_state = 106, .external_lex_state = 3}, - [1291] = {.lex_state = 106, .external_lex_state = 3}, - [1292] = {.lex_state = 315, .external_lex_state = 3}, - [1293] = {.lex_state = 315, .external_lex_state = 3}, - [1294] = {.lex_state = 315, .external_lex_state = 3}, - [1295] = {.lex_state = 315, .external_lex_state = 3}, - [1296] = {.lex_state = 315, .external_lex_state = 3}, - [1297] = {.lex_state = 315, .external_lex_state = 3}, - [1298] = {.lex_state = 315, .external_lex_state = 3}, - [1299] = {.lex_state = 130, .external_lex_state = 2}, - [1300] = {.lex_state = 106, .external_lex_state = 3}, - [1301] = {.lex_state = 106, .external_lex_state = 3}, - [1302] = {.lex_state = 106, .external_lex_state = 3}, - [1303] = {.lex_state = 106, .external_lex_state = 3}, - [1304] = {.lex_state = 106, .external_lex_state = 3}, - [1305] = {.lex_state = 106, .external_lex_state = 3}, + [1289] = {.lex_state = 106, .external_lex_state = 3}, + [1290] = {.lex_state = 319, .external_lex_state = 3}, + [1291] = {.lex_state = 319, .external_lex_state = 3}, + [1292] = {.lex_state = 319, .external_lex_state = 3}, + [1293] = {.lex_state = 319, .external_lex_state = 3}, + [1294] = {.lex_state = 319, .external_lex_state = 3}, + [1295] = {.lex_state = 319, .external_lex_state = 3}, + [1296] = {.lex_state = 319, .external_lex_state = 3}, + [1297] = {.lex_state = 319, .external_lex_state = 3}, + [1298] = {.lex_state = 319, .external_lex_state = 3}, + [1299] = {.lex_state = 319, .external_lex_state = 3}, + [1300] = {.lex_state = 319, .external_lex_state = 3}, + [1301] = {.lex_state = 319, .external_lex_state = 3}, + [1302] = {.lex_state = 319, .external_lex_state = 3}, + [1303] = {.lex_state = 319, .external_lex_state = 3}, + [1304] = {.lex_state = 319, .external_lex_state = 3}, + [1305] = {.lex_state = 321, .external_lex_state = 2}, [1306] = {.lex_state = 106, .external_lex_state = 3}, - [1307] = {.lex_state = 315, .external_lex_state = 3}, - [1308] = {.lex_state = 315, .external_lex_state = 3}, - [1309] = {.lex_state = 315, .external_lex_state = 3}, - [1310] = {.lex_state = 315, .external_lex_state = 3}, - [1311] = {.lex_state = 315, .external_lex_state = 3}, - [1312] = {.lex_state = 136, .external_lex_state = 3}, - [1313] = {.lex_state = 315, .external_lex_state = 3}, - [1314] = {.lex_state = 315, .external_lex_state = 3}, + [1307] = {.lex_state = 319, .external_lex_state = 3}, + [1308] = {.lex_state = 109, .external_lex_state = 3}, + [1309] = {.lex_state = 319, .external_lex_state = 2}, + [1310] = {.lex_state = 106, .external_lex_state = 2}, + [1311] = {.lex_state = 136, .external_lex_state = 2}, + [1312] = {.lex_state = 133, .external_lex_state = 2}, + [1313] = {.lex_state = 112, .external_lex_state = 3}, + [1314] = {.lex_state = 319, .external_lex_state = 2}, [1315] = {.lex_state = 112, .external_lex_state = 3}, [1316] = {.lex_state = 112, .external_lex_state = 3}, - [1317] = {.lex_state = 315, .external_lex_state = 2}, - [1318] = {.lex_state = 109, .external_lex_state = 3}, - [1319] = {.lex_state = 109, .external_lex_state = 3}, - [1320] = {.lex_state = 109, .external_lex_state = 3}, + [1317] = {.lex_state = 112, .external_lex_state = 3}, + [1318] = {.lex_state = 112, .external_lex_state = 3}, + [1319] = {.lex_state = 112, .external_lex_state = 3}, + [1320] = {.lex_state = 112, .external_lex_state = 3}, [1321] = {.lex_state = 109, .external_lex_state = 3}, [1322] = {.lex_state = 109, .external_lex_state = 3}, [1323] = {.lex_state = 109, .external_lex_state = 3}, [1324] = {.lex_state = 109, .external_lex_state = 3}, [1325] = {.lex_state = 109, .external_lex_state = 3}, - [1326] = {.lex_state = 133, .external_lex_state = 2}, - [1327] = {.lex_state = 112, .external_lex_state = 3}, - [1328] = {.lex_state = 315, .external_lex_state = 2}, - [1329] = {.lex_state = 112, .external_lex_state = 3}, - [1330] = {.lex_state = 112, .external_lex_state = 3}, - [1331] = {.lex_state = 112, .external_lex_state = 3}, - [1332] = {.lex_state = 112, .external_lex_state = 3}, + [1326] = {.lex_state = 109, .external_lex_state = 3}, + [1327] = {.lex_state = 109, .external_lex_state = 3}, + [1328] = {.lex_state = 109, .external_lex_state = 3}, + [1329] = {.lex_state = 109, .external_lex_state = 3}, + [1330] = {.lex_state = 109, .external_lex_state = 3}, + [1331] = {.lex_state = 319, .external_lex_state = 2}, + [1332] = {.lex_state = 106, .external_lex_state = 2}, [1333] = {.lex_state = 112, .external_lex_state = 3}, - [1334] = {.lex_state = 112, .external_lex_state = 3}, + [1334] = {.lex_state = 319, .external_lex_state = 2}, [1335] = {.lex_state = 112, .external_lex_state = 3}, [1336] = {.lex_state = 112, .external_lex_state = 3}, [1337] = {.lex_state = 112, .external_lex_state = 3}, [1338] = {.lex_state = 112, .external_lex_state = 3}, - [1339] = {.lex_state = 106, .external_lex_state = 2}, + [1339] = {.lex_state = 112, .external_lex_state = 3}, [1340] = {.lex_state = 112, .external_lex_state = 3}, - [1341] = {.lex_state = 106, .external_lex_state = 2}, - [1342] = {.lex_state = 136, .external_lex_state = 2}, - [1343] = {.lex_state = 112, .external_lex_state = 3}, - [1344] = {.lex_state = 315, .external_lex_state = 2}, - [1345] = {.lex_state = 315, .external_lex_state = 2}, - [1346] = {.lex_state = 315, .external_lex_state = 2}, + [1341] = {.lex_state = 112, .external_lex_state = 3}, + [1342] = {.lex_state = 106, .external_lex_state = 2}, + [1343] = {.lex_state = 319, .external_lex_state = 2}, + [1344] = {.lex_state = 319, .external_lex_state = 2}, + [1345] = {.lex_state = 319, .external_lex_state = 2}, + [1346] = {.lex_state = 109, .external_lex_state = 3}, [1347] = {.lex_state = 109, .external_lex_state = 3}, - [1348] = {.lex_state = 315, .external_lex_state = 2}, - [1349] = {.lex_state = 315, .external_lex_state = 2}, - [1350] = {.lex_state = 106, .external_lex_state = 2}, - [1351] = {.lex_state = 109, .external_lex_state = 3}, - [1352] = {.lex_state = 315, .external_lex_state = 2}, - [1353] = {.lex_state = 315, .external_lex_state = 2}, - [1354] = {.lex_state = 106, .external_lex_state = 2}, - [1355] = {.lex_state = 109, .external_lex_state = 3}, - [1356] = {.lex_state = 109, .external_lex_state = 3}, - [1357] = {.lex_state = 109, .external_lex_state = 3}, - [1358] = {.lex_state = 109, .external_lex_state = 3}, - [1359] = {.lex_state = 109, .external_lex_state = 3}, - [1360] = {.lex_state = 109, .external_lex_state = 3}, - [1361] = {.lex_state = 112, .external_lex_state = 3}, - [1362] = {.lex_state = 109, .external_lex_state = 2}, - [1363] = {.lex_state = 112, .external_lex_state = 2}, - [1364] = {.lex_state = 112, .external_lex_state = 2}, - [1365] = {.lex_state = 109, .external_lex_state = 2}, - [1366] = {.lex_state = 112, .external_lex_state = 2}, - [1367] = {.lex_state = 112, .external_lex_state = 2}, - [1368] = {.lex_state = 109, .external_lex_state = 2}, - [1369] = {.lex_state = 99, .external_lex_state = 2}, - [1370] = {.lex_state = 99, .external_lex_state = 2}, - [1371] = {.lex_state = 119, .external_lex_state = 2}, - [1372] = {.lex_state = 119, .external_lex_state = 2}, - [1373] = {.lex_state = 119, .external_lex_state = 2}, - [1374] = {.lex_state = 99, .external_lex_state = 2}, - [1375] = {.lex_state = 119, .external_lex_state = 2}, - [1376] = {.lex_state = 119, .external_lex_state = 2}, - [1377] = {.lex_state = 99, .external_lex_state = 2}, - [1378] = {.lex_state = 119, .external_lex_state = 2}, - [1379] = {.lex_state = 99, .external_lex_state = 2}, - [1380] = {.lex_state = 119, .external_lex_state = 2}, - [1381] = {.lex_state = 119, .external_lex_state = 2}, + [1348] = {.lex_state = 109, .external_lex_state = 3}, + [1349] = {.lex_state = 109, .external_lex_state = 3}, + [1350] = {.lex_state = 109, .external_lex_state = 2}, + [1351] = {.lex_state = 112, .external_lex_state = 2}, + [1352] = {.lex_state = 109, .external_lex_state = 2}, + [1353] = {.lex_state = 109, .external_lex_state = 2}, + [1354] = {.lex_state = 112, .external_lex_state = 2}, + [1355] = {.lex_state = 99, .external_lex_state = 2}, + [1356] = {.lex_state = 99, .external_lex_state = 2}, + [1357] = {.lex_state = 119, .external_lex_state = 2}, + [1358] = {.lex_state = 119, .external_lex_state = 2}, + [1359] = {.lex_state = 119, .external_lex_state = 2}, + [1360] = {.lex_state = 99, .external_lex_state = 2}, + [1361] = {.lex_state = 119, .external_lex_state = 2}, + [1362] = {.lex_state = 99, .external_lex_state = 2}, + [1363] = {.lex_state = 119, .external_lex_state = 2}, + [1364] = {.lex_state = 119, .external_lex_state = 2}, + [1365] = {.lex_state = 99, .external_lex_state = 2}, + [1366] = {.lex_state = 119, .external_lex_state = 2}, + [1367] = {.lex_state = 119, .external_lex_state = 2}, + [1368] = {.lex_state = 115, .external_lex_state = 2}, + [1369] = {.lex_state = 117, .external_lex_state = 2}, + [1370] = {.lex_state = 117, .external_lex_state = 2}, + [1371] = {.lex_state = 115, .external_lex_state = 2}, + [1372] = {.lex_state = 318, .external_lex_state = 2}, + [1373] = {.lex_state = 115, .external_lex_state = 2}, + [1374] = {.lex_state = 318, .external_lex_state = 2}, + [1375] = {.lex_state = 318, .external_lex_state = 2}, + [1376] = {.lex_state = 318, .external_lex_state = 2}, + [1377] = {.lex_state = 318, .external_lex_state = 2}, + [1378] = {.lex_state = 123, .external_lex_state = 2}, + [1379] = {.lex_state = 117, .external_lex_state = 2}, + [1380] = {.lex_state = 123, .external_lex_state = 2}, + [1381] = {.lex_state = 117, .external_lex_state = 2}, [1382] = {.lex_state = 117, .external_lex_state = 2}, - [1383] = {.lex_state = 115, .external_lex_state = 2}, - [1384] = {.lex_state = 117, .external_lex_state = 2}, - [1385] = {.lex_state = 115, .external_lex_state = 2}, - [1386] = {.lex_state = 123, .external_lex_state = 2}, - [1387] = {.lex_state = 314, .external_lex_state = 2}, - [1388] = {.lex_state = 314, .external_lex_state = 2}, + [1383] = {.lex_state = 123, .external_lex_state = 2}, + [1384] = {.lex_state = 318, .external_lex_state = 2}, + [1385] = {.lex_state = 318, .external_lex_state = 2}, + [1386] = {.lex_state = 318, .external_lex_state = 2}, + [1387] = {.lex_state = 123, .external_lex_state = 2}, + [1388] = {.lex_state = 123, .external_lex_state = 2}, [1389] = {.lex_state = 115, .external_lex_state = 2}, - [1390] = {.lex_state = 314, .external_lex_state = 2}, - [1391] = {.lex_state = 123, .external_lex_state = 2}, - [1392] = {.lex_state = 117, .external_lex_state = 2}, - [1393] = {.lex_state = 314, .external_lex_state = 2}, - [1394] = {.lex_state = 314, .external_lex_state = 2}, - [1395] = {.lex_state = 117, .external_lex_state = 2}, - [1396] = {.lex_state = 314, .external_lex_state = 2}, - [1397] = {.lex_state = 115, .external_lex_state = 2}, - [1398] = {.lex_state = 123, .external_lex_state = 2}, - [1399] = {.lex_state = 314, .external_lex_state = 2}, - [1400] = {.lex_state = 123, .external_lex_state = 2}, - [1401] = {.lex_state = 115, .external_lex_state = 2}, - [1402] = {.lex_state = 314, .external_lex_state = 2}, - [1403] = {.lex_state = 117, .external_lex_state = 2}, - [1404] = {.lex_state = 123, .external_lex_state = 2}, - [1405] = {.lex_state = 314, .external_lex_state = 2}, - [1406] = {.lex_state = 314, .external_lex_state = 2}, - [1407] = {.lex_state = 314, .external_lex_state = 2}, - [1408] = {.lex_state = 314, .external_lex_state = 2}, - [1409] = {.lex_state = 314, .external_lex_state = 2}, - [1410] = {.lex_state = 314, .external_lex_state = 2}, - [1411] = {.lex_state = 314, .external_lex_state = 2}, - [1412] = {.lex_state = 314, .external_lex_state = 2}, + [1390] = {.lex_state = 115, .external_lex_state = 2}, + [1391] = {.lex_state = 318, .external_lex_state = 2}, + [1392] = {.lex_state = 318, .external_lex_state = 2}, + [1393] = {.lex_state = 318, .external_lex_state = 2}, + [1394] = {.lex_state = 318, .external_lex_state = 2}, + [1395] = {.lex_state = 318, .external_lex_state = 2}, + [1396] = {.lex_state = 318, .external_lex_state = 2}, + [1397] = {.lex_state = 318, .external_lex_state = 2}, + [1398] = {.lex_state = 318, .external_lex_state = 2}, + [1399] = {.lex_state = 139, .external_lex_state = 4}, + [1400] = {.lex_state = 139, .external_lex_state = 4}, + [1401] = {.lex_state = 139, .external_lex_state = 4}, + [1402] = {.lex_state = 139, .external_lex_state = 4}, + [1403] = {.lex_state = 139, .external_lex_state = 4}, + [1404] = {.lex_state = 139, .external_lex_state = 4}, + [1405] = {.lex_state = 139, .external_lex_state = 4}, + [1406] = {.lex_state = 139, .external_lex_state = 4}, + [1407] = {.lex_state = 139, .external_lex_state = 4}, + [1408] = {.lex_state = 139, .external_lex_state = 4}, + [1409] = {.lex_state = 139, .external_lex_state = 4}, + [1410] = {.lex_state = 139, .external_lex_state = 4}, + [1411] = {.lex_state = 139, .external_lex_state = 4}, + [1412] = {.lex_state = 139, .external_lex_state = 4}, [1413] = {.lex_state = 139, .external_lex_state = 4}, [1414] = {.lex_state = 139, .external_lex_state = 4}, [1415] = {.lex_state = 139, .external_lex_state = 4}, [1416] = {.lex_state = 139, .external_lex_state = 4}, [1417] = {.lex_state = 139, .external_lex_state = 4}, [1418] = {.lex_state = 139, .external_lex_state = 4}, - [1419] = {.lex_state = 139, .external_lex_state = 4}, - [1420] = {.lex_state = 139, .external_lex_state = 4}, - [1421] = {.lex_state = 139, .external_lex_state = 4}, - [1422] = {.lex_state = 139, .external_lex_state = 4}, - [1423] = {.lex_state = 139, .external_lex_state = 4}, - [1424] = {.lex_state = 139, .external_lex_state = 4}, - [1425] = {.lex_state = 139, .external_lex_state = 4}, - [1426] = {.lex_state = 139, .external_lex_state = 4}, - [1427] = {.lex_state = 139, .external_lex_state = 4}, - [1428] = {.lex_state = 139, .external_lex_state = 4}, - [1429] = {.lex_state = 139, .external_lex_state = 4}, - [1430] = {.lex_state = 139, .external_lex_state = 4}, - [1431] = {.lex_state = 139, .external_lex_state = 4}, - [1432] = {.lex_state = 139, .external_lex_state = 4}, + [1419] = {.lex_state = 142, .external_lex_state = 4}, + [1420] = {.lex_state = 142, .external_lex_state = 4}, + [1421] = {.lex_state = 142, .external_lex_state = 4}, + [1422] = {.lex_state = 142, .external_lex_state = 4}, + [1423] = {.lex_state = 142, .external_lex_state = 4}, + [1424] = {.lex_state = 142, .external_lex_state = 4}, + [1425] = {.lex_state = 142, .external_lex_state = 4}, + [1426] = {.lex_state = 142, .external_lex_state = 4}, + [1427] = {.lex_state = 142, .external_lex_state = 4}, + [1428] = {.lex_state = 142, .external_lex_state = 4}, + [1429] = {.lex_state = 142, .external_lex_state = 4}, + [1430] = {.lex_state = 142, .external_lex_state = 4}, + [1431] = {.lex_state = 142, .external_lex_state = 4}, + [1432] = {.lex_state = 142, .external_lex_state = 4}, [1433] = {.lex_state = 142, .external_lex_state = 4}, [1434] = {.lex_state = 142, .external_lex_state = 4}, [1435] = {.lex_state = 142, .external_lex_state = 4}, @@ -17943,1136 +17870,1136 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1444] = {.lex_state = 142, .external_lex_state = 4}, [1445] = {.lex_state = 142, .external_lex_state = 4}, [1446] = {.lex_state = 142, .external_lex_state = 4}, - [1447] = {.lex_state = 142, .external_lex_state = 4}, - [1448] = {.lex_state = 142, .external_lex_state = 4}, - [1449] = {.lex_state = 142, .external_lex_state = 4}, - [1450] = {.lex_state = 142, .external_lex_state = 4}, - [1451] = {.lex_state = 142, .external_lex_state = 4}, - [1452] = {.lex_state = 142, .external_lex_state = 4}, - [1453] = {.lex_state = 142, .external_lex_state = 4}, + [1447] = {.lex_state = 142, .external_lex_state = 5}, + [1448] = {.lex_state = 142, .external_lex_state = 5}, + [1449] = {.lex_state = 142, .external_lex_state = 5}, + [1450] = {.lex_state = 142, .external_lex_state = 5}, + [1451] = {.lex_state = 142, .external_lex_state = 5}, + [1452] = {.lex_state = 142, .external_lex_state = 5}, + [1453] = {.lex_state = 142, .external_lex_state = 5}, [1454] = {.lex_state = 142, .external_lex_state = 4}, - [1455] = {.lex_state = 142, .external_lex_state = 4}, - [1456] = {.lex_state = 142, .external_lex_state = 4}, - [1457] = {.lex_state = 142, .external_lex_state = 4}, - [1458] = {.lex_state = 142, .external_lex_state = 4}, - [1459] = {.lex_state = 142, .external_lex_state = 4}, - [1460] = {.lex_state = 142, .external_lex_state = 4}, - [1461] = {.lex_state = 142, .external_lex_state = 5}, + [1455] = {.lex_state = 142, .external_lex_state = 5}, + [1456] = {.lex_state = 142, .external_lex_state = 5}, + [1457] = {.lex_state = 142, .external_lex_state = 5}, + [1458] = {.lex_state = 142, .external_lex_state = 5}, + [1459] = {.lex_state = 142, .external_lex_state = 5}, + [1460] = {.lex_state = 323, .external_lex_state = 5}, + [1461] = {.lex_state = 323, .external_lex_state = 5}, [1462] = {.lex_state = 142, .external_lex_state = 5}, [1463] = {.lex_state = 142, .external_lex_state = 5}, - [1464] = {.lex_state = 142, .external_lex_state = 5}, + [1464] = {.lex_state = 142, .external_lex_state = 4}, [1465] = {.lex_state = 142, .external_lex_state = 5}, - [1466] = {.lex_state = 319, .external_lex_state = 5}, + [1466] = {.lex_state = 142, .external_lex_state = 5}, [1467] = {.lex_state = 142, .external_lex_state = 5}, [1468] = {.lex_state = 142, .external_lex_state = 5}, - [1469] = {.lex_state = 142, .external_lex_state = 5}, + [1469] = {.lex_state = 323, .external_lex_state = 5}, [1470] = {.lex_state = 142, .external_lex_state = 5}, - [1471] = {.lex_state = 142, .external_lex_state = 5}, - [1472] = {.lex_state = 142, .external_lex_state = 5}, - [1473] = {.lex_state = 142, .external_lex_state = 4}, - [1474] = {.lex_state = 319, .external_lex_state = 5}, + [1471] = {.lex_state = 323, .external_lex_state = 5}, + [1472] = {.lex_state = 142, .external_lex_state = 4}, + [1473] = {.lex_state = 142, .external_lex_state = 5}, + [1474] = {.lex_state = 142, .external_lex_state = 5}, [1475] = {.lex_state = 142, .external_lex_state = 5}, - [1476] = {.lex_state = 142, .external_lex_state = 5}, - [1477] = {.lex_state = 142, .external_lex_state = 4}, - [1478] = {.lex_state = 142, .external_lex_state = 5}, + [1476] = {.lex_state = 142, .external_lex_state = 4}, + [1477] = {.lex_state = 142, .external_lex_state = 5}, + [1478] = {.lex_state = 142, .external_lex_state = 4}, [1479] = {.lex_state = 142, .external_lex_state = 5}, - [1480] = {.lex_state = 142, .external_lex_state = 5}, - [1481] = {.lex_state = 142, .external_lex_state = 4}, + [1480] = {.lex_state = 142, .external_lex_state = 4}, + [1481] = {.lex_state = 142, .external_lex_state = 5}, [1482] = {.lex_state = 142, .external_lex_state = 5}, - [1483] = {.lex_state = 319, .external_lex_state = 5}, - [1484] = {.lex_state = 319, .external_lex_state = 5}, + [1483] = {.lex_state = 142, .external_lex_state = 5}, + [1484] = {.lex_state = 142, .external_lex_state = 5}, [1485] = {.lex_state = 142, .external_lex_state = 5}, [1486] = {.lex_state = 142, .external_lex_state = 5}, - [1487] = {.lex_state = 142, .external_lex_state = 5}, - [1488] = {.lex_state = 142, .external_lex_state = 5}, - [1489] = {.lex_state = 142, .external_lex_state = 4}, - [1490] = {.lex_state = 142, .external_lex_state = 5}, + [1487] = {.lex_state = 323, .external_lex_state = 5}, + [1488] = {.lex_state = 142, .external_lex_state = 4}, + [1489] = {.lex_state = 142, .external_lex_state = 5}, + [1490] = {.lex_state = 142, .external_lex_state = 4}, [1491] = {.lex_state = 142, .external_lex_state = 5}, [1492] = {.lex_state = 142, .external_lex_state = 5}, [1493] = {.lex_state = 142, .external_lex_state = 5}, - [1494] = {.lex_state = 142, .external_lex_state = 5}, - [1495] = {.lex_state = 142, .external_lex_state = 4}, - [1496] = {.lex_state = 142, .external_lex_state = 4}, - [1497] = {.lex_state = 142, .external_lex_state = 5}, - [1498] = {.lex_state = 142, .external_lex_state = 5}, - [1499] = {.lex_state = 142, .external_lex_state = 5}, - [1500] = {.lex_state = 319, .external_lex_state = 5}, - [1501] = {.lex_state = 142, .external_lex_state = 5}, - [1502] = {.lex_state = 142, .external_lex_state = 5}, - [1503] = {.lex_state = 142, .external_lex_state = 5}, - [1504] = {.lex_state = 142, .external_lex_state = 5}, - [1505] = {.lex_state = 142, .external_lex_state = 4}, - [1506] = {.lex_state = 142, .external_lex_state = 4}, - [1507] = {.lex_state = 142, .external_lex_state = 5}, - [1508] = {.lex_state = 319, .external_lex_state = 5}, - [1509] = {.lex_state = 319, .external_lex_state = 5}, + [1494] = {.lex_state = 147, .external_lex_state = 5}, + [1495] = {.lex_state = 147, .external_lex_state = 5}, + [1496] = {.lex_state = 147, .external_lex_state = 5}, + [1497] = {.lex_state = 147, .external_lex_state = 5}, + [1498] = {.lex_state = 147, .external_lex_state = 5}, + [1499] = {.lex_state = 147, .external_lex_state = 5}, + [1500] = {.lex_state = 147, .external_lex_state = 5}, + [1501] = {.lex_state = 147, .external_lex_state = 5}, + [1502] = {.lex_state = 147, .external_lex_state = 5}, + [1503] = {.lex_state = 147, .external_lex_state = 5}, + [1504] = {.lex_state = 147, .external_lex_state = 5}, + [1505] = {.lex_state = 147, .external_lex_state = 5}, + [1506] = {.lex_state = 147, .external_lex_state = 5}, + [1507] = {.lex_state = 147, .external_lex_state = 5}, + [1508] = {.lex_state = 147, .external_lex_state = 5}, + [1509] = {.lex_state = 147, .external_lex_state = 5}, [1510] = {.lex_state = 147, .external_lex_state = 5}, [1511] = {.lex_state = 147, .external_lex_state = 5}, - [1512] = {.lex_state = 142, .external_lex_state = 5}, - [1513] = {.lex_state = 142, .external_lex_state = 5}, - [1514] = {.lex_state = 142, .external_lex_state = 5}, - [1515] = {.lex_state = 142, .external_lex_state = 5}, - [1516] = {.lex_state = 142, .external_lex_state = 5}, - [1517] = {.lex_state = 142, .external_lex_state = 5}, - [1518] = {.lex_state = 142, .external_lex_state = 5}, - [1519] = {.lex_state = 142, .external_lex_state = 5}, - [1520] = {.lex_state = 142, .external_lex_state = 5}, - [1521] = {.lex_state = 142, .external_lex_state = 5}, - [1522] = {.lex_state = 142, .external_lex_state = 5}, - [1523] = {.lex_state = 142, .external_lex_state = 5}, - [1524] = {.lex_state = 142, .external_lex_state = 5}, - [1525] = {.lex_state = 142, .external_lex_state = 5}, - [1526] = {.lex_state = 142, .external_lex_state = 5}, - [1527] = {.lex_state = 142, .external_lex_state = 5}, + [1512] = {.lex_state = 147, .external_lex_state = 5}, + [1513] = {.lex_state = 147, .external_lex_state = 5}, + [1514] = {.lex_state = 147, .external_lex_state = 5}, + [1515] = {.lex_state = 147, .external_lex_state = 5}, + [1516] = {.lex_state = 147, .external_lex_state = 5}, + [1517] = {.lex_state = 147, .external_lex_state = 5}, + [1518] = {.lex_state = 147, .external_lex_state = 5}, + [1519] = {.lex_state = 147, .external_lex_state = 5}, + [1520] = {.lex_state = 147, .external_lex_state = 5}, + [1521] = {.lex_state = 147, .external_lex_state = 5}, + [1522] = {.lex_state = 147, .external_lex_state = 5}, + [1523] = {.lex_state = 147, .external_lex_state = 5}, + [1524] = {.lex_state = 147, .external_lex_state = 5}, + [1525] = {.lex_state = 147, .external_lex_state = 5}, + [1526] = {.lex_state = 147, .external_lex_state = 5}, + [1527] = {.lex_state = 147, .external_lex_state = 5}, [1528] = {.lex_state = 142, .external_lex_state = 5}, - [1529] = {.lex_state = 142, .external_lex_state = 5}, - [1530] = {.lex_state = 142, .external_lex_state = 5}, + [1529] = {.lex_state = 147, .external_lex_state = 5}, + [1530] = {.lex_state = 147, .external_lex_state = 5}, [1531] = {.lex_state = 147, .external_lex_state = 5}, [1532] = {.lex_state = 147, .external_lex_state = 5}, - [1533] = {.lex_state = 142, .external_lex_state = 5}, - [1534] = {.lex_state = 142, .external_lex_state = 5}, - [1535] = {.lex_state = 142, .external_lex_state = 5}, - [1536] = {.lex_state = 142, .external_lex_state = 5}, - [1537] = {.lex_state = 142, .external_lex_state = 5}, - [1538] = {.lex_state = 142, .external_lex_state = 5}, - [1539] = {.lex_state = 142, .external_lex_state = 5}, - [1540] = {.lex_state = 142, .external_lex_state = 5}, + [1533] = {.lex_state = 147, .external_lex_state = 5}, + [1534] = {.lex_state = 147, .external_lex_state = 5}, + [1535] = {.lex_state = 147, .external_lex_state = 5}, + [1536] = {.lex_state = 147, .external_lex_state = 5}, + [1537] = {.lex_state = 147, .external_lex_state = 5}, + [1538] = {.lex_state = 147, .external_lex_state = 5}, + [1539] = {.lex_state = 147, .external_lex_state = 5}, + [1540] = {.lex_state = 147, .external_lex_state = 5}, [1541] = {.lex_state = 142, .external_lex_state = 5}, [1542] = {.lex_state = 142, .external_lex_state = 5}, [1543] = {.lex_state = 142, .external_lex_state = 5}, - [1544] = {.lex_state = 147, .external_lex_state = 5}, - [1545] = {.lex_state = 147, .external_lex_state = 5}, + [1544] = {.lex_state = 142, .external_lex_state = 5}, + [1545] = {.lex_state = 142, .external_lex_state = 5}, [1546] = {.lex_state = 142, .external_lex_state = 5}, [1547] = {.lex_state = 142, .external_lex_state = 5}, [1548] = {.lex_state = 142, .external_lex_state = 5}, [1549] = {.lex_state = 142, .external_lex_state = 5}, - [1550] = {.lex_state = 147, .external_lex_state = 5}, + [1550] = {.lex_state = 142, .external_lex_state = 5}, [1551] = {.lex_state = 142, .external_lex_state = 5}, - [1552] = {.lex_state = 147, .external_lex_state = 5}, - [1553] = {.lex_state = 147, .external_lex_state = 5}, + [1552] = {.lex_state = 142, .external_lex_state = 5}, + [1553] = {.lex_state = 142, .external_lex_state = 5}, [1554] = {.lex_state = 142, .external_lex_state = 5}, [1555] = {.lex_state = 142, .external_lex_state = 5}, - [1556] = {.lex_state = 142, .external_lex_state = 5}, - [1557] = {.lex_state = 147, .external_lex_state = 5}, - [1558] = {.lex_state = 147, .external_lex_state = 5}, - [1559] = {.lex_state = 147, .external_lex_state = 5}, + [1556] = {.lex_state = 323, .external_lex_state = 5}, + [1557] = {.lex_state = 323, .external_lex_state = 5}, + [1558] = {.lex_state = 142, .external_lex_state = 5}, + [1559] = {.lex_state = 142, .external_lex_state = 5}, [1560] = {.lex_state = 142, .external_lex_state = 5}, [1561] = {.lex_state = 142, .external_lex_state = 5}, [1562] = {.lex_state = 142, .external_lex_state = 5}, [1563] = {.lex_state = 142, .external_lex_state = 5}, [1564] = {.lex_state = 142, .external_lex_state = 5}, [1565] = {.lex_state = 142, .external_lex_state = 5}, - [1566] = {.lex_state = 147, .external_lex_state = 5}, - [1567] = {.lex_state = 147, .external_lex_state = 5}, + [1566] = {.lex_state = 142, .external_lex_state = 5}, + [1567] = {.lex_state = 142, .external_lex_state = 4}, [1568] = {.lex_state = 142, .external_lex_state = 5}, - [1569] = {.lex_state = 142, .external_lex_state = 5}, - [1570] = {.lex_state = 147, .external_lex_state = 5}, + [1569] = {.lex_state = 323, .external_lex_state = 5}, + [1570] = {.lex_state = 323, .external_lex_state = 5}, [1571] = {.lex_state = 142, .external_lex_state = 5}, - [1572] = {.lex_state = 142, .external_lex_state = 5}, + [1572] = {.lex_state = 323, .external_lex_state = 5}, [1573] = {.lex_state = 142, .external_lex_state = 5}, [1574] = {.lex_state = 142, .external_lex_state = 5}, - [1575] = {.lex_state = 147, .external_lex_state = 5}, + [1575] = {.lex_state = 142, .external_lex_state = 5}, [1576] = {.lex_state = 142, .external_lex_state = 5}, - [1577] = {.lex_state = 147, .external_lex_state = 5}, - [1578] = {.lex_state = 147, .external_lex_state = 5}, - [1579] = {.lex_state = 147, .external_lex_state = 5}, - [1580] = {.lex_state = 147, .external_lex_state = 5}, - [1581] = {.lex_state = 147, .external_lex_state = 5}, + [1577] = {.lex_state = 142, .external_lex_state = 5}, + [1578] = {.lex_state = 142, .external_lex_state = 5}, + [1579] = {.lex_state = 323, .external_lex_state = 5}, + [1580] = {.lex_state = 323, .external_lex_state = 5}, + [1581] = {.lex_state = 142, .external_lex_state = 5}, [1582] = {.lex_state = 147, .external_lex_state = 5}, - [1583] = {.lex_state = 147, .external_lex_state = 5}, - [1584] = {.lex_state = 147, .external_lex_state = 5}, - [1585] = {.lex_state = 147, .external_lex_state = 5}, - [1586] = {.lex_state = 147, .external_lex_state = 5}, - [1587] = {.lex_state = 147, .external_lex_state = 5}, - [1588] = {.lex_state = 147, .external_lex_state = 5}, - [1589] = {.lex_state = 147, .external_lex_state = 5}, - [1590] = {.lex_state = 147, .external_lex_state = 5}, - [1591] = {.lex_state = 147, .external_lex_state = 5}, - [1592] = {.lex_state = 147, .external_lex_state = 5}, - [1593] = {.lex_state = 147, .external_lex_state = 5}, - [1594] = {.lex_state = 147, .external_lex_state = 5}, - [1595] = {.lex_state = 147, .external_lex_state = 5}, - [1596] = {.lex_state = 319, .external_lex_state = 5}, - [1597] = {.lex_state = 147, .external_lex_state = 5}, - [1598] = {.lex_state = 147, .external_lex_state = 5}, - [1599] = {.lex_state = 147, .external_lex_state = 5}, - [1600] = {.lex_state = 147, .external_lex_state = 5}, - [1601] = {.lex_state = 147, .external_lex_state = 5}, - [1602] = {.lex_state = 147, .external_lex_state = 5}, - [1603] = {.lex_state = 147, .external_lex_state = 5}, - [1604] = {.lex_state = 147, .external_lex_state = 5}, - [1605] = {.lex_state = 147, .external_lex_state = 5}, - [1606] = {.lex_state = 147, .external_lex_state = 5}, - [1607] = {.lex_state = 147, .external_lex_state = 5}, - [1608] = {.lex_state = 147, .external_lex_state = 5}, - [1609] = {.lex_state = 147, .external_lex_state = 5}, - [1610] = {.lex_state = 147, .external_lex_state = 5}, - [1611] = {.lex_state = 319, .external_lex_state = 5}, - [1612] = {.lex_state = 142, .external_lex_state = 5}, - [1613] = {.lex_state = 319, .external_lex_state = 5}, - [1614] = {.lex_state = 319, .external_lex_state = 5}, - [1615] = {.lex_state = 319, .external_lex_state = 5}, - [1616] = {.lex_state = 319, .external_lex_state = 5}, + [1583] = {.lex_state = 142, .external_lex_state = 5}, + [1584] = {.lex_state = 142, .external_lex_state = 5}, + [1585] = {.lex_state = 142, .external_lex_state = 5}, + [1586] = {.lex_state = 142, .external_lex_state = 5}, + [1587] = {.lex_state = 142, .external_lex_state = 5}, + [1588] = {.lex_state = 142, .external_lex_state = 5}, + [1589] = {.lex_state = 142, .external_lex_state = 5}, + [1590] = {.lex_state = 142, .external_lex_state = 5}, + [1591] = {.lex_state = 142, .external_lex_state = 5}, + [1592] = {.lex_state = 142, .external_lex_state = 5}, + [1593] = {.lex_state = 142, .external_lex_state = 5}, + [1594] = {.lex_state = 142, .external_lex_state = 5}, + [1595] = {.lex_state = 142, .external_lex_state = 5}, + [1596] = {.lex_state = 142, .external_lex_state = 5}, + [1597] = {.lex_state = 142, .external_lex_state = 5}, + [1598] = {.lex_state = 142, .external_lex_state = 5}, + [1599] = {.lex_state = 142, .external_lex_state = 5}, + [1600] = {.lex_state = 142, .external_lex_state = 5}, + [1601] = {.lex_state = 323, .external_lex_state = 5}, + [1602] = {.lex_state = 323, .external_lex_state = 5}, + [1603] = {.lex_state = 323, .external_lex_state = 5}, + [1604] = {.lex_state = 323, .external_lex_state = 5}, + [1605] = {.lex_state = 323, .external_lex_state = 5}, + [1606] = {.lex_state = 323, .external_lex_state = 5}, + [1607] = {.lex_state = 323, .external_lex_state = 5}, + [1608] = {.lex_state = 323, .external_lex_state = 5}, + [1609] = {.lex_state = 323, .external_lex_state = 5}, + [1610] = {.lex_state = 323, .external_lex_state = 5}, + [1611] = {.lex_state = 323, .external_lex_state = 5}, + [1612] = {.lex_state = 323, .external_lex_state = 5}, + [1613] = {.lex_state = 323, .external_lex_state = 5}, + [1614] = {.lex_state = 323, .external_lex_state = 5}, + [1615] = {.lex_state = 142, .external_lex_state = 5}, + [1616] = {.lex_state = 142, .external_lex_state = 5}, [1617] = {.lex_state = 142, .external_lex_state = 5}, - [1618] = {.lex_state = 319, .external_lex_state = 5}, - [1619] = {.lex_state = 319, .external_lex_state = 5}, - [1620] = {.lex_state = 142, .external_lex_state = 4}, + [1618] = {.lex_state = 142, .external_lex_state = 5}, + [1619] = {.lex_state = 142, .external_lex_state = 5}, + [1620] = {.lex_state = 142, .external_lex_state = 5}, [1621] = {.lex_state = 142, .external_lex_state = 5}, - [1622] = {.lex_state = 319, .external_lex_state = 5}, - [1623] = {.lex_state = 147, .external_lex_state = 5}, - [1624] = {.lex_state = 147, .external_lex_state = 5}, - [1625] = {.lex_state = 319, .external_lex_state = 5}, - [1626] = {.lex_state = 147, .external_lex_state = 5}, - [1627] = {.lex_state = 147, .external_lex_state = 5}, + [1622] = {.lex_state = 142, .external_lex_state = 5}, + [1623] = {.lex_state = 142, .external_lex_state = 5}, + [1624] = {.lex_state = 142, .external_lex_state = 5}, + [1625] = {.lex_state = 142, .external_lex_state = 5}, + [1626] = {.lex_state = 142, .external_lex_state = 5}, + [1627] = {.lex_state = 142, .external_lex_state = 5}, [1628] = {.lex_state = 142, .external_lex_state = 5}, - [1629] = {.lex_state = 147, .external_lex_state = 5}, - [1630] = {.lex_state = 147, .external_lex_state = 5}, - [1631] = {.lex_state = 319, .external_lex_state = 5}, - [1632] = {.lex_state = 319, .external_lex_state = 5}, + [1629] = {.lex_state = 142, .external_lex_state = 5}, + [1630] = {.lex_state = 323, .external_lex_state = 5}, + [1631] = {.lex_state = 323, .external_lex_state = 5}, + [1632] = {.lex_state = 142, .external_lex_state = 5}, [1633] = {.lex_state = 142, .external_lex_state = 5}, [1634] = {.lex_state = 142, .external_lex_state = 5}, - [1635] = {.lex_state = 142, .external_lex_state = 5}, - [1636] = {.lex_state = 142, .external_lex_state = 5}, - [1637] = {.lex_state = 147, .external_lex_state = 5}, - [1638] = {.lex_state = 147, .external_lex_state = 5}, - [1639] = {.lex_state = 147, .external_lex_state = 5}, - [1640] = {.lex_state = 319, .external_lex_state = 5}, - [1641] = {.lex_state = 147, .external_lex_state = 5}, - [1642] = {.lex_state = 319, .external_lex_state = 5}, - [1643] = {.lex_state = 319, .external_lex_state = 5}, - [1644] = {.lex_state = 319, .external_lex_state = 5}, - [1645] = {.lex_state = 319, .external_lex_state = 5}, - [1646] = {.lex_state = 319, .external_lex_state = 5}, - [1647] = {.lex_state = 319, .external_lex_state = 5}, - [1648] = {.lex_state = 319, .external_lex_state = 5}, - [1649] = {.lex_state = 319, .external_lex_state = 5}, - [1650] = {.lex_state = 319, .external_lex_state = 5}, - [1651] = {.lex_state = 319, .external_lex_state = 5}, - [1652] = {.lex_state = 319, .external_lex_state = 5}, - [1653] = {.lex_state = 319, .external_lex_state = 5}, + [1635] = {.lex_state = 323, .external_lex_state = 5}, + [1636] = {.lex_state = 323, .external_lex_state = 5}, + [1637] = {.lex_state = 323, .external_lex_state = 5}, + [1638] = {.lex_state = 323, .external_lex_state = 5}, + [1639] = {.lex_state = 323, .external_lex_state = 5}, + [1640] = {.lex_state = 147, .external_lex_state = 5}, + [1641] = {.lex_state = 142, .external_lex_state = 5}, + [1642] = {.lex_state = 323, .external_lex_state = 5}, + [1643] = {.lex_state = 147, .external_lex_state = 5}, + [1644] = {.lex_state = 147, .external_lex_state = 5}, + [1645] = {.lex_state = 147, .external_lex_state = 5}, + [1646] = {.lex_state = 147, .external_lex_state = 5}, + [1647] = {.lex_state = 147, .external_lex_state = 5}, + [1648] = {.lex_state = 147, .external_lex_state = 5}, + [1649] = {.lex_state = 147, .external_lex_state = 5}, + [1650] = {.lex_state = 147, .external_lex_state = 5}, + [1651] = {.lex_state = 147, .external_lex_state = 5}, + [1652] = {.lex_state = 147, .external_lex_state = 5}, + [1653] = {.lex_state = 147, .external_lex_state = 5}, [1654] = {.lex_state = 147, .external_lex_state = 5}, [1655] = {.lex_state = 147, .external_lex_state = 5}, [1656] = {.lex_state = 142, .external_lex_state = 5}, - [1657] = {.lex_state = 142, .external_lex_state = 5}, + [1657] = {.lex_state = 150, .external_lex_state = 5}, [1658] = {.lex_state = 142, .external_lex_state = 5}, - [1659] = {.lex_state = 142, .external_lex_state = 5}, - [1660] = {.lex_state = 142, .external_lex_state = 5}, - [1661] = {.lex_state = 142, .external_lex_state = 5}, - [1662] = {.lex_state = 142, .external_lex_state = 5}, - [1663] = {.lex_state = 142, .external_lex_state = 5}, - [1664] = {.lex_state = 319, .external_lex_state = 5}, - [1665] = {.lex_state = 142, .external_lex_state = 5}, - [1666] = {.lex_state = 319, .external_lex_state = 5}, - [1667] = {.lex_state = 142, .external_lex_state = 5}, - [1668] = {.lex_state = 142, .external_lex_state = 5}, - [1669] = {.lex_state = 142, .external_lex_state = 5}, - [1670] = {.lex_state = 142, .external_lex_state = 5}, - [1671] = {.lex_state = 147, .external_lex_state = 5}, - [1672] = {.lex_state = 142, .external_lex_state = 5}, - [1673] = {.lex_state = 150, .external_lex_state = 5}, - [1674] = {.lex_state = 150, .external_lex_state = 5}, - [1675] = {.lex_state = 142, .external_lex_state = 4}, - [1676] = {.lex_state = 150, .external_lex_state = 5}, - [1677] = {.lex_state = 150, .external_lex_state = 5}, - [1678] = {.lex_state = 150, .external_lex_state = 5}, - [1679] = {.lex_state = 150, .external_lex_state = 5}, - [1680] = {.lex_state = 150, .external_lex_state = 5}, - [1681] = {.lex_state = 150, .external_lex_state = 5}, - [1682] = {.lex_state = 150, .external_lex_state = 5}, - [1683] = {.lex_state = 150, .external_lex_state = 5}, - [1684] = {.lex_state = 142, .external_lex_state = 5}, - [1685] = {.lex_state = 142, .external_lex_state = 5}, + [1659] = {.lex_state = 150, .external_lex_state = 5}, + [1660] = {.lex_state = 150, .external_lex_state = 5}, + [1661] = {.lex_state = 150, .external_lex_state = 5}, + [1662] = {.lex_state = 150, .external_lex_state = 5}, + [1663] = {.lex_state = 150, .external_lex_state = 5}, + [1664] = {.lex_state = 150, .external_lex_state = 5}, + [1665] = {.lex_state = 150, .external_lex_state = 5}, + [1666] = {.lex_state = 150, .external_lex_state = 5}, + [1667] = {.lex_state = 150, .external_lex_state = 5}, + [1668] = {.lex_state = 150, .external_lex_state = 5}, + [1669] = {.lex_state = 150, .external_lex_state = 5}, + [1670] = {.lex_state = 150, .external_lex_state = 5}, + [1671] = {.lex_state = 142, .external_lex_state = 4}, + [1672] = {.lex_state = 142, .external_lex_state = 4}, + [1673] = {.lex_state = 142, .external_lex_state = 4}, + [1674] = {.lex_state = 142, .external_lex_state = 4}, + [1675] = {.lex_state = 142, .external_lex_state = 5}, + [1676] = {.lex_state = 142, .external_lex_state = 4}, + [1677] = {.lex_state = 142, .external_lex_state = 5}, + [1678] = {.lex_state = 142, .external_lex_state = 5}, + [1679] = {.lex_state = 142, .external_lex_state = 4}, + [1680] = {.lex_state = 142, .external_lex_state = 4}, + [1681] = {.lex_state = 142, .external_lex_state = 4}, + [1682] = {.lex_state = 323, .external_lex_state = 5}, + [1683] = {.lex_state = 142, .external_lex_state = 4}, + [1684] = {.lex_state = 142, .external_lex_state = 4}, + [1685] = {.lex_state = 142, .external_lex_state = 4}, [1686] = {.lex_state = 150, .external_lex_state = 5}, - [1687] = {.lex_state = 150, .external_lex_state = 5}, - [1688] = {.lex_state = 150, .external_lex_state = 5}, + [1687] = {.lex_state = 142, .external_lex_state = 4}, + [1688] = {.lex_state = 142, .external_lex_state = 4}, [1689] = {.lex_state = 142, .external_lex_state = 4}, - [1690] = {.lex_state = 142, .external_lex_state = 4}, - [1691] = {.lex_state = 150, .external_lex_state = 5}, - [1692] = {.lex_state = 150, .external_lex_state = 5}, - [1693] = {.lex_state = 142, .external_lex_state = 5}, - [1694] = {.lex_state = 142, .external_lex_state = 5}, - [1695] = {.lex_state = 142, .external_lex_state = 5}, - [1696] = {.lex_state = 142, .external_lex_state = 4}, - [1697] = {.lex_state = 142, .external_lex_state = 5}, - [1698] = {.lex_state = 142, .external_lex_state = 5}, - [1699] = {.lex_state = 319, .external_lex_state = 5}, - [1700] = {.lex_state = 319, .external_lex_state = 5}, - [1701] = {.lex_state = 142, .external_lex_state = 5}, - [1702] = {.lex_state = 319, .external_lex_state = 5}, - [1703] = {.lex_state = 142, .external_lex_state = 4}, - [1704] = {.lex_state = 142, .external_lex_state = 5}, - [1705] = {.lex_state = 142, .external_lex_state = 5}, - [1706] = {.lex_state = 319, .external_lex_state = 5}, - [1707] = {.lex_state = 319, .external_lex_state = 5}, - [1708] = {.lex_state = 319, .external_lex_state = 5}, - [1709] = {.lex_state = 142, .external_lex_state = 5}, - [1710] = {.lex_state = 142, .external_lex_state = 4}, - [1711] = {.lex_state = 142, .external_lex_state = 5}, - [1712] = {.lex_state = 142, .external_lex_state = 4}, - [1713] = {.lex_state = 142, .external_lex_state = 5}, - [1714] = {.lex_state = 142, .external_lex_state = 5}, - [1715] = {.lex_state = 142, .external_lex_state = 4}, - [1716] = {.lex_state = 142, .external_lex_state = 5}, - [1717] = {.lex_state = 142, .external_lex_state = 5}, - [1718] = {.lex_state = 142, .external_lex_state = 5}, - [1719] = {.lex_state = 319, .external_lex_state = 5}, - [1720] = {.lex_state = 319, .external_lex_state = 5}, - [1721] = {.lex_state = 319, .external_lex_state = 5}, - [1722] = {.lex_state = 150, .external_lex_state = 5}, - [1723] = {.lex_state = 150, .external_lex_state = 5}, - [1724] = {.lex_state = 142, .external_lex_state = 4}, + [1690] = {.lex_state = 323, .external_lex_state = 4}, + [1691] = {.lex_state = 142, .external_lex_state = 4}, + [1692] = {.lex_state = 323, .external_lex_state = 5}, + [1693] = {.lex_state = 323, .external_lex_state = 5}, + [1694] = {.lex_state = 150, .external_lex_state = 5}, + [1695] = {.lex_state = 150, .external_lex_state = 5}, + [1696] = {.lex_state = 150, .external_lex_state = 5}, + [1697] = {.lex_state = 150, .external_lex_state = 5}, + [1698] = {.lex_state = 150, .external_lex_state = 5}, + [1699] = {.lex_state = 150, .external_lex_state = 5}, + [1700] = {.lex_state = 150, .external_lex_state = 5}, + [1701] = {.lex_state = 150, .external_lex_state = 5}, + [1702] = {.lex_state = 150, .external_lex_state = 5}, + [1703] = {.lex_state = 150, .external_lex_state = 5}, + [1704] = {.lex_state = 150, .external_lex_state = 5}, + [1705] = {.lex_state = 323, .external_lex_state = 5}, + [1706] = {.lex_state = 323, .external_lex_state = 5}, + [1707] = {.lex_state = 323, .external_lex_state = 5}, + [1708] = {.lex_state = 323, .external_lex_state = 5}, + [1709] = {.lex_state = 323, .external_lex_state = 5}, + [1710] = {.lex_state = 150, .external_lex_state = 5}, + [1711] = {.lex_state = 150, .external_lex_state = 5}, + [1712] = {.lex_state = 150, .external_lex_state = 5}, + [1713] = {.lex_state = 323, .external_lex_state = 5}, + [1714] = {.lex_state = 323, .external_lex_state = 5}, + [1715] = {.lex_state = 323, .external_lex_state = 5}, + [1716] = {.lex_state = 323, .external_lex_state = 5}, + [1717] = {.lex_state = 150, .external_lex_state = 5}, + [1718] = {.lex_state = 323, .external_lex_state = 5}, + [1719] = {.lex_state = 150, .external_lex_state = 5}, + [1720] = {.lex_state = 150, .external_lex_state = 5}, + [1721] = {.lex_state = 150, .external_lex_state = 5}, + [1722] = {.lex_state = 323, .external_lex_state = 5}, + [1723] = {.lex_state = 323, .external_lex_state = 5}, + [1724] = {.lex_state = 150, .external_lex_state = 5}, [1725] = {.lex_state = 150, .external_lex_state = 5}, - [1726] = {.lex_state = 142, .external_lex_state = 5}, - [1727] = {.lex_state = 142, .external_lex_state = 5}, + [1726] = {.lex_state = 323, .external_lex_state = 5}, + [1727] = {.lex_state = 150, .external_lex_state = 5}, [1728] = {.lex_state = 150, .external_lex_state = 5}, - [1729] = {.lex_state = 150, .external_lex_state = 5}, - [1730] = {.lex_state = 319, .external_lex_state = 5}, - [1731] = {.lex_state = 319, .external_lex_state = 5}, - [1732] = {.lex_state = 319, .external_lex_state = 5}, - [1733] = {.lex_state = 319, .external_lex_state = 5}, - [1734] = {.lex_state = 319, .external_lex_state = 5}, - [1735] = {.lex_state = 142, .external_lex_state = 4}, - [1736] = {.lex_state = 319, .external_lex_state = 5}, - [1737] = {.lex_state = 319, .external_lex_state = 5}, - [1738] = {.lex_state = 319, .external_lex_state = 5}, - [1739] = {.lex_state = 319, .external_lex_state = 5}, + [1729] = {.lex_state = 323, .external_lex_state = 5}, + [1730] = {.lex_state = 323, .external_lex_state = 5}, + [1731] = {.lex_state = 323, .external_lex_state = 5}, + [1732] = {.lex_state = 323, .external_lex_state = 5}, + [1733] = {.lex_state = 323, .external_lex_state = 5}, + [1734] = {.lex_state = 323, .external_lex_state = 5}, + [1735] = {.lex_state = 323, .external_lex_state = 5}, + [1736] = {.lex_state = 150, .external_lex_state = 5}, + [1737] = {.lex_state = 150, .external_lex_state = 5}, + [1738] = {.lex_state = 150, .external_lex_state = 5}, + [1739] = {.lex_state = 150, .external_lex_state = 5}, [1740] = {.lex_state = 150, .external_lex_state = 5}, - [1741] = {.lex_state = 319, .external_lex_state = 5}, - [1742] = {.lex_state = 150, .external_lex_state = 5}, - [1743] = {.lex_state = 319, .external_lex_state = 5}, - [1744] = {.lex_state = 319, .external_lex_state = 5}, - [1745] = {.lex_state = 319, .external_lex_state = 5}, - [1746] = {.lex_state = 142, .external_lex_state = 4}, - [1747] = {.lex_state = 319, .external_lex_state = 5}, - [1748] = {.lex_state = 319, .external_lex_state = 5}, - [1749] = {.lex_state = 319, .external_lex_state = 5}, - [1750] = {.lex_state = 319, .external_lex_state = 5}, - [1751] = {.lex_state = 319, .external_lex_state = 5}, - [1752] = {.lex_state = 319, .external_lex_state = 5}, - [1753] = {.lex_state = 319, .external_lex_state = 5}, - [1754] = {.lex_state = 319, .external_lex_state = 5}, - [1755] = {.lex_state = 319, .external_lex_state = 5}, - [1756] = {.lex_state = 150, .external_lex_state = 5}, - [1757] = {.lex_state = 142, .external_lex_state = 4}, - [1758] = {.lex_state = 142, .external_lex_state = 4}, - [1759] = {.lex_state = 150, .external_lex_state = 5}, - [1760] = {.lex_state = 142, .external_lex_state = 5}, - [1761] = {.lex_state = 142, .external_lex_state = 5}, - [1762] = {.lex_state = 142, .external_lex_state = 5}, - [1763] = {.lex_state = 150, .external_lex_state = 5}, - [1764] = {.lex_state = 142, .external_lex_state = 4}, + [1741] = {.lex_state = 150, .external_lex_state = 5}, + [1742] = {.lex_state = 323, .external_lex_state = 5}, + [1743] = {.lex_state = 323, .external_lex_state = 5}, + [1744] = {.lex_state = 150, .external_lex_state = 5}, + [1745] = {.lex_state = 150, .external_lex_state = 5}, + [1746] = {.lex_state = 150, .external_lex_state = 5}, + [1747] = {.lex_state = 323, .external_lex_state = 5}, + [1748] = {.lex_state = 323, .external_lex_state = 5}, + [1749] = {.lex_state = 150, .external_lex_state = 5}, + [1750] = {.lex_state = 323, .external_lex_state = 5}, + [1751] = {.lex_state = 150, .external_lex_state = 5}, + [1752] = {.lex_state = 323, .external_lex_state = 5}, + [1753] = {.lex_state = 323, .external_lex_state = 5}, + [1754] = {.lex_state = 323, .external_lex_state = 5}, + [1755] = {.lex_state = 323, .external_lex_state = 5}, + [1756] = {.lex_state = 323, .external_lex_state = 5}, + [1757] = {.lex_state = 323, .external_lex_state = 5}, + [1758] = {.lex_state = 323, .external_lex_state = 5}, + [1759] = {.lex_state = 323, .external_lex_state = 5}, + [1760] = {.lex_state = 323, .external_lex_state = 5}, + [1761] = {.lex_state = 323, .external_lex_state = 5}, + [1762] = {.lex_state = 323, .external_lex_state = 5}, + [1763] = {.lex_state = 323, .external_lex_state = 5}, + [1764] = {.lex_state = 323, .external_lex_state = 5}, [1765] = {.lex_state = 150, .external_lex_state = 5}, [1766] = {.lex_state = 150, .external_lex_state = 5}, - [1767] = {.lex_state = 150, .external_lex_state = 5}, - [1768] = {.lex_state = 150, .external_lex_state = 5}, - [1769] = {.lex_state = 319, .external_lex_state = 5}, - [1770] = {.lex_state = 319, .external_lex_state = 5}, + [1767] = {.lex_state = 323, .external_lex_state = 5}, + [1768] = {.lex_state = 323, .external_lex_state = 5}, + [1769] = {.lex_state = 323, .external_lex_state = 5}, + [1770] = {.lex_state = 323, .external_lex_state = 5}, [1771] = {.lex_state = 150, .external_lex_state = 5}, - [1772] = {.lex_state = 150, .external_lex_state = 5}, - [1773] = {.lex_state = 319, .external_lex_state = 5}, - [1774] = {.lex_state = 150, .external_lex_state = 5}, - [1775] = {.lex_state = 319, .external_lex_state = 5}, - [1776] = {.lex_state = 319, .external_lex_state = 5}, - [1777] = {.lex_state = 319, .external_lex_state = 5}, - [1778] = {.lex_state = 319, .external_lex_state = 5}, - [1779] = {.lex_state = 319, .external_lex_state = 5}, - [1780] = {.lex_state = 319, .external_lex_state = 5}, - [1781] = {.lex_state = 319, .external_lex_state = 5}, - [1782] = {.lex_state = 319, .external_lex_state = 5}, - [1783] = {.lex_state = 319, .external_lex_state = 5}, - [1784] = {.lex_state = 319, .external_lex_state = 5}, - [1785] = {.lex_state = 319, .external_lex_state = 5}, - [1786] = {.lex_state = 319, .external_lex_state = 5}, - [1787] = {.lex_state = 319, .external_lex_state = 5}, - [1788] = {.lex_state = 150, .external_lex_state = 5}, - [1789] = {.lex_state = 150, .external_lex_state = 5}, - [1790] = {.lex_state = 319, .external_lex_state = 5}, - [1791] = {.lex_state = 319, .external_lex_state = 5}, - [1792] = {.lex_state = 319, .external_lex_state = 5}, - [1793] = {.lex_state = 319, .external_lex_state = 5}, + [1772] = {.lex_state = 323, .external_lex_state = 5}, + [1773] = {.lex_state = 323, .external_lex_state = 5}, + [1774] = {.lex_state = 323, .external_lex_state = 5}, + [1775] = {.lex_state = 323, .external_lex_state = 5}, + [1776] = {.lex_state = 142, .external_lex_state = 4}, + [1777] = {.lex_state = 142, .external_lex_state = 4}, + [1778] = {.lex_state = 323, .external_lex_state = 5}, + [1779] = {.lex_state = 323, .external_lex_state = 5}, + [1780] = {.lex_state = 323, .external_lex_state = 5}, + [1781] = {.lex_state = 150, .external_lex_state = 5}, + [1782] = {.lex_state = 150, .external_lex_state = 5}, + [1783] = {.lex_state = 323, .external_lex_state = 5}, + [1784] = {.lex_state = 323, .external_lex_state = 5}, + [1785] = {.lex_state = 150, .external_lex_state = 5}, + [1786] = {.lex_state = 323, .external_lex_state = 5}, + [1787] = {.lex_state = 323, .external_lex_state = 5}, + [1788] = {.lex_state = 323, .external_lex_state = 5}, + [1789] = {.lex_state = 323, .external_lex_state = 5}, + [1790] = {.lex_state = 150, .external_lex_state = 5}, + [1791] = {.lex_state = 323, .external_lex_state = 5}, + [1792] = {.lex_state = 150, .external_lex_state = 5}, + [1793] = {.lex_state = 150, .external_lex_state = 5}, [1794] = {.lex_state = 150, .external_lex_state = 5}, - [1795] = {.lex_state = 319, .external_lex_state = 5}, - [1796] = {.lex_state = 319, .external_lex_state = 5}, - [1797] = {.lex_state = 319, .external_lex_state = 5}, - [1798] = {.lex_state = 319, .external_lex_state = 5}, - [1799] = {.lex_state = 319, .external_lex_state = 5}, - [1800] = {.lex_state = 319, .external_lex_state = 5}, - [1801] = {.lex_state = 319, .external_lex_state = 5}, - [1802] = {.lex_state = 319, .external_lex_state = 5}, - [1803] = {.lex_state = 319, .external_lex_state = 5}, - [1804] = {.lex_state = 319, .external_lex_state = 5}, - [1805] = {.lex_state = 150, .external_lex_state = 5}, - [1806] = {.lex_state = 142, .external_lex_state = 4}, - [1807] = {.lex_state = 319, .external_lex_state = 5}, - [1808] = {.lex_state = 319, .external_lex_state = 5}, - [1809] = {.lex_state = 319, .external_lex_state = 5}, - [1810] = {.lex_state = 319, .external_lex_state = 5}, - [1811] = {.lex_state = 319, .external_lex_state = 5}, - [1812] = {.lex_state = 319, .external_lex_state = 5}, - [1813] = {.lex_state = 319, .external_lex_state = 5}, - [1814] = {.lex_state = 150, .external_lex_state = 5}, - [1815] = {.lex_state = 319, .external_lex_state = 5}, - [1816] = {.lex_state = 150, .external_lex_state = 5}, - [1817] = {.lex_state = 150, .external_lex_state = 5}, - [1818] = {.lex_state = 150, .external_lex_state = 5}, - [1819] = {.lex_state = 150, .external_lex_state = 5}, - [1820] = {.lex_state = 150, .external_lex_state = 5}, - [1821] = {.lex_state = 150, .external_lex_state = 5}, - [1822] = {.lex_state = 150, .external_lex_state = 5}, - [1823] = {.lex_state = 150, .external_lex_state = 5}, - [1824] = {.lex_state = 150, .external_lex_state = 5}, - [1825] = {.lex_state = 150, .external_lex_state = 5}, - [1826] = {.lex_state = 150, .external_lex_state = 5}, - [1827] = {.lex_state = 150, .external_lex_state = 5}, - [1828] = {.lex_state = 150, .external_lex_state = 5}, - [1829] = {.lex_state = 150, .external_lex_state = 5}, - [1830] = {.lex_state = 150, .external_lex_state = 5}, - [1831] = {.lex_state = 150, .external_lex_state = 5}, - [1832] = {.lex_state = 150, .external_lex_state = 5}, - [1833] = {.lex_state = 150, .external_lex_state = 5}, - [1834] = {.lex_state = 150, .external_lex_state = 5}, - [1835] = {.lex_state = 142, .external_lex_state = 4}, - [1836] = {.lex_state = 319, .external_lex_state = 4}, + [1795] = {.lex_state = 150, .external_lex_state = 5}, + [1796] = {.lex_state = 142, .external_lex_state = 4}, + [1797] = {.lex_state = 142, .external_lex_state = 4}, + [1798] = {.lex_state = 150, .external_lex_state = 5}, + [1799] = {.lex_state = 150, .external_lex_state = 5}, + [1800] = {.lex_state = 150, .external_lex_state = 5}, + [1801] = {.lex_state = 323, .external_lex_state = 5}, + [1802] = {.lex_state = 323, .external_lex_state = 5}, + [1803] = {.lex_state = 142, .external_lex_state = 5}, + [1804] = {.lex_state = 142, .external_lex_state = 5}, + [1805] = {.lex_state = 323, .external_lex_state = 5}, + [1806] = {.lex_state = 323, .external_lex_state = 5}, + [1807] = {.lex_state = 142, .external_lex_state = 5}, + [1808] = {.lex_state = 323, .external_lex_state = 5}, + [1809] = {.lex_state = 323, .external_lex_state = 5}, + [1810] = {.lex_state = 142, .external_lex_state = 5}, + [1811] = {.lex_state = 142, .external_lex_state = 4}, + [1812] = {.lex_state = 142, .external_lex_state = 4}, + [1813] = {.lex_state = 142, .external_lex_state = 5}, + [1814] = {.lex_state = 142, .external_lex_state = 5}, + [1815] = {.lex_state = 142, .external_lex_state = 5}, + [1816] = {.lex_state = 323, .external_lex_state = 5}, + [1817] = {.lex_state = 323, .external_lex_state = 5}, + [1818] = {.lex_state = 323, .external_lex_state = 5}, + [1819] = {.lex_state = 323, .external_lex_state = 5}, + [1820] = {.lex_state = 323, .external_lex_state = 5}, + [1821] = {.lex_state = 142, .external_lex_state = 5}, + [1822] = {.lex_state = 142, .external_lex_state = 5}, + [1823] = {.lex_state = 142, .external_lex_state = 5}, + [1824] = {.lex_state = 142, .external_lex_state = 5}, + [1825] = {.lex_state = 142, .external_lex_state = 5}, + [1826] = {.lex_state = 142, .external_lex_state = 5}, + [1827] = {.lex_state = 142, .external_lex_state = 5}, + [1828] = {.lex_state = 142, .external_lex_state = 5}, + [1829] = {.lex_state = 142, .external_lex_state = 5}, + [1830] = {.lex_state = 142, .external_lex_state = 5}, + [1831] = {.lex_state = 323, .external_lex_state = 5}, + [1832] = {.lex_state = 142, .external_lex_state = 5}, + [1833] = {.lex_state = 142, .external_lex_state = 5}, + [1834] = {.lex_state = 323, .external_lex_state = 5}, + [1835] = {.lex_state = 153, .external_lex_state = 4}, + [1836] = {.lex_state = 142, .external_lex_state = 4}, [1837] = {.lex_state = 142, .external_lex_state = 4}, - [1838] = {.lex_state = 150, .external_lex_state = 5}, - [1839] = {.lex_state = 150, .external_lex_state = 5}, - [1840] = {.lex_state = 150, .external_lex_state = 5}, + [1838] = {.lex_state = 153, .external_lex_state = 4}, + [1839] = {.lex_state = 142, .external_lex_state = 4}, + [1840] = {.lex_state = 142, .external_lex_state = 4}, [1841] = {.lex_state = 142, .external_lex_state = 4}, [1842] = {.lex_state = 142, .external_lex_state = 4}, [1843] = {.lex_state = 142, .external_lex_state = 4}, - [1844] = {.lex_state = 142, .external_lex_state = 4}, - [1845] = {.lex_state = 150, .external_lex_state = 5}, - [1846] = {.lex_state = 150, .external_lex_state = 5}, - [1847] = {.lex_state = 319, .external_lex_state = 5}, - [1848] = {.lex_state = 319, .external_lex_state = 5}, - [1849] = {.lex_state = 319, .external_lex_state = 5}, - [1850] = {.lex_state = 150, .external_lex_state = 5}, + [1844] = {.lex_state = 323, .external_lex_state = 5}, + [1845] = {.lex_state = 323, .external_lex_state = 5}, + [1846] = {.lex_state = 142, .external_lex_state = 4}, + [1847] = {.lex_state = 323, .external_lex_state = 5}, + [1848] = {.lex_state = 323, .external_lex_state = 5}, + [1849] = {.lex_state = 323, .external_lex_state = 5}, + [1850] = {.lex_state = 323, .external_lex_state = 5}, [1851] = {.lex_state = 142, .external_lex_state = 4}, - [1852] = {.lex_state = 142, .external_lex_state = 4}, - [1853] = {.lex_state = 319, .external_lex_state = 4}, - [1854] = {.lex_state = 319, .external_lex_state = 4}, - [1855] = {.lex_state = 319, .external_lex_state = 4}, - [1856] = {.lex_state = 319, .external_lex_state = 4}, - [1857] = {.lex_state = 319, .external_lex_state = 4}, - [1858] = {.lex_state = 319, .external_lex_state = 5}, - [1859] = {.lex_state = 319, .external_lex_state = 4}, - [1860] = {.lex_state = 319, .external_lex_state = 5}, - [1861] = {.lex_state = 319, .external_lex_state = 4}, - [1862] = {.lex_state = 319, .external_lex_state = 5}, - [1863] = {.lex_state = 319, .external_lex_state = 5}, - [1864] = {.lex_state = 319, .external_lex_state = 5}, - [1865] = {.lex_state = 319, .external_lex_state = 5}, - [1866] = {.lex_state = 319, .external_lex_state = 5}, - [1867] = {.lex_state = 319, .external_lex_state = 5}, - [1868] = {.lex_state = 319, .external_lex_state = 5}, - [1869] = {.lex_state = 319, .external_lex_state = 5}, - [1870] = {.lex_state = 319, .external_lex_state = 5}, - [1871] = {.lex_state = 319, .external_lex_state = 5}, - [1872] = {.lex_state = 319, .external_lex_state = 5}, + [1852] = {.lex_state = 323, .external_lex_state = 5}, + [1853] = {.lex_state = 323, .external_lex_state = 5}, + [1854] = {.lex_state = 323, .external_lex_state = 5}, + [1855] = {.lex_state = 142, .external_lex_state = 4}, + [1856] = {.lex_state = 142, .external_lex_state = 4}, + [1857] = {.lex_state = 142, .external_lex_state = 4}, + [1858] = {.lex_state = 142, .external_lex_state = 4}, + [1859] = {.lex_state = 323, .external_lex_state = 5}, + [1860] = {.lex_state = 323, .external_lex_state = 5}, + [1861] = {.lex_state = 323, .external_lex_state = 5}, + [1862] = {.lex_state = 142, .external_lex_state = 4}, + [1863] = {.lex_state = 323, .external_lex_state = 4}, + [1864] = {.lex_state = 142, .external_lex_state = 4}, + [1865] = {.lex_state = 323, .external_lex_state = 5}, + [1866] = {.lex_state = 323, .external_lex_state = 5}, + [1867] = {.lex_state = 142, .external_lex_state = 4}, + [1868] = {.lex_state = 323, .external_lex_state = 4}, + [1869] = {.lex_state = 142, .external_lex_state = 4}, + [1870] = {.lex_state = 323, .external_lex_state = 4}, + [1871] = {.lex_state = 323, .external_lex_state = 5}, + [1872] = {.lex_state = 323, .external_lex_state = 5}, [1873] = {.lex_state = 142, .external_lex_state = 4}, [1874] = {.lex_state = 142, .external_lex_state = 4}, - [1875] = {.lex_state = 319, .external_lex_state = 5}, - [1876] = {.lex_state = 319, .external_lex_state = 5}, - [1877] = {.lex_state = 319, .external_lex_state = 5}, + [1875] = {.lex_state = 142, .external_lex_state = 4}, + [1876] = {.lex_state = 142, .external_lex_state = 4}, + [1877] = {.lex_state = 323, .external_lex_state = 4}, [1878] = {.lex_state = 142, .external_lex_state = 4}, - [1879] = {.lex_state = 153, .external_lex_state = 4}, + [1879] = {.lex_state = 323, .external_lex_state = 4}, [1880] = {.lex_state = 153, .external_lex_state = 4}, - [1881] = {.lex_state = 142, .external_lex_state = 4}, - [1882] = {.lex_state = 153, .external_lex_state = 4}, - [1883] = {.lex_state = 153, .external_lex_state = 4}, - [1884] = {.lex_state = 153, .external_lex_state = 4}, - [1885] = {.lex_state = 153, .external_lex_state = 4}, - [1886] = {.lex_state = 153, .external_lex_state = 4}, + [1881] = {.lex_state = 153, .external_lex_state = 4}, + [1882] = {.lex_state = 142, .external_lex_state = 4}, + [1883] = {.lex_state = 142, .external_lex_state = 4}, + [1884] = {.lex_state = 142, .external_lex_state = 4}, + [1885] = {.lex_state = 142, .external_lex_state = 4}, + [1886] = {.lex_state = 323, .external_lex_state = 4}, [1887] = {.lex_state = 142, .external_lex_state = 4}, - [1888] = {.lex_state = 142, .external_lex_state = 4}, - [1889] = {.lex_state = 319, .external_lex_state = 5}, + [1888] = {.lex_state = 153, .external_lex_state = 4}, + [1889] = {.lex_state = 142, .external_lex_state = 4}, [1890] = {.lex_state = 142, .external_lex_state = 4}, - [1891] = {.lex_state = 142, .external_lex_state = 4}, + [1891] = {.lex_state = 153, .external_lex_state = 4}, [1892] = {.lex_state = 142, .external_lex_state = 4}, - [1893] = {.lex_state = 319, .external_lex_state = 5}, - [1894] = {.lex_state = 319, .external_lex_state = 5}, + [1893] = {.lex_state = 153, .external_lex_state = 4}, + [1894] = {.lex_state = 142, .external_lex_state = 4}, [1895] = {.lex_state = 142, .external_lex_state = 4}, - [1896] = {.lex_state = 142, .external_lex_state = 4}, - [1897] = {.lex_state = 319, .external_lex_state = 4}, - [1898] = {.lex_state = 319, .external_lex_state = 4}, + [1896] = {.lex_state = 323, .external_lex_state = 4}, + [1897] = {.lex_state = 142, .external_lex_state = 4}, + [1898] = {.lex_state = 323, .external_lex_state = 4}, [1899] = {.lex_state = 142, .external_lex_state = 4}, - [1900] = {.lex_state = 153, .external_lex_state = 4}, - [1901] = {.lex_state = 142, .external_lex_state = 4}, - [1902] = {.lex_state = 319, .external_lex_state = 4}, - [1903] = {.lex_state = 319, .external_lex_state = 5}, - [1904] = {.lex_state = 142, .external_lex_state = 4}, - [1905] = {.lex_state = 319, .external_lex_state = 5}, - [1906] = {.lex_state = 319, .external_lex_state = 5}, - [1907] = {.lex_state = 319, .external_lex_state = 5}, - [1908] = {.lex_state = 319, .external_lex_state = 4}, - [1909] = {.lex_state = 319, .external_lex_state = 4}, - [1910] = {.lex_state = 319, .external_lex_state = 4}, - [1911] = {.lex_state = 142, .external_lex_state = 4}, - [1912] = {.lex_state = 142, .external_lex_state = 4}, - [1913] = {.lex_state = 142, .external_lex_state = 4}, - [1914] = {.lex_state = 142, .external_lex_state = 4}, - [1915] = {.lex_state = 142, .external_lex_state = 4}, - [1916] = {.lex_state = 142, .external_lex_state = 4}, + [1900] = {.lex_state = 142, .external_lex_state = 4}, + [1901] = {.lex_state = 153, .external_lex_state = 4}, + [1902] = {.lex_state = 153, .external_lex_state = 4}, + [1903] = {.lex_state = 142, .external_lex_state = 4}, + [1904] = {.lex_state = 153, .external_lex_state = 4}, + [1905] = {.lex_state = 153, .external_lex_state = 4}, + [1906] = {.lex_state = 153, .external_lex_state = 4}, + [1907] = {.lex_state = 153, .external_lex_state = 4}, + [1908] = {.lex_state = 153, .external_lex_state = 4}, + [1909] = {.lex_state = 153, .external_lex_state = 4}, + [1910] = {.lex_state = 153, .external_lex_state = 4}, + [1911] = {.lex_state = 153, .external_lex_state = 4}, + [1912] = {.lex_state = 153, .external_lex_state = 4}, + [1913] = {.lex_state = 153, .external_lex_state = 4}, + [1914] = {.lex_state = 153, .external_lex_state = 4}, + [1915] = {.lex_state = 153, .external_lex_state = 4}, + [1916] = {.lex_state = 153, .external_lex_state = 4}, [1917] = {.lex_state = 153, .external_lex_state = 4}, - [1918] = {.lex_state = 142, .external_lex_state = 4}, - [1919] = {.lex_state = 142, .external_lex_state = 4}, - [1920] = {.lex_state = 142, .external_lex_state = 4}, - [1921] = {.lex_state = 142, .external_lex_state = 4}, - [1922] = {.lex_state = 142, .external_lex_state = 4}, + [1918] = {.lex_state = 153, .external_lex_state = 4}, + [1919] = {.lex_state = 153, .external_lex_state = 4}, + [1920] = {.lex_state = 153, .external_lex_state = 4}, + [1921] = {.lex_state = 153, .external_lex_state = 4}, + [1922] = {.lex_state = 153, .external_lex_state = 4}, [1923] = {.lex_state = 153, .external_lex_state = 4}, - [1924] = {.lex_state = 142, .external_lex_state = 4}, - [1925] = {.lex_state = 142, .external_lex_state = 4}, + [1924] = {.lex_state = 153, .external_lex_state = 4}, + [1925] = {.lex_state = 153, .external_lex_state = 4}, [1926] = {.lex_state = 153, .external_lex_state = 4}, [1927] = {.lex_state = 153, .external_lex_state = 4}, - [1928] = {.lex_state = 142, .external_lex_state = 4}, + [1928] = {.lex_state = 153, .external_lex_state = 4}, [1929] = {.lex_state = 153, .external_lex_state = 4}, [1930] = {.lex_state = 142, .external_lex_state = 4}, - [1931] = {.lex_state = 153, .external_lex_state = 4}, + [1931] = {.lex_state = 323, .external_lex_state = 4}, [1932] = {.lex_state = 153, .external_lex_state = 4}, [1933] = {.lex_state = 153, .external_lex_state = 4}, [1934] = {.lex_state = 153, .external_lex_state = 4}, - [1935] = {.lex_state = 142, .external_lex_state = 4}, + [1935] = {.lex_state = 153, .external_lex_state = 4}, [1936] = {.lex_state = 153, .external_lex_state = 4}, [1937] = {.lex_state = 153, .external_lex_state = 4}, - [1938] = {.lex_state = 319, .external_lex_state = 5}, + [1938] = {.lex_state = 153, .external_lex_state = 4}, [1939] = {.lex_state = 153, .external_lex_state = 4}, [1940] = {.lex_state = 153, .external_lex_state = 4}, [1941] = {.lex_state = 153, .external_lex_state = 4}, [1942] = {.lex_state = 153, .external_lex_state = 4}, [1943] = {.lex_state = 153, .external_lex_state = 4}, - [1944] = {.lex_state = 142, .external_lex_state = 4}, - [1945] = {.lex_state = 142, .external_lex_state = 4}, - [1946] = {.lex_state = 142, .external_lex_state = 4}, + [1944] = {.lex_state = 153, .external_lex_state = 4}, + [1945] = {.lex_state = 153, .external_lex_state = 4}, + [1946] = {.lex_state = 153, .external_lex_state = 4}, [1947] = {.lex_state = 153, .external_lex_state = 4}, [1948] = {.lex_state = 153, .external_lex_state = 4}, [1949] = {.lex_state = 153, .external_lex_state = 4}, [1950] = {.lex_state = 153, .external_lex_state = 4}, - [1951] = {.lex_state = 319, .external_lex_state = 4}, + [1951] = {.lex_state = 142, .external_lex_state = 4}, [1952] = {.lex_state = 142, .external_lex_state = 4}, - [1953] = {.lex_state = 153, .external_lex_state = 4}, - [1954] = {.lex_state = 142, .external_lex_state = 4}, - [1955] = {.lex_state = 319, .external_lex_state = 4}, - [1956] = {.lex_state = 319, .external_lex_state = 4}, - [1957] = {.lex_state = 319, .external_lex_state = 4}, - [1958] = {.lex_state = 319, .external_lex_state = 4}, - [1959] = {.lex_state = 142, .external_lex_state = 4}, - [1960] = {.lex_state = 142, .external_lex_state = 4}, + [1953] = {.lex_state = 142, .external_lex_state = 4}, + [1954] = {.lex_state = 323, .external_lex_state = 5}, + [1955] = {.lex_state = 323, .external_lex_state = 4}, + [1956] = {.lex_state = 142, .external_lex_state = 4}, + [1957] = {.lex_state = 142, .external_lex_state = 4}, + [1958] = {.lex_state = 323, .external_lex_state = 5}, + [1959] = {.lex_state = 153, .external_lex_state = 4}, + [1960] = {.lex_state = 153, .external_lex_state = 4}, [1961] = {.lex_state = 142, .external_lex_state = 4}, - [1962] = {.lex_state = 142, .external_lex_state = 4}, + [1962] = {.lex_state = 153, .external_lex_state = 4}, [1963] = {.lex_state = 142, .external_lex_state = 4}, - [1964] = {.lex_state = 153, .external_lex_state = 4}, - [1965] = {.lex_state = 153, .external_lex_state = 4}, + [1964] = {.lex_state = 142, .external_lex_state = 4}, + [1965] = {.lex_state = 142, .external_lex_state = 4}, [1966] = {.lex_state = 142, .external_lex_state = 4}, [1967] = {.lex_state = 142, .external_lex_state = 4}, [1968] = {.lex_state = 142, .external_lex_state = 4}, [1969] = {.lex_state = 142, .external_lex_state = 4}, - [1970] = {.lex_state = 142, .external_lex_state = 4}, - [1971] = {.lex_state = 142, .external_lex_state = 4}, + [1970] = {.lex_state = 323, .external_lex_state = 4}, + [1971] = {.lex_state = 323, .external_lex_state = 4}, [1972] = {.lex_state = 142, .external_lex_state = 4}, - [1973] = {.lex_state = 153, .external_lex_state = 4}, - [1974] = {.lex_state = 319, .external_lex_state = 5}, - [1975] = {.lex_state = 153, .external_lex_state = 4}, - [1976] = {.lex_state = 153, .external_lex_state = 4}, + [1973] = {.lex_state = 323, .external_lex_state = 5}, + [1974] = {.lex_state = 323, .external_lex_state = 5}, + [1975] = {.lex_state = 323, .external_lex_state = 5}, + [1976] = {.lex_state = 323, .external_lex_state = 4}, [1977] = {.lex_state = 142, .external_lex_state = 4}, [1978] = {.lex_state = 142, .external_lex_state = 4}, - [1979] = {.lex_state = 153, .external_lex_state = 4}, - [1980] = {.lex_state = 153, .external_lex_state = 4}, - [1981] = {.lex_state = 153, .external_lex_state = 4}, - [1982] = {.lex_state = 153, .external_lex_state = 4}, - [1983] = {.lex_state = 142, .external_lex_state = 4}, - [1984] = {.lex_state = 153, .external_lex_state = 4}, - [1985] = {.lex_state = 153, .external_lex_state = 4}, - [1986] = {.lex_state = 142, .external_lex_state = 4}, - [1987] = {.lex_state = 153, .external_lex_state = 4}, - [1988] = {.lex_state = 153, .external_lex_state = 4}, - [1989] = {.lex_state = 153, .external_lex_state = 4}, - [1990] = {.lex_state = 153, .external_lex_state = 4}, - [1991] = {.lex_state = 319, .external_lex_state = 4}, - [1992] = {.lex_state = 153, .external_lex_state = 4}, - [1993] = {.lex_state = 153, .external_lex_state = 4}, - [1994] = {.lex_state = 153, .external_lex_state = 4}, - [1995] = {.lex_state = 319, .external_lex_state = 5}, - [1996] = {.lex_state = 319, .external_lex_state = 5}, - [1997] = {.lex_state = 319, .external_lex_state = 5}, - [1998] = {.lex_state = 153, .external_lex_state = 4}, - [1999] = {.lex_state = 153, .external_lex_state = 4}, + [1979] = {.lex_state = 142, .external_lex_state = 4}, + [1980] = {.lex_state = 142, .external_lex_state = 4}, + [1981] = {.lex_state = 142, .external_lex_state = 4}, + [1982] = {.lex_state = 142, .external_lex_state = 4}, + [1983] = {.lex_state = 323, .external_lex_state = 4}, + [1984] = {.lex_state = 323, .external_lex_state = 4}, + [1985] = {.lex_state = 323, .external_lex_state = 4}, + [1986] = {.lex_state = 323, .external_lex_state = 4}, + [1987] = {.lex_state = 142, .external_lex_state = 4}, + [1988] = {.lex_state = 142, .external_lex_state = 4}, + [1989] = {.lex_state = 323, .external_lex_state = 5}, + [1990] = {.lex_state = 323, .external_lex_state = 5}, + [1991] = {.lex_state = 323, .external_lex_state = 5}, + [1992] = {.lex_state = 142, .external_lex_state = 4}, + [1993] = {.lex_state = 323, .external_lex_state = 4}, + [1994] = {.lex_state = 323, .external_lex_state = 4}, + [1995] = {.lex_state = 323, .external_lex_state = 4}, + [1996] = {.lex_state = 323, .external_lex_state = 5}, + [1997] = {.lex_state = 323, .external_lex_state = 5}, + [1998] = {.lex_state = 323, .external_lex_state = 5}, + [1999] = {.lex_state = 323, .external_lex_state = 5}, [2000] = {.lex_state = 142, .external_lex_state = 4}, - [2001] = {.lex_state = 142, .external_lex_state = 4}, + [2001] = {.lex_state = 153, .external_lex_state = 4}, [2002] = {.lex_state = 142, .external_lex_state = 4}, - [2003] = {.lex_state = 319, .external_lex_state = 4}, - [2004] = {.lex_state = 142, .external_lex_state = 4}, + [2003] = {.lex_state = 142, .external_lex_state = 4}, + [2004] = {.lex_state = 153, .external_lex_state = 4}, [2005] = {.lex_state = 142, .external_lex_state = 4}, - [2006] = {.lex_state = 153, .external_lex_state = 4}, + [2006] = {.lex_state = 142, .external_lex_state = 4}, [2007] = {.lex_state = 142, .external_lex_state = 4}, - [2008] = {.lex_state = 153, .external_lex_state = 4}, - [2009] = {.lex_state = 153, .external_lex_state = 4}, - [2010] = {.lex_state = 142, .external_lex_state = 4}, + [2008] = {.lex_state = 323, .external_lex_state = 4}, + [2009] = {.lex_state = 323, .external_lex_state = 4}, + [2010] = {.lex_state = 153, .external_lex_state = 4}, [2011] = {.lex_state = 142, .external_lex_state = 4}, [2012] = {.lex_state = 142, .external_lex_state = 4}, - [2013] = {.lex_state = 142, .external_lex_state = 4}, + [2013] = {.lex_state = 323, .external_lex_state = 4}, [2014] = {.lex_state = 142, .external_lex_state = 4}, - [2015] = {.lex_state = 153, .external_lex_state = 4}, - [2016] = {.lex_state = 153, .external_lex_state = 4}, + [2015] = {.lex_state = 142, .external_lex_state = 4}, + [2016] = {.lex_state = 142, .external_lex_state = 4}, [2017] = {.lex_state = 153, .external_lex_state = 4}, - [2018] = {.lex_state = 319, .external_lex_state = 4}, - [2019] = {.lex_state = 142, .external_lex_state = 4}, - [2020] = {.lex_state = 153, .external_lex_state = 4}, - [2021] = {.lex_state = 319, .external_lex_state = 4}, - [2022] = {.lex_state = 142, .external_lex_state = 4}, - [2023] = {.lex_state = 142, .external_lex_state = 4}, + [2018] = {.lex_state = 142, .external_lex_state = 4}, + [2019] = {.lex_state = 323, .external_lex_state = 4}, + [2020] = {.lex_state = 323, .external_lex_state = 4}, + [2021] = {.lex_state = 142, .external_lex_state = 4}, + [2022] = {.lex_state = 323, .external_lex_state = 4}, + [2023] = {.lex_state = 323, .external_lex_state = 5}, [2024] = {.lex_state = 142, .external_lex_state = 4}, - [2025] = {.lex_state = 153, .external_lex_state = 4}, - [2026] = {.lex_state = 153, .external_lex_state = 4}, - [2027] = {.lex_state = 153, .external_lex_state = 4}, - [2028] = {.lex_state = 153, .external_lex_state = 4}, - [2029] = {.lex_state = 153, .external_lex_state = 4}, - [2030] = {.lex_state = 153, .external_lex_state = 4}, - [2031] = {.lex_state = 142, .external_lex_state = 4}, - [2032] = {.lex_state = 142, .external_lex_state = 4}, - [2033] = {.lex_state = 319, .external_lex_state = 4}, - [2034] = {.lex_state = 319, .external_lex_state = 5}, - [2035] = {.lex_state = 319, .external_lex_state = 5}, - [2036] = {.lex_state = 142, .external_lex_state = 4}, - [2037] = {.lex_state = 142, .external_lex_state = 4}, - [2038] = {.lex_state = 156, .external_lex_state = 4}, - [2039] = {.lex_state = 319, .external_lex_state = 5}, - [2040] = {.lex_state = 319, .external_lex_state = 5}, - [2041] = {.lex_state = 156, .external_lex_state = 4}, - [2042] = {.lex_state = 321, .external_lex_state = 5}, - [2043] = {.lex_state = 321, .external_lex_state = 5}, - [2044] = {.lex_state = 142, .external_lex_state = 4}, - [2045] = {.lex_state = 319, .external_lex_state = 5}, - [2046] = {.lex_state = 319, .external_lex_state = 5}, - [2047] = {.lex_state = 156, .external_lex_state = 4}, - [2048] = {.lex_state = 142, .external_lex_state = 4}, - [2049] = {.lex_state = 319, .external_lex_state = 5}, + [2025] = {.lex_state = 323, .external_lex_state = 4}, + [2026] = {.lex_state = 323, .external_lex_state = 4}, + [2027] = {.lex_state = 142, .external_lex_state = 4}, + [2028] = {.lex_state = 323, .external_lex_state = 4}, + [2029] = {.lex_state = 325, .external_lex_state = 5}, + [2030] = {.lex_state = 325, .external_lex_state = 5}, + [2031] = {.lex_state = 325, .external_lex_state = 5}, + [2032] = {.lex_state = 325, .external_lex_state = 5}, + [2033] = {.lex_state = 323, .external_lex_state = 4}, + [2034] = {.lex_state = 325, .external_lex_state = 5}, + [2035] = {.lex_state = 142, .external_lex_state = 4}, + [2036] = {.lex_state = 325, .external_lex_state = 5}, + [2037] = {.lex_state = 325, .external_lex_state = 5}, + [2038] = {.lex_state = 158, .external_lex_state = 4}, + [2039] = {.lex_state = 158, .external_lex_state = 4}, + [2040] = {.lex_state = 142, .external_lex_state = 4}, + [2041] = {.lex_state = 323, .external_lex_state = 4}, + [2042] = {.lex_state = 142, .external_lex_state = 4}, + [2043] = {.lex_state = 158, .external_lex_state = 4}, + [2044] = {.lex_state = 158, .external_lex_state = 4}, + [2045] = {.lex_state = 142, .external_lex_state = 4}, + [2046] = {.lex_state = 158, .external_lex_state = 4}, + [2047] = {.lex_state = 158, .external_lex_state = 4}, + [2048] = {.lex_state = 323, .external_lex_state = 4}, + [2049] = {.lex_state = 142, .external_lex_state = 4}, [2050] = {.lex_state = 142, .external_lex_state = 4}, - [2051] = {.lex_state = 156, .external_lex_state = 4}, - [2052] = {.lex_state = 319, .external_lex_state = 4}, - [2053] = {.lex_state = 156, .external_lex_state = 4}, - [2054] = {.lex_state = 319, .external_lex_state = 5}, - [2055] = {.lex_state = 319, .external_lex_state = 5}, - [2056] = {.lex_state = 321, .external_lex_state = 5}, - [2057] = {.lex_state = 321, .external_lex_state = 5}, - [2058] = {.lex_state = 321, .external_lex_state = 5}, - [2059] = {.lex_state = 321, .external_lex_state = 5}, - [2060] = {.lex_state = 321, .external_lex_state = 5}, - [2061] = {.lex_state = 321, .external_lex_state = 5}, - [2062] = {.lex_state = 321, .external_lex_state = 5}, - [2063] = {.lex_state = 321, .external_lex_state = 5}, + [2051] = {.lex_state = 323, .external_lex_state = 4}, + [2052] = {.lex_state = 323, .external_lex_state = 4}, + [2053] = {.lex_state = 325, .external_lex_state = 5}, + [2054] = {.lex_state = 142, .external_lex_state = 4}, + [2055] = {.lex_state = 323, .external_lex_state = 5}, + [2056] = {.lex_state = 325, .external_lex_state = 5}, + [2057] = {.lex_state = 323, .external_lex_state = 5}, + [2058] = {.lex_state = 142, .external_lex_state = 4}, + [2059] = {.lex_state = 142, .external_lex_state = 4}, + [2060] = {.lex_state = 325, .external_lex_state = 5}, + [2061] = {.lex_state = 325, .external_lex_state = 5}, + [2062] = {.lex_state = 325, .external_lex_state = 5}, + [2063] = {.lex_state = 325, .external_lex_state = 5}, [2064] = {.lex_state = 142, .external_lex_state = 4}, - [2065] = {.lex_state = 321, .external_lex_state = 5}, - [2066] = {.lex_state = 321, .external_lex_state = 5}, - [2067] = {.lex_state = 321, .external_lex_state = 5}, - [2068] = {.lex_state = 321, .external_lex_state = 5}, - [2069] = {.lex_state = 319, .external_lex_state = 4}, - [2070] = {.lex_state = 321, .external_lex_state = 5}, - [2071] = {.lex_state = 321, .external_lex_state = 5}, - [2072] = {.lex_state = 142, .external_lex_state = 4}, - [2073] = {.lex_state = 321, .external_lex_state = 5}, - [2074] = {.lex_state = 321, .external_lex_state = 5}, + [2065] = {.lex_state = 325, .external_lex_state = 5}, + [2066] = {.lex_state = 325, .external_lex_state = 5}, + [2067] = {.lex_state = 325, .external_lex_state = 5}, + [2068] = {.lex_state = 325, .external_lex_state = 5}, + [2069] = {.lex_state = 325, .external_lex_state = 5}, + [2070] = {.lex_state = 325, .external_lex_state = 5}, + [2071] = {.lex_state = 142, .external_lex_state = 4}, + [2072] = {.lex_state = 323, .external_lex_state = 4}, + [2073] = {.lex_state = 325, .external_lex_state = 5}, + [2074] = {.lex_state = 142, .external_lex_state = 4}, [2075] = {.lex_state = 142, .external_lex_state = 4}, - [2076] = {.lex_state = 319, .external_lex_state = 4}, - [2077] = {.lex_state = 319, .external_lex_state = 4}, - [2078] = {.lex_state = 319, .external_lex_state = 5}, - [2079] = {.lex_state = 319, .external_lex_state = 5}, - [2080] = {.lex_state = 319, .external_lex_state = 5}, - [2081] = {.lex_state = 321, .external_lex_state = 5}, - [2082] = {.lex_state = 321, .external_lex_state = 5}, - [2083] = {.lex_state = 321, .external_lex_state = 5}, - [2084] = {.lex_state = 142, .external_lex_state = 4}, - [2085] = {.lex_state = 321, .external_lex_state = 5}, - [2086] = {.lex_state = 321, .external_lex_state = 5}, - [2087] = {.lex_state = 321, .external_lex_state = 5}, - [2088] = {.lex_state = 321, .external_lex_state = 5}, - [2089] = {.lex_state = 319, .external_lex_state = 4}, - [2090] = {.lex_state = 321, .external_lex_state = 5}, - [2091] = {.lex_state = 321, .external_lex_state = 5}, - [2092] = {.lex_state = 142, .external_lex_state = 4}, - [2093] = {.lex_state = 321, .external_lex_state = 5}, - [2094] = {.lex_state = 321, .external_lex_state = 5}, + [2076] = {.lex_state = 158, .external_lex_state = 4}, + [2077] = {.lex_state = 323, .external_lex_state = 4}, + [2078] = {.lex_state = 142, .external_lex_state = 4}, + [2079] = {.lex_state = 158, .external_lex_state = 4}, + [2080] = {.lex_state = 323, .external_lex_state = 4}, + [2081] = {.lex_state = 323, .external_lex_state = 4}, + [2082] = {.lex_state = 323, .external_lex_state = 4}, + [2083] = {.lex_state = 325, .external_lex_state = 5}, + [2084] = {.lex_state = 325, .external_lex_state = 5}, + [2085] = {.lex_state = 323, .external_lex_state = 4}, + [2086] = {.lex_state = 325, .external_lex_state = 5}, + [2087] = {.lex_state = 325, .external_lex_state = 5}, + [2088] = {.lex_state = 323, .external_lex_state = 4}, + [2089] = {.lex_state = 323, .external_lex_state = 5}, + [2090] = {.lex_state = 142, .external_lex_state = 4}, + [2091] = {.lex_state = 142, .external_lex_state = 4}, + [2092] = {.lex_state = 323, .external_lex_state = 5}, + [2093] = {.lex_state = 142, .external_lex_state = 4}, + [2094] = {.lex_state = 142, .external_lex_state = 4}, [2095] = {.lex_state = 142, .external_lex_state = 4}, - [2096] = {.lex_state = 321, .external_lex_state = 5}, - [2097] = {.lex_state = 319, .external_lex_state = 4}, - [2098] = {.lex_state = 321, .external_lex_state = 5}, - [2099] = {.lex_state = 321, .external_lex_state = 5}, - [2100] = {.lex_state = 319, .external_lex_state = 4}, - [2101] = {.lex_state = 321, .external_lex_state = 5}, - [2102] = {.lex_state = 321, .external_lex_state = 5}, - [2103] = {.lex_state = 319, .external_lex_state = 5}, - [2104] = {.lex_state = 321, .external_lex_state = 5}, - [2105] = {.lex_state = 321, .external_lex_state = 5}, - [2106] = {.lex_state = 321, .external_lex_state = 5}, - [2107] = {.lex_state = 321, .external_lex_state = 5}, - [2108] = {.lex_state = 321, .external_lex_state = 5}, - [2109] = {.lex_state = 321, .external_lex_state = 5}, - [2110] = {.lex_state = 321, .external_lex_state = 5}, - [2111] = {.lex_state = 142, .external_lex_state = 4}, - [2112] = {.lex_state = 321, .external_lex_state = 5}, - [2113] = {.lex_state = 321, .external_lex_state = 5}, - [2114] = {.lex_state = 321, .external_lex_state = 5}, - [2115] = {.lex_state = 319, .external_lex_state = 4}, - [2116] = {.lex_state = 321, .external_lex_state = 5}, - [2117] = {.lex_state = 321, .external_lex_state = 5}, - [2118] = {.lex_state = 142, .external_lex_state = 4}, - [2119] = {.lex_state = 321, .external_lex_state = 5}, - [2120] = {.lex_state = 321, .external_lex_state = 5}, - [2121] = {.lex_state = 142, .external_lex_state = 4}, - [2122] = {.lex_state = 321, .external_lex_state = 5}, - [2123] = {.lex_state = 319, .external_lex_state = 4}, - [2124] = {.lex_state = 321, .external_lex_state = 5}, - [2125] = {.lex_state = 319, .external_lex_state = 5}, - [2126] = {.lex_state = 156, .external_lex_state = 4}, - [2127] = {.lex_state = 319, .external_lex_state = 5}, - [2128] = {.lex_state = 319, .external_lex_state = 5}, - [2129] = {.lex_state = 156, .external_lex_state = 4}, - [2130] = {.lex_state = 156, .external_lex_state = 4}, - [2131] = {.lex_state = 319, .external_lex_state = 4}, - [2132] = {.lex_state = 156, .external_lex_state = 4}, - [2133] = {.lex_state = 319, .external_lex_state = 4}, - [2134] = {.lex_state = 319, .external_lex_state = 4}, - [2135] = {.lex_state = 319, .external_lex_state = 4}, - [2136] = {.lex_state = 319, .external_lex_state = 4}, - [2137] = {.lex_state = 319, .external_lex_state = 4}, - [2138] = {.lex_state = 319, .external_lex_state = 4}, - [2139] = {.lex_state = 142, .external_lex_state = 4}, - [2140] = {.lex_state = 319, .external_lex_state = 4}, - [2141] = {.lex_state = 319, .external_lex_state = 4}, - [2142] = {.lex_state = 319, .external_lex_state = 4}, - [2143] = {.lex_state = 319, .external_lex_state = 4}, - [2144] = {.lex_state = 142, .external_lex_state = 4}, - [2145] = {.lex_state = 156, .external_lex_state = 4}, - [2146] = {.lex_state = 142, .external_lex_state = 4}, - [2147] = {.lex_state = 156, .external_lex_state = 4}, - [2148] = {.lex_state = 319, .external_lex_state = 4}, - [2149] = {.lex_state = 156, .external_lex_state = 4}, - [2150] = {.lex_state = 156, .external_lex_state = 4}, - [2151] = {.lex_state = 156, .external_lex_state = 4}, - [2152] = {.lex_state = 156, .external_lex_state = 4}, + [2096] = {.lex_state = 142, .external_lex_state = 4}, + [2097] = {.lex_state = 142, .external_lex_state = 4}, + [2098] = {.lex_state = 142, .external_lex_state = 4}, + [2099] = {.lex_state = 142, .external_lex_state = 4}, + [2100] = {.lex_state = 142, .external_lex_state = 4}, + [2101] = {.lex_state = 142, .external_lex_state = 4}, + [2102] = {.lex_state = 142, .external_lex_state = 4}, + [2103] = {.lex_state = 142, .external_lex_state = 4}, + [2104] = {.lex_state = 142, .external_lex_state = 4}, + [2105] = {.lex_state = 325, .external_lex_state = 5}, + [2106] = {.lex_state = 142, .external_lex_state = 4}, + [2107] = {.lex_state = 323, .external_lex_state = 4}, + [2108] = {.lex_state = 323, .external_lex_state = 4}, + [2109] = {.lex_state = 323, .external_lex_state = 4}, + [2110] = {.lex_state = 158, .external_lex_state = 4}, + [2111] = {.lex_state = 158, .external_lex_state = 4}, + [2112] = {.lex_state = 142, .external_lex_state = 4}, + [2113] = {.lex_state = 158, .external_lex_state = 4}, + [2114] = {.lex_state = 158, .external_lex_state = 4}, + [2115] = {.lex_state = 142, .external_lex_state = 4}, + [2116] = {.lex_state = 142, .external_lex_state = 4}, + [2117] = {.lex_state = 325, .external_lex_state = 5}, + [2118] = {.lex_state = 323, .external_lex_state = 4}, + [2119] = {.lex_state = 325, .external_lex_state = 5}, + [2120] = {.lex_state = 325, .external_lex_state = 5}, + [2121] = {.lex_state = 325, .external_lex_state = 5}, + [2122] = {.lex_state = 142, .external_lex_state = 4}, + [2123] = {.lex_state = 142, .external_lex_state = 4}, + [2124] = {.lex_state = 323, .external_lex_state = 4}, + [2125] = {.lex_state = 142, .external_lex_state = 4}, + [2126] = {.lex_state = 323, .external_lex_state = 4}, + [2127] = {.lex_state = 325, .external_lex_state = 5}, + [2128] = {.lex_state = 323, .external_lex_state = 5}, + [2129] = {.lex_state = 142, .external_lex_state = 4}, + [2130] = {.lex_state = 323, .external_lex_state = 4}, + [2131] = {.lex_state = 142, .external_lex_state = 4}, + [2132] = {.lex_state = 325, .external_lex_state = 5}, + [2133] = {.lex_state = 323, .external_lex_state = 4}, + [2134] = {.lex_state = 323, .external_lex_state = 5}, + [2135] = {.lex_state = 325, .external_lex_state = 5}, + [2136] = {.lex_state = 142, .external_lex_state = 4}, + [2137] = {.lex_state = 323, .external_lex_state = 4}, + [2138] = {.lex_state = 142, .external_lex_state = 4}, + [2139] = {.lex_state = 323, .external_lex_state = 4}, + [2140] = {.lex_state = 323, .external_lex_state = 4}, + [2141] = {.lex_state = 142, .external_lex_state = 4}, + [2142] = {.lex_state = 325, .external_lex_state = 5}, + [2143] = {.lex_state = 142, .external_lex_state = 4}, + [2144] = {.lex_state = 325, .external_lex_state = 5}, + [2145] = {.lex_state = 323, .external_lex_state = 4}, + [2146] = {.lex_state = 323, .external_lex_state = 4}, + [2147] = {.lex_state = 325, .external_lex_state = 5}, + [2148] = {.lex_state = 325, .external_lex_state = 5}, + [2149] = {.lex_state = 325, .external_lex_state = 5}, + [2150] = {.lex_state = 142, .external_lex_state = 4}, + [2151] = {.lex_state = 325, .external_lex_state = 5}, + [2152] = {.lex_state = 325, .external_lex_state = 5}, [2153] = {.lex_state = 142, .external_lex_state = 4}, - [2154] = {.lex_state = 321, .external_lex_state = 5}, - [2155] = {.lex_state = 321, .external_lex_state = 5}, - [2156] = {.lex_state = 142, .external_lex_state = 4}, - [2157] = {.lex_state = 321, .external_lex_state = 5}, - [2158] = {.lex_state = 142, .external_lex_state = 4}, - [2159] = {.lex_state = 321, .external_lex_state = 5}, - [2160] = {.lex_state = 321, .external_lex_state = 5}, - [2161] = {.lex_state = 321, .external_lex_state = 5}, - [2162] = {.lex_state = 156, .external_lex_state = 4}, - [2163] = {.lex_state = 156, .external_lex_state = 4}, - [2164] = {.lex_state = 142, .external_lex_state = 4}, - [2165] = {.lex_state = 156, .external_lex_state = 4}, - [2166] = {.lex_state = 156, .external_lex_state = 4}, + [2154] = {.lex_state = 325, .external_lex_state = 5}, + [2155] = {.lex_state = 323, .external_lex_state = 4}, + [2156] = {.lex_state = 325, .external_lex_state = 5}, + [2157] = {.lex_state = 142, .external_lex_state = 4}, + [2158] = {.lex_state = 325, .external_lex_state = 5}, + [2159] = {.lex_state = 323, .external_lex_state = 5}, + [2160] = {.lex_state = 142, .external_lex_state = 4}, + [2161] = {.lex_state = 323, .external_lex_state = 5}, + [2162] = {.lex_state = 325, .external_lex_state = 5}, + [2163] = {.lex_state = 325, .external_lex_state = 5}, + [2164] = {.lex_state = 325, .external_lex_state = 5}, + [2165] = {.lex_state = 142, .external_lex_state = 4}, + [2166] = {.lex_state = 323, .external_lex_state = 4}, [2167] = {.lex_state = 142, .external_lex_state = 4}, - [2168] = {.lex_state = 156, .external_lex_state = 4}, + [2168] = {.lex_state = 325, .external_lex_state = 5}, [2169] = {.lex_state = 142, .external_lex_state = 4}, [2170] = {.lex_state = 142, .external_lex_state = 4}, [2171] = {.lex_state = 142, .external_lex_state = 4}, - [2172] = {.lex_state = 319, .external_lex_state = 4}, - [2173] = {.lex_state = 319, .external_lex_state = 4}, - [2174] = {.lex_state = 321, .external_lex_state = 5}, - [2175] = {.lex_state = 321, .external_lex_state = 5}, - [2176] = {.lex_state = 321, .external_lex_state = 5}, - [2177] = {.lex_state = 321, .external_lex_state = 5}, - [2178] = {.lex_state = 321, .external_lex_state = 5}, - [2179] = {.lex_state = 142, .external_lex_state = 4}, - [2180] = {.lex_state = 142, .external_lex_state = 4}, - [2181] = {.lex_state = 142, .external_lex_state = 4}, - [2182] = {.lex_state = 321, .external_lex_state = 5}, - [2183] = {.lex_state = 156, .external_lex_state = 4}, - [2184] = {.lex_state = 156, .external_lex_state = 4}, - [2185] = {.lex_state = 156, .external_lex_state = 4}, - [2186] = {.lex_state = 156, .external_lex_state = 4}, - [2187] = {.lex_state = 156, .external_lex_state = 4}, - [2188] = {.lex_state = 156, .external_lex_state = 4}, - [2189] = {.lex_state = 319, .external_lex_state = 5}, - [2190] = {.lex_state = 156, .external_lex_state = 4}, - [2191] = {.lex_state = 142, .external_lex_state = 4}, - [2192] = {.lex_state = 142, .external_lex_state = 4}, - [2193] = {.lex_state = 142, .external_lex_state = 4}, - [2194] = {.lex_state = 319, .external_lex_state = 4}, - [2195] = {.lex_state = 319, .external_lex_state = 4}, - [2196] = {.lex_state = 319, .external_lex_state = 4}, - [2197] = {.lex_state = 142, .external_lex_state = 4}, - [2198] = {.lex_state = 142, .external_lex_state = 4}, - [2199] = {.lex_state = 319, .external_lex_state = 4}, - [2200] = {.lex_state = 319, .external_lex_state = 5}, - [2201] = {.lex_state = 319, .external_lex_state = 4}, - [2202] = {.lex_state = 319, .external_lex_state = 4}, - [2203] = {.lex_state = 319, .external_lex_state = 4}, - [2204] = {.lex_state = 156, .external_lex_state = 4}, - [2205] = {.lex_state = 156, .external_lex_state = 4}, - [2206] = {.lex_state = 156, .external_lex_state = 4}, - [2207] = {.lex_state = 156, .external_lex_state = 4}, - [2208] = {.lex_state = 156, .external_lex_state = 4}, - [2209] = {.lex_state = 156, .external_lex_state = 4}, - [2210] = {.lex_state = 156, .external_lex_state = 4}, - [2211] = {.lex_state = 156, .external_lex_state = 4}, - [2212] = {.lex_state = 319, .external_lex_state = 4}, - [2213] = {.lex_state = 142, .external_lex_state = 4}, - [2214] = {.lex_state = 156, .external_lex_state = 4}, - [2215] = {.lex_state = 142, .external_lex_state = 4}, - [2216] = {.lex_state = 156, .external_lex_state = 4}, - [2217] = {.lex_state = 142, .external_lex_state = 4}, - [2218] = {.lex_state = 142, .external_lex_state = 4}, - [2219] = {.lex_state = 142, .external_lex_state = 4}, - [2220] = {.lex_state = 142, .external_lex_state = 4}, - [2221] = {.lex_state = 142, .external_lex_state = 4}, - [2222] = {.lex_state = 142, .external_lex_state = 4}, - [2223] = {.lex_state = 156, .external_lex_state = 4}, - [2224] = {.lex_state = 319, .external_lex_state = 5}, - [2225] = {.lex_state = 319, .external_lex_state = 5}, - [2226] = {.lex_state = 156, .external_lex_state = 4}, - [2227] = {.lex_state = 142, .external_lex_state = 4}, - [2228] = {.lex_state = 142, .external_lex_state = 4}, - [2229] = {.lex_state = 156, .external_lex_state = 4}, - [2230] = {.lex_state = 142, .external_lex_state = 4}, - [2231] = {.lex_state = 156, .external_lex_state = 4}, - [2232] = {.lex_state = 156, .external_lex_state = 4}, - [2233] = {.lex_state = 156, .external_lex_state = 4}, - [2234] = {.lex_state = 156, .external_lex_state = 4}, - [2235] = {.lex_state = 142, .external_lex_state = 4}, - [2236] = {.lex_state = 156, .external_lex_state = 4}, - [2237] = {.lex_state = 156, .external_lex_state = 4}, - [2238] = {.lex_state = 142, .external_lex_state = 4}, - [2239] = {.lex_state = 319, .external_lex_state = 4}, - [2240] = {.lex_state = 319, .external_lex_state = 5}, - [2241] = {.lex_state = 319, .external_lex_state = 4}, - [2242] = {.lex_state = 319, .external_lex_state = 4}, - [2243] = {.lex_state = 319, .external_lex_state = 4}, - [2244] = {.lex_state = 319, .external_lex_state = 5}, - [2245] = {.lex_state = 319, .external_lex_state = 4}, - [2246] = {.lex_state = 319, .external_lex_state = 4}, - [2247] = {.lex_state = 319, .external_lex_state = 4}, - [2248] = {.lex_state = 319, .external_lex_state = 4}, - [2249] = {.lex_state = 142, .external_lex_state = 4}, - [2250] = {.lex_state = 319, .external_lex_state = 4}, - [2251] = {.lex_state = 319, .external_lex_state = 4}, - [2252] = {.lex_state = 319, .external_lex_state = 4}, - [2253] = {.lex_state = 319, .external_lex_state = 4}, - [2254] = {.lex_state = 319, .external_lex_state = 4}, - [2255] = {.lex_state = 142, .external_lex_state = 4}, - [2256] = {.lex_state = 156, .external_lex_state = 4}, - [2257] = {.lex_state = 156, .external_lex_state = 4}, - [2258] = {.lex_state = 319, .external_lex_state = 5}, - [2259] = {.lex_state = 156, .external_lex_state = 4}, - [2260] = {.lex_state = 156, .external_lex_state = 4}, - [2261] = {.lex_state = 142, .external_lex_state = 4}, - [2262] = {.lex_state = 156, .external_lex_state = 4}, - [2263] = {.lex_state = 156, .external_lex_state = 4}, - [2264] = {.lex_state = 319, .external_lex_state = 5}, - [2265] = {.lex_state = 142, .external_lex_state = 4}, - [2266] = {.lex_state = 319, .external_lex_state = 4}, - [2267] = {.lex_state = 156, .external_lex_state = 4}, - [2268] = {.lex_state = 156, .external_lex_state = 4}, - [2269] = {.lex_state = 156, .external_lex_state = 4}, - [2270] = {.lex_state = 319, .external_lex_state = 4}, - [2271] = {.lex_state = 319, .external_lex_state = 4}, - [2272] = {.lex_state = 156, .external_lex_state = 4}, - [2273] = {.lex_state = 156, .external_lex_state = 4}, - [2274] = {.lex_state = 156, .external_lex_state = 4}, - [2275] = {.lex_state = 156, .external_lex_state = 4}, - [2276] = {.lex_state = 319, .external_lex_state = 4}, - [2277] = {.lex_state = 156, .external_lex_state = 4}, - [2278] = {.lex_state = 156, .external_lex_state = 4}, - [2279] = {.lex_state = 319, .external_lex_state = 4}, - [2280] = {.lex_state = 319, .external_lex_state = 4}, - [2281] = {.lex_state = 319, .external_lex_state = 4}, - [2282] = {.lex_state = 319, .external_lex_state = 4}, - [2283] = {.lex_state = 319, .external_lex_state = 4}, - [2284] = {.lex_state = 319, .external_lex_state = 4}, - [2285] = {.lex_state = 319, .external_lex_state = 5}, - [2286] = {.lex_state = 319, .external_lex_state = 5}, - [2287] = {.lex_state = 319, .external_lex_state = 4}, - [2288] = {.lex_state = 319, .external_lex_state = 4}, - [2289] = {.lex_state = 156, .external_lex_state = 4}, + [2172] = {.lex_state = 142, .external_lex_state = 4}, + [2173] = {.lex_state = 142, .external_lex_state = 4}, + [2174] = {.lex_state = 142, .external_lex_state = 4}, + [2175] = {.lex_state = 142, .external_lex_state = 4}, + [2176] = {.lex_state = 142, .external_lex_state = 4}, + [2177] = {.lex_state = 325, .external_lex_state = 5}, + [2178] = {.lex_state = 325, .external_lex_state = 5}, + [2179] = {.lex_state = 323, .external_lex_state = 5}, + [2180] = {.lex_state = 323, .external_lex_state = 5}, + [2181] = {.lex_state = 323, .external_lex_state = 4}, + [2182] = {.lex_state = 325, .external_lex_state = 5}, + [2183] = {.lex_state = 323, .external_lex_state = 5}, + [2184] = {.lex_state = 323, .external_lex_state = 5}, + [2185] = {.lex_state = 323, .external_lex_state = 4}, + [2186] = {.lex_state = 323, .external_lex_state = 4}, + [2187] = {.lex_state = 323, .external_lex_state = 4}, + [2188] = {.lex_state = 323, .external_lex_state = 4}, + [2189] = {.lex_state = 323, .external_lex_state = 5}, + [2190] = {.lex_state = 323, .external_lex_state = 5}, + [2191] = {.lex_state = 323, .external_lex_state = 4}, + [2192] = {.lex_state = 325, .external_lex_state = 5}, + [2193] = {.lex_state = 325, .external_lex_state = 5}, + [2194] = {.lex_state = 323, .external_lex_state = 5}, + [2195] = {.lex_state = 323, .external_lex_state = 4}, + [2196] = {.lex_state = 323, .external_lex_state = 4}, + [2197] = {.lex_state = 323, .external_lex_state = 4}, + [2198] = {.lex_state = 323, .external_lex_state = 4}, + [2199] = {.lex_state = 323, .external_lex_state = 4}, + [2200] = {.lex_state = 323, .external_lex_state = 4}, + [2201] = {.lex_state = 325, .external_lex_state = 5}, + [2202] = {.lex_state = 323, .external_lex_state = 5}, + [2203] = {.lex_state = 323, .external_lex_state = 5}, + [2204] = {.lex_state = 142, .external_lex_state = 4}, + [2205] = {.lex_state = 325, .external_lex_state = 5}, + [2206] = {.lex_state = 323, .external_lex_state = 4}, + [2207] = {.lex_state = 323, .external_lex_state = 4}, + [2208] = {.lex_state = 158, .external_lex_state = 4}, + [2209] = {.lex_state = 323, .external_lex_state = 4}, + [2210] = {.lex_state = 323, .external_lex_state = 4}, + [2211] = {.lex_state = 158, .external_lex_state = 4}, + [2212] = {.lex_state = 158, .external_lex_state = 4}, + [2213] = {.lex_state = 158, .external_lex_state = 4}, + [2214] = {.lex_state = 158, .external_lex_state = 4}, + [2215] = {.lex_state = 158, .external_lex_state = 4}, + [2216] = {.lex_state = 158, .external_lex_state = 4}, + [2217] = {.lex_state = 158, .external_lex_state = 4}, + [2218] = {.lex_state = 158, .external_lex_state = 4}, + [2219] = {.lex_state = 158, .external_lex_state = 4}, + [2220] = {.lex_state = 158, .external_lex_state = 4}, + [2221] = {.lex_state = 158, .external_lex_state = 4}, + [2222] = {.lex_state = 158, .external_lex_state = 4}, + [2223] = {.lex_state = 158, .external_lex_state = 4}, + [2224] = {.lex_state = 158, .external_lex_state = 4}, + [2225] = {.lex_state = 158, .external_lex_state = 4}, + [2226] = {.lex_state = 158, .external_lex_state = 4}, + [2227] = {.lex_state = 158, .external_lex_state = 4}, + [2228] = {.lex_state = 158, .external_lex_state = 4}, + [2229] = {.lex_state = 158, .external_lex_state = 4}, + [2230] = {.lex_state = 158, .external_lex_state = 4}, + [2231] = {.lex_state = 158, .external_lex_state = 4}, + [2232] = {.lex_state = 158, .external_lex_state = 4}, + [2233] = {.lex_state = 158, .external_lex_state = 4}, + [2234] = {.lex_state = 158, .external_lex_state = 4}, + [2235] = {.lex_state = 158, .external_lex_state = 4}, + [2236] = {.lex_state = 158, .external_lex_state = 4}, + [2237] = {.lex_state = 158, .external_lex_state = 4}, + [2238] = {.lex_state = 158, .external_lex_state = 4}, + [2239] = {.lex_state = 158, .external_lex_state = 4}, + [2240] = {.lex_state = 158, .external_lex_state = 4}, + [2241] = {.lex_state = 158, .external_lex_state = 4}, + [2242] = {.lex_state = 158, .external_lex_state = 4}, + [2243] = {.lex_state = 158, .external_lex_state = 4}, + [2244] = {.lex_state = 158, .external_lex_state = 4}, + [2245] = {.lex_state = 158, .external_lex_state = 4}, + [2246] = {.lex_state = 325, .external_lex_state = 5}, + [2247] = {.lex_state = 323, .external_lex_state = 5}, + [2248] = {.lex_state = 142, .external_lex_state = 4}, + [2249] = {.lex_state = 323, .external_lex_state = 4}, + [2250] = {.lex_state = 323, .external_lex_state = 4}, + [2251] = {.lex_state = 158, .external_lex_state = 4}, + [2252] = {.lex_state = 158, .external_lex_state = 4}, + [2253] = {.lex_state = 158, .external_lex_state = 4}, + [2254] = {.lex_state = 142, .external_lex_state = 4}, + [2255] = {.lex_state = 158, .external_lex_state = 4}, + [2256] = {.lex_state = 158, .external_lex_state = 4}, + [2257] = {.lex_state = 158, .external_lex_state = 4}, + [2258] = {.lex_state = 158, .external_lex_state = 4}, + [2259] = {.lex_state = 158, .external_lex_state = 4}, + [2260] = {.lex_state = 158, .external_lex_state = 4}, + [2261] = {.lex_state = 158, .external_lex_state = 4}, + [2262] = {.lex_state = 158, .external_lex_state = 4}, + [2263] = {.lex_state = 158, .external_lex_state = 4}, + [2264] = {.lex_state = 158, .external_lex_state = 4}, + [2265] = {.lex_state = 323, .external_lex_state = 4}, + [2266] = {.lex_state = 323, .external_lex_state = 4}, + [2267] = {.lex_state = 323, .external_lex_state = 4}, + [2268] = {.lex_state = 323, .external_lex_state = 4}, + [2269] = {.lex_state = 323, .external_lex_state = 4}, + [2270] = {.lex_state = 323, .external_lex_state = 4}, + [2271] = {.lex_state = 323, .external_lex_state = 4}, + [2272] = {.lex_state = 323, .external_lex_state = 4}, + [2273] = {.lex_state = 323, .external_lex_state = 4}, + [2274] = {.lex_state = 323, .external_lex_state = 4}, + [2275] = {.lex_state = 323, .external_lex_state = 5}, + [2276] = {.lex_state = 323, .external_lex_state = 5}, + [2277] = {.lex_state = 323, .external_lex_state = 5}, + [2278] = {.lex_state = 323, .external_lex_state = 5}, + [2279] = {.lex_state = 323, .external_lex_state = 4}, + [2280] = {.lex_state = 323, .external_lex_state = 5}, + [2281] = {.lex_state = 323, .external_lex_state = 5}, + [2282] = {.lex_state = 323, .external_lex_state = 5}, + [2283] = {.lex_state = 323, .external_lex_state = 5}, + [2284] = {.lex_state = 323, .external_lex_state = 5}, + [2285] = {.lex_state = 325, .external_lex_state = 5}, + [2286] = {.lex_state = 325, .external_lex_state = 5}, + [2287] = {.lex_state = 323, .external_lex_state = 4}, + [2288] = {.lex_state = 142, .external_lex_state = 4}, + [2289] = {.lex_state = 323, .external_lex_state = 5}, [2290] = {.lex_state = 142, .external_lex_state = 4}, - [2291] = {.lex_state = 319, .external_lex_state = 4}, - [2292] = {.lex_state = 319, .external_lex_state = 4}, - [2293] = {.lex_state = 319, .external_lex_state = 4}, - [2294] = {.lex_state = 142, .external_lex_state = 4}, - [2295] = {.lex_state = 142, .external_lex_state = 4}, - [2296] = {.lex_state = 142, .external_lex_state = 4}, - [2297] = {.lex_state = 142, .external_lex_state = 4}, - [2298] = {.lex_state = 142, .external_lex_state = 4}, - [2299] = {.lex_state = 142, .external_lex_state = 4}, - [2300] = {.lex_state = 142, .external_lex_state = 4}, - [2301] = {.lex_state = 142, .external_lex_state = 4}, - [2302] = {.lex_state = 142, .external_lex_state = 4}, - [2303] = {.lex_state = 142, .external_lex_state = 4}, - [2304] = {.lex_state = 142, .external_lex_state = 4}, - [2305] = {.lex_state = 142, .external_lex_state = 4}, - [2306] = {.lex_state = 319, .external_lex_state = 4}, - [2307] = {.lex_state = 319, .external_lex_state = 4}, - [2308] = {.lex_state = 319, .external_lex_state = 4}, - [2309] = {.lex_state = 319, .external_lex_state = 4}, - [2310] = {.lex_state = 319, .external_lex_state = 5}, - [2311] = {.lex_state = 142, .external_lex_state = 4}, - [2312] = {.lex_state = 319, .external_lex_state = 5}, - [2313] = {.lex_state = 319, .external_lex_state = 4}, - [2314] = {.lex_state = 319, .external_lex_state = 4}, - [2315] = {.lex_state = 319, .external_lex_state = 4}, - [2316] = {.lex_state = 319, .external_lex_state = 5}, - [2317] = {.lex_state = 319, .external_lex_state = 5}, - [2318] = {.lex_state = 161, .external_lex_state = 5}, - [2319] = {.lex_state = 319, .external_lex_state = 5}, - [2320] = {.lex_state = 319, .external_lex_state = 5}, - [2321] = {.lex_state = 161, .external_lex_state = 5}, - [2322] = {.lex_state = 319, .external_lex_state = 5}, - [2323] = {.lex_state = 161, .external_lex_state = 5}, - [2324] = {.lex_state = 319, .external_lex_state = 5}, - [2325] = {.lex_state = 319, .external_lex_state = 5}, - [2326] = {.lex_state = 161, .external_lex_state = 5}, - [2327] = {.lex_state = 161, .external_lex_state = 5}, - [2328] = {.lex_state = 142, .external_lex_state = 5}, - [2329] = {.lex_state = 161, .external_lex_state = 5}, - [2330] = {.lex_state = 319, .external_lex_state = 5}, - [2331] = {.lex_state = 319, .external_lex_state = 4}, - [2332] = {.lex_state = 319, .external_lex_state = 5}, - [2333] = {.lex_state = 319, .external_lex_state = 5}, - [2334] = {.lex_state = 319, .external_lex_state = 5}, - [2335] = {.lex_state = 319, .external_lex_state = 5}, - [2336] = {.lex_state = 319, .external_lex_state = 5}, - [2337] = {.lex_state = 319, .external_lex_state = 5}, + [2291] = {.lex_state = 323, .external_lex_state = 4}, + [2292] = {.lex_state = 323, .external_lex_state = 4}, + [2293] = {.lex_state = 325, .external_lex_state = 5}, + [2294] = {.lex_state = 325, .external_lex_state = 5}, + [2295] = {.lex_state = 325, .external_lex_state = 5}, + [2296] = {.lex_state = 325, .external_lex_state = 5}, + [2297] = {.lex_state = 323, .external_lex_state = 4}, + [2298] = {.lex_state = 323, .external_lex_state = 4}, + [2299] = {.lex_state = 325, .external_lex_state = 5}, + [2300] = {.lex_state = 323, .external_lex_state = 5}, + [2301] = {.lex_state = 142, .external_lex_state = 5}, + [2302] = {.lex_state = 161, .external_lex_state = 5}, + [2303] = {.lex_state = 323, .external_lex_state = 5}, + [2304] = {.lex_state = 161, .external_lex_state = 5}, + [2305] = {.lex_state = 323, .external_lex_state = 5}, + [2306] = {.lex_state = 323, .external_lex_state = 5}, + [2307] = {.lex_state = 323, .external_lex_state = 5}, + [2308] = {.lex_state = 323, .external_lex_state = 5}, + [2309] = {.lex_state = 323, .external_lex_state = 5}, + [2310] = {.lex_state = 323, .external_lex_state = 5}, + [2311] = {.lex_state = 323, .external_lex_state = 5}, + [2312] = {.lex_state = 323, .external_lex_state = 5}, + [2313] = {.lex_state = 161, .external_lex_state = 5}, + [2314] = {.lex_state = 323, .external_lex_state = 5}, + [2315] = {.lex_state = 323, .external_lex_state = 5}, + [2316] = {.lex_state = 323, .external_lex_state = 5}, + [2317] = {.lex_state = 323, .external_lex_state = 5}, + [2318] = {.lex_state = 323, .external_lex_state = 5}, + [2319] = {.lex_state = 323, .external_lex_state = 5}, + [2320] = {.lex_state = 323, .external_lex_state = 5}, + [2321] = {.lex_state = 323, .external_lex_state = 5}, + [2322] = {.lex_state = 323, .external_lex_state = 5}, + [2323] = {.lex_state = 323, .external_lex_state = 5}, + [2324] = {.lex_state = 161, .external_lex_state = 5}, + [2325] = {.lex_state = 142, .external_lex_state = 5}, + [2326] = {.lex_state = 323, .external_lex_state = 5}, + [2327] = {.lex_state = 323, .external_lex_state = 5}, + [2328] = {.lex_state = 323, .external_lex_state = 5}, + [2329] = {.lex_state = 323, .external_lex_state = 5}, + [2330] = {.lex_state = 323, .external_lex_state = 4}, + [2331] = {.lex_state = 161, .external_lex_state = 5}, + [2332] = {.lex_state = 323, .external_lex_state = 5}, + [2333] = {.lex_state = 323, .external_lex_state = 5}, + [2334] = {.lex_state = 161, .external_lex_state = 5}, + [2335] = {.lex_state = 161, .external_lex_state = 5}, + [2336] = {.lex_state = 323, .external_lex_state = 5}, + [2337] = {.lex_state = 323, .external_lex_state = 5}, [2338] = {.lex_state = 161, .external_lex_state = 5}, - [2339] = {.lex_state = 319, .external_lex_state = 5}, + [2339] = {.lex_state = 161, .external_lex_state = 5}, [2340] = {.lex_state = 161, .external_lex_state = 5}, - [2341] = {.lex_state = 319, .external_lex_state = 5}, + [2341] = {.lex_state = 161, .external_lex_state = 5}, [2342] = {.lex_state = 161, .external_lex_state = 5}, - [2343] = {.lex_state = 319, .external_lex_state = 5}, - [2344] = {.lex_state = 319, .external_lex_state = 4}, - [2345] = {.lex_state = 319, .external_lex_state = 5}, - [2346] = {.lex_state = 319, .external_lex_state = 5}, - [2347] = {.lex_state = 319, .external_lex_state = 5}, - [2348] = {.lex_state = 319, .external_lex_state = 4}, - [2349] = {.lex_state = 319, .external_lex_state = 4}, - [2350] = {.lex_state = 319, .external_lex_state = 4}, - [2351] = {.lex_state = 319, .external_lex_state = 5}, - [2352] = {.lex_state = 319, .external_lex_state = 5}, - [2353] = {.lex_state = 319, .external_lex_state = 5}, + [2343] = {.lex_state = 161, .external_lex_state = 5}, + [2344] = {.lex_state = 161, .external_lex_state = 5}, + [2345] = {.lex_state = 161, .external_lex_state = 5}, + [2346] = {.lex_state = 161, .external_lex_state = 5}, + [2347] = {.lex_state = 161, .external_lex_state = 5}, + [2348] = {.lex_state = 142, .external_lex_state = 5}, + [2349] = {.lex_state = 142, .external_lex_state = 5}, + [2350] = {.lex_state = 161, .external_lex_state = 5}, + [2351] = {.lex_state = 161, .external_lex_state = 5}, + [2352] = {.lex_state = 161, .external_lex_state = 5}, + [2353] = {.lex_state = 161, .external_lex_state = 5}, [2354] = {.lex_state = 161, .external_lex_state = 5}, [2355] = {.lex_state = 161, .external_lex_state = 5}, - [2356] = {.lex_state = 319, .external_lex_state = 5}, - [2357] = {.lex_state = 161, .external_lex_state = 5}, - [2358] = {.lex_state = 319, .external_lex_state = 5}, - [2359] = {.lex_state = 319, .external_lex_state = 5}, - [2360] = {.lex_state = 319, .external_lex_state = 5}, - [2361] = {.lex_state = 319, .external_lex_state = 5}, - [2362] = {.lex_state = 319, .external_lex_state = 5}, - [2363] = {.lex_state = 319, .external_lex_state = 5}, - [2364] = {.lex_state = 319, .external_lex_state = 5}, - [2365] = {.lex_state = 142, .external_lex_state = 5}, - [2366] = {.lex_state = 319, .external_lex_state = 5}, - [2367] = {.lex_state = 319, .external_lex_state = 5}, + [2356] = {.lex_state = 161, .external_lex_state = 5}, + [2357] = {.lex_state = 323, .external_lex_state = 5}, + [2358] = {.lex_state = 323, .external_lex_state = 5}, + [2359] = {.lex_state = 161, .external_lex_state = 5}, + [2360] = {.lex_state = 161, .external_lex_state = 5}, + [2361] = {.lex_state = 161, .external_lex_state = 5}, + [2362] = {.lex_state = 161, .external_lex_state = 5}, + [2363] = {.lex_state = 161, .external_lex_state = 5}, + [2364] = {.lex_state = 161, .external_lex_state = 5}, + [2365] = {.lex_state = 161, .external_lex_state = 5}, + [2366] = {.lex_state = 161, .external_lex_state = 5}, + [2367] = {.lex_state = 323, .external_lex_state = 5}, [2368] = {.lex_state = 161, .external_lex_state = 5}, - [2369] = {.lex_state = 161, .external_lex_state = 5}, - [2370] = {.lex_state = 161, .external_lex_state = 5}, - [2371] = {.lex_state = 161, .external_lex_state = 5}, - [2372] = {.lex_state = 161, .external_lex_state = 5}, - [2373] = {.lex_state = 319, .external_lex_state = 5}, - [2374] = {.lex_state = 161, .external_lex_state = 5}, - [2375] = {.lex_state = 161, .external_lex_state = 5}, - [2376] = {.lex_state = 319, .external_lex_state = 5}, - [2377] = {.lex_state = 161, .external_lex_state = 5}, - [2378] = {.lex_state = 161, .external_lex_state = 5}, - [2379] = {.lex_state = 161, .external_lex_state = 5}, - [2380] = {.lex_state = 319, .external_lex_state = 5}, - [2381] = {.lex_state = 319, .external_lex_state = 5}, - [2382] = {.lex_state = 142, .external_lex_state = 5}, - [2383] = {.lex_state = 319, .external_lex_state = 4}, - [2384] = {.lex_state = 319, .external_lex_state = 4}, - [2385] = {.lex_state = 319, .external_lex_state = 4}, - [2386] = {.lex_state = 319, .external_lex_state = 4}, - [2387] = {.lex_state = 319, .external_lex_state = 4}, - [2388] = {.lex_state = 319, .external_lex_state = 4}, - [2389] = {.lex_state = 319, .external_lex_state = 4}, - [2390] = {.lex_state = 319, .external_lex_state = 4}, - [2391] = {.lex_state = 319, .external_lex_state = 4}, - [2392] = {.lex_state = 319, .external_lex_state = 4}, - [2393] = {.lex_state = 319, .external_lex_state = 4}, - [2394] = {.lex_state = 319, .external_lex_state = 4}, - [2395] = {.lex_state = 319, .external_lex_state = 4}, - [2396] = {.lex_state = 319, .external_lex_state = 5}, - [2397] = {.lex_state = 161, .external_lex_state = 5}, - [2398] = {.lex_state = 161, .external_lex_state = 5}, - [2399] = {.lex_state = 161, .external_lex_state = 5}, - [2400] = {.lex_state = 319, .external_lex_state = 4}, - [2401] = {.lex_state = 319, .external_lex_state = 4}, - [2402] = {.lex_state = 319, .external_lex_state = 4}, - [2403] = {.lex_state = 142, .external_lex_state = 5}, - [2404] = {.lex_state = 319, .external_lex_state = 5}, - [2405] = {.lex_state = 319, .external_lex_state = 5}, - [2406] = {.lex_state = 319, .external_lex_state = 5}, - [2407] = {.lex_state = 142, .external_lex_state = 5}, - [2408] = {.lex_state = 319, .external_lex_state = 5}, - [2409] = {.lex_state = 319, .external_lex_state = 5}, + [2369] = {.lex_state = 323, .external_lex_state = 4}, + [2370] = {.lex_state = 323, .external_lex_state = 4}, + [2371] = {.lex_state = 323, .external_lex_state = 4}, + [2372] = {.lex_state = 323, .external_lex_state = 4}, + [2373] = {.lex_state = 323, .external_lex_state = 4}, + [2374] = {.lex_state = 323, .external_lex_state = 4}, + [2375] = {.lex_state = 323, .external_lex_state = 4}, + [2376] = {.lex_state = 323, .external_lex_state = 4}, + [2377] = {.lex_state = 323, .external_lex_state = 4}, + [2378] = {.lex_state = 323, .external_lex_state = 4}, + [2379] = {.lex_state = 323, .external_lex_state = 4}, + [2380] = {.lex_state = 323, .external_lex_state = 4}, + [2381] = {.lex_state = 323, .external_lex_state = 4}, + [2382] = {.lex_state = 161, .external_lex_state = 5}, + [2383] = {.lex_state = 161, .external_lex_state = 5}, + [2384] = {.lex_state = 161, .external_lex_state = 5}, + [2385] = {.lex_state = 161, .external_lex_state = 5}, + [2386] = {.lex_state = 323, .external_lex_state = 4}, + [2387] = {.lex_state = 323, .external_lex_state = 4}, + [2388] = {.lex_state = 323, .external_lex_state = 4}, + [2389] = {.lex_state = 161, .external_lex_state = 5}, + [2390] = {.lex_state = 323, .external_lex_state = 5}, + [2391] = {.lex_state = 323, .external_lex_state = 5}, + [2392] = {.lex_state = 323, .external_lex_state = 5}, + [2393] = {.lex_state = 323, .external_lex_state = 5}, + [2394] = {.lex_state = 323, .external_lex_state = 5}, + [2395] = {.lex_state = 161, .external_lex_state = 5}, + [2396] = {.lex_state = 323, .external_lex_state = 5}, + [2397] = {.lex_state = 142, .external_lex_state = 5}, + [2398] = {.lex_state = 142, .external_lex_state = 5}, + [2399] = {.lex_state = 323, .external_lex_state = 5}, + [2400] = {.lex_state = 323, .external_lex_state = 5}, + [2401] = {.lex_state = 161, .external_lex_state = 5}, + [2402] = {.lex_state = 323, .external_lex_state = 5}, + [2403] = {.lex_state = 323, .external_lex_state = 5}, + [2404] = {.lex_state = 323, .external_lex_state = 4}, + [2405] = {.lex_state = 323, .external_lex_state = 5}, + [2406] = {.lex_state = 323, .external_lex_state = 5}, + [2407] = {.lex_state = 161, .external_lex_state = 5}, + [2408] = {.lex_state = 323, .external_lex_state = 5}, + [2409] = {.lex_state = 323, .external_lex_state = 5}, [2410] = {.lex_state = 161, .external_lex_state = 5}, - [2411] = {.lex_state = 319, .external_lex_state = 5}, - [2412] = {.lex_state = 161, .external_lex_state = 5}, - [2413] = {.lex_state = 319, .external_lex_state = 5}, - [2414] = {.lex_state = 319, .external_lex_state = 5}, - [2415] = {.lex_state = 319, .external_lex_state = 5}, - [2416] = {.lex_state = 319, .external_lex_state = 5}, + [2411] = {.lex_state = 161, .external_lex_state = 5}, + [2412] = {.lex_state = 323, .external_lex_state = 5}, + [2413] = {.lex_state = 161, .external_lex_state = 5}, + [2414] = {.lex_state = 161, .external_lex_state = 5}, + [2415] = {.lex_state = 161, .external_lex_state = 5}, + [2416] = {.lex_state = 161, .external_lex_state = 5}, [2417] = {.lex_state = 161, .external_lex_state = 5}, - [2418] = {.lex_state = 319, .external_lex_state = 5}, - [2419] = {.lex_state = 319, .external_lex_state = 4}, - [2420] = {.lex_state = 161, .external_lex_state = 5}, - [2421] = {.lex_state = 319, .external_lex_state = 5}, + [2418] = {.lex_state = 323, .external_lex_state = 5}, + [2419] = {.lex_state = 323, .external_lex_state = 5}, + [2420] = {.lex_state = 323, .external_lex_state = 5}, + [2421] = {.lex_state = 142, .external_lex_state = 5}, [2422] = {.lex_state = 161, .external_lex_state = 5}, [2423] = {.lex_state = 161, .external_lex_state = 5}, - [2424] = {.lex_state = 142, .external_lex_state = 5}, - [2425] = {.lex_state = 161, .external_lex_state = 5}, - [2426] = {.lex_state = 142, .external_lex_state = 5}, - [2427] = {.lex_state = 142, .external_lex_state = 5}, - [2428] = {.lex_state = 319, .external_lex_state = 5}, - [2429] = {.lex_state = 319, .external_lex_state = 5}, - [2430] = {.lex_state = 319, .external_lex_state = 5}, - [2431] = {.lex_state = 142, .external_lex_state = 5}, - [2432] = {.lex_state = 142, .external_lex_state = 5}, - [2433] = {.lex_state = 319, .external_lex_state = 5}, - [2434] = {.lex_state = 319, .external_lex_state = 5}, - [2435] = {.lex_state = 319, .external_lex_state = 5}, - [2436] = {.lex_state = 319, .external_lex_state = 5}, - [2437] = {.lex_state = 161, .external_lex_state = 5}, - [2438] = {.lex_state = 319, .external_lex_state = 5}, - [2439] = {.lex_state = 319, .external_lex_state = 5}, - [2440] = {.lex_state = 161, .external_lex_state = 5}, - [2441] = {.lex_state = 319, .external_lex_state = 5}, - [2442] = {.lex_state = 319, .external_lex_state = 5}, - [2443] = {.lex_state = 319, .external_lex_state = 5}, - [2444] = {.lex_state = 161, .external_lex_state = 5}, - [2445] = {.lex_state = 319, .external_lex_state = 5}, - [2446] = {.lex_state = 319, .external_lex_state = 5}, - [2447] = {.lex_state = 319, .external_lex_state = 5}, - [2448] = {.lex_state = 319, .external_lex_state = 5}, - [2449] = {.lex_state = 319, .external_lex_state = 5}, - [2450] = {.lex_state = 319, .external_lex_state = 5}, - [2451] = {.lex_state = 319, .external_lex_state = 4}, - [2452] = {.lex_state = 319, .external_lex_state = 5}, - [2453] = {.lex_state = 161, .external_lex_state = 5}, - [2454] = {.lex_state = 161, .external_lex_state = 5}, - [2455] = {.lex_state = 319, .external_lex_state = 5}, - [2456] = {.lex_state = 161, .external_lex_state = 5}, + [2424] = {.lex_state = 161, .external_lex_state = 5}, + [2425] = {.lex_state = 142, .external_lex_state = 5}, + [2426] = {.lex_state = 161, .external_lex_state = 5}, + [2427] = {.lex_state = 323, .external_lex_state = 5}, + [2428] = {.lex_state = 323, .external_lex_state = 5}, + [2429] = {.lex_state = 323, .external_lex_state = 5}, + [2430] = {.lex_state = 323, .external_lex_state = 5}, + [2431] = {.lex_state = 323, .external_lex_state = 5}, + [2432] = {.lex_state = 323, .external_lex_state = 5}, + [2433] = {.lex_state = 161, .external_lex_state = 5}, + [2434] = {.lex_state = 323, .external_lex_state = 5}, + [2435] = {.lex_state = 323, .external_lex_state = 5}, + [2436] = {.lex_state = 323, .external_lex_state = 5}, + [2437] = {.lex_state = 323, .external_lex_state = 5}, + [2438] = {.lex_state = 323, .external_lex_state = 5}, + [2439] = {.lex_state = 323, .external_lex_state = 4}, + [2440] = {.lex_state = 323, .external_lex_state = 4}, + [2441] = {.lex_state = 323, .external_lex_state = 5}, + [2442] = {.lex_state = 323, .external_lex_state = 5}, + [2443] = {.lex_state = 323, .external_lex_state = 5}, + [2444] = {.lex_state = 323, .external_lex_state = 5}, + [2445] = {.lex_state = 161, .external_lex_state = 5}, + [2446] = {.lex_state = 323, .external_lex_state = 5}, + [2447] = {.lex_state = 323, .external_lex_state = 4}, + [2448] = {.lex_state = 323, .external_lex_state = 5}, + [2449] = {.lex_state = 323, .external_lex_state = 5}, + [2450] = {.lex_state = 323, .external_lex_state = 5}, + [2451] = {.lex_state = 323, .external_lex_state = 5}, + [2452] = {.lex_state = 323, .external_lex_state = 5}, + [2453] = {.lex_state = 142, .external_lex_state = 5}, + [2454] = {.lex_state = 142, .external_lex_state = 5}, + [2455] = {.lex_state = 323, .external_lex_state = 5}, + [2456] = {.lex_state = 323, .external_lex_state = 5}, [2457] = {.lex_state = 161, .external_lex_state = 5}, [2458] = {.lex_state = 161, .external_lex_state = 5}, - [2459] = {.lex_state = 319, .external_lex_state = 5}, - [2460] = {.lex_state = 161, .external_lex_state = 5}, - [2461] = {.lex_state = 161, .external_lex_state = 5}, - [2462] = {.lex_state = 319, .external_lex_state = 5}, - [2463] = {.lex_state = 319, .external_lex_state = 5}, + [2459] = {.lex_state = 161, .external_lex_state = 5}, + [2460] = {.lex_state = 142, .external_lex_state = 5}, + [2461] = {.lex_state = 323, .external_lex_state = 5}, + [2462] = {.lex_state = 323, .external_lex_state = 4}, + [2463] = {.lex_state = 323, .external_lex_state = 5}, [2464] = {.lex_state = 161, .external_lex_state = 5}, [2465] = {.lex_state = 161, .external_lex_state = 5}, - [2466] = {.lex_state = 161, .external_lex_state = 5}, - [2467] = {.lex_state = 161, .external_lex_state = 5}, - [2468] = {.lex_state = 142, .external_lex_state = 5}, - [2469] = {.lex_state = 319, .external_lex_state = 5}, - [2470] = {.lex_state = 319, .external_lex_state = 5}, - [2471] = {.lex_state = 161, .external_lex_state = 5}, - [2472] = {.lex_state = 319, .external_lex_state = 5}, - [2473] = {.lex_state = 161, .external_lex_state = 5}, - [2474] = {.lex_state = 161, .external_lex_state = 5}, - [2475] = {.lex_state = 319, .external_lex_state = 5}, - [2476] = {.lex_state = 161, .external_lex_state = 5}, - [2477] = {.lex_state = 161, .external_lex_state = 5}, - [2478] = {.lex_state = 161, .external_lex_state = 5}, - [2479] = {.lex_state = 161, .external_lex_state = 5}, - [2480] = {.lex_state = 161, .external_lex_state = 5}, - [2481] = {.lex_state = 161, .external_lex_state = 5}, - [2482] = {.lex_state = 161, .external_lex_state = 5}, - [2483] = {.lex_state = 161, .external_lex_state = 5}, - [2484] = {.lex_state = 161, .external_lex_state = 5}, - [2485] = {.lex_state = 319, .external_lex_state = 5}, - [2486] = {.lex_state = 319, .external_lex_state = 5}, - [2487] = {.lex_state = 161, .external_lex_state = 5}, - [2488] = {.lex_state = 319, .external_lex_state = 5}, - [2489] = {.lex_state = 161, .external_lex_state = 5}, - [2490] = {.lex_state = 319, .external_lex_state = 5}, - [2491] = {.lex_state = 161, .external_lex_state = 5}, - [2492] = {.lex_state = 161, .external_lex_state = 5}, - [2493] = {.lex_state = 319, .external_lex_state = 4}, - [2494] = {.lex_state = 323, .external_lex_state = 4}, + [2466] = {.lex_state = 323, .external_lex_state = 5}, + [2467] = {.lex_state = 323, .external_lex_state = 5}, + [2468] = {.lex_state = 161, .external_lex_state = 5}, + [2469] = {.lex_state = 161, .external_lex_state = 5}, + [2470] = {.lex_state = 323, .external_lex_state = 5}, + [2471] = {.lex_state = 323, .external_lex_state = 5}, + [2472] = {.lex_state = 323, .external_lex_state = 5}, + [2473] = {.lex_state = 323, .external_lex_state = 5}, + [2474] = {.lex_state = 323, .external_lex_state = 4}, + [2475] = {.lex_state = 323, .external_lex_state = 4}, + [2476] = {.lex_state = 323, .external_lex_state = 4}, + [2477] = {.lex_state = 323, .external_lex_state = 4}, + [2478] = {.lex_state = 323, .external_lex_state = 4}, + [2479] = {.lex_state = 327, .external_lex_state = 4}, + [2480] = {.lex_state = 327, .external_lex_state = 4}, + [2481] = {.lex_state = 327, .external_lex_state = 4}, + [2482] = {.lex_state = 327, .external_lex_state = 4}, + [2483] = {.lex_state = 327, .external_lex_state = 4}, + [2484] = {.lex_state = 327, .external_lex_state = 4}, + [2485] = {.lex_state = 327, .external_lex_state = 4}, + [2486] = {.lex_state = 327, .external_lex_state = 4}, + [2487] = {.lex_state = 327, .external_lex_state = 4}, + [2488] = {.lex_state = 327, .external_lex_state = 4}, + [2489] = {.lex_state = 327, .external_lex_state = 4}, + [2490] = {.lex_state = 327, .external_lex_state = 4}, + [2491] = {.lex_state = 327, .external_lex_state = 4}, + [2492] = {.lex_state = 327, .external_lex_state = 4}, + [2493] = {.lex_state = 327, .external_lex_state = 4}, + [2494] = {.lex_state = 327, .external_lex_state = 4}, [2495] = {.lex_state = 323, .external_lex_state = 4}, - [2496] = {.lex_state = 323, .external_lex_state = 4}, + [2496] = {.lex_state = 166, .external_lex_state = 5}, [2497] = {.lex_state = 323, .external_lex_state = 4}, [2498] = {.lex_state = 323, .external_lex_state = 4}, - [2499] = {.lex_state = 323, .external_lex_state = 4}, - [2500] = {.lex_state = 323, .external_lex_state = 4}, - [2501] = {.lex_state = 323, .external_lex_state = 4}, - [2502] = {.lex_state = 323, .external_lex_state = 4}, - [2503] = {.lex_state = 323, .external_lex_state = 4}, - [2504] = {.lex_state = 323, .external_lex_state = 4}, - [2505] = {.lex_state = 323, .external_lex_state = 4}, - [2506] = {.lex_state = 319, .external_lex_state = 4}, - [2507] = {.lex_state = 319, .external_lex_state = 4}, - [2508] = {.lex_state = 319, .external_lex_state = 4}, - [2509] = {.lex_state = 166, .external_lex_state = 5}, - [2510] = {.lex_state = 323, .external_lex_state = 4}, - [2511] = {.lex_state = 323, .external_lex_state = 4}, - [2512] = {.lex_state = 323, .external_lex_state = 4}, - [2513] = {.lex_state = 323, .external_lex_state = 4}, - [2514] = {.lex_state = 323, .external_lex_state = 4}, - [2515] = {.lex_state = 323, .external_lex_state = 4}, - [2516] = {.lex_state = 323, .external_lex_state = 4}, - [2517] = {.lex_state = 323, .external_lex_state = 4}, - [2518] = {.lex_state = 323, .external_lex_state = 4}, - [2519] = {.lex_state = 323, .external_lex_state = 4}, - [2520] = {.lex_state = 323, .external_lex_state = 4}, + [2499] = {.lex_state = 327, .external_lex_state = 4}, + [2500] = {.lex_state = 327, .external_lex_state = 4}, + [2501] = {.lex_state = 327, .external_lex_state = 4}, + [2502] = {.lex_state = 327, .external_lex_state = 4}, + [2503] = {.lex_state = 327, .external_lex_state = 4}, + [2504] = {.lex_state = 327, .external_lex_state = 4}, + [2505] = {.lex_state = 327, .external_lex_state = 4}, + [2506] = {.lex_state = 327, .external_lex_state = 4}, + [2507] = {.lex_state = 327, .external_lex_state = 4}, + [2508] = {.lex_state = 327, .external_lex_state = 4}, + [2509] = {.lex_state = 327, .external_lex_state = 4}, + [2510] = {.lex_state = 327, .external_lex_state = 4}, + [2511] = {.lex_state = 327, .external_lex_state = 4}, + [2512] = {.lex_state = 327, .external_lex_state = 4}, + [2513] = {.lex_state = 166, .external_lex_state = 5}, + [2514] = {.lex_state = 166, .external_lex_state = 5}, + [2515] = {.lex_state = 323, .external_lex_state = 5}, + [2516] = {.lex_state = 323, .external_lex_state = 5}, + [2517] = {.lex_state = 323, .external_lex_state = 5}, + [2518] = {.lex_state = 323, .external_lex_state = 5}, + [2519] = {.lex_state = 327, .external_lex_state = 4}, + [2520] = {.lex_state = 327, .external_lex_state = 4}, [2521] = {.lex_state = 323, .external_lex_state = 4}, - [2522] = {.lex_state = 323, .external_lex_state = 4}, - [2523] = {.lex_state = 323, .external_lex_state = 4}, - [2524] = {.lex_state = 323, .external_lex_state = 4}, - [2525] = {.lex_state = 323, .external_lex_state = 4}, - [2526] = {.lex_state = 319, .external_lex_state = 4}, - [2527] = {.lex_state = 323, .external_lex_state = 4}, - [2528] = {.lex_state = 323, .external_lex_state = 4}, - [2529] = {.lex_state = 166, .external_lex_state = 5}, - [2530] = {.lex_state = 166, .external_lex_state = 5}, - [2531] = {.lex_state = 319, .external_lex_state = 5}, - [2532] = {.lex_state = 319, .external_lex_state = 5}, - [2533] = {.lex_state = 319, .external_lex_state = 5}, - [2534] = {.lex_state = 319, .external_lex_state = 5}, - [2535] = {.lex_state = 323, .external_lex_state = 4}, - [2536] = {.lex_state = 323, .external_lex_state = 4}, - [2537] = {.lex_state = 323, .external_lex_state = 4}, + [2522] = {.lex_state = 327, .external_lex_state = 4}, + [2523] = {.lex_state = 327, .external_lex_state = 4}, + [2524] = {.lex_state = 327, .external_lex_state = 4}, + [2525] = {.lex_state = 327, .external_lex_state = 4}, + [2526] = {.lex_state = 327, .external_lex_state = 4}, + [2527] = {.lex_state = 327, .external_lex_state = 4}, + [2528] = {.lex_state = 327, .external_lex_state = 4}, + [2529] = {.lex_state = 327, .external_lex_state = 4}, + [2530] = {.lex_state = 327, .external_lex_state = 4}, + [2531] = {.lex_state = 327, .external_lex_state = 4}, + [2532] = {.lex_state = 327, .external_lex_state = 4}, + [2533] = {.lex_state = 327, .external_lex_state = 4}, + [2534] = {.lex_state = 327, .external_lex_state = 4}, + [2535] = {.lex_state = 327, .external_lex_state = 4}, + [2536] = {.lex_state = 327, .external_lex_state = 4}, + [2537] = {.lex_state = 327, .external_lex_state = 4}, [2538] = {.lex_state = 323, .external_lex_state = 4}, [2539] = {.lex_state = 323, .external_lex_state = 4}, [2540] = {.lex_state = 323, .external_lex_state = 4}, - [2541] = {.lex_state = 323, .external_lex_state = 4}, - [2542] = {.lex_state = 323, .external_lex_state = 4}, - [2543] = {.lex_state = 323, .external_lex_state = 4}, - [2544] = {.lex_state = 323, .external_lex_state = 4}, - [2545] = {.lex_state = 323, .external_lex_state = 4}, - [2546] = {.lex_state = 323, .external_lex_state = 4}, - [2547] = {.lex_state = 323, .external_lex_state = 4}, - [2548] = {.lex_state = 323, .external_lex_state = 4}, - [2549] = {.lex_state = 319, .external_lex_state = 4}, - [2550] = {.lex_state = 319, .external_lex_state = 4}, - [2551] = {.lex_state = 319, .external_lex_state = 4}, + [2541] = {.lex_state = 142, .external_lex_state = 5}, + [2542] = {.lex_state = 142, .external_lex_state = 5}, + [2543] = {.lex_state = 142, .external_lex_state = 5}, + [2544] = {.lex_state = 142, .external_lex_state = 5}, + [2545] = {.lex_state = 142, .external_lex_state = 5}, + [2546] = {.lex_state = 142, .external_lex_state = 5}, + [2547] = {.lex_state = 142, .external_lex_state = 5}, + [2548] = {.lex_state = 142, .external_lex_state = 5}, + [2549] = {.lex_state = 142, .external_lex_state = 5}, + [2550] = {.lex_state = 142, .external_lex_state = 5}, + [2551] = {.lex_state = 142, .external_lex_state = 5}, [2552] = {.lex_state = 142, .external_lex_state = 5}, [2553] = {.lex_state = 142, .external_lex_state = 5}, [2554] = {.lex_state = 142, .external_lex_state = 5}, - [2555] = {.lex_state = 142, .external_lex_state = 5}, + [2555] = {.lex_state = 169, .external_lex_state = 5}, [2556] = {.lex_state = 142, .external_lex_state = 5}, [2557] = {.lex_state = 142, .external_lex_state = 5}, - [2558] = {.lex_state = 142, .external_lex_state = 5}, - [2559] = {.lex_state = 142, .external_lex_state = 5}, + [2558] = {.lex_state = 169, .external_lex_state = 5}, + [2559] = {.lex_state = 169, .external_lex_state = 5}, [2560] = {.lex_state = 142, .external_lex_state = 5}, [2561] = {.lex_state = 142, .external_lex_state = 5}, - [2562] = {.lex_state = 142, .external_lex_state = 5}, + [2562] = {.lex_state = 161, .external_lex_state = 5}, [2563] = {.lex_state = 142, .external_lex_state = 5}, [2564] = {.lex_state = 142, .external_lex_state = 5}, - [2565] = {.lex_state = 142, .external_lex_state = 5}, - [2566] = {.lex_state = 169, .external_lex_state = 5}, - [2567] = {.lex_state = 142, .external_lex_state = 5}, - [2568] = {.lex_state = 142, .external_lex_state = 5}, - [2569] = {.lex_state = 169, .external_lex_state = 5}, - [2570] = {.lex_state = 169, .external_lex_state = 5}, - [2571] = {.lex_state = 142, .external_lex_state = 5}, - [2572] = {.lex_state = 142, .external_lex_state = 5}, + [2565] = {.lex_state = 161, .external_lex_state = 5}, + [2566] = {.lex_state = 161, .external_lex_state = 5}, + [2567] = {.lex_state = 161, .external_lex_state = 5}, + [2568] = {.lex_state = 161, .external_lex_state = 5}, + [2569] = {.lex_state = 161, .external_lex_state = 5}, + [2570] = {.lex_state = 161, .external_lex_state = 5}, + [2571] = {.lex_state = 161, .external_lex_state = 5}, + [2572] = {.lex_state = 161, .external_lex_state = 5}, [2573] = {.lex_state = 161, .external_lex_state = 5}, [2574] = {.lex_state = 161, .external_lex_state = 5}, - [2575] = {.lex_state = 142, .external_lex_state = 5}, - [2576] = {.lex_state = 142, .external_lex_state = 5}, + [2575] = {.lex_state = 161, .external_lex_state = 5}, + [2576] = {.lex_state = 161, .external_lex_state = 5}, [2577] = {.lex_state = 161, .external_lex_state = 5}, [2578] = {.lex_state = 161, .external_lex_state = 5}, [2579] = {.lex_state = 161, .external_lex_state = 5}, @@ -19109,88 +19036,88 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2610] = {.lex_state = 161, .external_lex_state = 5}, [2611] = {.lex_state = 161, .external_lex_state = 5}, [2612] = {.lex_state = 161, .external_lex_state = 5}, - [2613] = {.lex_state = 161, .external_lex_state = 5}, - [2614] = {.lex_state = 161, .external_lex_state = 5}, - [2615] = {.lex_state = 161, .external_lex_state = 5}, - [2616] = {.lex_state = 161, .external_lex_state = 5}, - [2617] = {.lex_state = 161, .external_lex_state = 5}, - [2618] = {.lex_state = 161, .external_lex_state = 5}, - [2619] = {.lex_state = 161, .external_lex_state = 5}, - [2620] = {.lex_state = 161, .external_lex_state = 5}, - [2621] = {.lex_state = 161, .external_lex_state = 5}, - [2622] = {.lex_state = 161, .external_lex_state = 5}, - [2623] = {.lex_state = 161, .external_lex_state = 5}, - [2624] = {.lex_state = 161, .external_lex_state = 5}, - [2625] = {.lex_state = 166, .external_lex_state = 5}, - [2626] = {.lex_state = 166, .external_lex_state = 5}, - [2627] = {.lex_state = 142, .external_lex_state = 5}, - [2628] = {.lex_state = 319, .external_lex_state = 5}, - [2629] = {.lex_state = 319, .external_lex_state = 5}, - [2630] = {.lex_state = 319, .external_lex_state = 5}, - [2631] = {.lex_state = 319, .external_lex_state = 5}, - [2632] = {.lex_state = 142, .external_lex_state = 5}, - [2633] = {.lex_state = 321, .external_lex_state = 5}, - [2634] = {.lex_state = 321, .external_lex_state = 5}, - [2635] = {.lex_state = 142, .external_lex_state = 5}, - [2636] = {.lex_state = 142, .external_lex_state = 5}, - [2637] = {.lex_state = 142, .external_lex_state = 5}, - [2638] = {.lex_state = 321, .external_lex_state = 5}, - [2639] = {.lex_state = 321, .external_lex_state = 5}, - [2640] = {.lex_state = 321, .external_lex_state = 5}, - [2641] = {.lex_state = 321, .external_lex_state = 5}, - [2642] = {.lex_state = 321, .external_lex_state = 5}, - [2643] = {.lex_state = 321, .external_lex_state = 5}, - [2644] = {.lex_state = 321, .external_lex_state = 5}, - [2645] = {.lex_state = 321, .external_lex_state = 5}, - [2646] = {.lex_state = 321, .external_lex_state = 5}, - [2647] = {.lex_state = 321, .external_lex_state = 5}, - [2648] = {.lex_state = 321, .external_lex_state = 5}, - [2649] = {.lex_state = 321, .external_lex_state = 5}, - [2650] = {.lex_state = 321, .external_lex_state = 5}, - [2651] = {.lex_state = 321, .external_lex_state = 5}, - [2652] = {.lex_state = 321, .external_lex_state = 5}, - [2653] = {.lex_state = 321, .external_lex_state = 5}, - [2654] = {.lex_state = 321, .external_lex_state = 5}, - [2655] = {.lex_state = 321, .external_lex_state = 5}, - [2656] = {.lex_state = 321, .external_lex_state = 5}, - [2657] = {.lex_state = 321, .external_lex_state = 5}, - [2658] = {.lex_state = 321, .external_lex_state = 5}, - [2659] = {.lex_state = 321, .external_lex_state = 5}, - [2660] = {.lex_state = 321, .external_lex_state = 5}, - [2661] = {.lex_state = 321, .external_lex_state = 5}, - [2662] = {.lex_state = 321, .external_lex_state = 5}, - [2663] = {.lex_state = 321, .external_lex_state = 5}, - [2664] = {.lex_state = 321, .external_lex_state = 5}, - [2665] = {.lex_state = 321, .external_lex_state = 5}, - [2666] = {.lex_state = 321, .external_lex_state = 5}, - [2667] = {.lex_state = 321, .external_lex_state = 5}, - [2668] = {.lex_state = 321, .external_lex_state = 5}, - [2669] = {.lex_state = 321, .external_lex_state = 5}, - [2670] = {.lex_state = 321, .external_lex_state = 5}, - [2671] = {.lex_state = 321, .external_lex_state = 5}, - [2672] = {.lex_state = 321, .external_lex_state = 5}, - [2673] = {.lex_state = 321, .external_lex_state = 5}, - [2674] = {.lex_state = 321, .external_lex_state = 5}, - [2675] = {.lex_state = 321, .external_lex_state = 5}, - [2676] = {.lex_state = 321, .external_lex_state = 5}, - [2677] = {.lex_state = 321, .external_lex_state = 5}, - [2678] = {.lex_state = 321, .external_lex_state = 5}, - [2679] = {.lex_state = 321, .external_lex_state = 5}, - [2680] = {.lex_state = 321, .external_lex_state = 5}, - [2681] = {.lex_state = 321, .external_lex_state = 5}, - [2682] = {.lex_state = 321, .external_lex_state = 5}, - [2683] = {.lex_state = 321, .external_lex_state = 5}, - [2684] = {.lex_state = 321, .external_lex_state = 5}, - [2685] = {.lex_state = 321, .external_lex_state = 5}, - [2686] = {.lex_state = 142, .external_lex_state = 5}, - [2687] = {.lex_state = 323, .external_lex_state = 4}, - [2688] = {.lex_state = 323, .external_lex_state = 4}, - [2689] = {.lex_state = 323, .external_lex_state = 4}, - [2690] = {.lex_state = 323, .external_lex_state = 4}, + [2613] = {.lex_state = 166, .external_lex_state = 5}, + [2614] = {.lex_state = 166, .external_lex_state = 5}, + [2615] = {.lex_state = 142, .external_lex_state = 5}, + [2616] = {.lex_state = 323, .external_lex_state = 5}, + [2617] = {.lex_state = 323, .external_lex_state = 5}, + [2618] = {.lex_state = 323, .external_lex_state = 5}, + [2619] = {.lex_state = 325, .external_lex_state = 5}, + [2620] = {.lex_state = 323, .external_lex_state = 5}, + [2621] = {.lex_state = 325, .external_lex_state = 5}, + [2622] = {.lex_state = 325, .external_lex_state = 5}, + [2623] = {.lex_state = 325, .external_lex_state = 5}, + [2624] = {.lex_state = 325, .external_lex_state = 5}, + [2625] = {.lex_state = 325, .external_lex_state = 5}, + [2626] = {.lex_state = 325, .external_lex_state = 5}, + [2627] = {.lex_state = 325, .external_lex_state = 5}, + [2628] = {.lex_state = 325, .external_lex_state = 5}, + [2629] = {.lex_state = 325, .external_lex_state = 5}, + [2630] = {.lex_state = 325, .external_lex_state = 5}, + [2631] = {.lex_state = 325, .external_lex_state = 5}, + [2632] = {.lex_state = 325, .external_lex_state = 5}, + [2633] = {.lex_state = 325, .external_lex_state = 5}, + [2634] = {.lex_state = 325, .external_lex_state = 5}, + [2635] = {.lex_state = 325, .external_lex_state = 5}, + [2636] = {.lex_state = 325, .external_lex_state = 5}, + [2637] = {.lex_state = 325, .external_lex_state = 5}, + [2638] = {.lex_state = 325, .external_lex_state = 5}, + [2639] = {.lex_state = 325, .external_lex_state = 5}, + [2640] = {.lex_state = 325, .external_lex_state = 5}, + [2641] = {.lex_state = 325, .external_lex_state = 5}, + [2642] = {.lex_state = 325, .external_lex_state = 5}, + [2643] = {.lex_state = 325, .external_lex_state = 5}, + [2644] = {.lex_state = 325, .external_lex_state = 5}, + [2645] = {.lex_state = 325, .external_lex_state = 5}, + [2646] = {.lex_state = 325, .external_lex_state = 5}, + [2647] = {.lex_state = 325, .external_lex_state = 5}, + [2648] = {.lex_state = 325, .external_lex_state = 5}, + [2649] = {.lex_state = 325, .external_lex_state = 5}, + [2650] = {.lex_state = 325, .external_lex_state = 5}, + [2651] = {.lex_state = 325, .external_lex_state = 5}, + [2652] = {.lex_state = 325, .external_lex_state = 5}, + [2653] = {.lex_state = 325, .external_lex_state = 5}, + [2654] = {.lex_state = 325, .external_lex_state = 5}, + [2655] = {.lex_state = 325, .external_lex_state = 5}, + [2656] = {.lex_state = 325, .external_lex_state = 5}, + [2657] = {.lex_state = 325, .external_lex_state = 5}, + [2658] = {.lex_state = 325, .external_lex_state = 5}, + [2659] = {.lex_state = 325, .external_lex_state = 5}, + [2660] = {.lex_state = 325, .external_lex_state = 5}, + [2661] = {.lex_state = 325, .external_lex_state = 5}, + [2662] = {.lex_state = 325, .external_lex_state = 5}, + [2663] = {.lex_state = 325, .external_lex_state = 5}, + [2664] = {.lex_state = 325, .external_lex_state = 5}, + [2665] = {.lex_state = 325, .external_lex_state = 5}, + [2666] = {.lex_state = 325, .external_lex_state = 5}, + [2667] = {.lex_state = 325, .external_lex_state = 5}, + [2668] = {.lex_state = 325, .external_lex_state = 5}, + [2669] = {.lex_state = 142, .external_lex_state = 5}, + [2670] = {.lex_state = 142, .external_lex_state = 5}, + [2671] = {.lex_state = 142, .external_lex_state = 5}, + [2672] = {.lex_state = 142, .external_lex_state = 5}, + [2673] = {.lex_state = 327, .external_lex_state = 4}, + [2674] = {.lex_state = 327, .external_lex_state = 4}, + [2675] = {.lex_state = 142, .external_lex_state = 5}, + [2676] = {.lex_state = 327, .external_lex_state = 4}, + [2677] = {.lex_state = 327, .external_lex_state = 4}, + [2678] = {.lex_state = 172, .external_lex_state = 5}, + [2679] = {.lex_state = 327, .external_lex_state = 4}, + [2680] = {.lex_state = 327, .external_lex_state = 4}, + [2681] = {.lex_state = 172, .external_lex_state = 5}, + [2682] = {.lex_state = 172, .external_lex_state = 5}, + [2683] = {.lex_state = 172, .external_lex_state = 5}, + [2684] = {.lex_state = 172, .external_lex_state = 5}, + [2685] = {.lex_state = 172, .external_lex_state = 5}, + [2686] = {.lex_state = 172, .external_lex_state = 5}, + [2687] = {.lex_state = 172, .external_lex_state = 5}, + [2688] = {.lex_state = 172, .external_lex_state = 5}, + [2689] = {.lex_state = 172, .external_lex_state = 5}, + [2690] = {.lex_state = 172, .external_lex_state = 5}, [2691] = {.lex_state = 172, .external_lex_state = 5}, [2692] = {.lex_state = 172, .external_lex_state = 5}, - [2693] = {.lex_state = 323, .external_lex_state = 4}, - [2694] = {.lex_state = 323, .external_lex_state = 4}, + [2693] = {.lex_state = 172, .external_lex_state = 5}, + [2694] = {.lex_state = 172, .external_lex_state = 5}, [2695] = {.lex_state = 172, .external_lex_state = 5}, [2696] = {.lex_state = 172, .external_lex_state = 5}, [2697] = {.lex_state = 172, .external_lex_state = 5}, @@ -19225,386 +19152,386 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2726] = {.lex_state = 172, .external_lex_state = 5}, [2727] = {.lex_state = 172, .external_lex_state = 5}, [2728] = {.lex_state = 172, .external_lex_state = 5}, - [2729] = {.lex_state = 172, .external_lex_state = 5}, - [2730] = {.lex_state = 172, .external_lex_state = 5}, - [2731] = {.lex_state = 172, .external_lex_state = 5}, - [2732] = {.lex_state = 172, .external_lex_state = 5}, - [2733] = {.lex_state = 172, .external_lex_state = 5}, - [2734] = {.lex_state = 172, .external_lex_state = 5}, - [2735] = {.lex_state = 172, .external_lex_state = 5}, - [2736] = {.lex_state = 172, .external_lex_state = 5}, - [2737] = {.lex_state = 172, .external_lex_state = 5}, - [2738] = {.lex_state = 172, .external_lex_state = 5}, - [2739] = {.lex_state = 172, .external_lex_state = 5}, - [2740] = {.lex_state = 172, .external_lex_state = 5}, - [2741] = {.lex_state = 172, .external_lex_state = 5}, - [2742] = {.lex_state = 172, .external_lex_state = 5}, - [2743] = {.lex_state = 142, .external_lex_state = 5}, - [2744] = {.lex_state = 142, .external_lex_state = 5}, - [2745] = {.lex_state = 319, .external_lex_state = 4}, - [2746] = {.lex_state = 319, .external_lex_state = 4}, - [2747] = {.lex_state = 319, .external_lex_state = 4}, - [2748] = {.lex_state = 319, .external_lex_state = 4}, - [2749] = {.lex_state = 319, .external_lex_state = 4}, - [2750] = {.lex_state = 319, .external_lex_state = 4}, - [2751] = {.lex_state = 319, .external_lex_state = 4}, - [2752] = {.lex_state = 319, .external_lex_state = 4}, - [2753] = {.lex_state = 319, .external_lex_state = 4}, - [2754] = {.lex_state = 319, .external_lex_state = 4}, - [2755] = {.lex_state = 319, .external_lex_state = 4}, - [2756] = {.lex_state = 319, .external_lex_state = 4}, - [2757] = {.lex_state = 319, .external_lex_state = 4}, - [2758] = {.lex_state = 319, .external_lex_state = 5}, - [2759] = {.lex_state = 142, .external_lex_state = 5}, - [2760] = {.lex_state = 142, .external_lex_state = 5}, + [2729] = {.lex_state = 142, .external_lex_state = 5}, + [2730] = {.lex_state = 142, .external_lex_state = 5}, + [2731] = {.lex_state = 323, .external_lex_state = 4}, + [2732] = {.lex_state = 323, .external_lex_state = 4}, + [2733] = {.lex_state = 323, .external_lex_state = 4}, + [2734] = {.lex_state = 323, .external_lex_state = 4}, + [2735] = {.lex_state = 323, .external_lex_state = 4}, + [2736] = {.lex_state = 323, .external_lex_state = 4}, + [2737] = {.lex_state = 323, .external_lex_state = 4}, + [2738] = {.lex_state = 323, .external_lex_state = 4}, + [2739] = {.lex_state = 323, .external_lex_state = 4}, + [2740] = {.lex_state = 323, .external_lex_state = 4}, + [2741] = {.lex_state = 323, .external_lex_state = 4}, + [2742] = {.lex_state = 323, .external_lex_state = 4}, + [2743] = {.lex_state = 323, .external_lex_state = 4}, + [2744] = {.lex_state = 323, .external_lex_state = 5}, + [2745] = {.lex_state = 142, .external_lex_state = 5}, + [2746] = {.lex_state = 142, .external_lex_state = 5}, + [2747] = {.lex_state = 327, .external_lex_state = 4}, + [2748] = {.lex_state = 327, .external_lex_state = 4}, + [2749] = {.lex_state = 169, .external_lex_state = 5}, + [2750] = {.lex_state = 169, .external_lex_state = 5}, + [2751] = {.lex_state = 327, .external_lex_state = 4}, + [2752] = {.lex_state = 327, .external_lex_state = 4}, + [2753] = {.lex_state = 323, .external_lex_state = 4}, + [2754] = {.lex_state = 142, .external_lex_state = 5}, + [2755] = {.lex_state = 323, .external_lex_state = 4}, + [2756] = {.lex_state = 323, .external_lex_state = 4}, + [2757] = {.lex_state = 323, .external_lex_state = 4}, + [2758] = {.lex_state = 323, .external_lex_state = 5}, + [2759] = {.lex_state = 327, .external_lex_state = 4}, + [2760] = {.lex_state = 327, .external_lex_state = 4}, [2761] = {.lex_state = 323, .external_lex_state = 4}, - [2762] = {.lex_state = 169, .external_lex_state = 5}, - [2763] = {.lex_state = 323, .external_lex_state = 4}, - [2764] = {.lex_state = 323, .external_lex_state = 4}, + [2762] = {.lex_state = 142, .external_lex_state = 5}, + [2763] = {.lex_state = 325, .external_lex_state = 5}, + [2764] = {.lex_state = 325, .external_lex_state = 5}, [2765] = {.lex_state = 142, .external_lex_state = 5}, - [2766] = {.lex_state = 319, .external_lex_state = 5}, - [2767] = {.lex_state = 323, .external_lex_state = 4}, - [2768] = {.lex_state = 323, .external_lex_state = 4}, - [2769] = {.lex_state = 319, .external_lex_state = 4}, - [2770] = {.lex_state = 319, .external_lex_state = 4}, - [2771] = {.lex_state = 319, .external_lex_state = 4}, - [2772] = {.lex_state = 319, .external_lex_state = 4}, - [2773] = {.lex_state = 323, .external_lex_state = 4}, - [2774] = {.lex_state = 323, .external_lex_state = 4}, - [2775] = {.lex_state = 319, .external_lex_state = 4}, - [2776] = {.lex_state = 142, .external_lex_state = 5}, - [2777] = {.lex_state = 142, .external_lex_state = 5}, - [2778] = {.lex_state = 321, .external_lex_state = 5}, - [2779] = {.lex_state = 321, .external_lex_state = 5}, - [2780] = {.lex_state = 321, .external_lex_state = 5}, - [2781] = {.lex_state = 321, .external_lex_state = 5}, - [2782] = {.lex_state = 321, .external_lex_state = 5}, - [2783] = {.lex_state = 321, .external_lex_state = 5}, - [2784] = {.lex_state = 319, .external_lex_state = 4}, - [2785] = {.lex_state = 321, .external_lex_state = 5}, - [2786] = {.lex_state = 321, .external_lex_state = 5}, - [2787] = {.lex_state = 161, .external_lex_state = 5}, - [2788] = {.lex_state = 161, .external_lex_state = 5}, - [2789] = {.lex_state = 321, .external_lex_state = 5}, - [2790] = {.lex_state = 321, .external_lex_state = 5}, - [2791] = {.lex_state = 161, .external_lex_state = 5}, - [2792] = {.lex_state = 161, .external_lex_state = 5}, - [2793] = {.lex_state = 321, .external_lex_state = 5}, - [2794] = {.lex_state = 321, .external_lex_state = 5}, + [2766] = {.lex_state = 325, .external_lex_state = 5}, + [2767] = {.lex_state = 325, .external_lex_state = 5}, + [2768] = {.lex_state = 325, .external_lex_state = 5}, + [2769] = {.lex_state = 325, .external_lex_state = 5}, + [2770] = {.lex_state = 323, .external_lex_state = 4}, + [2771] = {.lex_state = 325, .external_lex_state = 5}, + [2772] = {.lex_state = 325, .external_lex_state = 5}, + [2773] = {.lex_state = 161, .external_lex_state = 5}, + [2774] = {.lex_state = 161, .external_lex_state = 5}, + [2775] = {.lex_state = 325, .external_lex_state = 5}, + [2776] = {.lex_state = 325, .external_lex_state = 5}, + [2777] = {.lex_state = 161, .external_lex_state = 5}, + [2778] = {.lex_state = 161, .external_lex_state = 5}, + [2779] = {.lex_state = 325, .external_lex_state = 5}, + [2780] = {.lex_state = 325, .external_lex_state = 5}, + [2781] = {.lex_state = 161, .external_lex_state = 5}, + [2782] = {.lex_state = 161, .external_lex_state = 5}, + [2783] = {.lex_state = 325, .external_lex_state = 5}, + [2784] = {.lex_state = 325, .external_lex_state = 5}, + [2785] = {.lex_state = 325, .external_lex_state = 5}, + [2786] = {.lex_state = 325, .external_lex_state = 5}, + [2787] = {.lex_state = 325, .external_lex_state = 5}, + [2788] = {.lex_state = 325, .external_lex_state = 5}, + [2789] = {.lex_state = 172, .external_lex_state = 5}, + [2790] = {.lex_state = 172, .external_lex_state = 5}, + [2791] = {.lex_state = 172, .external_lex_state = 5}, + [2792] = {.lex_state = 172, .external_lex_state = 5}, + [2793] = {.lex_state = 172, .external_lex_state = 5}, + [2794] = {.lex_state = 172, .external_lex_state = 5}, [2795] = {.lex_state = 161, .external_lex_state = 5}, [2796] = {.lex_state = 161, .external_lex_state = 5}, - [2797] = {.lex_state = 321, .external_lex_state = 5}, - [2798] = {.lex_state = 321, .external_lex_state = 5}, - [2799] = {.lex_state = 321, .external_lex_state = 5}, - [2800] = {.lex_state = 321, .external_lex_state = 5}, - [2801] = {.lex_state = 321, .external_lex_state = 5}, - [2802] = {.lex_state = 321, .external_lex_state = 5}, - [2803] = {.lex_state = 172, .external_lex_state = 5}, - [2804] = {.lex_state = 172, .external_lex_state = 5}, - [2805] = {.lex_state = 172, .external_lex_state = 5}, - [2806] = {.lex_state = 172, .external_lex_state = 5}, + [2797] = {.lex_state = 161, .external_lex_state = 5}, + [2798] = {.lex_state = 161, .external_lex_state = 5}, + [2799] = {.lex_state = 161, .external_lex_state = 5}, + [2800] = {.lex_state = 161, .external_lex_state = 5}, + [2801] = {.lex_state = 325, .external_lex_state = 5}, + [2802] = {.lex_state = 325, .external_lex_state = 5}, + [2803] = {.lex_state = 325, .external_lex_state = 5}, + [2804] = {.lex_state = 325, .external_lex_state = 5}, + [2805] = {.lex_state = 325, .external_lex_state = 5}, + [2806] = {.lex_state = 325, .external_lex_state = 5}, [2807] = {.lex_state = 172, .external_lex_state = 5}, [2808] = {.lex_state = 172, .external_lex_state = 5}, - [2809] = {.lex_state = 161, .external_lex_state = 5}, - [2810] = {.lex_state = 161, .external_lex_state = 5}, - [2811] = {.lex_state = 161, .external_lex_state = 5}, - [2812] = {.lex_state = 161, .external_lex_state = 5}, - [2813] = {.lex_state = 161, .external_lex_state = 5}, - [2814] = {.lex_state = 161, .external_lex_state = 5}, - [2815] = {.lex_state = 319, .external_lex_state = 5}, - [2816] = {.lex_state = 319, .external_lex_state = 5}, - [2817] = {.lex_state = 321, .external_lex_state = 5}, - [2818] = {.lex_state = 321, .external_lex_state = 5}, - [2819] = {.lex_state = 321, .external_lex_state = 5}, - [2820] = {.lex_state = 321, .external_lex_state = 5}, - [2821] = {.lex_state = 321, .external_lex_state = 5}, - [2822] = {.lex_state = 321, .external_lex_state = 5}, - [2823] = {.lex_state = 172, .external_lex_state = 5}, - [2824] = {.lex_state = 172, .external_lex_state = 5}, - [2825] = {.lex_state = 172, .external_lex_state = 5}, - [2826] = {.lex_state = 172, .external_lex_state = 5}, - [2827] = {.lex_state = 172, .external_lex_state = 5}, - [2828] = {.lex_state = 172, .external_lex_state = 5}, - [2829] = {.lex_state = 319, .external_lex_state = 5}, - [2830] = {.lex_state = 319, .external_lex_state = 5}, - [2831] = {.lex_state = 319, .external_lex_state = 5}, - [2832] = {.lex_state = 319, .external_lex_state = 5}, - [2833] = {.lex_state = 319, .external_lex_state = 5}, - [2834] = {.lex_state = 319, .external_lex_state = 5}, - [2835] = {.lex_state = 319, .external_lex_state = 5}, - [2836] = {.lex_state = 319, .external_lex_state = 4}, - [2837] = {.lex_state = 321, .external_lex_state = 5}, - [2838] = {.lex_state = 321, .external_lex_state = 5}, - [2839] = {.lex_state = 319, .external_lex_state = 5}, - [2840] = {.lex_state = 319, .external_lex_state = 5}, - [2841] = {.lex_state = 319, .external_lex_state = 5}, - [2842] = {.lex_state = 319, .external_lex_state = 5}, - [2843] = {.lex_state = 319, .external_lex_state = 5}, - [2844] = {.lex_state = 319, .external_lex_state = 5}, - [2845] = {.lex_state = 319, .external_lex_state = 5}, - [2846] = {.lex_state = 321, .external_lex_state = 5}, - [2847] = {.lex_state = 321, .external_lex_state = 5}, - [2848] = {.lex_state = 321, .external_lex_state = 5}, - [2849] = {.lex_state = 321, .external_lex_state = 5}, - [2850] = {.lex_state = 321, .external_lex_state = 5}, - [2851] = {.lex_state = 321, .external_lex_state = 5}, - [2852] = {.lex_state = 321, .external_lex_state = 5}, - [2853] = {.lex_state = 321, .external_lex_state = 5}, - [2854] = {.lex_state = 321, .external_lex_state = 5}, - [2855] = {.lex_state = 321, .external_lex_state = 5}, - [2856] = {.lex_state = 321, .external_lex_state = 5}, - [2857] = {.lex_state = 321, .external_lex_state = 5}, - [2858] = {.lex_state = 321, .external_lex_state = 5}, - [2859] = {.lex_state = 321, .external_lex_state = 5}, - [2860] = {.lex_state = 321, .external_lex_state = 5}, - [2861] = {.lex_state = 321, .external_lex_state = 5}, - [2862] = {.lex_state = 319, .external_lex_state = 5}, - [2863] = {.lex_state = 319, .external_lex_state = 5}, - [2864] = {.lex_state = 319, .external_lex_state = 5}, - [2865] = {.lex_state = 321, .external_lex_state = 5}, - [2866] = {.lex_state = 321, .external_lex_state = 5}, - [2867] = {.lex_state = 321, .external_lex_state = 5}, - [2868] = {.lex_state = 321, .external_lex_state = 5}, - [2869] = {.lex_state = 321, .external_lex_state = 5}, - [2870] = {.lex_state = 321, .external_lex_state = 5}, - [2871] = {.lex_state = 321, .external_lex_state = 5}, - [2872] = {.lex_state = 321, .external_lex_state = 5}, - [2873] = {.lex_state = 321, .external_lex_state = 5}, - [2874] = {.lex_state = 321, .external_lex_state = 5}, - [2875] = {.lex_state = 321, .external_lex_state = 5}, - [2876] = {.lex_state = 321, .external_lex_state = 5}, - [2877] = {.lex_state = 321, .external_lex_state = 5}, - [2878] = {.lex_state = 321, .external_lex_state = 5}, - [2879] = {.lex_state = 321, .external_lex_state = 5}, - [2880] = {.lex_state = 321, .external_lex_state = 5}, - [2881] = {.lex_state = 319, .external_lex_state = 5}, - [2882] = {.lex_state = 321, .external_lex_state = 5}, - [2883] = {.lex_state = 321, .external_lex_state = 5}, - [2884] = {.lex_state = 321, .external_lex_state = 5}, - [2885] = {.lex_state = 321, .external_lex_state = 5}, - [2886] = {.lex_state = 321, .external_lex_state = 5}, - [2887] = {.lex_state = 321, .external_lex_state = 5}, - [2888] = {.lex_state = 321, .external_lex_state = 5}, - [2889] = {.lex_state = 321, .external_lex_state = 5}, - [2890] = {.lex_state = 321, .external_lex_state = 5}, - [2891] = {.lex_state = 321, .external_lex_state = 5}, - [2892] = {.lex_state = 321, .external_lex_state = 5}, - [2893] = {.lex_state = 321, .external_lex_state = 5}, - [2894] = {.lex_state = 321, .external_lex_state = 5}, - [2895] = {.lex_state = 321, .external_lex_state = 5}, - [2896] = {.lex_state = 321, .external_lex_state = 5}, - [2897] = {.lex_state = 321, .external_lex_state = 5}, - [2898] = {.lex_state = 319, .external_lex_state = 5}, - [2899] = {.lex_state = 319, .external_lex_state = 5}, - [2900] = {.lex_state = 319, .external_lex_state = 5}, - [2901] = {.lex_state = 319, .external_lex_state = 4}, - [2902] = {.lex_state = 319, .external_lex_state = 5}, - [2903] = {.lex_state = 319, .external_lex_state = 5}, - [2904] = {.lex_state = 319, .external_lex_state = 5}, - [2905] = {.lex_state = 319, .external_lex_state = 5}, - [2906] = {.lex_state = 319, .external_lex_state = 4}, - [2907] = {.lex_state = 319, .external_lex_state = 4}, - [2908] = {.lex_state = 319, .external_lex_state = 5}, - [2909] = {.lex_state = 319, .external_lex_state = 5}, - [2910] = {.lex_state = 319, .external_lex_state = 5}, + [2809] = {.lex_state = 172, .external_lex_state = 5}, + [2810] = {.lex_state = 172, .external_lex_state = 5}, + [2811] = {.lex_state = 172, .external_lex_state = 5}, + [2812] = {.lex_state = 172, .external_lex_state = 5}, + [2813] = {.lex_state = 323, .external_lex_state = 5}, + [2814] = {.lex_state = 323, .external_lex_state = 5}, + [2815] = {.lex_state = 323, .external_lex_state = 5}, + [2816] = {.lex_state = 323, .external_lex_state = 5}, + [2817] = {.lex_state = 323, .external_lex_state = 5}, + [2818] = {.lex_state = 323, .external_lex_state = 5}, + [2819] = {.lex_state = 323, .external_lex_state = 5}, + [2820] = {.lex_state = 323, .external_lex_state = 4}, + [2821] = {.lex_state = 323, .external_lex_state = 5}, + [2822] = {.lex_state = 323, .external_lex_state = 5}, + [2823] = {.lex_state = 325, .external_lex_state = 5}, + [2824] = {.lex_state = 323, .external_lex_state = 5}, + [2825] = {.lex_state = 323, .external_lex_state = 5}, + [2826] = {.lex_state = 323, .external_lex_state = 5}, + [2827] = {.lex_state = 323, .external_lex_state = 5}, + [2828] = {.lex_state = 323, .external_lex_state = 5}, + [2829] = {.lex_state = 323, .external_lex_state = 5}, + [2830] = {.lex_state = 323, .external_lex_state = 5}, + [2831] = {.lex_state = 325, .external_lex_state = 5}, + [2832] = {.lex_state = 325, .external_lex_state = 5}, + [2833] = {.lex_state = 325, .external_lex_state = 5}, + [2834] = {.lex_state = 325, .external_lex_state = 5}, + [2835] = {.lex_state = 325, .external_lex_state = 5}, + [2836] = {.lex_state = 325, .external_lex_state = 5}, + [2837] = {.lex_state = 325, .external_lex_state = 5}, + [2838] = {.lex_state = 325, .external_lex_state = 5}, + [2839] = {.lex_state = 325, .external_lex_state = 5}, + [2840] = {.lex_state = 325, .external_lex_state = 5}, + [2841] = {.lex_state = 325, .external_lex_state = 5}, + [2842] = {.lex_state = 325, .external_lex_state = 5}, + [2843] = {.lex_state = 325, .external_lex_state = 5}, + [2844] = {.lex_state = 325, .external_lex_state = 5}, + [2845] = {.lex_state = 325, .external_lex_state = 5}, + [2846] = {.lex_state = 325, .external_lex_state = 5}, + [2847] = {.lex_state = 323, .external_lex_state = 5}, + [2848] = {.lex_state = 323, .external_lex_state = 5}, + [2849] = {.lex_state = 323, .external_lex_state = 5}, + [2850] = {.lex_state = 325, .external_lex_state = 5}, + [2851] = {.lex_state = 325, .external_lex_state = 5}, + [2852] = {.lex_state = 325, .external_lex_state = 5}, + [2853] = {.lex_state = 325, .external_lex_state = 5}, + [2854] = {.lex_state = 325, .external_lex_state = 5}, + [2855] = {.lex_state = 325, .external_lex_state = 5}, + [2856] = {.lex_state = 325, .external_lex_state = 5}, + [2857] = {.lex_state = 325, .external_lex_state = 5}, + [2858] = {.lex_state = 325, .external_lex_state = 5}, + [2859] = {.lex_state = 325, .external_lex_state = 5}, + [2860] = {.lex_state = 325, .external_lex_state = 5}, + [2861] = {.lex_state = 325, .external_lex_state = 5}, + [2862] = {.lex_state = 325, .external_lex_state = 5}, + [2863] = {.lex_state = 325, .external_lex_state = 5}, + [2864] = {.lex_state = 325, .external_lex_state = 5}, + [2865] = {.lex_state = 325, .external_lex_state = 5}, + [2866] = {.lex_state = 323, .external_lex_state = 5}, + [2867] = {.lex_state = 325, .external_lex_state = 5}, + [2868] = {.lex_state = 325, .external_lex_state = 5}, + [2869] = {.lex_state = 325, .external_lex_state = 5}, + [2870] = {.lex_state = 325, .external_lex_state = 5}, + [2871] = {.lex_state = 325, .external_lex_state = 5}, + [2872] = {.lex_state = 325, .external_lex_state = 5}, + [2873] = {.lex_state = 325, .external_lex_state = 5}, + [2874] = {.lex_state = 325, .external_lex_state = 5}, + [2875] = {.lex_state = 325, .external_lex_state = 5}, + [2876] = {.lex_state = 325, .external_lex_state = 5}, + [2877] = {.lex_state = 325, .external_lex_state = 5}, + [2878] = {.lex_state = 325, .external_lex_state = 5}, + [2879] = {.lex_state = 325, .external_lex_state = 5}, + [2880] = {.lex_state = 323, .external_lex_state = 4}, + [2881] = {.lex_state = 325, .external_lex_state = 5}, + [2882] = {.lex_state = 325, .external_lex_state = 5}, + [2883] = {.lex_state = 325, .external_lex_state = 5}, + [2884] = {.lex_state = 323, .external_lex_state = 5}, + [2885] = {.lex_state = 323, .external_lex_state = 5}, + [2886] = {.lex_state = 323, .external_lex_state = 5}, + [2887] = {.lex_state = 323, .external_lex_state = 5}, + [2888] = {.lex_state = 323, .external_lex_state = 5}, + [2889] = {.lex_state = 323, .external_lex_state = 5}, + [2890] = {.lex_state = 323, .external_lex_state = 5}, + [2891] = {.lex_state = 323, .external_lex_state = 4}, + [2892] = {.lex_state = 323, .external_lex_state = 4}, + [2893] = {.lex_state = 323, .external_lex_state = 5}, + [2894] = {.lex_state = 323, .external_lex_state = 5}, + [2895] = {.lex_state = 323, .external_lex_state = 5}, + [2896] = {.lex_state = 142, .external_lex_state = 5}, + [2897] = {.lex_state = 142, .external_lex_state = 5}, + [2898] = {.lex_state = 323, .external_lex_state = 5}, + [2899] = {.lex_state = 142, .external_lex_state = 5}, + [2900] = {.lex_state = 142, .external_lex_state = 5}, + [2901] = {.lex_state = 142, .external_lex_state = 5}, + [2902] = {.lex_state = 323, .external_lex_state = 5}, + [2903] = {.lex_state = 323, .external_lex_state = 5}, + [2904] = {.lex_state = 142, .external_lex_state = 5}, + [2905] = {.lex_state = 142, .external_lex_state = 5}, + [2906] = {.lex_state = 142, .external_lex_state = 5}, + [2907] = {.lex_state = 142, .external_lex_state = 5}, + [2908] = {.lex_state = 142, .external_lex_state = 5}, + [2909] = {.lex_state = 142, .external_lex_state = 5}, + [2910] = {.lex_state = 142, .external_lex_state = 5}, [2911] = {.lex_state = 142, .external_lex_state = 5}, [2912] = {.lex_state = 142, .external_lex_state = 5}, - [2913] = {.lex_state = 319, .external_lex_state = 5}, + [2913] = {.lex_state = 142, .external_lex_state = 5}, [2914] = {.lex_state = 142, .external_lex_state = 5}, [2915] = {.lex_state = 142, .external_lex_state = 5}, [2916] = {.lex_state = 142, .external_lex_state = 5}, - [2917] = {.lex_state = 319, .external_lex_state = 5}, - [2918] = {.lex_state = 319, .external_lex_state = 5}, - [2919] = {.lex_state = 319, .external_lex_state = 5}, - [2920] = {.lex_state = 142, .external_lex_state = 5}, - [2921] = {.lex_state = 142, .external_lex_state = 5}, + [2917] = {.lex_state = 142, .external_lex_state = 5}, + [2918] = {.lex_state = 323, .external_lex_state = 5}, + [2919] = {.lex_state = 142, .external_lex_state = 5}, + [2920] = {.lex_state = 323, .external_lex_state = 5}, + [2921] = {.lex_state = 323, .external_lex_state = 5}, [2922] = {.lex_state = 142, .external_lex_state = 5}, - [2923] = {.lex_state = 142, .external_lex_state = 5}, - [2924] = {.lex_state = 142, .external_lex_state = 5}, - [2925] = {.lex_state = 142, .external_lex_state = 5}, - [2926] = {.lex_state = 142, .external_lex_state = 5}, - [2927] = {.lex_state = 142, .external_lex_state = 5}, - [2928] = {.lex_state = 142, .external_lex_state = 5}, - [2929] = {.lex_state = 142, .external_lex_state = 5}, - [2930] = {.lex_state = 142, .external_lex_state = 5}, - [2931] = {.lex_state = 142, .external_lex_state = 5}, - [2932] = {.lex_state = 142, .external_lex_state = 5}, - [2933] = {.lex_state = 142, .external_lex_state = 5}, - [2934] = {.lex_state = 142, .external_lex_state = 5}, - [2935] = {.lex_state = 319, .external_lex_state = 5}, - [2936] = {.lex_state = 319, .external_lex_state = 5}, - [2937] = {.lex_state = 142, .external_lex_state = 5}, - [2938] = {.lex_state = 319, .external_lex_state = 5}, - [2939] = {.lex_state = 319, .external_lex_state = 5}, - [2940] = {.lex_state = 319, .external_lex_state = 5}, - [2941] = {.lex_state = 319, .external_lex_state = 5}, - [2942] = {.lex_state = 323, .external_lex_state = 4}, - [2943] = {.lex_state = 319, .external_lex_state = 4}, - [2944] = {.lex_state = 319, .external_lex_state = 4}, - [2945] = {.lex_state = 319, .external_lex_state = 5}, - [2946] = {.lex_state = 323, .external_lex_state = 4}, - [2947] = {.lex_state = 319, .external_lex_state = 4}, - [2948] = {.lex_state = 319, .external_lex_state = 4}, - [2949] = {.lex_state = 319, .external_lex_state = 4}, - [2950] = {.lex_state = 319, .external_lex_state = 5}, - [2951] = {.lex_state = 319, .external_lex_state = 5}, - [2952] = {.lex_state = 142, .external_lex_state = 5}, - [2953] = {.lex_state = 319, .external_lex_state = 5}, - [2954] = {.lex_state = 319, .external_lex_state = 5}, - [2955] = {.lex_state = 319, .external_lex_state = 5}, + [2923] = {.lex_state = 323, .external_lex_state = 5}, + [2924] = {.lex_state = 323, .external_lex_state = 5}, + [2925] = {.lex_state = 323, .external_lex_state = 5}, + [2926] = {.lex_state = 323, .external_lex_state = 5}, + [2927] = {.lex_state = 323, .external_lex_state = 5}, + [2928] = {.lex_state = 323, .external_lex_state = 5}, + [2929] = {.lex_state = 323, .external_lex_state = 4}, + [2930] = {.lex_state = 323, .external_lex_state = 4}, + [2931] = {.lex_state = 323, .external_lex_state = 5}, + [2932] = {.lex_state = 323, .external_lex_state = 4}, + [2933] = {.lex_state = 323, .external_lex_state = 5}, + [2934] = {.lex_state = 323, .external_lex_state = 5}, + [2935] = {.lex_state = 142, .external_lex_state = 5}, + [2936] = {.lex_state = 323, .external_lex_state = 5}, + [2937] = {.lex_state = 323, .external_lex_state = 5}, + [2938] = {.lex_state = 323, .external_lex_state = 5}, + [2939] = {.lex_state = 142, .external_lex_state = 5}, + [2940] = {.lex_state = 142, .external_lex_state = 5}, + [2941] = {.lex_state = 142, .external_lex_state = 5}, + [2942] = {.lex_state = 323, .external_lex_state = 5}, + [2943] = {.lex_state = 323, .external_lex_state = 5}, + [2944] = {.lex_state = 323, .external_lex_state = 5}, + [2945] = {.lex_state = 323, .external_lex_state = 5}, + [2946] = {.lex_state = 323, .external_lex_state = 5}, + [2947] = {.lex_state = 323, .external_lex_state = 5}, + [2948] = {.lex_state = 323, .external_lex_state = 5}, + [2949] = {.lex_state = 323, .external_lex_state = 5}, + [2950] = {.lex_state = 323, .external_lex_state = 4}, + [2951] = {.lex_state = 323, .external_lex_state = 4}, + [2952] = {.lex_state = 327, .external_lex_state = 4}, + [2953] = {.lex_state = 323, .external_lex_state = 4}, + [2954] = {.lex_state = 323, .external_lex_state = 5}, + [2955] = {.lex_state = 323, .external_lex_state = 4}, [2956] = {.lex_state = 142, .external_lex_state = 5}, - [2957] = {.lex_state = 142, .external_lex_state = 5}, + [2957] = {.lex_state = 166, .external_lex_state = 5}, [2958] = {.lex_state = 142, .external_lex_state = 5}, - [2959] = {.lex_state = 319, .external_lex_state = 5}, - [2960] = {.lex_state = 319, .external_lex_state = 5}, - [2961] = {.lex_state = 319, .external_lex_state = 5}, - [2962] = {.lex_state = 319, .external_lex_state = 5}, - [2963] = {.lex_state = 319, .external_lex_state = 5}, - [2964] = {.lex_state = 319, .external_lex_state = 5}, - [2965] = {.lex_state = 319, .external_lex_state = 5}, - [2966] = {.lex_state = 319, .external_lex_state = 5}, - [2967] = {.lex_state = 323, .external_lex_state = 4}, - [2968] = {.lex_state = 323, .external_lex_state = 4}, - [2969] = {.lex_state = 319, .external_lex_state = 4}, - [2970] = {.lex_state = 319, .external_lex_state = 4}, - [2971] = {.lex_state = 323, .external_lex_state = 4}, - [2972] = {.lex_state = 319, .external_lex_state = 4}, - [2973] = {.lex_state = 319, .external_lex_state = 4}, - [2974] = {.lex_state = 319, .external_lex_state = 5}, - [2975] = {.lex_state = 319, .external_lex_state = 5}, - [2976] = {.lex_state = 319, .external_lex_state = 5}, - [2977] = {.lex_state = 319, .external_lex_state = 4}, + [2959] = {.lex_state = 142, .external_lex_state = 5}, + [2960] = {.lex_state = 166, .external_lex_state = 5}, + [2961] = {.lex_state = 166, .external_lex_state = 5}, + [2962] = {.lex_state = 166, .external_lex_state = 5}, + [2963] = {.lex_state = 323, .external_lex_state = 4}, + [2964] = {.lex_state = 323, .external_lex_state = 5}, + [2965] = {.lex_state = 169, .external_lex_state = 5}, + [2966] = {.lex_state = 169, .external_lex_state = 5}, + [2967] = {.lex_state = 169, .external_lex_state = 5}, + [2968] = {.lex_state = 175, .external_lex_state = 5}, + [2969] = {.lex_state = 323, .external_lex_state = 4}, + [2970] = {.lex_state = 169, .external_lex_state = 5}, + [2971] = {.lex_state = 166, .external_lex_state = 5}, + [2972] = {.lex_state = 166, .external_lex_state = 5}, + [2973] = {.lex_state = 169, .external_lex_state = 5}, + [2974] = {.lex_state = 169, .external_lex_state = 5}, + [2975] = {.lex_state = 169, .external_lex_state = 5}, + [2976] = {.lex_state = 166, .external_lex_state = 5}, + [2977] = {.lex_state = 169, .external_lex_state = 5}, [2978] = {.lex_state = 169, .external_lex_state = 5}, - [2979] = {.lex_state = 319, .external_lex_state = 4}, - [2980] = {.lex_state = 142, .external_lex_state = 5}, - [2981] = {.lex_state = 142, .external_lex_state = 5}, - [2982] = {.lex_state = 319, .external_lex_state = 4}, - [2983] = {.lex_state = 319, .external_lex_state = 5}, - [2984] = {.lex_state = 319, .external_lex_state = 5}, - [2985] = {.lex_state = 319, .external_lex_state = 5}, - [2986] = {.lex_state = 319, .external_lex_state = 5}, - [2987] = {.lex_state = 319, .external_lex_state = 5}, - [2988] = {.lex_state = 319, .external_lex_state = 5}, - [2989] = {.lex_state = 319, .external_lex_state = 5}, - [2990] = {.lex_state = 319, .external_lex_state = 5}, - [2991] = {.lex_state = 319, .external_lex_state = 5}, - [2992] = {.lex_state = 319, .external_lex_state = 5}, - [2993] = {.lex_state = 319, .external_lex_state = 5}, - [2994] = {.lex_state = 319, .external_lex_state = 5}, - [2995] = {.lex_state = 319, .external_lex_state = 5}, - [2996] = {.lex_state = 319, .external_lex_state = 5}, - [2997] = {.lex_state = 319, .external_lex_state = 5}, - [2998] = {.lex_state = 319, .external_lex_state = 5}, - [2999] = {.lex_state = 319, .external_lex_state = 5}, - [3000] = {.lex_state = 142, .external_lex_state = 5}, - [3001] = {.lex_state = 166, .external_lex_state = 5}, - [3002] = {.lex_state = 166, .external_lex_state = 5}, - [3003] = {.lex_state = 142, .external_lex_state = 5}, - [3004] = {.lex_state = 142, .external_lex_state = 5}, - [3005] = {.lex_state = 142, .external_lex_state = 5}, - [3006] = {.lex_state = 142, .external_lex_state = 5}, - [3007] = {.lex_state = 142, .external_lex_state = 5}, - [3008] = {.lex_state = 142, .external_lex_state = 5}, - [3009] = {.lex_state = 142, .external_lex_state = 5}, - [3010] = {.lex_state = 166, .external_lex_state = 5}, - [3011] = {.lex_state = 166, .external_lex_state = 5}, - [3012] = {.lex_state = 142, .external_lex_state = 5}, - [3013] = {.lex_state = 142, .external_lex_state = 5}, - [3014] = {.lex_state = 169, .external_lex_state = 5}, - [3015] = {.lex_state = 142, .external_lex_state = 5}, - [3016] = {.lex_state = 142, .external_lex_state = 5}, - [3017] = {.lex_state = 142, .external_lex_state = 5}, - [3018] = {.lex_state = 142, .external_lex_state = 5}, - [3019] = {.lex_state = 166, .external_lex_state = 5}, - [3020] = {.lex_state = 142, .external_lex_state = 5}, - [3021] = {.lex_state = 319, .external_lex_state = 4}, - [3022] = {.lex_state = 319, .external_lex_state = 4}, - [3023] = {.lex_state = 319, .external_lex_state = 4}, - [3024] = {.lex_state = 175, .external_lex_state = 5}, - [3025] = {.lex_state = 175, .external_lex_state = 5}, - [3026] = {.lex_state = 175, .external_lex_state = 5}, - [3027] = {.lex_state = 142, .external_lex_state = 5}, - [3028] = {.lex_state = 142, .external_lex_state = 5}, - [3029] = {.lex_state = 175, .external_lex_state = 5}, - [3030] = {.lex_state = 169, .external_lex_state = 5}, - [3031] = {.lex_state = 169, .external_lex_state = 5}, - [3032] = {.lex_state = 175, .external_lex_state = 5}, - [3033] = {.lex_state = 169, .external_lex_state = 5}, - [3034] = {.lex_state = 169, .external_lex_state = 5}, - [3035] = {.lex_state = 175, .external_lex_state = 5}, - [3036] = {.lex_state = 175, .external_lex_state = 5}, - [3037] = {.lex_state = 142, .external_lex_state = 5}, - [3038] = {.lex_state = 142, .external_lex_state = 5}, - [3039] = {.lex_state = 175, .external_lex_state = 5}, - [3040] = {.lex_state = 175, .external_lex_state = 5}, - [3041] = {.lex_state = 142, .external_lex_state = 5}, - [3042] = {.lex_state = 142, .external_lex_state = 5}, - [3043] = {.lex_state = 142, .external_lex_state = 5}, - [3044] = {.lex_state = 142, .external_lex_state = 5}, - [3045] = {.lex_state = 142, .external_lex_state = 5}, - [3046] = {.lex_state = 142, .external_lex_state = 5}, - [3047] = {.lex_state = 142, .external_lex_state = 5}, - [3048] = {.lex_state = 142, .external_lex_state = 5}, - [3049] = {.lex_state = 142, .external_lex_state = 5}, - [3050] = {.lex_state = 142, .external_lex_state = 5}, - [3051] = {.lex_state = 142, .external_lex_state = 5}, - [3052] = {.lex_state = 166, .external_lex_state = 5}, - [3053] = {.lex_state = 142, .external_lex_state = 5}, - [3054] = {.lex_state = 142, .external_lex_state = 5}, - [3055] = {.lex_state = 169, .external_lex_state = 5}, - [3056] = {.lex_state = 169, .external_lex_state = 5}, - [3057] = {.lex_state = 169, .external_lex_state = 5}, - [3058] = {.lex_state = 175, .external_lex_state = 5}, - [3059] = {.lex_state = 175, .external_lex_state = 5}, - [3060] = {.lex_state = 142, .external_lex_state = 5}, - [3061] = {.lex_state = 142, .external_lex_state = 5}, - [3062] = {.lex_state = 175, .external_lex_state = 5}, - [3063] = {.lex_state = 175, .external_lex_state = 5}, - [3064] = {.lex_state = 175, .external_lex_state = 5}, - [3065] = {.lex_state = 175, .external_lex_state = 5}, - [3066] = {.lex_state = 175, .external_lex_state = 5}, - [3067] = {.lex_state = 166, .external_lex_state = 5}, - [3068] = {.lex_state = 166, .external_lex_state = 5}, - [3069] = {.lex_state = 142, .external_lex_state = 5}, - [3070] = {.lex_state = 142, .external_lex_state = 5}, - [3071] = {.lex_state = 319, .external_lex_state = 5}, - [3072] = {.lex_state = 319, .external_lex_state = 5}, - [3073] = {.lex_state = 319, .external_lex_state = 5}, - [3074] = {.lex_state = 319, .external_lex_state = 5}, - [3075] = {.lex_state = 166, .external_lex_state = 5}, - [3076] = {.lex_state = 142, .external_lex_state = 5}, - [3077] = {.lex_state = 169, .external_lex_state = 5}, - [3078] = {.lex_state = 169, .external_lex_state = 5}, - [3079] = {.lex_state = 169, .external_lex_state = 5}, - [3080] = {.lex_state = 169, .external_lex_state = 5}, - [3081] = {.lex_state = 166, .external_lex_state = 5}, - [3082] = {.lex_state = 175, .external_lex_state = 5}, - [3083] = {.lex_state = 175, .external_lex_state = 5}, - [3084] = {.lex_state = 169, .external_lex_state = 5}, + [2979] = {.lex_state = 169, .external_lex_state = 5}, + [2980] = {.lex_state = 166, .external_lex_state = 5}, + [2981] = {.lex_state = 323, .external_lex_state = 5}, + [2982] = {.lex_state = 166, .external_lex_state = 5}, + [2983] = {.lex_state = 323, .external_lex_state = 5}, + [2984] = {.lex_state = 166, .external_lex_state = 5}, + [2985] = {.lex_state = 323, .external_lex_state = 5}, + [2986] = {.lex_state = 323, .external_lex_state = 5}, + [2987] = {.lex_state = 169, .external_lex_state = 5}, + [2988] = {.lex_state = 169, .external_lex_state = 5}, + [2989] = {.lex_state = 178, .external_lex_state = 5}, + [2990] = {.lex_state = 142, .external_lex_state = 5}, + [2991] = {.lex_state = 142, .external_lex_state = 5}, + [2992] = {.lex_state = 142, .external_lex_state = 5}, + [2993] = {.lex_state = 142, .external_lex_state = 5}, + [2994] = {.lex_state = 323, .external_lex_state = 5}, + [2995] = {.lex_state = 169, .external_lex_state = 5}, + [2996] = {.lex_state = 169, .external_lex_state = 5}, + [2997] = {.lex_state = 178, .external_lex_state = 5}, + [2998] = {.lex_state = 178, .external_lex_state = 5}, + [2999] = {.lex_state = 178, .external_lex_state = 5}, + [3000] = {.lex_state = 178, .external_lex_state = 5}, + [3001] = {.lex_state = 178, .external_lex_state = 5}, + [3002] = {.lex_state = 178, .external_lex_state = 5}, + [3003] = {.lex_state = 178, .external_lex_state = 5}, + [3004] = {.lex_state = 178, .external_lex_state = 5}, + [3005] = {.lex_state = 178, .external_lex_state = 5}, + [3006] = {.lex_state = 178, .external_lex_state = 5}, + [3007] = {.lex_state = 178, .external_lex_state = 5}, + [3008] = {.lex_state = 178, .external_lex_state = 5}, + [3009] = {.lex_state = 178, .external_lex_state = 5}, + [3010] = {.lex_state = 178, .external_lex_state = 5}, + [3011] = {.lex_state = 178, .external_lex_state = 5}, + [3012] = {.lex_state = 178, .external_lex_state = 5}, + [3013] = {.lex_state = 166, .external_lex_state = 5}, + [3014] = {.lex_state = 166, .external_lex_state = 5}, + [3015] = {.lex_state = 178, .external_lex_state = 5}, + [3016] = {.lex_state = 178, .external_lex_state = 5}, + [3017] = {.lex_state = 178, .external_lex_state = 5}, + [3018] = {.lex_state = 178, .external_lex_state = 5}, + [3019] = {.lex_state = 178, .external_lex_state = 5}, + [3020] = {.lex_state = 178, .external_lex_state = 5}, + [3021] = {.lex_state = 178, .external_lex_state = 5}, + [3022] = {.lex_state = 178, .external_lex_state = 5}, + [3023] = {.lex_state = 178, .external_lex_state = 5}, + [3024] = {.lex_state = 178, .external_lex_state = 5}, + [3025] = {.lex_state = 178, .external_lex_state = 5}, + [3026] = {.lex_state = 178, .external_lex_state = 5}, + [3027] = {.lex_state = 178, .external_lex_state = 5}, + [3028] = {.lex_state = 178, .external_lex_state = 5}, + [3029] = {.lex_state = 178, .external_lex_state = 5}, + [3030] = {.lex_state = 178, .external_lex_state = 5}, + [3031] = {.lex_state = 178, .external_lex_state = 5}, + [3032] = {.lex_state = 178, .external_lex_state = 5}, + [3033] = {.lex_state = 178, .external_lex_state = 5}, + [3034] = {.lex_state = 178, .external_lex_state = 5}, + [3035] = {.lex_state = 178, .external_lex_state = 5}, + [3036] = {.lex_state = 178, .external_lex_state = 5}, + [3037] = {.lex_state = 178, .external_lex_state = 5}, + [3038] = {.lex_state = 178, .external_lex_state = 5}, + [3039] = {.lex_state = 178, .external_lex_state = 5}, + [3040] = {.lex_state = 178, .external_lex_state = 5}, + [3041] = {.lex_state = 178, .external_lex_state = 5}, + [3042] = {.lex_state = 178, .external_lex_state = 5}, + [3043] = {.lex_state = 178, .external_lex_state = 5}, + [3044] = {.lex_state = 178, .external_lex_state = 5}, + [3045] = {.lex_state = 178, .external_lex_state = 5}, + [3046] = {.lex_state = 178, .external_lex_state = 5}, + [3047] = {.lex_state = 323, .external_lex_state = 4}, + [3048] = {.lex_state = 181, .external_lex_state = 4}, + [3049] = {.lex_state = 181, .external_lex_state = 4}, + [3050] = {.lex_state = 166, .external_lex_state = 5}, + [3051] = {.lex_state = 181, .external_lex_state = 4}, + [3052] = {.lex_state = 181, .external_lex_state = 4}, + [3053] = {.lex_state = 181, .external_lex_state = 4}, + [3054] = {.lex_state = 181, .external_lex_state = 4}, + [3055] = {.lex_state = 142, .external_lex_state = 4}, + [3056] = {.lex_state = 323, .external_lex_state = 5}, + [3057] = {.lex_state = 323, .external_lex_state = 5}, + [3058] = {.lex_state = 166, .external_lex_state = 5}, + [3059] = {.lex_state = 166, .external_lex_state = 5}, + [3060] = {.lex_state = 181, .external_lex_state = 4}, + [3061] = {.lex_state = 181, .external_lex_state = 4}, + [3062] = {.lex_state = 323, .external_lex_state = 4}, + [3063] = {.lex_state = 323, .external_lex_state = 4}, + [3064] = {.lex_state = 323, .external_lex_state = 4}, + [3065] = {.lex_state = 181, .external_lex_state = 4}, + [3066] = {.lex_state = 181, .external_lex_state = 4}, + [3067] = {.lex_state = 323, .external_lex_state = 5}, + [3068] = {.lex_state = 323, .external_lex_state = 4}, + [3069] = {.lex_state = 323, .external_lex_state = 5}, + [3070] = {.lex_state = 323, .external_lex_state = 5}, + [3071] = {.lex_state = 323, .external_lex_state = 5}, + [3072] = {.lex_state = 323, .external_lex_state = 5}, + [3073] = {.lex_state = 323, .external_lex_state = 5}, + [3074] = {.lex_state = 323, .external_lex_state = 4}, + [3075] = {.lex_state = 323, .external_lex_state = 5}, + [3076] = {.lex_state = 323, .external_lex_state = 5}, + [3077] = {.lex_state = 323, .external_lex_state = 5}, + [3078] = {.lex_state = 323, .external_lex_state = 5}, + [3079] = {.lex_state = 323, .external_lex_state = 5}, + [3080] = {.lex_state = 323, .external_lex_state = 5}, + [3081] = {.lex_state = 323, .external_lex_state = 5}, + [3082] = {.lex_state = 323, .external_lex_state = 5}, + [3083] = {.lex_state = 181, .external_lex_state = 4}, + [3084] = {.lex_state = 181, .external_lex_state = 4}, [3085] = {.lex_state = 175, .external_lex_state = 5}, [3086] = {.lex_state = 175, .external_lex_state = 5}, [3087] = {.lex_state = 175, .external_lex_state = 5}, [3088] = {.lex_state = 175, .external_lex_state = 5}, [3089] = {.lex_state = 175, .external_lex_state = 5}, - [3090] = {.lex_state = 169, .external_lex_state = 5}, - [3091] = {.lex_state = 169, .external_lex_state = 5}, - [3092] = {.lex_state = 169, .external_lex_state = 5}, + [3090] = {.lex_state = 175, .external_lex_state = 5}, + [3091] = {.lex_state = 175, .external_lex_state = 5}, + [3092] = {.lex_state = 175, .external_lex_state = 5}, [3093] = {.lex_state = 175, .external_lex_state = 5}, [3094] = {.lex_state = 175, .external_lex_state = 5}, - [3095] = {.lex_state = 169, .external_lex_state = 5}, - [3096] = {.lex_state = 169, .external_lex_state = 5}, + [3095] = {.lex_state = 175, .external_lex_state = 5}, + [3096] = {.lex_state = 175, .external_lex_state = 5}, [3097] = {.lex_state = 175, .external_lex_state = 5}, - [3098] = {.lex_state = 142, .external_lex_state = 5}, - [3099] = {.lex_state = 142, .external_lex_state = 5}, + [3098] = {.lex_state = 175, .external_lex_state = 5}, + [3099] = {.lex_state = 175, .external_lex_state = 5}, [3100] = {.lex_state = 175, .external_lex_state = 5}, - [3101] = {.lex_state = 175, .external_lex_state = 5}, - [3102] = {.lex_state = 175, .external_lex_state = 5}, - [3103] = {.lex_state = 175, .external_lex_state = 5}, - [3104] = {.lex_state = 175, .external_lex_state = 5}, + [3101] = {.lex_state = 166, .external_lex_state = 5}, + [3102] = {.lex_state = 166, .external_lex_state = 5}, + [3103] = {.lex_state = 169, .external_lex_state = 5}, + [3104] = {.lex_state = 166, .external_lex_state = 5}, [3105] = {.lex_state = 175, .external_lex_state = 5}, - [3106] = {.lex_state = 166, .external_lex_state = 5}, + [3106] = {.lex_state = 175, .external_lex_state = 5}, [3107] = {.lex_state = 175, .external_lex_state = 5}, - [3108] = {.lex_state = 169, .external_lex_state = 5}, + [3108] = {.lex_state = 175, .external_lex_state = 5}, [3109] = {.lex_state = 175, .external_lex_state = 5}, [3110] = {.lex_state = 175, .external_lex_state = 5}, [3111] = {.lex_state = 175, .external_lex_state = 5}, @@ -19616,316 +19543,316 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3117] = {.lex_state = 175, .external_lex_state = 5}, [3118] = {.lex_state = 175, .external_lex_state = 5}, [3119] = {.lex_state = 175, .external_lex_state = 5}, - [3120] = {.lex_state = 169, .external_lex_state = 5}, + [3120] = {.lex_state = 142, .external_lex_state = 5}, [3121] = {.lex_state = 175, .external_lex_state = 5}, - [3122] = {.lex_state = 175, .external_lex_state = 5}, - [3123] = {.lex_state = 175, .external_lex_state = 5}, + [3122] = {.lex_state = 166, .external_lex_state = 5}, + [3123] = {.lex_state = 166, .external_lex_state = 5}, [3124] = {.lex_state = 175, .external_lex_state = 5}, [3125] = {.lex_state = 175, .external_lex_state = 5}, [3126] = {.lex_state = 175, .external_lex_state = 5}, [3127] = {.lex_state = 175, .external_lex_state = 5}, - [3128] = {.lex_state = 178, .external_lex_state = 5}, - [3129] = {.lex_state = 178, .external_lex_state = 5}, - [3130] = {.lex_state = 178, .external_lex_state = 5}, - [3131] = {.lex_state = 178, .external_lex_state = 5}, - [3132] = {.lex_state = 178, .external_lex_state = 5}, - [3133] = {.lex_state = 178, .external_lex_state = 5}, - [3134] = {.lex_state = 175, .external_lex_state = 5}, - [3135] = {.lex_state = 175, .external_lex_state = 5}, - [3136] = {.lex_state = 175, .external_lex_state = 5}, - [3137] = {.lex_state = 166, .external_lex_state = 5}, - [3138] = {.lex_state = 319, .external_lex_state = 5}, - [3139] = {.lex_state = 319, .external_lex_state = 5}, - [3140] = {.lex_state = 166, .external_lex_state = 5}, - [3141] = {.lex_state = 166, .external_lex_state = 5}, - [3142] = {.lex_state = 175, .external_lex_state = 5}, - [3143] = {.lex_state = 175, .external_lex_state = 5}, - [3144] = {.lex_state = 319, .external_lex_state = 4}, - [3145] = {.lex_state = 319, .external_lex_state = 4}, + [3128] = {.lex_state = 323, .external_lex_state = 5}, + [3129] = {.lex_state = 323, .external_lex_state = 5}, + [3130] = {.lex_state = 323, .external_lex_state = 5}, + [3131] = {.lex_state = 323, .external_lex_state = 5}, + [3132] = {.lex_state = 323, .external_lex_state = 5}, + [3133] = {.lex_state = 323, .external_lex_state = 5}, + [3134] = {.lex_state = 323, .external_lex_state = 5}, + [3135] = {.lex_state = 323, .external_lex_state = 5}, + [3136] = {.lex_state = 323, .external_lex_state = 5}, + [3137] = {.lex_state = 323, .external_lex_state = 5}, + [3138] = {.lex_state = 323, .external_lex_state = 5}, + [3139] = {.lex_state = 323, .external_lex_state = 5}, + [3140] = {.lex_state = 323, .external_lex_state = 5}, + [3141] = {.lex_state = 323, .external_lex_state = 5}, + [3142] = {.lex_state = 323, .external_lex_state = 5}, + [3143] = {.lex_state = 323, .external_lex_state = 5}, + [3144] = {.lex_state = 323, .external_lex_state = 5}, + [3145] = {.lex_state = 175, .external_lex_state = 5}, [3146] = {.lex_state = 175, .external_lex_state = 5}, [3147] = {.lex_state = 175, .external_lex_state = 5}, - [3148] = {.lex_state = 142, .external_lex_state = 5}, - [3149] = {.lex_state = 169, .external_lex_state = 5}, + [3148] = {.lex_state = 175, .external_lex_state = 5}, + [3149] = {.lex_state = 175, .external_lex_state = 5}, [3150] = {.lex_state = 175, .external_lex_state = 5}, [3151] = {.lex_state = 175, .external_lex_state = 5}, - [3152] = {.lex_state = 169, .external_lex_state = 5}, - [3153] = {.lex_state = 169, .external_lex_state = 5}, - [3154] = {.lex_state = 319, .external_lex_state = 5}, - [3155] = {.lex_state = 319, .external_lex_state = 5}, - [3156] = {.lex_state = 319, .external_lex_state = 5}, - [3157] = {.lex_state = 319, .external_lex_state = 5}, - [3158] = {.lex_state = 319, .external_lex_state = 5}, - [3159] = {.lex_state = 319, .external_lex_state = 5}, - [3160] = {.lex_state = 319, .external_lex_state = 5}, - [3161] = {.lex_state = 319, .external_lex_state = 5}, - [3162] = {.lex_state = 166, .external_lex_state = 5}, + [3152] = {.lex_state = 175, .external_lex_state = 5}, + [3153] = {.lex_state = 175, .external_lex_state = 5}, + [3154] = {.lex_state = 175, .external_lex_state = 5}, + [3155] = {.lex_state = 175, .external_lex_state = 5}, + [3156] = {.lex_state = 175, .external_lex_state = 5}, + [3157] = {.lex_state = 166, .external_lex_state = 5}, + [3158] = {.lex_state = 166, .external_lex_state = 5}, + [3159] = {.lex_state = 166, .external_lex_state = 5}, + [3160] = {.lex_state = 142, .external_lex_state = 5}, + [3161] = {.lex_state = 323, .external_lex_state = 4}, + [3162] = {.lex_state = 142, .external_lex_state = 5}, [3163] = {.lex_state = 142, .external_lex_state = 5}, - [3164] = {.lex_state = 319, .external_lex_state = 5}, - [3165] = {.lex_state = 166, .external_lex_state = 5}, - [3166] = {.lex_state = 166, .external_lex_state = 5}, - [3167] = {.lex_state = 142, .external_lex_state = 5}, - [3168] = {.lex_state = 166, .external_lex_state = 5}, - [3169] = {.lex_state = 178, .external_lex_state = 5}, - [3170] = {.lex_state = 178, .external_lex_state = 5}, - [3171] = {.lex_state = 178, .external_lex_state = 5}, - [3172] = {.lex_state = 178, .external_lex_state = 5}, - [3173] = {.lex_state = 178, .external_lex_state = 5}, - [3174] = {.lex_state = 178, .external_lex_state = 5}, - [3175] = {.lex_state = 169, .external_lex_state = 5}, - [3176] = {.lex_state = 169, .external_lex_state = 5}, - [3177] = {.lex_state = 169, .external_lex_state = 5}, - [3178] = {.lex_state = 319, .external_lex_state = 5}, - [3179] = {.lex_state = 319, .external_lex_state = 5}, - [3180] = {.lex_state = 319, .external_lex_state = 5}, - [3181] = {.lex_state = 319, .external_lex_state = 5}, - [3182] = {.lex_state = 319, .external_lex_state = 5}, - [3183] = {.lex_state = 319, .external_lex_state = 5}, - [3184] = {.lex_state = 319, .external_lex_state = 5}, - [3185] = {.lex_state = 319, .external_lex_state = 5}, - [3186] = {.lex_state = 319, .external_lex_state = 5}, - [3187] = {.lex_state = 319, .external_lex_state = 5}, - [3188] = {.lex_state = 319, .external_lex_state = 5}, - [3189] = {.lex_state = 319, .external_lex_state = 5}, - [3190] = {.lex_state = 169, .external_lex_state = 5}, - [3191] = {.lex_state = 169, .external_lex_state = 5}, - [3192] = {.lex_state = 178, .external_lex_state = 5}, - [3193] = {.lex_state = 178, .external_lex_state = 5}, + [3164] = {.lex_state = 142, .external_lex_state = 5}, + [3165] = {.lex_state = 323, .external_lex_state = 5}, + [3166] = {.lex_state = 323, .external_lex_state = 4}, + [3167] = {.lex_state = 323, .external_lex_state = 4}, + [3168] = {.lex_state = 323, .external_lex_state = 4}, + [3169] = {.lex_state = 142, .external_lex_state = 5}, + [3170] = {.lex_state = 142, .external_lex_state = 5}, + [3171] = {.lex_state = 142, .external_lex_state = 5}, + [3172] = {.lex_state = 142, .external_lex_state = 5}, + [3173] = {.lex_state = 142, .external_lex_state = 5}, + [3174] = {.lex_state = 323, .external_lex_state = 4}, + [3175] = {.lex_state = 142, .external_lex_state = 5}, + [3176] = {.lex_state = 142, .external_lex_state = 5}, + [3177] = {.lex_state = 323, .external_lex_state = 4}, + [3178] = {.lex_state = 166, .external_lex_state = 5}, + [3179] = {.lex_state = 166, .external_lex_state = 5}, + [3180] = {.lex_state = 142, .external_lex_state = 5}, + [3181] = {.lex_state = 142, .external_lex_state = 5}, + [3182] = {.lex_state = 142, .external_lex_state = 5}, + [3183] = {.lex_state = 142, .external_lex_state = 5}, + [3184] = {.lex_state = 142, .external_lex_state = 5}, + [3185] = {.lex_state = 142, .external_lex_state = 5}, + [3186] = {.lex_state = 142, .external_lex_state = 5}, + [3187] = {.lex_state = 142, .external_lex_state = 5}, + [3188] = {.lex_state = 142, .external_lex_state = 5}, + [3189] = {.lex_state = 142, .external_lex_state = 5}, + [3190] = {.lex_state = 323, .external_lex_state = 4}, + [3191] = {.lex_state = 323, .external_lex_state = 4}, + [3192] = {.lex_state = 166, .external_lex_state = 5}, + [3193] = {.lex_state = 166, .external_lex_state = 5}, [3194] = {.lex_state = 142, .external_lex_state = 5}, [3195] = {.lex_state = 142, .external_lex_state = 5}, - [3196] = {.lex_state = 142, .external_lex_state = 5}, - [3197] = {.lex_state = 142, .external_lex_state = 5}, - [3198] = {.lex_state = 319, .external_lex_state = 5}, - [3199] = {.lex_state = 319, .external_lex_state = 5}, - [3200] = {.lex_state = 319, .external_lex_state = 5}, - [3201] = {.lex_state = 319, .external_lex_state = 5}, - [3202] = {.lex_state = 319, .external_lex_state = 5}, - [3203] = {.lex_state = 166, .external_lex_state = 5}, - [3204] = {.lex_state = 319, .external_lex_state = 5}, - [3205] = {.lex_state = 166, .external_lex_state = 5}, - [3206] = {.lex_state = 169, .external_lex_state = 5}, - [3207] = {.lex_state = 319, .external_lex_state = 5}, - [3208] = {.lex_state = 169, .external_lex_state = 5}, - [3209] = {.lex_state = 319, .external_lex_state = 5}, - [3210] = {.lex_state = 319, .external_lex_state = 5}, - [3211] = {.lex_state = 319, .external_lex_state = 5}, - [3212] = {.lex_state = 319, .external_lex_state = 4}, - [3213] = {.lex_state = 319, .external_lex_state = 5}, - [3214] = {.lex_state = 319, .external_lex_state = 5}, - [3215] = {.lex_state = 169, .external_lex_state = 5}, - [3216] = {.lex_state = 178, .external_lex_state = 5}, - [3217] = {.lex_state = 178, .external_lex_state = 5}, - [3218] = {.lex_state = 319, .external_lex_state = 4}, - [3219] = {.lex_state = 319, .external_lex_state = 5}, - [3220] = {.lex_state = 178, .external_lex_state = 5}, - [3221] = {.lex_state = 319, .external_lex_state = 5}, - [3222] = {.lex_state = 319, .external_lex_state = 5}, - [3223] = {.lex_state = 319, .external_lex_state = 5}, - [3224] = {.lex_state = 178, .external_lex_state = 5}, - [3225] = {.lex_state = 178, .external_lex_state = 5}, - [3226] = {.lex_state = 319, .external_lex_state = 5}, - [3227] = {.lex_state = 319, .external_lex_state = 5}, - [3228] = {.lex_state = 319, .external_lex_state = 5}, - [3229] = {.lex_state = 319, .external_lex_state = 5}, - [3230] = {.lex_state = 319, .external_lex_state = 5}, - [3231] = {.lex_state = 319, .external_lex_state = 5}, - [3232] = {.lex_state = 319, .external_lex_state = 5}, - [3233] = {.lex_state = 319, .external_lex_state = 5}, - [3234] = {.lex_state = 319, .external_lex_state = 5}, - [3235] = {.lex_state = 319, .external_lex_state = 5}, - [3236] = {.lex_state = 319, .external_lex_state = 5}, - [3237] = {.lex_state = 319, .external_lex_state = 5}, - [3238] = {.lex_state = 319, .external_lex_state = 5}, - [3239] = {.lex_state = 319, .external_lex_state = 5}, - [3240] = {.lex_state = 319, .external_lex_state = 5}, - [3241] = {.lex_state = 319, .external_lex_state = 5}, - [3242] = {.lex_state = 319, .external_lex_state = 5}, - [3243] = {.lex_state = 319, .external_lex_state = 5}, - [3244] = {.lex_state = 319, .external_lex_state = 5}, - [3245] = {.lex_state = 319, .external_lex_state = 5}, - [3246] = {.lex_state = 319, .external_lex_state = 5}, - [3247] = {.lex_state = 319, .external_lex_state = 5}, - [3248] = {.lex_state = 178, .external_lex_state = 5}, - [3249] = {.lex_state = 178, .external_lex_state = 5}, - [3250] = {.lex_state = 178, .external_lex_state = 5}, - [3251] = {.lex_state = 319, .external_lex_state = 5}, - [3252] = {.lex_state = 319, .external_lex_state = 5}, + [3196] = {.lex_state = 323, .external_lex_state = 5}, + [3197] = {.lex_state = 323, .external_lex_state = 5}, + [3198] = {.lex_state = 323, .external_lex_state = 5}, + [3199] = {.lex_state = 323, .external_lex_state = 5}, + [3200] = {.lex_state = 142, .external_lex_state = 5}, + [3201] = {.lex_state = 169, .external_lex_state = 5}, + [3202] = {.lex_state = 169, .external_lex_state = 5}, + [3203] = {.lex_state = 169, .external_lex_state = 5}, + [3204] = {.lex_state = 142, .external_lex_state = 5}, + [3205] = {.lex_state = 169, .external_lex_state = 5}, + [3206] = {.lex_state = 142, .external_lex_state = 5}, + [3207] = {.lex_state = 323, .external_lex_state = 4}, + [3208] = {.lex_state = 142, .external_lex_state = 5}, + [3209] = {.lex_state = 142, .external_lex_state = 5}, + [3210] = {.lex_state = 142, .external_lex_state = 5}, + [3211] = {.lex_state = 142, .external_lex_state = 5}, + [3212] = {.lex_state = 142, .external_lex_state = 5}, + [3213] = {.lex_state = 169, .external_lex_state = 5}, + [3214] = {.lex_state = 169, .external_lex_state = 5}, + [3215] = {.lex_state = 142, .external_lex_state = 5}, + [3216] = {.lex_state = 142, .external_lex_state = 5}, + [3217] = {.lex_state = 166, .external_lex_state = 5}, + [3218] = {.lex_state = 166, .external_lex_state = 5}, + [3219] = {.lex_state = 142, .external_lex_state = 5}, + [3220] = {.lex_state = 142, .external_lex_state = 5}, + [3221] = {.lex_state = 142, .external_lex_state = 5}, + [3222] = {.lex_state = 169, .external_lex_state = 5}, + [3223] = {.lex_state = 142, .external_lex_state = 5}, + [3224] = {.lex_state = 175, .external_lex_state = 5}, + [3225] = {.lex_state = 175, .external_lex_state = 5}, + [3226] = {.lex_state = 175, .external_lex_state = 5}, + [3227] = {.lex_state = 175, .external_lex_state = 5}, + [3228] = {.lex_state = 175, .external_lex_state = 5}, + [3229] = {.lex_state = 175, .external_lex_state = 5}, + [3230] = {.lex_state = 142, .external_lex_state = 5}, + [3231] = {.lex_state = 142, .external_lex_state = 5}, + [3232] = {.lex_state = 142, .external_lex_state = 5}, + [3233] = {.lex_state = 142, .external_lex_state = 5}, + [3234] = {.lex_state = 142, .external_lex_state = 5}, + [3235] = {.lex_state = 142, .external_lex_state = 5}, + [3236] = {.lex_state = 323, .external_lex_state = 4}, + [3237] = {.lex_state = 178, .external_lex_state = 5}, + [3238] = {.lex_state = 178, .external_lex_state = 5}, + [3239] = {.lex_state = 178, .external_lex_state = 5}, + [3240] = {.lex_state = 178, .external_lex_state = 5}, + [3241] = {.lex_state = 178, .external_lex_state = 5}, + [3242] = {.lex_state = 178, .external_lex_state = 5}, + [3243] = {.lex_state = 142, .external_lex_state = 5}, + [3244] = {.lex_state = 142, .external_lex_state = 5}, + [3245] = {.lex_state = 142, .external_lex_state = 5}, + [3246] = {.lex_state = 142, .external_lex_state = 5}, + [3247] = {.lex_state = 323, .external_lex_state = 4}, + [3248] = {.lex_state = 175, .external_lex_state = 5}, + [3249] = {.lex_state = 175, .external_lex_state = 5}, + [3250] = {.lex_state = 142, .external_lex_state = 5}, + [3251] = {.lex_state = 175, .external_lex_state = 5}, + [3252] = {.lex_state = 175, .external_lex_state = 5}, [3253] = {.lex_state = 166, .external_lex_state = 5}, - [3254] = {.lex_state = 319, .external_lex_state = 5}, - [3255] = {.lex_state = 319, .external_lex_state = 5}, - [3256] = {.lex_state = 178, .external_lex_state = 5}, - [3257] = {.lex_state = 178, .external_lex_state = 5}, - [3258] = {.lex_state = 319, .external_lex_state = 5}, - [3259] = {.lex_state = 319, .external_lex_state = 5}, - [3260] = {.lex_state = 169, .external_lex_state = 5}, - [3261] = {.lex_state = 178, .external_lex_state = 5}, - [3262] = {.lex_state = 178, .external_lex_state = 5}, - [3263] = {.lex_state = 319, .external_lex_state = 5}, - [3264] = {.lex_state = 319, .external_lex_state = 5}, - [3265] = {.lex_state = 142, .external_lex_state = 5}, - [3266] = {.lex_state = 169, .external_lex_state = 5}, + [3254] = {.lex_state = 166, .external_lex_state = 5}, + [3255] = {.lex_state = 175, .external_lex_state = 5}, + [3256] = {.lex_state = 175, .external_lex_state = 5}, + [3257] = {.lex_state = 323, .external_lex_state = 5}, + [3258] = {.lex_state = 323, .external_lex_state = 5}, + [3259] = {.lex_state = 323, .external_lex_state = 5}, + [3260] = {.lex_state = 323, .external_lex_state = 5}, + [3261] = {.lex_state = 323, .external_lex_state = 5}, + [3262] = {.lex_state = 323, .external_lex_state = 5}, + [3263] = {.lex_state = 323, .external_lex_state = 5}, + [3264] = {.lex_state = 323, .external_lex_state = 5}, + [3265] = {.lex_state = 323, .external_lex_state = 5}, + [3266] = {.lex_state = 323, .external_lex_state = 5}, [3267] = {.lex_state = 178, .external_lex_state = 5}, [3268] = {.lex_state = 178, .external_lex_state = 5}, [3269] = {.lex_state = 178, .external_lex_state = 5}, [3270] = {.lex_state = 178, .external_lex_state = 5}, - [3271] = {.lex_state = 142, .external_lex_state = 5}, - [3272] = {.lex_state = 178, .external_lex_state = 5}, - [3273] = {.lex_state = 319, .external_lex_state = 5}, - [3274] = {.lex_state = 178, .external_lex_state = 5}, - [3275] = {.lex_state = 178, .external_lex_state = 5}, - [3276] = {.lex_state = 178, .external_lex_state = 5}, - [3277] = {.lex_state = 178, .external_lex_state = 5}, - [3278] = {.lex_state = 178, .external_lex_state = 5}, - [3279] = {.lex_state = 178, .external_lex_state = 5}, - [3280] = {.lex_state = 178, .external_lex_state = 5}, - [3281] = {.lex_state = 178, .external_lex_state = 5}, - [3282] = {.lex_state = 178, .external_lex_state = 5}, - [3283] = {.lex_state = 319, .external_lex_state = 5}, - [3284] = {.lex_state = 178, .external_lex_state = 5}, - [3285] = {.lex_state = 319, .external_lex_state = 5}, - [3286] = {.lex_state = 319, .external_lex_state = 5}, - [3287] = {.lex_state = 319, .external_lex_state = 5}, - [3288] = {.lex_state = 319, .external_lex_state = 5}, - [3289] = {.lex_state = 319, .external_lex_state = 5}, - [3290] = {.lex_state = 319, .external_lex_state = 5}, - [3291] = {.lex_state = 319, .external_lex_state = 5}, - [3292] = {.lex_state = 178, .external_lex_state = 5}, - [3293] = {.lex_state = 178, .external_lex_state = 5}, - [3294] = {.lex_state = 319, .external_lex_state = 5}, - [3295] = {.lex_state = 142, .external_lex_state = 5}, - [3296] = {.lex_state = 319, .external_lex_state = 5}, - [3297] = {.lex_state = 178, .external_lex_state = 5}, - [3298] = {.lex_state = 319, .external_lex_state = 5}, - [3299] = {.lex_state = 319, .external_lex_state = 5}, - [3300] = {.lex_state = 178, .external_lex_state = 5}, - [3301] = {.lex_state = 178, .external_lex_state = 5}, - [3302] = {.lex_state = 178, .external_lex_state = 5}, - [3303] = {.lex_state = 178, .external_lex_state = 5}, - [3304] = {.lex_state = 178, .external_lex_state = 5}, - [3305] = {.lex_state = 178, .external_lex_state = 5}, - [3306] = {.lex_state = 178, .external_lex_state = 5}, - [3307] = {.lex_state = 178, .external_lex_state = 5}, - [3308] = {.lex_state = 178, .external_lex_state = 5}, - [3309] = {.lex_state = 178, .external_lex_state = 5}, - [3310] = {.lex_state = 178, .external_lex_state = 5}, - [3311] = {.lex_state = 178, .external_lex_state = 5}, - [3312] = {.lex_state = 178, .external_lex_state = 5}, - [3313] = {.lex_state = 178, .external_lex_state = 5}, - [3314] = {.lex_state = 178, .external_lex_state = 5}, - [3315] = {.lex_state = 178, .external_lex_state = 5}, - [3316] = {.lex_state = 319, .external_lex_state = 5}, - [3317] = {.lex_state = 319, .external_lex_state = 5}, - [3318] = {.lex_state = 178, .external_lex_state = 5}, - [3319] = {.lex_state = 319, .external_lex_state = 5}, - [3320] = {.lex_state = 178, .external_lex_state = 5}, - [3321] = {.lex_state = 181, .external_lex_state = 4}, - [3322] = {.lex_state = 181, .external_lex_state = 4}, - [3323] = {.lex_state = 166, .external_lex_state = 5}, - [3324] = {.lex_state = 181, .external_lex_state = 4}, - [3325] = {.lex_state = 181, .external_lex_state = 4}, - [3326] = {.lex_state = 181, .external_lex_state = 4}, - [3327] = {.lex_state = 181, .external_lex_state = 4}, - [3328] = {.lex_state = 142, .external_lex_state = 4}, - [3329] = {.lex_state = 319, .external_lex_state = 4}, - [3330] = {.lex_state = 319, .external_lex_state = 5}, - [3331] = {.lex_state = 142, .external_lex_state = 5}, - [3332] = {.lex_state = 319, .external_lex_state = 4}, - [3333] = {.lex_state = 166, .external_lex_state = 5}, - [3334] = {.lex_state = 181, .external_lex_state = 4}, - [3335] = {.lex_state = 181, .external_lex_state = 4}, - [3336] = {.lex_state = 319, .external_lex_state = 4}, - [3337] = {.lex_state = 319, .external_lex_state = 5}, - [3338] = {.lex_state = 319, .external_lex_state = 4}, - [3339] = {.lex_state = 319, .external_lex_state = 4}, - [3340] = {.lex_state = 319, .external_lex_state = 4}, - [3341] = {.lex_state = 166, .external_lex_state = 5}, - [3342] = {.lex_state = 166, .external_lex_state = 5}, - [3343] = {.lex_state = 319, .external_lex_state = 4}, - [3344] = {.lex_state = 319, .external_lex_state = 5}, - [3345] = {.lex_state = 181, .external_lex_state = 4}, - [3346] = {.lex_state = 181, .external_lex_state = 4}, - [3347] = {.lex_state = 142, .external_lex_state = 5}, - [3348] = {.lex_state = 319, .external_lex_state = 4}, - [3349] = {.lex_state = 319, .external_lex_state = 4}, + [3271] = {.lex_state = 178, .external_lex_state = 5}, + [3272] = {.lex_state = 323, .external_lex_state = 4}, + [3273] = {.lex_state = 323, .external_lex_state = 5}, + [3274] = {.lex_state = 169, .external_lex_state = 5}, + [3275] = {.lex_state = 142, .external_lex_state = 5}, + [3276] = {.lex_state = 142, .external_lex_state = 5}, + [3277] = {.lex_state = 142, .external_lex_state = 5}, + [3278] = {.lex_state = 142, .external_lex_state = 5}, + [3279] = {.lex_state = 323, .external_lex_state = 5}, + [3280] = {.lex_state = 323, .external_lex_state = 5}, + [3281] = {.lex_state = 323, .external_lex_state = 5}, + [3282] = {.lex_state = 323, .external_lex_state = 5}, + [3283] = {.lex_state = 323, .external_lex_state = 5}, + [3284] = {.lex_state = 323, .external_lex_state = 5}, + [3285] = {.lex_state = 323, .external_lex_state = 5}, + [3286] = {.lex_state = 323, .external_lex_state = 5}, + [3287] = {.lex_state = 323, .external_lex_state = 5}, + [3288] = {.lex_state = 323, .external_lex_state = 5}, + [3289] = {.lex_state = 323, .external_lex_state = 5}, + [3290] = {.lex_state = 323, .external_lex_state = 5}, + [3291] = {.lex_state = 142, .external_lex_state = 5}, + [3292] = {.lex_state = 142, .external_lex_state = 5}, + [3293] = {.lex_state = 323, .external_lex_state = 4}, + [3294] = {.lex_state = 323, .external_lex_state = 5}, + [3295] = {.lex_state = 323, .external_lex_state = 4}, + [3296] = {.lex_state = 323, .external_lex_state = 5}, + [3297] = {.lex_state = 142, .external_lex_state = 5}, + [3298] = {.lex_state = 323, .external_lex_state = 4}, + [3299] = {.lex_state = 323, .external_lex_state = 5}, + [3300] = {.lex_state = 323, .external_lex_state = 5}, + [3301] = {.lex_state = 323, .external_lex_state = 5}, + [3302] = {.lex_state = 323, .external_lex_state = 5}, + [3303] = {.lex_state = 323, .external_lex_state = 5}, + [3304] = {.lex_state = 169, .external_lex_state = 5}, + [3305] = {.lex_state = 142, .external_lex_state = 5}, + [3306] = {.lex_state = 323, .external_lex_state = 4}, + [3307] = {.lex_state = 323, .external_lex_state = 5}, + [3308] = {.lex_state = 323, .external_lex_state = 5}, + [3309] = {.lex_state = 323, .external_lex_state = 5}, + [3310] = {.lex_state = 323, .external_lex_state = 5}, + [3311] = {.lex_state = 142, .external_lex_state = 5}, + [3312] = {.lex_state = 323, .external_lex_state = 5}, + [3313] = {.lex_state = 323, .external_lex_state = 5}, + [3314] = {.lex_state = 323, .external_lex_state = 5}, + [3315] = {.lex_state = 323, .external_lex_state = 5}, + [3316] = {.lex_state = 323, .external_lex_state = 5}, + [3317] = {.lex_state = 323, .external_lex_state = 5}, + [3318] = {.lex_state = 323, .external_lex_state = 5}, + [3319] = {.lex_state = 323, .external_lex_state = 5}, + [3320] = {.lex_state = 323, .external_lex_state = 5}, + [3321] = {.lex_state = 323, .external_lex_state = 5}, + [3322] = {.lex_state = 323, .external_lex_state = 5}, + [3323] = {.lex_state = 323, .external_lex_state = 5}, + [3324] = {.lex_state = 323, .external_lex_state = 5}, + [3325] = {.lex_state = 323, .external_lex_state = 5}, + [3326] = {.lex_state = 323, .external_lex_state = 5}, + [3327] = {.lex_state = 323, .external_lex_state = 5}, + [3328] = {.lex_state = 323, .external_lex_state = 5}, + [3329] = {.lex_state = 323, .external_lex_state = 5}, + [3330] = {.lex_state = 323, .external_lex_state = 5}, + [3331] = {.lex_state = 323, .external_lex_state = 5}, + [3332] = {.lex_state = 323, .external_lex_state = 5}, + [3333] = {.lex_state = 142, .external_lex_state = 5}, + [3334] = {.lex_state = 323, .external_lex_state = 5}, + [3335] = {.lex_state = 323, .external_lex_state = 5}, + [3336] = {.lex_state = 323, .external_lex_state = 5}, + [3337] = {.lex_state = 323, .external_lex_state = 5}, + [3338] = {.lex_state = 166, .external_lex_state = 5}, + [3339] = {.lex_state = 323, .external_lex_state = 5}, + [3340] = {.lex_state = 323, .external_lex_state = 5}, + [3341] = {.lex_state = 323, .external_lex_state = 5}, + [3342] = {.lex_state = 169, .external_lex_state = 5}, + [3343] = {.lex_state = 323, .external_lex_state = 5}, + [3344] = {.lex_state = 323, .external_lex_state = 5}, + [3345] = {.lex_state = 142, .external_lex_state = 5}, + [3346] = {.lex_state = 169, .external_lex_state = 5}, + [3347] = {.lex_state = 323, .external_lex_state = 5}, + [3348] = {.lex_state = 323, .external_lex_state = 5}, + [3349] = {.lex_state = 323, .external_lex_state = 5}, [3350] = {.lex_state = 142, .external_lex_state = 5}, [3351] = {.lex_state = 142, .external_lex_state = 5}, - [3352] = {.lex_state = 142, .external_lex_state = 5}, - [3353] = {.lex_state = 319, .external_lex_state = 5}, - [3354] = {.lex_state = 319, .external_lex_state = 5}, - [3355] = {.lex_state = 319, .external_lex_state = 5}, - [3356] = {.lex_state = 319, .external_lex_state = 5}, - [3357] = {.lex_state = 319, .external_lex_state = 5}, - [3358] = {.lex_state = 319, .external_lex_state = 5}, - [3359] = {.lex_state = 319, .external_lex_state = 5}, - [3360] = {.lex_state = 142, .external_lex_state = 5}, - [3361] = {.lex_state = 181, .external_lex_state = 4}, - [3362] = {.lex_state = 181, .external_lex_state = 4}, - [3363] = {.lex_state = 319, .external_lex_state = 5}, - [3364] = {.lex_state = 319, .external_lex_state = 5}, - [3365] = {.lex_state = 319, .external_lex_state = 5}, - [3366] = {.lex_state = 142, .external_lex_state = 5}, - [3367] = {.lex_state = 319, .external_lex_state = 5}, - [3368] = {.lex_state = 319, .external_lex_state = 5}, - [3369] = {.lex_state = 319, .external_lex_state = 5}, - [3370] = {.lex_state = 319, .external_lex_state = 5}, - [3371] = {.lex_state = 319, .external_lex_state = 5}, - [3372] = {.lex_state = 319, .external_lex_state = 5}, - [3373] = {.lex_state = 319, .external_lex_state = 5}, - [3374] = {.lex_state = 319, .external_lex_state = 5}, - [3375] = {.lex_state = 319, .external_lex_state = 5}, - [3376] = {.lex_state = 181, .external_lex_state = 4}, - [3377] = {.lex_state = 319, .external_lex_state = 5}, - [3378] = {.lex_state = 181, .external_lex_state = 4}, - [3379] = {.lex_state = 181, .external_lex_state = 4}, - [3380] = {.lex_state = 181, .external_lex_state = 4}, - [3381] = {.lex_state = 319, .external_lex_state = 4}, - [3382] = {.lex_state = 319, .external_lex_state = 4}, - [3383] = {.lex_state = 142, .external_lex_state = 5}, - [3384] = {.lex_state = 319, .external_lex_state = 4}, - [3385] = {.lex_state = 319, .external_lex_state = 4}, - [3386] = {.lex_state = 319, .external_lex_state = 4}, - [3387] = {.lex_state = 142, .external_lex_state = 5}, - [3388] = {.lex_state = 142, .external_lex_state = 5}, - [3389] = {.lex_state = 166, .external_lex_state = 5}, - [3390] = {.lex_state = 181, .external_lex_state = 4}, - [3391] = {.lex_state = 181, .external_lex_state = 4}, - [3392] = {.lex_state = 181, .external_lex_state = 4}, + [3352] = {.lex_state = 323, .external_lex_state = 4}, + [3353] = {.lex_state = 142, .external_lex_state = 5}, + [3354] = {.lex_state = 323, .external_lex_state = 5}, + [3355] = {.lex_state = 323, .external_lex_state = 5}, + [3356] = {.lex_state = 323, .external_lex_state = 5}, + [3357] = {.lex_state = 323, .external_lex_state = 5}, + [3358] = {.lex_state = 323, .external_lex_state = 5}, + [3359] = {.lex_state = 323, .external_lex_state = 5}, + [3360] = {.lex_state = 166, .external_lex_state = 5}, + [3361] = {.lex_state = 323, .external_lex_state = 5}, + [3362] = {.lex_state = 323, .external_lex_state = 5}, + [3363] = {.lex_state = 323, .external_lex_state = 5}, + [3364] = {.lex_state = 323, .external_lex_state = 4}, + [3365] = {.lex_state = 323, .external_lex_state = 4}, + [3366] = {.lex_state = 323, .external_lex_state = 5}, + [3367] = {.lex_state = 323, .external_lex_state = 5}, + [3368] = {.lex_state = 323, .external_lex_state = 5}, + [3369] = {.lex_state = 142, .external_lex_state = 5}, + [3370] = {.lex_state = 142, .external_lex_state = 5}, + [3371] = {.lex_state = 323, .external_lex_state = 4}, + [3372] = {.lex_state = 166, .external_lex_state = 5}, + [3373] = {.lex_state = 166, .external_lex_state = 5}, + [3374] = {.lex_state = 323, .external_lex_state = 5}, + [3375] = {.lex_state = 323, .external_lex_state = 4}, + [3376] = {.lex_state = 323, .external_lex_state = 4}, + [3377] = {.lex_state = 142, .external_lex_state = 5}, + [3378] = {.lex_state = 323, .external_lex_state = 5}, + [3379] = {.lex_state = 323, .external_lex_state = 5}, + [3380] = {.lex_state = 323, .external_lex_state = 5}, + [3381] = {.lex_state = 323, .external_lex_state = 5}, + [3382] = {.lex_state = 323, .external_lex_state = 5}, + [3383] = {.lex_state = 181, .external_lex_state = 4}, + [3384] = {.lex_state = 323, .external_lex_state = 5}, + [3385] = {.lex_state = 323, .external_lex_state = 5}, + [3386] = {.lex_state = 169, .external_lex_state = 5}, + [3387] = {.lex_state = 169, .external_lex_state = 5}, + [3388] = {.lex_state = 323, .external_lex_state = 4}, + [3389] = {.lex_state = 169, .external_lex_state = 5}, + [3390] = {.lex_state = 169, .external_lex_state = 5}, + [3391] = {.lex_state = 323, .external_lex_state = 4}, + [3392] = {.lex_state = 323, .external_lex_state = 4}, [3393] = {.lex_state = 181, .external_lex_state = 4}, - [3394] = {.lex_state = 166, .external_lex_state = 5}, + [3394] = {.lex_state = 181, .external_lex_state = 4}, [3395] = {.lex_state = 181, .external_lex_state = 4}, [3396] = {.lex_state = 181, .external_lex_state = 4}, [3397] = {.lex_state = 181, .external_lex_state = 4}, [3398] = {.lex_state = 181, .external_lex_state = 4}, - [3399] = {.lex_state = 181, .external_lex_state = 4}, + [3399] = {.lex_state = 142, .external_lex_state = 5}, [3400] = {.lex_state = 181, .external_lex_state = 4}, - [3401] = {.lex_state = 319, .external_lex_state = 4}, + [3401] = {.lex_state = 181, .external_lex_state = 4}, [3402] = {.lex_state = 181, .external_lex_state = 4}, - [3403] = {.lex_state = 181, .external_lex_state = 4}, + [3403] = {.lex_state = 323, .external_lex_state = 5}, [3404] = {.lex_state = 181, .external_lex_state = 4}, [3405] = {.lex_state = 181, .external_lex_state = 4}, - [3406] = {.lex_state = 319, .external_lex_state = 5}, - [3407] = {.lex_state = 166, .external_lex_state = 5}, + [3406] = {.lex_state = 181, .external_lex_state = 4}, + [3407] = {.lex_state = 181, .external_lex_state = 4}, [3408] = {.lex_state = 181, .external_lex_state = 4}, [3409] = {.lex_state = 181, .external_lex_state = 4}, [3410] = {.lex_state = 181, .external_lex_state = 4}, - [3411] = {.lex_state = 181, .external_lex_state = 4}, + [3411] = {.lex_state = 142, .external_lex_state = 5}, [3412] = {.lex_state = 181, .external_lex_state = 4}, [3413] = {.lex_state = 181, .external_lex_state = 4}, [3414] = {.lex_state = 181, .external_lex_state = 4}, [3415] = {.lex_state = 181, .external_lex_state = 4}, - [3416] = {.lex_state = 166, .external_lex_state = 5}, + [3416] = {.lex_state = 181, .external_lex_state = 4}, [3417] = {.lex_state = 181, .external_lex_state = 4}, [3418] = {.lex_state = 181, .external_lex_state = 4}, - [3419] = {.lex_state = 181, .external_lex_state = 4}, + [3419] = {.lex_state = 323, .external_lex_state = 5}, [3420] = {.lex_state = 181, .external_lex_state = 4}, - [3421] = {.lex_state = 181, .external_lex_state = 4}, + [3421] = {.lex_state = 323, .external_lex_state = 5}, [3422] = {.lex_state = 181, .external_lex_state = 4}, [3423] = {.lex_state = 181, .external_lex_state = 4}, - [3424] = {.lex_state = 181, .external_lex_state = 4}, - [3425] = {.lex_state = 166, .external_lex_state = 5}, - [3426] = {.lex_state = 319, .external_lex_state = 5}, - [3427] = {.lex_state = 319, .external_lex_state = 5}, + [3424] = {.lex_state = 323, .external_lex_state = 5}, + [3425] = {.lex_state = 323, .external_lex_state = 5}, + [3426] = {.lex_state = 323, .external_lex_state = 5}, + [3427] = {.lex_state = 181, .external_lex_state = 4}, [3428] = {.lex_state = 181, .external_lex_state = 4}, - [3429] = {.lex_state = 319, .external_lex_state = 5}, + [3429] = {.lex_state = 181, .external_lex_state = 4}, [3430] = {.lex_state = 181, .external_lex_state = 4}, [3431] = {.lex_state = 181, .external_lex_state = 4}, [3432] = {.lex_state = 181, .external_lex_state = 4}, @@ -19941,1411 +19868,1411 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3442] = {.lex_state = 181, .external_lex_state = 4}, [3443] = {.lex_state = 181, .external_lex_state = 4}, [3444] = {.lex_state = 181, .external_lex_state = 4}, - [3445] = {.lex_state = 142, .external_lex_state = 5}, - [3446] = {.lex_state = 142, .external_lex_state = 5}, - [3447] = {.lex_state = 319, .external_lex_state = 4}, - [3448] = {.lex_state = 319, .external_lex_state = 4}, - [3449] = {.lex_state = 319, .external_lex_state = 4}, - [3450] = {.lex_state = 319, .external_lex_state = 4}, - [3451] = {.lex_state = 319, .external_lex_state = 4}, - [3452] = {.lex_state = 319, .external_lex_state = 4}, - [3453] = {.lex_state = 319, .external_lex_state = 4}, - [3454] = {.lex_state = 319, .external_lex_state = 4}, - [3455] = {.lex_state = 319, .external_lex_state = 4}, - [3456] = {.lex_state = 319, .external_lex_state = 4}, - [3457] = {.lex_state = 319, .external_lex_state = 4}, - [3458] = {.lex_state = 142, .external_lex_state = 5}, - [3459] = {.lex_state = 319, .external_lex_state = 4}, - [3460] = {.lex_state = 142, .external_lex_state = 5}, + [3445] = {.lex_state = 181, .external_lex_state = 4}, + [3446] = {.lex_state = 181, .external_lex_state = 4}, + [3447] = {.lex_state = 181, .external_lex_state = 4}, + [3448] = {.lex_state = 181, .external_lex_state = 4}, + [3449] = {.lex_state = 323, .external_lex_state = 4}, + [3450] = {.lex_state = 323, .external_lex_state = 4}, + [3451] = {.lex_state = 323, .external_lex_state = 4}, + [3452] = {.lex_state = 323, .external_lex_state = 4}, + [3453] = {.lex_state = 323, .external_lex_state = 4}, + [3454] = {.lex_state = 323, .external_lex_state = 4}, + [3455] = {.lex_state = 323, .external_lex_state = 4}, + [3456] = {.lex_state = 323, .external_lex_state = 4}, + [3457] = {.lex_state = 323, .external_lex_state = 4}, + [3458] = {.lex_state = 323, .external_lex_state = 4}, + [3459] = {.lex_state = 323, .external_lex_state = 4}, + [3460] = {.lex_state = 323, .external_lex_state = 4}, [3461] = {.lex_state = 142, .external_lex_state = 5}, [3462] = {.lex_state = 169, .external_lex_state = 5}, [3463] = {.lex_state = 169, .external_lex_state = 5}, [3464] = {.lex_state = 142, .external_lex_state = 4}, - [3465] = {.lex_state = 142, .external_lex_state = 5}, - [3466] = {.lex_state = 319, .external_lex_state = 4}, - [3467] = {.lex_state = 319, .external_lex_state = 4}, - [3468] = {.lex_state = 319, .external_lex_state = 4}, - [3469] = {.lex_state = 319, .external_lex_state = 4}, - [3470] = {.lex_state = 319, .external_lex_state = 4}, - [3471] = {.lex_state = 319, .external_lex_state = 4}, - [3472] = {.lex_state = 142, .external_lex_state = 5}, - [3473] = {.lex_state = 319, .external_lex_state = 4}, - [3474] = {.lex_state = 319, .external_lex_state = 5}, - [3475] = {.lex_state = 319, .external_lex_state = 5}, - [3476] = {.lex_state = 319, .external_lex_state = 5}, - [3477] = {.lex_state = 319, .external_lex_state = 4}, - [3478] = {.lex_state = 319, .external_lex_state = 4}, - [3479] = {.lex_state = 319, .external_lex_state = 4}, - [3480] = {.lex_state = 319, .external_lex_state = 4}, - [3481] = {.lex_state = 319, .external_lex_state = 4}, - [3482] = {.lex_state = 142, .external_lex_state = 5}, - [3483] = {.lex_state = 142, .external_lex_state = 5}, - [3484] = {.lex_state = 319, .external_lex_state = 4}, - [3485] = {.lex_state = 142, .external_lex_state = 4}, - [3486] = {.lex_state = 319, .external_lex_state = 4}, - [3487] = {.lex_state = 319, .external_lex_state = 4}, - [3488] = {.lex_state = 319, .external_lex_state = 4}, - [3489] = {.lex_state = 319, .external_lex_state = 4}, + [3465] = {.lex_state = 323, .external_lex_state = 5}, + [3466] = {.lex_state = 323, .external_lex_state = 5}, + [3467] = {.lex_state = 323, .external_lex_state = 5}, + [3468] = {.lex_state = 142, .external_lex_state = 5}, + [3469] = {.lex_state = 142, .external_lex_state = 5}, + [3470] = {.lex_state = 323, .external_lex_state = 4}, + [3471] = {.lex_state = 323, .external_lex_state = 4}, + [3472] = {.lex_state = 323, .external_lex_state = 4}, + [3473] = {.lex_state = 323, .external_lex_state = 4}, + [3474] = {.lex_state = 323, .external_lex_state = 4}, + [3475] = {.lex_state = 323, .external_lex_state = 4}, + [3476] = {.lex_state = 323, .external_lex_state = 4}, + [3477] = {.lex_state = 323, .external_lex_state = 4}, + [3478] = {.lex_state = 323, .external_lex_state = 4}, + [3479] = {.lex_state = 323, .external_lex_state = 4}, + [3480] = {.lex_state = 323, .external_lex_state = 4}, + [3481] = {.lex_state = 323, .external_lex_state = 4}, + [3482] = {.lex_state = 142, .external_lex_state = 4}, + [3483] = {.lex_state = 323, .external_lex_state = 4}, + [3484] = {.lex_state = 142, .external_lex_state = 5}, + [3485] = {.lex_state = 323, .external_lex_state = 4}, + [3486] = {.lex_state = 323, .external_lex_state = 4}, + [3487] = {.lex_state = 323, .external_lex_state = 4}, + [3488] = {.lex_state = 323, .external_lex_state = 4}, + [3489] = {.lex_state = 142, .external_lex_state = 5}, [3490] = {.lex_state = 142, .external_lex_state = 5}, - [3491] = {.lex_state = 166, .external_lex_state = 5}, - [3492] = {.lex_state = 319, .external_lex_state = 4}, - [3493] = {.lex_state = 319, .external_lex_state = 4}, - [3494] = {.lex_state = 319, .external_lex_state = 5}, + [3491] = {.lex_state = 142, .external_lex_state = 5}, + [3492] = {.lex_state = 142, .external_lex_state = 5}, + [3493] = {.lex_state = 142, .external_lex_state = 5}, + [3494] = {.lex_state = 142, .external_lex_state = 5}, [3495] = {.lex_state = 142, .external_lex_state = 5}, - [3496] = {.lex_state = 319, .external_lex_state = 4}, - [3497] = {.lex_state = 175, .external_lex_state = 5}, - [3498] = {.lex_state = 175, .external_lex_state = 5}, + [3496] = {.lex_state = 323, .external_lex_state = 4}, + [3497] = {.lex_state = 142, .external_lex_state = 5}, + [3498] = {.lex_state = 142, .external_lex_state = 5}, [3499] = {.lex_state = 142, .external_lex_state = 5}, - [3500] = {.lex_state = 319, .external_lex_state = 4}, - [3501] = {.lex_state = 142, .external_lex_state = 5}, - [3502] = {.lex_state = 319, .external_lex_state = 4}, - [3503] = {.lex_state = 142, .external_lex_state = 5}, - [3504] = {.lex_state = 142, .external_lex_state = 5}, - [3505] = {.lex_state = 142, .external_lex_state = 5}, - [3506] = {.lex_state = 142, .external_lex_state = 5}, - [3507] = {.lex_state = 166, .external_lex_state = 5}, - [3508] = {.lex_state = 166, .external_lex_state = 5}, - [3509] = {.lex_state = 142, .external_lex_state = 5}, - [3510] = {.lex_state = 142, .external_lex_state = 5}, - [3511] = {.lex_state = 142, .external_lex_state = 5}, - [3512] = {.lex_state = 319, .external_lex_state = 4}, - [3513] = {.lex_state = 142, .external_lex_state = 5}, - [3514] = {.lex_state = 142, .external_lex_state = 5}, - [3515] = {.lex_state = 319, .external_lex_state = 4}, - [3516] = {.lex_state = 319, .external_lex_state = 4}, - [3517] = {.lex_state = 319, .external_lex_state = 4}, - [3518] = {.lex_state = 319, .external_lex_state = 4}, - [3519] = {.lex_state = 319, .external_lex_state = 4}, - [3520] = {.lex_state = 142, .external_lex_state = 4}, - [3521] = {.lex_state = 319, .external_lex_state = 4}, - [3522] = {.lex_state = 319, .external_lex_state = 4}, - [3523] = {.lex_state = 319, .external_lex_state = 4}, - [3524] = {.lex_state = 319, .external_lex_state = 5}, - [3525] = {.lex_state = 319, .external_lex_state = 5}, - [3526] = {.lex_state = 319, .external_lex_state = 5}, - [3527] = {.lex_state = 142, .external_lex_state = 5}, - [3528] = {.lex_state = 142, .external_lex_state = 5}, - [3529] = {.lex_state = 319, .external_lex_state = 4}, - [3530] = {.lex_state = 319, .external_lex_state = 4}, - [3531] = {.lex_state = 319, .external_lex_state = 4}, - [3532] = {.lex_state = 142, .external_lex_state = 5}, - [3533] = {.lex_state = 319, .external_lex_state = 4}, - [3534] = {.lex_state = 142, .external_lex_state = 5}, - [3535] = {.lex_state = 319, .external_lex_state = 4}, - [3536] = {.lex_state = 142, .external_lex_state = 5}, - [3537] = {.lex_state = 166, .external_lex_state = 5}, - [3538] = {.lex_state = 319, .external_lex_state = 4}, - [3539] = {.lex_state = 319, .external_lex_state = 4}, - [3540] = {.lex_state = 142, .external_lex_state = 5}, - [3541] = {.lex_state = 319, .external_lex_state = 4}, - [3542] = {.lex_state = 319, .external_lex_state = 4}, - [3543] = {.lex_state = 319, .external_lex_state = 5}, - [3544] = {.lex_state = 166, .external_lex_state = 5}, - [3545] = {.lex_state = 142, .external_lex_state = 4}, - [3546] = {.lex_state = 169, .external_lex_state = 5}, - [3547] = {.lex_state = 169, .external_lex_state = 5}, - [3548] = {.lex_state = 169, .external_lex_state = 5}, - [3549] = {.lex_state = 142, .external_lex_state = 4}, - [3550] = {.lex_state = 319, .external_lex_state = 4}, - [3551] = {.lex_state = 166, .external_lex_state = 5}, - [3552] = {.lex_state = 166, .external_lex_state = 5}, - [3553] = {.lex_state = 166, .external_lex_state = 5}, - [3554] = {.lex_state = 169, .external_lex_state = 5}, - [3555] = {.lex_state = 169, .external_lex_state = 5}, - [3556] = {.lex_state = 169, .external_lex_state = 5}, - [3557] = {.lex_state = 323, .external_lex_state = 4}, - [3558] = {.lex_state = 323, .external_lex_state = 4}, + [3500] = {.lex_state = 169, .external_lex_state = 5}, + [3501] = {.lex_state = 169, .external_lex_state = 5}, + [3502] = {.lex_state = 323, .external_lex_state = 4}, + [3503] = {.lex_state = 323, .external_lex_state = 4}, + [3504] = {.lex_state = 323, .external_lex_state = 4}, + [3505] = {.lex_state = 323, .external_lex_state = 4}, + [3506] = {.lex_state = 169, .external_lex_state = 5}, + [3507] = {.lex_state = 142, .external_lex_state = 4}, + [3508] = {.lex_state = 323, .external_lex_state = 4}, + [3509] = {.lex_state = 323, .external_lex_state = 4}, + [3510] = {.lex_state = 323, .external_lex_state = 4}, + [3511] = {.lex_state = 323, .external_lex_state = 4}, + [3512] = {.lex_state = 323, .external_lex_state = 4}, + [3513] = {.lex_state = 323, .external_lex_state = 4}, + [3514] = {.lex_state = 323, .external_lex_state = 5}, + [3515] = {.lex_state = 323, .external_lex_state = 4}, + [3516] = {.lex_state = 323, .external_lex_state = 4}, + [3517] = {.lex_state = 323, .external_lex_state = 4}, + [3518] = {.lex_state = 178, .external_lex_state = 5}, + [3519] = {.lex_state = 323, .external_lex_state = 4}, + [3520] = {.lex_state = 166, .external_lex_state = 5}, + [3521] = {.lex_state = 323, .external_lex_state = 4}, + [3522] = {.lex_state = 142, .external_lex_state = 4}, + [3523] = {.lex_state = 327, .external_lex_state = 4}, + [3524] = {.lex_state = 142, .external_lex_state = 4}, + [3525] = {.lex_state = 181, .external_lex_state = 4}, + [3526] = {.lex_state = 181, .external_lex_state = 4}, + [3527] = {.lex_state = 181, .external_lex_state = 4}, + [3528] = {.lex_state = 181, .external_lex_state = 4}, + [3529] = {.lex_state = 181, .external_lex_state = 4}, + [3530] = {.lex_state = 181, .external_lex_state = 4}, + [3531] = {.lex_state = 181, .external_lex_state = 4}, + [3532] = {.lex_state = 181, .external_lex_state = 4}, + [3533] = {.lex_state = 181, .external_lex_state = 4}, + [3534] = {.lex_state = 181, .external_lex_state = 4}, + [3535] = {.lex_state = 181, .external_lex_state = 4}, + [3536] = {.lex_state = 181, .external_lex_state = 4}, + [3537] = {.lex_state = 181, .external_lex_state = 4}, + [3538] = {.lex_state = 181, .external_lex_state = 4}, + [3539] = {.lex_state = 181, .external_lex_state = 4}, + [3540] = {.lex_state = 181, .external_lex_state = 4}, + [3541] = {.lex_state = 181, .external_lex_state = 4}, + [3542] = {.lex_state = 181, .external_lex_state = 4}, + [3543] = {.lex_state = 142, .external_lex_state = 4}, + [3544] = {.lex_state = 181, .external_lex_state = 4}, + [3545] = {.lex_state = 181, .external_lex_state = 4}, + [3546] = {.lex_state = 181, .external_lex_state = 4}, + [3547] = {.lex_state = 181, .external_lex_state = 4}, + [3548] = {.lex_state = 181, .external_lex_state = 4}, + [3549] = {.lex_state = 181, .external_lex_state = 4}, + [3550] = {.lex_state = 181, .external_lex_state = 4}, + [3551] = {.lex_state = 181, .external_lex_state = 4}, + [3552] = {.lex_state = 181, .external_lex_state = 4}, + [3553] = {.lex_state = 181, .external_lex_state = 4}, + [3554] = {.lex_state = 181, .external_lex_state = 4}, + [3555] = {.lex_state = 181, .external_lex_state = 4}, + [3556] = {.lex_state = 181, .external_lex_state = 4}, + [3557] = {.lex_state = 181, .external_lex_state = 4}, + [3558] = {.lex_state = 181, .external_lex_state = 4}, [3559] = {.lex_state = 169, .external_lex_state = 5}, - [3560] = {.lex_state = 169, .external_lex_state = 5}, - [3561] = {.lex_state = 169, .external_lex_state = 5}, - [3562] = {.lex_state = 169, .external_lex_state = 5}, - [3563] = {.lex_state = 323, .external_lex_state = 4}, - [3564] = {.lex_state = 166, .external_lex_state = 5}, - [3565] = {.lex_state = 169, .external_lex_state = 5}, - [3566] = {.lex_state = 323, .external_lex_state = 4}, - [3567] = {.lex_state = 166, .external_lex_state = 5}, - [3568] = {.lex_state = 166, .external_lex_state = 5}, - [3569] = {.lex_state = 169, .external_lex_state = 5}, - [3570] = {.lex_state = 166, .external_lex_state = 5}, - [3571] = {.lex_state = 166, .external_lex_state = 5}, - [3572] = {.lex_state = 166, .external_lex_state = 5}, - [3573] = {.lex_state = 166, .external_lex_state = 5}, + [3560] = {.lex_state = 181, .external_lex_state = 4}, + [3561] = {.lex_state = 181, .external_lex_state = 4}, + [3562] = {.lex_state = 181, .external_lex_state = 4}, + [3563] = {.lex_state = 142, .external_lex_state = 4}, + [3564] = {.lex_state = 142, .external_lex_state = 4}, + [3565] = {.lex_state = 142, .external_lex_state = 4}, + [3566] = {.lex_state = 181, .external_lex_state = 4}, + [3567] = {.lex_state = 181, .external_lex_state = 4}, + [3568] = {.lex_state = 327, .external_lex_state = 4}, + [3569] = {.lex_state = 327, .external_lex_state = 4}, + [3570] = {.lex_state = 169, .external_lex_state = 4}, + [3571] = {.lex_state = 327, .external_lex_state = 4}, + [3572] = {.lex_state = 327, .external_lex_state = 4}, + [3573] = {.lex_state = 142, .external_lex_state = 4}, [3574] = {.lex_state = 166, .external_lex_state = 5}, [3575] = {.lex_state = 166, .external_lex_state = 5}, - [3576] = {.lex_state = 166, .external_lex_state = 5}, - [3577] = {.lex_state = 166, .external_lex_state = 5}, - [3578] = {.lex_state = 169, .external_lex_state = 5}, - [3579] = {.lex_state = 169, .external_lex_state = 5}, - [3580] = {.lex_state = 166, .external_lex_state = 5}, - [3581] = {.lex_state = 166, .external_lex_state = 5}, - [3582] = {.lex_state = 169, .external_lex_state = 5}, - [3583] = {.lex_state = 319, .external_lex_state = 4}, - [3584] = {.lex_state = 169, .external_lex_state = 5}, - [3585] = {.lex_state = 169, .external_lex_state = 5}, - [3586] = {.lex_state = 169, .external_lex_state = 5}, - [3587] = {.lex_state = 166, .external_lex_state = 5}, - [3588] = {.lex_state = 169, .external_lex_state = 5}, + [3576] = {.lex_state = 327, .external_lex_state = 4}, + [3577] = {.lex_state = 327, .external_lex_state = 4}, + [3578] = {.lex_state = 327, .external_lex_state = 4}, + [3579] = {.lex_state = 166, .external_lex_state = 5}, + [3580] = {.lex_state = 327, .external_lex_state = 4}, + [3581] = {.lex_state = 327, .external_lex_state = 4}, + [3582] = {.lex_state = 327, .external_lex_state = 4}, + [3583] = {.lex_state = 169, .external_lex_state = 5}, + [3584] = {.lex_state = 166, .external_lex_state = 5}, + [3585] = {.lex_state = 166, .external_lex_state = 5}, + [3586] = {.lex_state = 166, .external_lex_state = 5}, + [3587] = {.lex_state = 327, .external_lex_state = 4}, + [3588] = {.lex_state = 327, .external_lex_state = 4}, [3589] = {.lex_state = 142, .external_lex_state = 4}, [3590] = {.lex_state = 166, .external_lex_state = 5}, - [3591] = {.lex_state = 323, .external_lex_state = 4}, - [3592] = {.lex_state = 323, .external_lex_state = 4}, - [3593] = {.lex_state = 166, .external_lex_state = 5}, - [3594] = {.lex_state = 166, .external_lex_state = 5}, - [3595] = {.lex_state = 166, .external_lex_state = 5}, - [3596] = {.lex_state = 166, .external_lex_state = 5}, - [3597] = {.lex_state = 166, .external_lex_state = 5}, - [3598] = {.lex_state = 166, .external_lex_state = 5}, - [3599] = {.lex_state = 166, .external_lex_state = 5}, - [3600] = {.lex_state = 166, .external_lex_state = 5}, - [3601] = {.lex_state = 169, .external_lex_state = 5}, - [3602] = {.lex_state = 166, .external_lex_state = 5}, - [3603] = {.lex_state = 166, .external_lex_state = 5}, - [3604] = {.lex_state = 323, .external_lex_state = 4}, - [3605] = {.lex_state = 323, .external_lex_state = 4}, - [3606] = {.lex_state = 142, .external_lex_state = 4}, - [3607] = {.lex_state = 323, .external_lex_state = 4}, - [3608] = {.lex_state = 323, .external_lex_state = 4}, - [3609] = {.lex_state = 166, .external_lex_state = 5}, - [3610] = {.lex_state = 166, .external_lex_state = 5}, - [3611] = {.lex_state = 166, .external_lex_state = 5}, - [3612] = {.lex_state = 169, .external_lex_state = 5}, - [3613] = {.lex_state = 142, .external_lex_state = 4}, - [3614] = {.lex_state = 169, .external_lex_state = 5}, - [3615] = {.lex_state = 169, .external_lex_state = 5}, - [3616] = {.lex_state = 142, .external_lex_state = 4}, - [3617] = {.lex_state = 169, .external_lex_state = 5}, - [3618] = {.lex_state = 169, .external_lex_state = 5}, - [3619] = {.lex_state = 142, .external_lex_state = 4}, - [3620] = {.lex_state = 181, .external_lex_state = 4}, - [3621] = {.lex_state = 181, .external_lex_state = 4}, + [3591] = {.lex_state = 166, .external_lex_state = 5}, + [3592] = {.lex_state = 166, .external_lex_state = 5}, + [3593] = {.lex_state = 184, .external_lex_state = 4}, + [3594] = {.lex_state = 327, .external_lex_state = 4}, + [3595] = {.lex_state = 327, .external_lex_state = 4}, + [3596] = {.lex_state = 327, .external_lex_state = 4}, + [3597] = {.lex_state = 327, .external_lex_state = 4}, + [3598] = {.lex_state = 327, .external_lex_state = 4}, + [3599] = {.lex_state = 327, .external_lex_state = 4}, + [3600] = {.lex_state = 169, .external_lex_state = 5}, + [3601] = {.lex_state = 181, .external_lex_state = 4}, + [3602] = {.lex_state = 181, .external_lex_state = 4}, + [3603] = {.lex_state = 181, .external_lex_state = 4}, + [3604] = {.lex_state = 181, .external_lex_state = 4}, + [3605] = {.lex_state = 181, .external_lex_state = 4}, + [3606] = {.lex_state = 181, .external_lex_state = 4}, + [3607] = {.lex_state = 184, .external_lex_state = 4}, + [3608] = {.lex_state = 184, .external_lex_state = 4}, + [3609] = {.lex_state = 184, .external_lex_state = 4}, + [3610] = {.lex_state = 184, .external_lex_state = 4}, + [3611] = {.lex_state = 184, .external_lex_state = 4}, + [3612] = {.lex_state = 184, .external_lex_state = 4}, + [3613] = {.lex_state = 166, .external_lex_state = 5}, + [3614] = {.lex_state = 166, .external_lex_state = 5}, + [3615] = {.lex_state = 166, .external_lex_state = 5}, + [3616] = {.lex_state = 166, .external_lex_state = 5}, + [3617] = {.lex_state = 327, .external_lex_state = 4}, + [3618] = {.lex_state = 327, .external_lex_state = 4}, + [3619] = {.lex_state = 323, .external_lex_state = 4}, + [3620] = {.lex_state = 327, .external_lex_state = 4}, + [3621] = {.lex_state = 327, .external_lex_state = 4}, [3622] = {.lex_state = 169, .external_lex_state = 5}, - [3623] = {.lex_state = 166, .external_lex_state = 5}, - [3624] = {.lex_state = 184, .external_lex_state = 4}, - [3625] = {.lex_state = 169, .external_lex_state = 5}, + [3623] = {.lex_state = 169, .external_lex_state = 5}, + [3624] = {.lex_state = 327, .external_lex_state = 4}, + [3625] = {.lex_state = 327, .external_lex_state = 4}, [3626] = {.lex_state = 169, .external_lex_state = 5}, - [3627] = {.lex_state = 184, .external_lex_state = 4}, + [3627] = {.lex_state = 166, .external_lex_state = 5}, [3628] = {.lex_state = 169, .external_lex_state = 5}, [3629] = {.lex_state = 169, .external_lex_state = 5}, [3630] = {.lex_state = 166, .external_lex_state = 5}, - [3631] = {.lex_state = 166, .external_lex_state = 5}, - [3632] = {.lex_state = 166, .external_lex_state = 5}, - [3633] = {.lex_state = 166, .external_lex_state = 5}, - [3634] = {.lex_state = 166, .external_lex_state = 5}, + [3631] = {.lex_state = 169, .external_lex_state = 5}, + [3632] = {.lex_state = 169, .external_lex_state = 5}, + [3633] = {.lex_state = 142, .external_lex_state = 4}, + [3634] = {.lex_state = 142, .external_lex_state = 4}, [3635] = {.lex_state = 166, .external_lex_state = 5}, [3636] = {.lex_state = 166, .external_lex_state = 5}, - [3637] = {.lex_state = 166, .external_lex_state = 5}, - [3638] = {.lex_state = 166, .external_lex_state = 5}, - [3639] = {.lex_state = 166, .external_lex_state = 5}, - [3640] = {.lex_state = 166, .external_lex_state = 5}, - [3641] = {.lex_state = 166, .external_lex_state = 5}, - [3642] = {.lex_state = 169, .external_lex_state = 5}, - [3643] = {.lex_state = 169, .external_lex_state = 5}, - [3644] = {.lex_state = 166, .external_lex_state = 5}, - [3645] = {.lex_state = 166, .external_lex_state = 5}, + [3637] = {.lex_state = 184, .external_lex_state = 4}, + [3638] = {.lex_state = 184, .external_lex_state = 4}, + [3639] = {.lex_state = 184, .external_lex_state = 4}, + [3640] = {.lex_state = 184, .external_lex_state = 4}, + [3641] = {.lex_state = 184, .external_lex_state = 4}, + [3642] = {.lex_state = 184, .external_lex_state = 4}, + [3643] = {.lex_state = 327, .external_lex_state = 4}, + [3644] = {.lex_state = 169, .external_lex_state = 5}, + [3645] = {.lex_state = 327, .external_lex_state = 4}, [3646] = {.lex_state = 166, .external_lex_state = 5}, - [3647] = {.lex_state = 166, .external_lex_state = 5}, - [3648] = {.lex_state = 169, .external_lex_state = 5}, + [3647] = {.lex_state = 184, .external_lex_state = 4}, + [3648] = {.lex_state = 184, .external_lex_state = 4}, [3649] = {.lex_state = 169, .external_lex_state = 5}, - [3650] = {.lex_state = 166, .external_lex_state = 5}, - [3651] = {.lex_state = 169, .external_lex_state = 5}, - [3652] = {.lex_state = 166, .external_lex_state = 5}, - [3653] = {.lex_state = 166, .external_lex_state = 5}, - [3654] = {.lex_state = 166, .external_lex_state = 5}, - [3655] = {.lex_state = 166, .external_lex_state = 5}, + [3650] = {.lex_state = 169, .external_lex_state = 5}, + [3651] = {.lex_state = 184, .external_lex_state = 4}, + [3652] = {.lex_state = 184, .external_lex_state = 4}, + [3653] = {.lex_state = 169, .external_lex_state = 5}, + [3654] = {.lex_state = 184, .external_lex_state = 4}, + [3655] = {.lex_state = 184, .external_lex_state = 4}, [3656] = {.lex_state = 166, .external_lex_state = 5}, [3657] = {.lex_state = 166, .external_lex_state = 5}, [3658] = {.lex_state = 166, .external_lex_state = 5}, - [3659] = {.lex_state = 184, .external_lex_state = 4}, - [3660] = {.lex_state = 184, .external_lex_state = 4}, - [3661] = {.lex_state = 184, .external_lex_state = 4}, - [3662] = {.lex_state = 184, .external_lex_state = 4}, - [3663] = {.lex_state = 184, .external_lex_state = 4}, - [3664] = {.lex_state = 184, .external_lex_state = 4}, - [3665] = {.lex_state = 166, .external_lex_state = 5}, - [3666] = {.lex_state = 319, .external_lex_state = 5}, - [3667] = {.lex_state = 319, .external_lex_state = 5}, - [3668] = {.lex_state = 319, .external_lex_state = 5}, - [3669] = {.lex_state = 319, .external_lex_state = 5}, - [3670] = {.lex_state = 319, .external_lex_state = 5}, - [3671] = {.lex_state = 319, .external_lex_state = 5}, - [3672] = {.lex_state = 319, .external_lex_state = 5}, - [3673] = {.lex_state = 319, .external_lex_state = 5}, - [3674] = {.lex_state = 319, .external_lex_state = 5}, - [3675] = {.lex_state = 319, .external_lex_state = 5}, - [3676] = {.lex_state = 319, .external_lex_state = 5}, - [3677] = {.lex_state = 319, .external_lex_state = 5}, - [3678] = {.lex_state = 319, .external_lex_state = 5}, - [3679] = {.lex_state = 184, .external_lex_state = 4}, - [3680] = {.lex_state = 184, .external_lex_state = 4}, - [3681] = {.lex_state = 184, .external_lex_state = 4}, - [3682] = {.lex_state = 319, .external_lex_state = 5}, - [3683] = {.lex_state = 319, .external_lex_state = 5}, - [3684] = {.lex_state = 319, .external_lex_state = 5}, - [3685] = {.lex_state = 319, .external_lex_state = 5}, - [3686] = {.lex_state = 184, .external_lex_state = 4}, - [3687] = {.lex_state = 184, .external_lex_state = 4}, - [3688] = {.lex_state = 323, .external_lex_state = 4}, - [3689] = {.lex_state = 323, .external_lex_state = 4}, - [3690] = {.lex_state = 323, .external_lex_state = 4}, - [3691] = {.lex_state = 323, .external_lex_state = 4}, - [3692] = {.lex_state = 184, .external_lex_state = 4}, + [3659] = {.lex_state = 169, .external_lex_state = 5}, + [3660] = {.lex_state = 323, .external_lex_state = 4}, + [3661] = {.lex_state = 169, .external_lex_state = 5}, + [3662] = {.lex_state = 169, .external_lex_state = 5}, + [3663] = {.lex_state = 327, .external_lex_state = 4}, + [3664] = {.lex_state = 169, .external_lex_state = 5}, + [3665] = {.lex_state = 327, .external_lex_state = 4}, + [3666] = {.lex_state = 169, .external_lex_state = 5}, + [3667] = {.lex_state = 184, .external_lex_state = 4}, + [3668] = {.lex_state = 184, .external_lex_state = 4}, + [3669] = {.lex_state = 184, .external_lex_state = 4}, + [3670] = {.lex_state = 184, .external_lex_state = 4}, + [3671] = {.lex_state = 184, .external_lex_state = 4}, + [3672] = {.lex_state = 184, .external_lex_state = 4}, + [3673] = {.lex_state = 184, .external_lex_state = 4}, + [3674] = {.lex_state = 184, .external_lex_state = 4}, + [3675] = {.lex_state = 184, .external_lex_state = 4}, + [3676] = {.lex_state = 184, .external_lex_state = 4}, + [3677] = {.lex_state = 169, .external_lex_state = 5}, + [3678] = {.lex_state = 169, .external_lex_state = 5}, + [3679] = {.lex_state = 169, .external_lex_state = 5}, + [3680] = {.lex_state = 169, .external_lex_state = 5}, + [3681] = {.lex_state = 166, .external_lex_state = 5}, + [3682] = {.lex_state = 166, .external_lex_state = 5}, + [3683] = {.lex_state = 166, .external_lex_state = 5}, + [3684] = {.lex_state = 323, .external_lex_state = 4}, + [3685] = {.lex_state = 327, .external_lex_state = 4}, + [3686] = {.lex_state = 327, .external_lex_state = 4}, + [3687] = {.lex_state = 327, .external_lex_state = 4}, + [3688] = {.lex_state = 327, .external_lex_state = 4}, + [3689] = {.lex_state = 169, .external_lex_state = 5}, + [3690] = {.lex_state = 169, .external_lex_state = 5}, + [3691] = {.lex_state = 327, .external_lex_state = 4}, + [3692] = {.lex_state = 166, .external_lex_state = 5}, [3693] = {.lex_state = 166, .external_lex_state = 5}, - [3694] = {.lex_state = 184, .external_lex_state = 4}, + [3694] = {.lex_state = 166, .external_lex_state = 5}, [3695] = {.lex_state = 323, .external_lex_state = 4}, - [3696] = {.lex_state = 184, .external_lex_state = 4}, - [3697] = {.lex_state = 184, .external_lex_state = 4}, - [3698] = {.lex_state = 184, .external_lex_state = 4}, + [3696] = {.lex_state = 166, .external_lex_state = 5}, + [3697] = {.lex_state = 166, .external_lex_state = 5}, + [3698] = {.lex_state = 166, .external_lex_state = 5}, [3699] = {.lex_state = 166, .external_lex_state = 5}, [3700] = {.lex_state = 166, .external_lex_state = 5}, [3701] = {.lex_state = 166, .external_lex_state = 5}, - [3702] = {.lex_state = 169, .external_lex_state = 5}, - [3703] = {.lex_state = 169, .external_lex_state = 5}, - [3704] = {.lex_state = 166, .external_lex_state = 5}, - [3705] = {.lex_state = 166, .external_lex_state = 5}, + [3702] = {.lex_state = 166, .external_lex_state = 5}, + [3703] = {.lex_state = 166, .external_lex_state = 5}, + [3704] = {.lex_state = 169, .external_lex_state = 5}, + [3705] = {.lex_state = 169, .external_lex_state = 5}, [3706] = {.lex_state = 166, .external_lex_state = 5}, - [3707] = {.lex_state = 166, .external_lex_state = 5}, + [3707] = {.lex_state = 169, .external_lex_state = 5}, [3708] = {.lex_state = 166, .external_lex_state = 5}, [3709] = {.lex_state = 166, .external_lex_state = 5}, - [3710] = {.lex_state = 169, .external_lex_state = 5}, - [3711] = {.lex_state = 169, .external_lex_state = 5}, + [3710] = {.lex_state = 166, .external_lex_state = 5}, + [3711] = {.lex_state = 166, .external_lex_state = 5}, [3712] = {.lex_state = 166, .external_lex_state = 5}, - [3713] = {.lex_state = 323, .external_lex_state = 4}, - [3714] = {.lex_state = 142, .external_lex_state = 4}, + [3713] = {.lex_state = 166, .external_lex_state = 5}, + [3714] = {.lex_state = 327, .external_lex_state = 4}, [3715] = {.lex_state = 166, .external_lex_state = 5}, - [3716] = {.lex_state = 169, .external_lex_state = 5}, - [3717] = {.lex_state = 142, .external_lex_state = 4}, - [3718] = {.lex_state = 142, .external_lex_state = 4}, + [3716] = {.lex_state = 166, .external_lex_state = 5}, + [3717] = {.lex_state = 166, .external_lex_state = 5}, + [3718] = {.lex_state = 166, .external_lex_state = 5}, [3719] = {.lex_state = 166, .external_lex_state = 5}, [3720] = {.lex_state = 166, .external_lex_state = 5}, - [3721] = {.lex_state = 169, .external_lex_state = 5}, - [3722] = {.lex_state = 323, .external_lex_state = 4}, - [3723] = {.lex_state = 142, .external_lex_state = 4}, - [3724] = {.lex_state = 142, .external_lex_state = 4}, + [3721] = {.lex_state = 166, .external_lex_state = 5}, + [3722] = {.lex_state = 166, .external_lex_state = 5}, + [3723] = {.lex_state = 166, .external_lex_state = 5}, + [3724] = {.lex_state = 166, .external_lex_state = 5}, [3725] = {.lex_state = 166, .external_lex_state = 5}, - [3726] = {.lex_state = 169, .external_lex_state = 5}, - [3727] = {.lex_state = 169, .external_lex_state = 5}, - [3728] = {.lex_state = 169, .external_lex_state = 5}, + [3726] = {.lex_state = 166, .external_lex_state = 5}, + [3727] = {.lex_state = 166, .external_lex_state = 5}, + [3728] = {.lex_state = 166, .external_lex_state = 5}, [3729] = {.lex_state = 166, .external_lex_state = 5}, [3730] = {.lex_state = 184, .external_lex_state = 4}, - [3731] = {.lex_state = 184, .external_lex_state = 4}, - [3732] = {.lex_state = 169, .external_lex_state = 5}, - [3733] = {.lex_state = 169, .external_lex_state = 5}, - [3734] = {.lex_state = 169, .external_lex_state = 5}, - [3735] = {.lex_state = 169, .external_lex_state = 5}, - [3736] = {.lex_state = 169, .external_lex_state = 5}, - [3737] = {.lex_state = 169, .external_lex_state = 5}, - [3738] = {.lex_state = 169, .external_lex_state = 5}, + [3731] = {.lex_state = 166, .external_lex_state = 5}, + [3732] = {.lex_state = 184, .external_lex_state = 4}, + [3733] = {.lex_state = 184, .external_lex_state = 4}, + [3734] = {.lex_state = 166, .external_lex_state = 5}, + [3735] = {.lex_state = 166, .external_lex_state = 5}, + [3736] = {.lex_state = 166, .external_lex_state = 5}, + [3737] = {.lex_state = 327, .external_lex_state = 4}, + [3738] = {.lex_state = 184, .external_lex_state = 4}, [3739] = {.lex_state = 169, .external_lex_state = 5}, - [3740] = {.lex_state = 181, .external_lex_state = 4}, - [3741] = {.lex_state = 181, .external_lex_state = 4}, - [3742] = {.lex_state = 181, .external_lex_state = 4}, - [3743] = {.lex_state = 323, .external_lex_state = 4}, + [3740] = {.lex_state = 169, .external_lex_state = 5}, + [3741] = {.lex_state = 166, .external_lex_state = 5}, + [3742] = {.lex_state = 184, .external_lex_state = 4}, + [3743] = {.lex_state = 184, .external_lex_state = 4}, [3744] = {.lex_state = 323, .external_lex_state = 4}, - [3745] = {.lex_state = 323, .external_lex_state = 4}, - [3746] = {.lex_state = 323, .external_lex_state = 4}, - [3747] = {.lex_state = 181, .external_lex_state = 4}, - [3748] = {.lex_state = 323, .external_lex_state = 4}, - [3749] = {.lex_state = 323, .external_lex_state = 4}, - [3750] = {.lex_state = 323, .external_lex_state = 4}, - [3751] = {.lex_state = 323, .external_lex_state = 4}, - [3752] = {.lex_state = 323, .external_lex_state = 4}, - [3753] = {.lex_state = 323, .external_lex_state = 4}, - [3754] = {.lex_state = 323, .external_lex_state = 4}, - [3755] = {.lex_state = 323, .external_lex_state = 4}, - [3756] = {.lex_state = 323, .external_lex_state = 4}, - [3757] = {.lex_state = 323, .external_lex_state = 4}, - [3758] = {.lex_state = 181, .external_lex_state = 4}, - [3759] = {.lex_state = 319, .external_lex_state = 4}, - [3760] = {.lex_state = 181, .external_lex_state = 4}, - [3761] = {.lex_state = 181, .external_lex_state = 4}, - [3762] = {.lex_state = 319, .external_lex_state = 4}, - [3763] = {.lex_state = 181, .external_lex_state = 4}, - [3764] = {.lex_state = 181, .external_lex_state = 4}, - [3765] = {.lex_state = 181, .external_lex_state = 4}, - [3766] = {.lex_state = 319, .external_lex_state = 4}, - [3767] = {.lex_state = 319, .external_lex_state = 4}, - [3768] = {.lex_state = 181, .external_lex_state = 4}, - [3769] = {.lex_state = 181, .external_lex_state = 4}, - [3770] = {.lex_state = 319, .external_lex_state = 4}, - [3771] = {.lex_state = 319, .external_lex_state = 4}, - [3772] = {.lex_state = 181, .external_lex_state = 4}, - [3773] = {.lex_state = 181, .external_lex_state = 4}, - [3774] = {.lex_state = 319, .external_lex_state = 4}, - [3775] = {.lex_state = 181, .external_lex_state = 4}, - [3776] = {.lex_state = 181, .external_lex_state = 4}, - [3777] = {.lex_state = 319, .external_lex_state = 4}, - [3778] = {.lex_state = 142, .external_lex_state = 4}, - [3779] = {.lex_state = 184, .external_lex_state = 4}, - [3780] = {.lex_state = 184, .external_lex_state = 4}, - [3781] = {.lex_state = 323, .external_lex_state = 4}, - [3782] = {.lex_state = 323, .external_lex_state = 4}, - [3783] = {.lex_state = 142, .external_lex_state = 4}, - [3784] = {.lex_state = 142, .external_lex_state = 4}, + [3745] = {.lex_state = 166, .external_lex_state = 5}, + [3746] = {.lex_state = 327, .external_lex_state = 4}, + [3747] = {.lex_state = 166, .external_lex_state = 5}, + [3748] = {.lex_state = 184, .external_lex_state = 4}, + [3749] = {.lex_state = 184, .external_lex_state = 4}, + [3750] = {.lex_state = 184, .external_lex_state = 4}, + [3751] = {.lex_state = 323, .external_lex_state = 5}, + [3752] = {.lex_state = 323, .external_lex_state = 5}, + [3753] = {.lex_state = 323, .external_lex_state = 5}, + [3754] = {.lex_state = 323, .external_lex_state = 5}, + [3755] = {.lex_state = 323, .external_lex_state = 5}, + [3756] = {.lex_state = 323, .external_lex_state = 5}, + [3757] = {.lex_state = 323, .external_lex_state = 5}, + [3758] = {.lex_state = 323, .external_lex_state = 5}, + [3759] = {.lex_state = 323, .external_lex_state = 5}, + [3760] = {.lex_state = 323, .external_lex_state = 5}, + [3761] = {.lex_state = 323, .external_lex_state = 5}, + [3762] = {.lex_state = 323, .external_lex_state = 5}, + [3763] = {.lex_state = 323, .external_lex_state = 5}, + [3764] = {.lex_state = 184, .external_lex_state = 4}, + [3765] = {.lex_state = 184, .external_lex_state = 4}, + [3766] = {.lex_state = 323, .external_lex_state = 5}, + [3767] = {.lex_state = 323, .external_lex_state = 5}, + [3768] = {.lex_state = 323, .external_lex_state = 5}, + [3769] = {.lex_state = 323, .external_lex_state = 5}, + [3770] = {.lex_state = 184, .external_lex_state = 4}, + [3771] = {.lex_state = 142, .external_lex_state = 4}, + [3772] = {.lex_state = 184, .external_lex_state = 4}, + [3773] = {.lex_state = 184, .external_lex_state = 4}, + [3774] = {.lex_state = 184, .external_lex_state = 4}, + [3775] = {.lex_state = 184, .external_lex_state = 4}, + [3776] = {.lex_state = 184, .external_lex_state = 4}, + [3777] = {.lex_state = 184, .external_lex_state = 4}, + [3778] = {.lex_state = 327, .external_lex_state = 4}, + [3779] = {.lex_state = 327, .external_lex_state = 4}, + [3780] = {.lex_state = 142, .external_lex_state = 4}, + [3781] = {.lex_state = 142, .external_lex_state = 4}, + [3782] = {.lex_state = 184, .external_lex_state = 4}, + [3783] = {.lex_state = 184, .external_lex_state = 4}, + [3784] = {.lex_state = 184, .external_lex_state = 4}, [3785] = {.lex_state = 181, .external_lex_state = 4}, - [3786] = {.lex_state = 319, .external_lex_state = 4}, - [3787] = {.lex_state = 181, .external_lex_state = 4}, - [3788] = {.lex_state = 142, .external_lex_state = 4}, - [3789] = {.lex_state = 142, .external_lex_state = 4}, - [3790] = {.lex_state = 319, .external_lex_state = 4}, - [3791] = {.lex_state = 319, .external_lex_state = 4}, - [3792] = {.lex_state = 169, .external_lex_state = 5}, - [3793] = {.lex_state = 181, .external_lex_state = 4}, - [3794] = {.lex_state = 323, .external_lex_state = 4}, - [3795] = {.lex_state = 323, .external_lex_state = 4}, - [3796] = {.lex_state = 323, .external_lex_state = 4}, - [3797] = {.lex_state = 323, .external_lex_state = 4}, - [3798] = {.lex_state = 323, .external_lex_state = 4}, - [3799] = {.lex_state = 323, .external_lex_state = 4}, - [3800] = {.lex_state = 323, .external_lex_state = 4}, - [3801] = {.lex_state = 323, .external_lex_state = 4}, - [3802] = {.lex_state = 323, .external_lex_state = 4}, - [3803] = {.lex_state = 323, .external_lex_state = 4}, - [3804] = {.lex_state = 323, .external_lex_state = 4}, - [3805] = {.lex_state = 323, .external_lex_state = 4}, - [3806] = {.lex_state = 323, .external_lex_state = 4}, - [3807] = {.lex_state = 323, .external_lex_state = 4}, - [3808] = {.lex_state = 323, .external_lex_state = 4}, - [3809] = {.lex_state = 323, .external_lex_state = 4}, - [3810] = {.lex_state = 323, .external_lex_state = 4}, - [3811] = {.lex_state = 323, .external_lex_state = 4}, - [3812] = {.lex_state = 323, .external_lex_state = 4}, - [3813] = {.lex_state = 323, .external_lex_state = 4}, - [3814] = {.lex_state = 323, .external_lex_state = 4}, - [3815] = {.lex_state = 323, .external_lex_state = 4}, - [3816] = {.lex_state = 323, .external_lex_state = 4}, - [3817] = {.lex_state = 323, .external_lex_state = 4}, - [3818] = {.lex_state = 323, .external_lex_state = 4}, - [3819] = {.lex_state = 323, .external_lex_state = 4}, - [3820] = {.lex_state = 323, .external_lex_state = 4}, - [3821] = {.lex_state = 323, .external_lex_state = 4}, - [3822] = {.lex_state = 323, .external_lex_state = 4}, - [3823] = {.lex_state = 323, .external_lex_state = 4}, - [3824] = {.lex_state = 323, .external_lex_state = 4}, - [3825] = {.lex_state = 323, .external_lex_state = 4}, - [3826] = {.lex_state = 323, .external_lex_state = 4}, - [3827] = {.lex_state = 323, .external_lex_state = 4}, - [3828] = {.lex_state = 323, .external_lex_state = 4}, - [3829] = {.lex_state = 323, .external_lex_state = 4}, - [3830] = {.lex_state = 323, .external_lex_state = 4}, - [3831] = {.lex_state = 323, .external_lex_state = 4}, - [3832] = {.lex_state = 323, .external_lex_state = 4}, - [3833] = {.lex_state = 323, .external_lex_state = 4}, - [3834] = {.lex_state = 323, .external_lex_state = 4}, - [3835] = {.lex_state = 323, .external_lex_state = 4}, - [3836] = {.lex_state = 323, .external_lex_state = 4}, + [3786] = {.lex_state = 184, .external_lex_state = 4}, + [3787] = {.lex_state = 184, .external_lex_state = 4}, + [3788] = {.lex_state = 184, .external_lex_state = 4}, + [3789] = {.lex_state = 184, .external_lex_state = 4}, + [3790] = {.lex_state = 184, .external_lex_state = 4}, + [3791] = {.lex_state = 184, .external_lex_state = 4}, + [3792] = {.lex_state = 184, .external_lex_state = 4}, + [3793] = {.lex_state = 142, .external_lex_state = 4}, + [3794] = {.lex_state = 184, .external_lex_state = 4}, + [3795] = {.lex_state = 184, .external_lex_state = 4}, + [3796] = {.lex_state = 184, .external_lex_state = 4}, + [3797] = {.lex_state = 166, .external_lex_state = 5}, + [3798] = {.lex_state = 169, .external_lex_state = 5}, + [3799] = {.lex_state = 169, .external_lex_state = 5}, + [3800] = {.lex_state = 169, .external_lex_state = 5}, + [3801] = {.lex_state = 327, .external_lex_state = 4}, + [3802] = {.lex_state = 169, .external_lex_state = 5}, + [3803] = {.lex_state = 169, .external_lex_state = 5}, + [3804] = {.lex_state = 169, .external_lex_state = 5}, + [3805] = {.lex_state = 169, .external_lex_state = 5}, + [3806] = {.lex_state = 169, .external_lex_state = 5}, + [3807] = {.lex_state = 169, .external_lex_state = 5}, + [3808] = {.lex_state = 166, .external_lex_state = 5}, + [3809] = {.lex_state = 327, .external_lex_state = 4}, + [3810] = {.lex_state = 169, .external_lex_state = 5}, + [3811] = {.lex_state = 169, .external_lex_state = 5}, + [3812] = {.lex_state = 169, .external_lex_state = 5}, + [3813] = {.lex_state = 166, .external_lex_state = 4}, + [3814] = {.lex_state = 142, .external_lex_state = 4}, + [3815] = {.lex_state = 166, .external_lex_state = 5}, + [3816] = {.lex_state = 166, .external_lex_state = 5}, + [3817] = {.lex_state = 327, .external_lex_state = 4}, + [3818] = {.lex_state = 327, .external_lex_state = 4}, + [3819] = {.lex_state = 327, .external_lex_state = 4}, + [3820] = {.lex_state = 327, .external_lex_state = 4}, + [3821] = {.lex_state = 327, .external_lex_state = 4}, + [3822] = {.lex_state = 327, .external_lex_state = 4}, + [3823] = {.lex_state = 327, .external_lex_state = 4}, + [3824] = {.lex_state = 327, .external_lex_state = 4}, + [3825] = {.lex_state = 327, .external_lex_state = 4}, + [3826] = {.lex_state = 327, .external_lex_state = 4}, + [3827] = {.lex_state = 327, .external_lex_state = 4}, + [3828] = {.lex_state = 327, .external_lex_state = 4}, + [3829] = {.lex_state = 327, .external_lex_state = 4}, + [3830] = {.lex_state = 327, .external_lex_state = 4}, + [3831] = {.lex_state = 327, .external_lex_state = 4}, + [3832] = {.lex_state = 327, .external_lex_state = 4}, + [3833] = {.lex_state = 327, .external_lex_state = 4}, + [3834] = {.lex_state = 327, .external_lex_state = 4}, + [3835] = {.lex_state = 327, .external_lex_state = 4}, + [3836] = {.lex_state = 169, .external_lex_state = 5}, [3837] = {.lex_state = 323, .external_lex_state = 4}, [3838] = {.lex_state = 323, .external_lex_state = 4}, - [3839] = {.lex_state = 323, .external_lex_state = 4}, - [3840] = {.lex_state = 323, .external_lex_state = 4}, - [3841] = {.lex_state = 323, .external_lex_state = 4}, + [3839] = {.lex_state = 169, .external_lex_state = 5}, + [3840] = {.lex_state = 169, .external_lex_state = 5}, + [3841] = {.lex_state = 169, .external_lex_state = 5}, [3842] = {.lex_state = 323, .external_lex_state = 4}, - [3843] = {.lex_state = 142, .external_lex_state = 4}, - [3844] = {.lex_state = 181, .external_lex_state = 4}, - [3845] = {.lex_state = 319, .external_lex_state = 4}, + [3843] = {.lex_state = 323, .external_lex_state = 4}, + [3844] = {.lex_state = 169, .external_lex_state = 5}, + [3845] = {.lex_state = 169, .external_lex_state = 5}, [3846] = {.lex_state = 323, .external_lex_state = 4}, - [3847] = {.lex_state = 181, .external_lex_state = 4}, - [3848] = {.lex_state = 181, .external_lex_state = 4}, - [3849] = {.lex_state = 181, .external_lex_state = 4}, - [3850] = {.lex_state = 181, .external_lex_state = 4}, - [3851] = {.lex_state = 181, .external_lex_state = 4}, - [3852] = {.lex_state = 142, .external_lex_state = 4}, + [3847] = {.lex_state = 323, .external_lex_state = 4}, + [3848] = {.lex_state = 169, .external_lex_state = 5}, + [3849] = {.lex_state = 166, .external_lex_state = 5}, + [3850] = {.lex_state = 323, .external_lex_state = 4}, + [3851] = {.lex_state = 169, .external_lex_state = 5}, + [3852] = {.lex_state = 323, .external_lex_state = 4}, [3853] = {.lex_state = 169, .external_lex_state = 5}, - [3854] = {.lex_state = 142, .external_lex_state = 4}, - [3855] = {.lex_state = 142, .external_lex_state = 4}, - [3856] = {.lex_state = 142, .external_lex_state = 4}, - [3857] = {.lex_state = 181, .external_lex_state = 4}, - [3858] = {.lex_state = 142, .external_lex_state = 4}, - [3859] = {.lex_state = 181, .external_lex_state = 4}, - [3860] = {.lex_state = 142, .external_lex_state = 4}, - [3861] = {.lex_state = 142, .external_lex_state = 4}, - [3862] = {.lex_state = 142, .external_lex_state = 4}, - [3863] = {.lex_state = 142, .external_lex_state = 4}, + [3854] = {.lex_state = 169, .external_lex_state = 5}, + [3855] = {.lex_state = 169, .external_lex_state = 5}, + [3856] = {.lex_state = 323, .external_lex_state = 4}, + [3857] = {.lex_state = 327, .external_lex_state = 4}, + [3858] = {.lex_state = 169, .external_lex_state = 5}, + [3859] = {.lex_state = 169, .external_lex_state = 5}, + [3860] = {.lex_state = 169, .external_lex_state = 5}, + [3861] = {.lex_state = 166, .external_lex_state = 5}, + [3862] = {.lex_state = 166, .external_lex_state = 5}, + [3863] = {.lex_state = 323, .external_lex_state = 4}, [3864] = {.lex_state = 142, .external_lex_state = 4}, [3865] = {.lex_state = 142, .external_lex_state = 4}, - [3866] = {.lex_state = 142, .external_lex_state = 4}, - [3867] = {.lex_state = 142, .external_lex_state = 4}, - [3868] = {.lex_state = 142, .external_lex_state = 4}, - [3869] = {.lex_state = 142, .external_lex_state = 4}, - [3870] = {.lex_state = 142, .external_lex_state = 4}, - [3871] = {.lex_state = 142, .external_lex_state = 4}, - [3872] = {.lex_state = 319, .external_lex_state = 4}, - [3873] = {.lex_state = 181, .external_lex_state = 4}, - [3874] = {.lex_state = 181, .external_lex_state = 4}, - [3875] = {.lex_state = 169, .external_lex_state = 5}, - [3876] = {.lex_state = 181, .external_lex_state = 4}, - [3877] = {.lex_state = 181, .external_lex_state = 4}, - [3878] = {.lex_state = 181, .external_lex_state = 4}, - [3879] = {.lex_state = 319, .external_lex_state = 4}, - [3880] = {.lex_state = 142, .external_lex_state = 4}, - [3881] = {.lex_state = 184, .external_lex_state = 4}, - [3882] = {.lex_state = 181, .external_lex_state = 4}, - [3883] = {.lex_state = 181, .external_lex_state = 4}, - [3884] = {.lex_state = 181, .external_lex_state = 4}, - [3885] = {.lex_state = 181, .external_lex_state = 4}, - [3886] = {.lex_state = 181, .external_lex_state = 4}, - [3887] = {.lex_state = 181, .external_lex_state = 4}, - [3888] = {.lex_state = 181, .external_lex_state = 4}, - [3889] = {.lex_state = 181, .external_lex_state = 4}, - [3890] = {.lex_state = 181, .external_lex_state = 4}, - [3891] = {.lex_state = 181, .external_lex_state = 4}, - [3892] = {.lex_state = 181, .external_lex_state = 4}, - [3893] = {.lex_state = 181, .external_lex_state = 4}, - [3894] = {.lex_state = 181, .external_lex_state = 4}, - [3895] = {.lex_state = 181, .external_lex_state = 4}, - [3896] = {.lex_state = 181, .external_lex_state = 4}, - [3897] = {.lex_state = 181, .external_lex_state = 4}, - [3898] = {.lex_state = 181, .external_lex_state = 4}, - [3899] = {.lex_state = 181, .external_lex_state = 4}, - [3900] = {.lex_state = 142, .external_lex_state = 4}, - [3901] = {.lex_state = 142, .external_lex_state = 4}, - [3902] = {.lex_state = 142, .external_lex_state = 4}, - [3903] = {.lex_state = 181, .external_lex_state = 4}, - [3904] = {.lex_state = 181, .external_lex_state = 4}, - [3905] = {.lex_state = 323, .external_lex_state = 4}, - [3906] = {.lex_state = 184, .external_lex_state = 4}, - [3907] = {.lex_state = 323, .external_lex_state = 4}, - [3908] = {.lex_state = 184, .external_lex_state = 4}, - [3909] = {.lex_state = 169, .external_lex_state = 5}, - [3910] = {.lex_state = 169, .external_lex_state = 5}, - [3911] = {.lex_state = 323, .external_lex_state = 4}, - [3912] = {.lex_state = 181, .external_lex_state = 4}, - [3913] = {.lex_state = 181, .external_lex_state = 4}, - [3914] = {.lex_state = 319, .external_lex_state = 4}, - [3915] = {.lex_state = 319, .external_lex_state = 4}, - [3916] = {.lex_state = 169, .external_lex_state = 4}, - [3917] = {.lex_state = 323, .external_lex_state = 4}, - [3918] = {.lex_state = 323, .external_lex_state = 4}, - [3919] = {.lex_state = 184, .external_lex_state = 4}, - [3920] = {.lex_state = 184, .external_lex_state = 4}, + [3866] = {.lex_state = 323, .external_lex_state = 4}, + [3867] = {.lex_state = 323, .external_lex_state = 4}, + [3868] = {.lex_state = 169, .external_lex_state = 5}, + [3869] = {.lex_state = 169, .external_lex_state = 5}, + [3870] = {.lex_state = 327, .external_lex_state = 4}, + [3871] = {.lex_state = 327, .external_lex_state = 4}, + [3872] = {.lex_state = 327, .external_lex_state = 4}, + [3873] = {.lex_state = 327, .external_lex_state = 4}, + [3874] = {.lex_state = 327, .external_lex_state = 4}, + [3875] = {.lex_state = 327, .external_lex_state = 4}, + [3876] = {.lex_state = 327, .external_lex_state = 4}, + [3877] = {.lex_state = 327, .external_lex_state = 4}, + [3878] = {.lex_state = 327, .external_lex_state = 4}, + [3879] = {.lex_state = 327, .external_lex_state = 4}, + [3880] = {.lex_state = 327, .external_lex_state = 4}, + [3881] = {.lex_state = 327, .external_lex_state = 4}, + [3882] = {.lex_state = 327, .external_lex_state = 4}, + [3883] = {.lex_state = 327, .external_lex_state = 4}, + [3884] = {.lex_state = 327, .external_lex_state = 4}, + [3885] = {.lex_state = 327, .external_lex_state = 4}, + [3886] = {.lex_state = 327, .external_lex_state = 4}, + [3887] = {.lex_state = 327, .external_lex_state = 4}, + [3888] = {.lex_state = 327, .external_lex_state = 4}, + [3889] = {.lex_state = 327, .external_lex_state = 4}, + [3890] = {.lex_state = 327, .external_lex_state = 4}, + [3891] = {.lex_state = 327, .external_lex_state = 4}, + [3892] = {.lex_state = 327, .external_lex_state = 4}, + [3893] = {.lex_state = 327, .external_lex_state = 4}, + [3894] = {.lex_state = 327, .external_lex_state = 4}, + [3895] = {.lex_state = 327, .external_lex_state = 4}, + [3896] = {.lex_state = 327, .external_lex_state = 4}, + [3897] = {.lex_state = 327, .external_lex_state = 4}, + [3898] = {.lex_state = 327, .external_lex_state = 4}, + [3899] = {.lex_state = 327, .external_lex_state = 4}, + [3900] = {.lex_state = 327, .external_lex_state = 4}, + [3901] = {.lex_state = 327, .external_lex_state = 4}, + [3902] = {.lex_state = 327, .external_lex_state = 4}, + [3903] = {.lex_state = 327, .external_lex_state = 4}, + [3904] = {.lex_state = 327, .external_lex_state = 4}, + [3905] = {.lex_state = 327, .external_lex_state = 4}, + [3906] = {.lex_state = 327, .external_lex_state = 4}, + [3907] = {.lex_state = 327, .external_lex_state = 4}, + [3908] = {.lex_state = 327, .external_lex_state = 4}, + [3909] = {.lex_state = 327, .external_lex_state = 4}, + [3910] = {.lex_state = 327, .external_lex_state = 4}, + [3911] = {.lex_state = 327, .external_lex_state = 4}, + [3912] = {.lex_state = 327, .external_lex_state = 4}, + [3913] = {.lex_state = 327, .external_lex_state = 4}, + [3914] = {.lex_state = 327, .external_lex_state = 4}, + [3915] = {.lex_state = 327, .external_lex_state = 4}, + [3916] = {.lex_state = 327, .external_lex_state = 4}, + [3917] = {.lex_state = 327, .external_lex_state = 4}, + [3918] = {.lex_state = 327, .external_lex_state = 4}, + [3919] = {.lex_state = 142, .external_lex_state = 4}, + [3920] = {.lex_state = 169, .external_lex_state = 5}, [3921] = {.lex_state = 323, .external_lex_state = 4}, - [3922] = {.lex_state = 323, .external_lex_state = 4}, - [3923] = {.lex_state = 323, .external_lex_state = 4}, - [3924] = {.lex_state = 323, .external_lex_state = 4}, - [3925] = {.lex_state = 323, .external_lex_state = 4}, - [3926] = {.lex_state = 184, .external_lex_state = 4}, - [3927] = {.lex_state = 169, .external_lex_state = 5}, - [3928] = {.lex_state = 184, .external_lex_state = 4}, - [3929] = {.lex_state = 184, .external_lex_state = 4}, - [3930] = {.lex_state = 184, .external_lex_state = 4}, - [3931] = {.lex_state = 184, .external_lex_state = 4}, - [3932] = {.lex_state = 184, .external_lex_state = 4}, - [3933] = {.lex_state = 184, .external_lex_state = 4}, - [3934] = {.lex_state = 166, .external_lex_state = 5}, - [3935] = {.lex_state = 319, .external_lex_state = 4}, - [3936] = {.lex_state = 166, .external_lex_state = 5}, - [3937] = {.lex_state = 166, .external_lex_state = 5}, - [3938] = {.lex_state = 166, .external_lex_state = 5}, - [3939] = {.lex_state = 184, .external_lex_state = 4}, - [3940] = {.lex_state = 184, .external_lex_state = 4}, - [3941] = {.lex_state = 184, .external_lex_state = 4}, - [3942] = {.lex_state = 184, .external_lex_state = 4}, - [3943] = {.lex_state = 184, .external_lex_state = 4}, - [3944] = {.lex_state = 184, .external_lex_state = 4}, - [3945] = {.lex_state = 184, .external_lex_state = 4}, - [3946] = {.lex_state = 323, .external_lex_state = 4}, - [3947] = {.lex_state = 323, .external_lex_state = 4}, - [3948] = {.lex_state = 184, .external_lex_state = 4}, - [3949] = {.lex_state = 184, .external_lex_state = 4}, - [3950] = {.lex_state = 184, .external_lex_state = 4}, - [3951] = {.lex_state = 184, .external_lex_state = 4}, - [3952] = {.lex_state = 184, .external_lex_state = 4}, - [3953] = {.lex_state = 184, .external_lex_state = 4}, - [3954] = {.lex_state = 166, .external_lex_state = 5}, - [3955] = {.lex_state = 184, .external_lex_state = 4}, - [3956] = {.lex_state = 319, .external_lex_state = 5}, - [3957] = {.lex_state = 319, .external_lex_state = 5}, - [3958] = {.lex_state = 184, .external_lex_state = 4}, - [3959] = {.lex_state = 319, .external_lex_state = 4}, - [3960] = {.lex_state = 184, .external_lex_state = 4}, - [3961] = {.lex_state = 166, .external_lex_state = 5}, - [3962] = {.lex_state = 166, .external_lex_state = 5}, + [3922] = {.lex_state = 166, .external_lex_state = 5}, + [3923] = {.lex_state = 169, .external_lex_state = 5}, + [3924] = {.lex_state = 327, .external_lex_state = 4}, + [3925] = {.lex_state = 166, .external_lex_state = 5}, + [3926] = {.lex_state = 142, .external_lex_state = 4}, + [3927] = {.lex_state = 142, .external_lex_state = 4}, + [3928] = {.lex_state = 142, .external_lex_state = 4}, + [3929] = {.lex_state = 142, .external_lex_state = 4}, + [3930] = {.lex_state = 142, .external_lex_state = 4}, + [3931] = {.lex_state = 142, .external_lex_state = 4}, + [3932] = {.lex_state = 142, .external_lex_state = 4}, + [3933] = {.lex_state = 142, .external_lex_state = 4}, + [3934] = {.lex_state = 142, .external_lex_state = 4}, + [3935] = {.lex_state = 142, .external_lex_state = 4}, + [3936] = {.lex_state = 142, .external_lex_state = 4}, + [3937] = {.lex_state = 142, .external_lex_state = 4}, + [3938] = {.lex_state = 142, .external_lex_state = 4}, + [3939] = {.lex_state = 142, .external_lex_state = 4}, + [3940] = {.lex_state = 142, .external_lex_state = 4}, + [3941] = {.lex_state = 142, .external_lex_state = 4}, + [3942] = {.lex_state = 142, .external_lex_state = 4}, + [3943] = {.lex_state = 142, .external_lex_state = 4}, + [3944] = {.lex_state = 142, .external_lex_state = 4}, + [3945] = {.lex_state = 142, .external_lex_state = 4}, + [3946] = {.lex_state = 327, .external_lex_state = 4}, + [3947] = {.lex_state = 169, .external_lex_state = 5}, + [3948] = {.lex_state = 323, .external_lex_state = 4}, + [3949] = {.lex_state = 166, .external_lex_state = 5}, + [3950] = {.lex_state = 169, .external_lex_state = 5}, + [3951] = {.lex_state = 166, .external_lex_state = 5}, + [3952] = {.lex_state = 169, .external_lex_state = 5}, + [3953] = {.lex_state = 169, .external_lex_state = 5}, + [3954] = {.lex_state = 169, .external_lex_state = 5}, + [3955] = {.lex_state = 169, .external_lex_state = 5}, + [3956] = {.lex_state = 169, .external_lex_state = 5}, + [3957] = {.lex_state = 169, .external_lex_state = 5}, + [3958] = {.lex_state = 142, .external_lex_state = 4}, + [3959] = {.lex_state = 323, .external_lex_state = 4}, + [3960] = {.lex_state = 323, .external_lex_state = 4}, + [3961] = {.lex_state = 327, .external_lex_state = 4}, + [3962] = {.lex_state = 169, .external_lex_state = 5}, [3963] = {.lex_state = 166, .external_lex_state = 5}, - [3964] = {.lex_state = 166, .external_lex_state = 4}, + [3964] = {.lex_state = 323, .external_lex_state = 4}, [3965] = {.lex_state = 323, .external_lex_state = 4}, - [3966] = {.lex_state = 323, .external_lex_state = 4}, - [3967] = {.lex_state = 323, .external_lex_state = 4}, - [3968] = {.lex_state = 169, .external_lex_state = 5}, - [3969] = {.lex_state = 323, .external_lex_state = 4}, - [3970] = {.lex_state = 323, .external_lex_state = 4}, - [3971] = {.lex_state = 169, .external_lex_state = 5}, - [3972] = {.lex_state = 323, .external_lex_state = 4}, - [3973] = {.lex_state = 319, .external_lex_state = 5}, + [3966] = {.lex_state = 166, .external_lex_state = 5}, + [3967] = {.lex_state = 169, .external_lex_state = 5}, + [3968] = {.lex_state = 323, .external_lex_state = 4}, + [3969] = {.lex_state = 327, .external_lex_state = 4}, + [3970] = {.lex_state = 166, .external_lex_state = 5}, + [3971] = {.lex_state = 166, .external_lex_state = 5}, + [3972] = {.lex_state = 169, .external_lex_state = 5}, + [3973] = {.lex_state = 169, .external_lex_state = 5}, [3974] = {.lex_state = 323, .external_lex_state = 4}, - [3975] = {.lex_state = 181, .external_lex_state = 4}, - [3976] = {.lex_state = 181, .external_lex_state = 4}, - [3977] = {.lex_state = 181, .external_lex_state = 4}, - [3978] = {.lex_state = 181, .external_lex_state = 4}, - [3979] = {.lex_state = 169, .external_lex_state = 5}, - [3980] = {.lex_state = 181, .external_lex_state = 4}, - [3981] = {.lex_state = 181, .external_lex_state = 4}, + [3975] = {.lex_state = 323, .external_lex_state = 4}, + [3976] = {.lex_state = 166, .external_lex_state = 5}, + [3977] = {.lex_state = 166, .external_lex_state = 5}, + [3978] = {.lex_state = 169, .external_lex_state = 5}, + [3979] = {.lex_state = 323, .external_lex_state = 4}, + [3980] = {.lex_state = 169, .external_lex_state = 5}, + [3981] = {.lex_state = 169, .external_lex_state = 5}, [3982] = {.lex_state = 169, .external_lex_state = 5}, - [3983] = {.lex_state = 169, .external_lex_state = 5}, - [3984] = {.lex_state = 169, .external_lex_state = 5}, - [3985] = {.lex_state = 169, .external_lex_state = 5}, - [3986] = {.lex_state = 319, .external_lex_state = 4}, - [3987] = {.lex_state = 169, .external_lex_state = 5}, + [3983] = {.lex_state = 323, .external_lex_state = 5}, + [3984] = {.lex_state = 323, .external_lex_state = 5}, + [3985] = {.lex_state = 166, .external_lex_state = 5}, + [3986] = {.lex_state = 169, .external_lex_state = 5}, + [3987] = {.lex_state = 323, .external_lex_state = 4}, [3988] = {.lex_state = 169, .external_lex_state = 5}, - [3989] = {.lex_state = 184, .external_lex_state = 4}, - [3990] = {.lex_state = 184, .external_lex_state = 4}, - [3991] = {.lex_state = 184, .external_lex_state = 4}, - [3992] = {.lex_state = 319, .external_lex_state = 4}, - [3993] = {.lex_state = 319, .external_lex_state = 4}, - [3994] = {.lex_state = 319, .external_lex_state = 4}, - [3995] = {.lex_state = 184, .external_lex_state = 4}, - [3996] = {.lex_state = 184, .external_lex_state = 4}, - [3997] = {.lex_state = 184, .external_lex_state = 4}, - [3998] = {.lex_state = 169, .external_lex_state = 5}, - [3999] = {.lex_state = 319, .external_lex_state = 4}, - [4000] = {.lex_state = 319, .external_lex_state = 4}, - [4001] = {.lex_state = 319, .external_lex_state = 4}, - [4002] = {.lex_state = 169, .external_lex_state = 5}, - [4003] = {.lex_state = 323, .external_lex_state = 4}, + [3989] = {.lex_state = 169, .external_lex_state = 5}, + [3990] = {.lex_state = 169, .external_lex_state = 5}, + [3991] = {.lex_state = 323, .external_lex_state = 5}, + [3992] = {.lex_state = 142, .external_lex_state = 4}, + [3993] = {.lex_state = 142, .external_lex_state = 4}, + [3994] = {.lex_state = 323, .external_lex_state = 4}, + [3995] = {.lex_state = 323, .external_lex_state = 4}, + [3996] = {.lex_state = 169, .external_lex_state = 5}, + [3997] = {.lex_state = 327, .external_lex_state = 4}, + [3998] = {.lex_state = 327, .external_lex_state = 4}, + [3999] = {.lex_state = 327, .external_lex_state = 4}, + [4000] = {.lex_state = 327, .external_lex_state = 4}, + [4001] = {.lex_state = 166, .external_lex_state = 5}, + [4002] = {.lex_state = 323, .external_lex_state = 4}, + [4003] = {.lex_state = 166, .external_lex_state = 5}, [4004] = {.lex_state = 166, .external_lex_state = 5}, [4005] = {.lex_state = 323, .external_lex_state = 4}, - [4006] = {.lex_state = 169, .external_lex_state = 5}, - [4007] = {.lex_state = 169, .external_lex_state = 5}, - [4008] = {.lex_state = 169, .external_lex_state = 5}, + [4006] = {.lex_state = 323, .external_lex_state = 4}, + [4007] = {.lex_state = 323, .external_lex_state = 4}, + [4008] = {.lex_state = 327, .external_lex_state = 4}, [4009] = {.lex_state = 142, .external_lex_state = 4}, - [4010] = {.lex_state = 319, .external_lex_state = 4}, - [4011] = {.lex_state = 323, .external_lex_state = 4}, + [4010] = {.lex_state = 166, .external_lex_state = 5}, + [4011] = {.lex_state = 166, .external_lex_state = 5}, [4012] = {.lex_state = 142, .external_lex_state = 4}, - [4013] = {.lex_state = 323, .external_lex_state = 4}, - [4014] = {.lex_state = 166, .external_lex_state = 5}, - [4015] = {.lex_state = 323, .external_lex_state = 4}, - [4016] = {.lex_state = 323, .external_lex_state = 4}, - [4017] = {.lex_state = 166, .external_lex_state = 5}, - [4018] = {.lex_state = 319, .external_lex_state = 4}, - [4019] = {.lex_state = 323, .external_lex_state = 4}, - [4020] = {.lex_state = 323, .external_lex_state = 4}, - [4021] = {.lex_state = 323, .external_lex_state = 4}, - [4022] = {.lex_state = 323, .external_lex_state = 4}, - [4023] = {.lex_state = 323, .external_lex_state = 4}, - [4024] = {.lex_state = 323, .external_lex_state = 4}, + [4013] = {.lex_state = 169, .external_lex_state = 5}, + [4014] = {.lex_state = 142, .external_lex_state = 4}, + [4015] = {.lex_state = 166, .external_lex_state = 5}, + [4016] = {.lex_state = 181, .external_lex_state = 4}, + [4017] = {.lex_state = 181, .external_lex_state = 4}, + [4018] = {.lex_state = 181, .external_lex_state = 4}, + [4019] = {.lex_state = 181, .external_lex_state = 4}, + [4020] = {.lex_state = 169, .external_lex_state = 5}, + [4021] = {.lex_state = 169, .external_lex_state = 5}, + [4022] = {.lex_state = 181, .external_lex_state = 4}, + [4023] = {.lex_state = 181, .external_lex_state = 4}, + [4024] = {.lex_state = 169, .external_lex_state = 5}, [4025] = {.lex_state = 169, .external_lex_state = 5}, - [4026] = {.lex_state = 169, .external_lex_state = 5}, + [4026] = {.lex_state = 327, .external_lex_state = 4}, [4027] = {.lex_state = 169, .external_lex_state = 5}, - [4028] = {.lex_state = 169, .external_lex_state = 5}, - [4029] = {.lex_state = 323, .external_lex_state = 4}, - [4030] = {.lex_state = 166, .external_lex_state = 5}, - [4031] = {.lex_state = 319, .external_lex_state = 4}, - [4032] = {.lex_state = 169, .external_lex_state = 5}, - [4033] = {.lex_state = 169, .external_lex_state = 5}, - [4034] = {.lex_state = 169, .external_lex_state = 5}, - [4035] = {.lex_state = 319, .external_lex_state = 4}, - [4036] = {.lex_state = 169, .external_lex_state = 5}, - [4037] = {.lex_state = 169, .external_lex_state = 5}, - [4038] = {.lex_state = 169, .external_lex_state = 5}, - [4039] = {.lex_state = 169, .external_lex_state = 5}, - [4040] = {.lex_state = 169, .external_lex_state = 5}, - [4041] = {.lex_state = 142, .external_lex_state = 4}, - [4042] = {.lex_state = 166, .external_lex_state = 5}, - [4043] = {.lex_state = 319, .external_lex_state = 4}, - [4044] = {.lex_state = 319, .external_lex_state = 4}, - [4045] = {.lex_state = 319, .external_lex_state = 4}, - [4046] = {.lex_state = 142, .external_lex_state = 4}, - [4047] = {.lex_state = 319, .external_lex_state = 4}, - [4048] = {.lex_state = 142, .external_lex_state = 4}, - [4049] = {.lex_state = 319, .external_lex_state = 4}, - [4050] = {.lex_state = 319, .external_lex_state = 4}, - [4051] = {.lex_state = 319, .external_lex_state = 4}, - [4052] = {.lex_state = 319, .external_lex_state = 4}, - [4053] = {.lex_state = 169, .external_lex_state = 5}, - [4054] = {.lex_state = 319, .external_lex_state = 4}, - [4055] = {.lex_state = 319, .external_lex_state = 4}, - [4056] = {.lex_state = 319, .external_lex_state = 4}, - [4057] = {.lex_state = 319, .external_lex_state = 4}, - [4058] = {.lex_state = 319, .external_lex_state = 4}, - [4059] = {.lex_state = 319, .external_lex_state = 4}, - [4060] = {.lex_state = 319, .external_lex_state = 4}, - [4061] = {.lex_state = 319, .external_lex_state = 4}, - [4062] = {.lex_state = 319, .external_lex_state = 4}, - [4063] = {.lex_state = 169, .external_lex_state = 5}, - [4064] = {.lex_state = 142, .external_lex_state = 4}, + [4028] = {.lex_state = 142, .external_lex_state = 4}, + [4029] = {.lex_state = 169, .external_lex_state = 5}, + [4030] = {.lex_state = 181, .external_lex_state = 4}, + [4031] = {.lex_state = 181, .external_lex_state = 4}, + [4032] = {.lex_state = 181, .external_lex_state = 4}, + [4033] = {.lex_state = 181, .external_lex_state = 4}, + [4034] = {.lex_state = 181, .external_lex_state = 4}, + [4035] = {.lex_state = 181, .external_lex_state = 4}, + [4036] = {.lex_state = 181, .external_lex_state = 4}, + [4037] = {.lex_state = 181, .external_lex_state = 4}, + [4038] = {.lex_state = 181, .external_lex_state = 4}, + [4039] = {.lex_state = 323, .external_lex_state = 4}, + [4040] = {.lex_state = 323, .external_lex_state = 4}, + [4041] = {.lex_state = 323, .external_lex_state = 4}, + [4042] = {.lex_state = 181, .external_lex_state = 4}, + [4043] = {.lex_state = 323, .external_lex_state = 4}, + [4044] = {.lex_state = 323, .external_lex_state = 4}, + [4045] = {.lex_state = 323, .external_lex_state = 4}, + [4046] = {.lex_state = 323, .external_lex_state = 4}, + [4047] = {.lex_state = 323, .external_lex_state = 4}, + [4048] = {.lex_state = 323, .external_lex_state = 4}, + [4049] = {.lex_state = 323, .external_lex_state = 4}, + [4050] = {.lex_state = 323, .external_lex_state = 4}, + [4051] = {.lex_state = 323, .external_lex_state = 4}, + [4052] = {.lex_state = 323, .external_lex_state = 4}, + [4053] = {.lex_state = 323, .external_lex_state = 4}, + [4054] = {.lex_state = 323, .external_lex_state = 4}, + [4055] = {.lex_state = 323, .external_lex_state = 4}, + [4056] = {.lex_state = 327, .external_lex_state = 4}, + [4057] = {.lex_state = 142, .external_lex_state = 4}, + [4058] = {.lex_state = 169, .external_lex_state = 5}, + [4059] = {.lex_state = 142, .external_lex_state = 4}, + [4060] = {.lex_state = 327, .external_lex_state = 4}, + [4061] = {.lex_state = 323, .external_lex_state = 4}, + [4062] = {.lex_state = 184, .external_lex_state = 4}, + [4063] = {.lex_state = 323, .external_lex_state = 4}, + [4064] = {.lex_state = 323, .external_lex_state = 4}, [4065] = {.lex_state = 323, .external_lex_state = 4}, [4066] = {.lex_state = 323, .external_lex_state = 4}, - [4067] = {.lex_state = 184, .external_lex_state = 4}, - [4068] = {.lex_state = 184, .external_lex_state = 4}, + [4067] = {.lex_state = 323, .external_lex_state = 4}, + [4068] = {.lex_state = 323, .external_lex_state = 4}, [4069] = {.lex_state = 323, .external_lex_state = 4}, - [4070] = {.lex_state = 323, .external_lex_state = 4}, - [4071] = {.lex_state = 319, .external_lex_state = 4}, - [4072] = {.lex_state = 184, .external_lex_state = 4}, - [4073] = {.lex_state = 184, .external_lex_state = 4}, + [4070] = {.lex_state = 142, .external_lex_state = 4}, + [4071] = {.lex_state = 169, .external_lex_state = 4}, + [4072] = {.lex_state = 323, .external_lex_state = 4}, + [4073] = {.lex_state = 323, .external_lex_state = 4}, [4074] = {.lex_state = 323, .external_lex_state = 4}, - [4075] = {.lex_state = 184, .external_lex_state = 4}, - [4076] = {.lex_state = 184, .external_lex_state = 4}, + [4075] = {.lex_state = 323, .external_lex_state = 4}, + [4076] = {.lex_state = 323, .external_lex_state = 4}, [4077] = {.lex_state = 323, .external_lex_state = 4}, [4078] = {.lex_state = 323, .external_lex_state = 4}, - [4079] = {.lex_state = 319, .external_lex_state = 4}, - [4080] = {.lex_state = 169, .external_lex_state = 5}, - [4081] = {.lex_state = 166, .external_lex_state = 5}, - [4082] = {.lex_state = 166, .external_lex_state = 5}, - [4083] = {.lex_state = 166, .external_lex_state = 5}, + [4079] = {.lex_state = 142, .external_lex_state = 4}, + [4080] = {.lex_state = 187, .external_lex_state = 4}, + [4081] = {.lex_state = 187, .external_lex_state = 4}, + [4082] = {.lex_state = 190, .external_lex_state = 4}, + [4083] = {.lex_state = 190, .external_lex_state = 4}, [4084] = {.lex_state = 323, .external_lex_state = 4}, - [4085] = {.lex_state = 169, .external_lex_state = 5}, - [4086] = {.lex_state = 319, .external_lex_state = 4}, - [4087] = {.lex_state = 169, .external_lex_state = 5}, - [4088] = {.lex_state = 323, .external_lex_state = 4}, - [4089] = {.lex_state = 142, .external_lex_state = 4}, - [4090] = {.lex_state = 166, .external_lex_state = 4}, - [4091] = {.lex_state = 169, .external_lex_state = 4}, - [4092] = {.lex_state = 166, .external_lex_state = 4}, - [4093] = {.lex_state = 319, .external_lex_state = 4}, - [4094] = {.lex_state = 142, .external_lex_state = 4}, - [4095] = {.lex_state = 142, .external_lex_state = 4}, - [4096] = {.lex_state = 142, .external_lex_state = 4}, - [4097] = {.lex_state = 142, .external_lex_state = 4}, - [4098] = {.lex_state = 142, .external_lex_state = 4}, - [4099] = {.lex_state = 166, .external_lex_state = 4}, - [4100] = {.lex_state = 142, .external_lex_state = 4}, - [4101] = {.lex_state = 142, .external_lex_state = 4}, - [4102] = {.lex_state = 142, .external_lex_state = 4}, - [4103] = {.lex_state = 142, .external_lex_state = 4}, - [4104] = {.lex_state = 142, .external_lex_state = 4}, - [4105] = {.lex_state = 142, .external_lex_state = 4}, - [4106] = {.lex_state = 142, .external_lex_state = 4}, - [4107] = {.lex_state = 319, .external_lex_state = 4}, - [4108] = {.lex_state = 142, .external_lex_state = 4}, - [4109] = {.lex_state = 142, .external_lex_state = 4}, - [4110] = {.lex_state = 319, .external_lex_state = 4}, - [4111] = {.lex_state = 319, .external_lex_state = 4}, + [4085] = {.lex_state = 166, .external_lex_state = 4}, + [4086] = {.lex_state = 323, .external_lex_state = 4}, + [4087] = {.lex_state = 190, .external_lex_state = 4}, + [4088] = {.lex_state = 166, .external_lex_state = 4}, + [4089] = {.lex_state = 190, .external_lex_state = 4}, + [4090] = {.lex_state = 323, .external_lex_state = 4}, + [4091] = {.lex_state = 323, .external_lex_state = 4}, + [4092] = {.lex_state = 323, .external_lex_state = 4}, + [4093] = {.lex_state = 323, .external_lex_state = 4}, + [4094] = {.lex_state = 323, .external_lex_state = 4}, + [4095] = {.lex_state = 323, .external_lex_state = 4}, + [4096] = {.lex_state = 187, .external_lex_state = 4}, + [4097] = {.lex_state = 187, .external_lex_state = 4}, + [4098] = {.lex_state = 190, .external_lex_state = 4}, + [4099] = {.lex_state = 190, .external_lex_state = 4}, + [4100] = {.lex_state = 169, .external_lex_state = 4}, + [4101] = {.lex_state = 190, .external_lex_state = 4}, + [4102] = {.lex_state = 190, .external_lex_state = 4}, + [4103] = {.lex_state = 190, .external_lex_state = 4}, + [4104] = {.lex_state = 323, .external_lex_state = 4}, + [4105] = {.lex_state = 190, .external_lex_state = 4}, + [4106] = {.lex_state = 169, .external_lex_state = 4}, + [4107] = {.lex_state = 142, .external_lex_state = 4}, + [4108] = {.lex_state = 190, .external_lex_state = 4}, + [4109] = {.lex_state = 190, .external_lex_state = 4}, + [4110] = {.lex_state = 190, .external_lex_state = 4}, + [4111] = {.lex_state = 190, .external_lex_state = 4}, [4112] = {.lex_state = 142, .external_lex_state = 4}, - [4113] = {.lex_state = 319, .external_lex_state = 4}, - [4114] = {.lex_state = 142, .external_lex_state = 4}, - [4115] = {.lex_state = 142, .external_lex_state = 4}, + [4113] = {.lex_state = 323, .external_lex_state = 4}, + [4114] = {.lex_state = 323, .external_lex_state = 4}, + [4115] = {.lex_state = 166, .external_lex_state = 4}, [4116] = {.lex_state = 142, .external_lex_state = 4}, - [4117] = {.lex_state = 142, .external_lex_state = 4}, - [4118] = {.lex_state = 169, .external_lex_state = 4}, - [4119] = {.lex_state = 169, .external_lex_state = 4}, - [4120] = {.lex_state = 319, .external_lex_state = 4}, - [4121] = {.lex_state = 319, .external_lex_state = 4}, - [4122] = {.lex_state = 166, .external_lex_state = 4}, - [4123] = {.lex_state = 166, .external_lex_state = 4}, - [4124] = {.lex_state = 319, .external_lex_state = 4}, - [4125] = {.lex_state = 187, .external_lex_state = 4}, - [4126] = {.lex_state = 187, .external_lex_state = 4}, - [4127] = {.lex_state = 142, .external_lex_state = 4}, + [4117] = {.lex_state = 190, .external_lex_state = 4}, + [4118] = {.lex_state = 190, .external_lex_state = 4}, + [4119] = {.lex_state = 142, .external_lex_state = 4}, + [4120] = {.lex_state = 142, .external_lex_state = 4}, + [4121] = {.lex_state = 190, .external_lex_state = 4}, + [4122] = {.lex_state = 190, .external_lex_state = 4}, + [4123] = {.lex_state = 323, .external_lex_state = 4}, + [4124] = {.lex_state = 142, .external_lex_state = 4}, + [4125] = {.lex_state = 190, .external_lex_state = 4}, + [4126] = {.lex_state = 166, .external_lex_state = 4}, + [4127] = {.lex_state = 190, .external_lex_state = 4}, [4128] = {.lex_state = 187, .external_lex_state = 4}, - [4129] = {.lex_state = 142, .external_lex_state = 4}, - [4130] = {.lex_state = 319, .external_lex_state = 4}, - [4131] = {.lex_state = 319, .external_lex_state = 4}, - [4132] = {.lex_state = 319, .external_lex_state = 4}, - [4133] = {.lex_state = 319, .external_lex_state = 4}, - [4134] = {.lex_state = 319, .external_lex_state = 4}, - [4135] = {.lex_state = 319, .external_lex_state = 4}, - [4136] = {.lex_state = 187, .external_lex_state = 4}, + [4129] = {.lex_state = 190, .external_lex_state = 4}, + [4130] = {.lex_state = 190, .external_lex_state = 4}, + [4131] = {.lex_state = 166, .external_lex_state = 4}, + [4132] = {.lex_state = 323, .external_lex_state = 4}, + [4133] = {.lex_state = 323, .external_lex_state = 4}, + [4134] = {.lex_state = 166, .external_lex_state = 4}, + [4135] = {.lex_state = 190, .external_lex_state = 4}, + [4136] = {.lex_state = 190, .external_lex_state = 4}, [4137] = {.lex_state = 187, .external_lex_state = 4}, [4138] = {.lex_state = 187, .external_lex_state = 4}, - [4139] = {.lex_state = 319, .external_lex_state = 4}, - [4140] = {.lex_state = 319, .external_lex_state = 4}, - [4141] = {.lex_state = 319, .external_lex_state = 4}, - [4142] = {.lex_state = 319, .external_lex_state = 4}, - [4143] = {.lex_state = 166, .external_lex_state = 4}, - [4144] = {.lex_state = 142, .external_lex_state = 4}, - [4145] = {.lex_state = 142, .external_lex_state = 4}, - [4146] = {.lex_state = 187, .external_lex_state = 4}, - [4147] = {.lex_state = 187, .external_lex_state = 4}, - [4148] = {.lex_state = 187, .external_lex_state = 4}, - [4149] = {.lex_state = 187, .external_lex_state = 4}, - [4150] = {.lex_state = 187, .external_lex_state = 4}, - [4151] = {.lex_state = 187, .external_lex_state = 4}, - [4152] = {.lex_state = 187, .external_lex_state = 4}, - [4153] = {.lex_state = 187, .external_lex_state = 4}, - [4154] = {.lex_state = 187, .external_lex_state = 4}, - [4155] = {.lex_state = 187, .external_lex_state = 4}, + [4139] = {.lex_state = 187, .external_lex_state = 4}, + [4140] = {.lex_state = 142, .external_lex_state = 4}, + [4141] = {.lex_state = 142, .external_lex_state = 4}, + [4142] = {.lex_state = 187, .external_lex_state = 4}, + [4143] = {.lex_state = 142, .external_lex_state = 4}, + [4144] = {.lex_state = 187, .external_lex_state = 4}, + [4145] = {.lex_state = 187, .external_lex_state = 4}, + [4146] = {.lex_state = 142, .external_lex_state = 4}, + [4147] = {.lex_state = 169, .external_lex_state = 4}, + [4148] = {.lex_state = 142, .external_lex_state = 4}, + [4149] = {.lex_state = 323, .external_lex_state = 4}, + [4150] = {.lex_state = 142, .external_lex_state = 4}, + [4151] = {.lex_state = 323, .external_lex_state = 4}, + [4152] = {.lex_state = 323, .external_lex_state = 4}, + [4153] = {.lex_state = 142, .external_lex_state = 4}, + [4154] = {.lex_state = 323, .external_lex_state = 4}, + [4155] = {.lex_state = 323, .external_lex_state = 4}, [4156] = {.lex_state = 142, .external_lex_state = 4}, - [4157] = {.lex_state = 142, .external_lex_state = 4}, - [4158] = {.lex_state = 142, .external_lex_state = 4}, - [4159] = {.lex_state = 142, .external_lex_state = 4}, + [4157] = {.lex_state = 169, .external_lex_state = 4}, + [4158] = {.lex_state = 187, .external_lex_state = 4}, + [4159] = {.lex_state = 166, .external_lex_state = 4}, [4160] = {.lex_state = 142, .external_lex_state = 4}, - [4161] = {.lex_state = 142, .external_lex_state = 4}, - [4162] = {.lex_state = 142, .external_lex_state = 4}, + [4161] = {.lex_state = 323, .external_lex_state = 4}, + [4162] = {.lex_state = 323, .external_lex_state = 4}, [4163] = {.lex_state = 142, .external_lex_state = 4}, - [4164] = {.lex_state = 142, .external_lex_state = 4}, - [4165] = {.lex_state = 142, .external_lex_state = 4}, - [4166] = {.lex_state = 187, .external_lex_state = 4}, - [4167] = {.lex_state = 187, .external_lex_state = 4}, - [4168] = {.lex_state = 166, .external_lex_state = 4}, - [4169] = {.lex_state = 166, .external_lex_state = 4}, + [4164] = {.lex_state = 323, .external_lex_state = 4}, + [4165] = {.lex_state = 190, .external_lex_state = 4}, + [4166] = {.lex_state = 190, .external_lex_state = 4}, + [4167] = {.lex_state = 190, .external_lex_state = 4}, + [4168] = {.lex_state = 142, .external_lex_state = 4}, + [4169] = {.lex_state = 142, .external_lex_state = 4}, [4170] = {.lex_state = 142, .external_lex_state = 4}, [4171] = {.lex_state = 142, .external_lex_state = 4}, - [4172] = {.lex_state = 142, .external_lex_state = 4}, - [4173] = {.lex_state = 142, .external_lex_state = 4}, - [4174] = {.lex_state = 142, .external_lex_state = 4}, - [4175] = {.lex_state = 166, .external_lex_state = 4}, - [4176] = {.lex_state = 166, .external_lex_state = 4}, - [4177] = {.lex_state = 187, .external_lex_state = 4}, - [4178] = {.lex_state = 187, .external_lex_state = 4}, - [4179] = {.lex_state = 166, .external_lex_state = 4}, - [4180] = {.lex_state = 187, .external_lex_state = 4}, - [4181] = {.lex_state = 187, .external_lex_state = 4}, - [4182] = {.lex_state = 187, .external_lex_state = 4}, - [4183] = {.lex_state = 187, .external_lex_state = 4}, - [4184] = {.lex_state = 187, .external_lex_state = 4}, - [4185] = {.lex_state = 187, .external_lex_state = 4}, - [4186] = {.lex_state = 187, .external_lex_state = 4}, - [4187] = {.lex_state = 166, .external_lex_state = 4}, - [4188] = {.lex_state = 142, .external_lex_state = 4}, - [4189] = {.lex_state = 142, .external_lex_state = 4}, + [4172] = {.lex_state = 169, .external_lex_state = 4}, + [4173] = {.lex_state = 169, .external_lex_state = 4}, + [4174] = {.lex_state = 169, .external_lex_state = 4}, + [4175] = {.lex_state = 190, .external_lex_state = 4}, + [4176] = {.lex_state = 190, .external_lex_state = 4}, + [4177] = {.lex_state = 190, .external_lex_state = 4}, + [4178] = {.lex_state = 190, .external_lex_state = 4}, + [4179] = {.lex_state = 190, .external_lex_state = 4}, + [4180] = {.lex_state = 190, .external_lex_state = 4}, + [4181] = {.lex_state = 190, .external_lex_state = 4}, + [4182] = {.lex_state = 190, .external_lex_state = 4}, + [4183] = {.lex_state = 190, .external_lex_state = 4}, + [4184] = {.lex_state = 190, .external_lex_state = 4}, + [4185] = {.lex_state = 323, .external_lex_state = 4}, + [4186] = {.lex_state = 323, .external_lex_state = 4}, + [4187] = {.lex_state = 190, .external_lex_state = 4}, + [4188] = {.lex_state = 166, .external_lex_state = 4}, + [4189] = {.lex_state = 169, .external_lex_state = 4}, [4190] = {.lex_state = 187, .external_lex_state = 4}, - [4191] = {.lex_state = 187, .external_lex_state = 4}, - [4192] = {.lex_state = 319, .external_lex_state = 4}, - [4193] = {.lex_state = 187, .external_lex_state = 4}, - [4194] = {.lex_state = 319, .external_lex_state = 4}, - [4195] = {.lex_state = 319, .external_lex_state = 4}, - [4196] = {.lex_state = 319, .external_lex_state = 4}, - [4197] = {.lex_state = 319, .external_lex_state = 4}, - [4198] = {.lex_state = 187, .external_lex_state = 4}, - [4199] = {.lex_state = 319, .external_lex_state = 4}, - [4200] = {.lex_state = 319, .external_lex_state = 4}, + [4191] = {.lex_state = 323, .external_lex_state = 4}, + [4192] = {.lex_state = 166, .external_lex_state = 4}, + [4193] = {.lex_state = 142, .external_lex_state = 4}, + [4194] = {.lex_state = 166, .external_lex_state = 4}, + [4195] = {.lex_state = 323, .external_lex_state = 4}, + [4196] = {.lex_state = 142, .external_lex_state = 4}, + [4197] = {.lex_state = 142, .external_lex_state = 4}, + [4198] = {.lex_state = 190, .external_lex_state = 4}, + [4199] = {.lex_state = 190, .external_lex_state = 4}, + [4200] = {.lex_state = 187, .external_lex_state = 4}, [4201] = {.lex_state = 187, .external_lex_state = 4}, - [4202] = {.lex_state = 187, .external_lex_state = 4}, + [4202] = {.lex_state = 169, .external_lex_state = 4}, [4203] = {.lex_state = 187, .external_lex_state = 4}, - [4204] = {.lex_state = 142, .external_lex_state = 4}, - [4205] = {.lex_state = 319, .external_lex_state = 4}, - [4206] = {.lex_state = 187, .external_lex_state = 4}, - [4207] = {.lex_state = 169, .external_lex_state = 4}, - [4208] = {.lex_state = 187, .external_lex_state = 4}, - [4209] = {.lex_state = 187, .external_lex_state = 4}, - [4210] = {.lex_state = 187, .external_lex_state = 4}, - [4211] = {.lex_state = 142, .external_lex_state = 4}, - [4212] = {.lex_state = 142, .external_lex_state = 4}, - [4213] = {.lex_state = 142, .external_lex_state = 4}, - [4214] = {.lex_state = 142, .external_lex_state = 4}, - [4215] = {.lex_state = 142, .external_lex_state = 4}, - [4216] = {.lex_state = 142, .external_lex_state = 4}, - [4217] = {.lex_state = 166, .external_lex_state = 4}, + [4204] = {.lex_state = 187, .external_lex_state = 4}, + [4205] = {.lex_state = 190, .external_lex_state = 4}, + [4206] = {.lex_state = 190, .external_lex_state = 4}, + [4207] = {.lex_state = 323, .external_lex_state = 4}, + [4208] = {.lex_state = 323, .external_lex_state = 4}, + [4209] = {.lex_state = 323, .external_lex_state = 4}, + [4210] = {.lex_state = 323, .external_lex_state = 4}, + [4211] = {.lex_state = 323, .external_lex_state = 4}, + [4212] = {.lex_state = 187, .external_lex_state = 4}, + [4213] = {.lex_state = 187, .external_lex_state = 4}, + [4214] = {.lex_state = 187, .external_lex_state = 4}, + [4215] = {.lex_state = 166, .external_lex_state = 4}, + [4216] = {.lex_state = 323, .external_lex_state = 4}, + [4217] = {.lex_state = 187, .external_lex_state = 4}, [4218] = {.lex_state = 187, .external_lex_state = 4}, - [4219] = {.lex_state = 142, .external_lex_state = 4}, - [4220] = {.lex_state = 142, .external_lex_state = 4}, - [4221] = {.lex_state = 187, .external_lex_state = 4}, - [4222] = {.lex_state = 142, .external_lex_state = 4}, - [4223] = {.lex_state = 142, .external_lex_state = 4}, + [4219] = {.lex_state = 187, .external_lex_state = 4}, + [4220] = {.lex_state = 169, .external_lex_state = 4}, + [4221] = {.lex_state = 142, .external_lex_state = 4}, + [4222] = {.lex_state = 187, .external_lex_state = 4}, + [4223] = {.lex_state = 169, .external_lex_state = 4}, [4224] = {.lex_state = 187, .external_lex_state = 4}, [4225] = {.lex_state = 187, .external_lex_state = 4}, [4226] = {.lex_state = 187, .external_lex_state = 4}, [4227] = {.lex_state = 187, .external_lex_state = 4}, [4228] = {.lex_state = 187, .external_lex_state = 4}, [4229] = {.lex_state = 187, .external_lex_state = 4}, - [4230] = {.lex_state = 187, .external_lex_state = 4}, - [4231] = {.lex_state = 187, .external_lex_state = 4}, - [4232] = {.lex_state = 187, .external_lex_state = 4}, - [4233] = {.lex_state = 187, .external_lex_state = 4}, - [4234] = {.lex_state = 187, .external_lex_state = 4}, - [4235] = {.lex_state = 187, .external_lex_state = 4}, - [4236] = {.lex_state = 187, .external_lex_state = 4}, + [4230] = {.lex_state = 323, .external_lex_state = 4}, + [4231] = {.lex_state = 166, .external_lex_state = 4}, + [4232] = {.lex_state = 166, .external_lex_state = 4}, + [4233] = {.lex_state = 323, .external_lex_state = 4}, + [4234] = {.lex_state = 142, .external_lex_state = 4}, + [4235] = {.lex_state = 323, .external_lex_state = 4}, + [4236] = {.lex_state = 142, .external_lex_state = 4}, [4237] = {.lex_state = 142, .external_lex_state = 4}, - [4238] = {.lex_state = 142, .external_lex_state = 4}, - [4239] = {.lex_state = 187, .external_lex_state = 4}, - [4240] = {.lex_state = 166, .external_lex_state = 4}, - [4241] = {.lex_state = 142, .external_lex_state = 4}, - [4242] = {.lex_state = 166, .external_lex_state = 4}, - [4243] = {.lex_state = 166, .external_lex_state = 4}, - [4244] = {.lex_state = 319, .external_lex_state = 4}, - [4245] = {.lex_state = 319, .external_lex_state = 4}, - [4246] = {.lex_state = 319, .external_lex_state = 4}, - [4247] = {.lex_state = 142, .external_lex_state = 4}, + [4238] = {.lex_state = 323, .external_lex_state = 4}, + [4239] = {.lex_state = 166, .external_lex_state = 4}, + [4240] = {.lex_state = 142, .external_lex_state = 4}, + [4241] = {.lex_state = 323, .external_lex_state = 4}, + [4242] = {.lex_state = 142, .external_lex_state = 4}, + [4243] = {.lex_state = 323, .external_lex_state = 4}, + [4244] = {.lex_state = 142, .external_lex_state = 4}, + [4245] = {.lex_state = 166, .external_lex_state = 4}, + [4246] = {.lex_state = 166, .external_lex_state = 4}, + [4247] = {.lex_state = 166, .external_lex_state = 4}, [4248] = {.lex_state = 142, .external_lex_state = 4}, - [4249] = {.lex_state = 142, .external_lex_state = 4}, - [4250] = {.lex_state = 142, .external_lex_state = 4}, + [4249] = {.lex_state = 187, .external_lex_state = 4}, + [4250] = {.lex_state = 187, .external_lex_state = 4}, [4251] = {.lex_state = 142, .external_lex_state = 4}, [4252] = {.lex_state = 142, .external_lex_state = 4}, - [4253] = {.lex_state = 319, .external_lex_state = 4}, + [4253] = {.lex_state = 323, .external_lex_state = 4}, [4254] = {.lex_state = 142, .external_lex_state = 4}, [4255] = {.lex_state = 142, .external_lex_state = 4}, - [4256] = {.lex_state = 142, .external_lex_state = 4}, - [4257] = {.lex_state = 319, .external_lex_state = 4}, - [4258] = {.lex_state = 142, .external_lex_state = 4}, - [4259] = {.lex_state = 319, .external_lex_state = 4}, - [4260] = {.lex_state = 319, .external_lex_state = 4}, - [4261] = {.lex_state = 319, .external_lex_state = 4}, + [4256] = {.lex_state = 166, .external_lex_state = 4}, + [4257] = {.lex_state = 187, .external_lex_state = 4}, + [4258] = {.lex_state = 187, .external_lex_state = 4}, + [4259] = {.lex_state = 142, .external_lex_state = 4}, + [4260] = {.lex_state = 142, .external_lex_state = 4}, + [4261] = {.lex_state = 142, .external_lex_state = 4}, [4262] = {.lex_state = 142, .external_lex_state = 4}, - [4263] = {.lex_state = 319, .external_lex_state = 4}, - [4264] = {.lex_state = 319, .external_lex_state = 4}, - [4265] = {.lex_state = 319, .external_lex_state = 4}, - [4266] = {.lex_state = 319, .external_lex_state = 4}, - [4267] = {.lex_state = 319, .external_lex_state = 4}, - [4268] = {.lex_state = 319, .external_lex_state = 4}, - [4269] = {.lex_state = 319, .external_lex_state = 4}, - [4270] = {.lex_state = 319, .external_lex_state = 4}, - [4271] = {.lex_state = 142, .external_lex_state = 4}, + [4263] = {.lex_state = 187, .external_lex_state = 4}, + [4264] = {.lex_state = 142, .external_lex_state = 4}, + [4265] = {.lex_state = 187, .external_lex_state = 4}, + [4266] = {.lex_state = 142, .external_lex_state = 4}, + [4267] = {.lex_state = 142, .external_lex_state = 4}, + [4268] = {.lex_state = 142, .external_lex_state = 4}, + [4269] = {.lex_state = 142, .external_lex_state = 4}, + [4270] = {.lex_state = 142, .external_lex_state = 4}, + [4271] = {.lex_state = 187, .external_lex_state = 4}, [4272] = {.lex_state = 142, .external_lex_state = 4}, - [4273] = {.lex_state = 166, .external_lex_state = 4}, - [4274] = {.lex_state = 319, .external_lex_state = 4}, - [4275] = {.lex_state = 319, .external_lex_state = 4}, - [4276] = {.lex_state = 166, .external_lex_state = 4}, - [4277] = {.lex_state = 319, .external_lex_state = 4}, - [4278] = {.lex_state = 319, .external_lex_state = 4}, - [4279] = {.lex_state = 319, .external_lex_state = 4}, - [4280] = {.lex_state = 319, .external_lex_state = 4}, - [4281] = {.lex_state = 166, .external_lex_state = 4}, - [4282] = {.lex_state = 166, .external_lex_state = 4}, - [4283] = {.lex_state = 319, .external_lex_state = 4}, - [4284] = {.lex_state = 166, .external_lex_state = 4}, - [4285] = {.lex_state = 319, .external_lex_state = 4}, - [4286] = {.lex_state = 319, .external_lex_state = 4}, - [4287] = {.lex_state = 169, .external_lex_state = 4}, - [4288] = {.lex_state = 169, .external_lex_state = 4}, + [4273] = {.lex_state = 142, .external_lex_state = 4}, + [4274] = {.lex_state = 166, .external_lex_state = 4}, + [4275] = {.lex_state = 169, .external_lex_state = 4}, + [4276] = {.lex_state = 142, .external_lex_state = 4}, + [4277] = {.lex_state = 142, .external_lex_state = 4}, + [4278] = {.lex_state = 142, .external_lex_state = 4}, + [4279] = {.lex_state = 187, .external_lex_state = 4}, + [4280] = {.lex_state = 187, .external_lex_state = 4}, + [4281] = {.lex_state = 142, .external_lex_state = 4}, + [4282] = {.lex_state = 323, .external_lex_state = 4}, + [4283] = {.lex_state = 323, .external_lex_state = 4}, + [4284] = {.lex_state = 323, .external_lex_state = 4}, + [4285] = {.lex_state = 190, .external_lex_state = 4}, + [4286] = {.lex_state = 323, .external_lex_state = 4}, + [4287] = {.lex_state = 323, .external_lex_state = 4}, + [4288] = {.lex_state = 142, .external_lex_state = 4}, [4289] = {.lex_state = 142, .external_lex_state = 4}, [4290] = {.lex_state = 142, .external_lex_state = 4}, [4291] = {.lex_state = 142, .external_lex_state = 4}, [4292] = {.lex_state = 142, .external_lex_state = 4}, - [4293] = {.lex_state = 142, .external_lex_state = 4}, - [4294] = {.lex_state = 142, .external_lex_state = 4}, - [4295] = {.lex_state = 142, .external_lex_state = 4}, - [4296] = {.lex_state = 142, .external_lex_state = 4}, - [4297] = {.lex_state = 142, .external_lex_state = 4}, - [4298] = {.lex_state = 319, .external_lex_state = 4}, - [4299] = {.lex_state = 319, .external_lex_state = 4}, - [4300] = {.lex_state = 319, .external_lex_state = 4}, - [4301] = {.lex_state = 319, .external_lex_state = 4}, - [4302] = {.lex_state = 142, .external_lex_state = 4}, - [4303] = {.lex_state = 142, .external_lex_state = 4}, - [4304] = {.lex_state = 142, .external_lex_state = 4}, - [4305] = {.lex_state = 190, .external_lex_state = 4}, - [4306] = {.lex_state = 319, .external_lex_state = 4}, - [4307] = {.lex_state = 190, .external_lex_state = 4}, - [4308] = {.lex_state = 142, .external_lex_state = 4}, + [4293] = {.lex_state = 169, .external_lex_state = 4}, + [4294] = {.lex_state = 323, .external_lex_state = 4}, + [4295] = {.lex_state = 323, .external_lex_state = 4}, + [4296] = {.lex_state = 323, .external_lex_state = 4}, + [4297] = {.lex_state = 323, .external_lex_state = 4}, + [4298] = {.lex_state = 323, .external_lex_state = 4}, + [4299] = {.lex_state = 323, .external_lex_state = 4}, + [4300] = {.lex_state = 323, .external_lex_state = 4}, + [4301] = {.lex_state = 323, .external_lex_state = 4}, + [4302] = {.lex_state = 323, .external_lex_state = 4}, + [4303] = {.lex_state = 323, .external_lex_state = 4}, + [4304] = {.lex_state = 323, .external_lex_state = 4}, + [4305] = {.lex_state = 323, .external_lex_state = 4}, + [4306] = {.lex_state = 323, .external_lex_state = 4}, + [4307] = {.lex_state = 323, .external_lex_state = 4}, + [4308] = {.lex_state = 323, .external_lex_state = 4}, [4309] = {.lex_state = 169, .external_lex_state = 4}, - [4310] = {.lex_state = 319, .external_lex_state = 4}, - [4311] = {.lex_state = 169, .external_lex_state = 4}, - [4312] = {.lex_state = 169, .external_lex_state = 4}, - [4313] = {.lex_state = 319, .external_lex_state = 4}, - [4314] = {.lex_state = 319, .external_lex_state = 4}, - [4315] = {.lex_state = 190, .external_lex_state = 4}, - [4316] = {.lex_state = 190, .external_lex_state = 4}, - [4317] = {.lex_state = 319, .external_lex_state = 4}, - [4318] = {.lex_state = 190, .external_lex_state = 4}, - [4319] = {.lex_state = 190, .external_lex_state = 4}, - [4320] = {.lex_state = 319, .external_lex_state = 4}, - [4321] = {.lex_state = 319, .external_lex_state = 4}, + [4310] = {.lex_state = 323, .external_lex_state = 4}, + [4311] = {.lex_state = 142, .external_lex_state = 4}, + [4312] = {.lex_state = 142, .external_lex_state = 4}, + [4313] = {.lex_state = 169, .external_lex_state = 4}, + [4314] = {.lex_state = 169, .external_lex_state = 4}, + [4315] = {.lex_state = 142, .external_lex_state = 4}, + [4316] = {.lex_state = 142, .external_lex_state = 4}, + [4317] = {.lex_state = 323, .external_lex_state = 4}, + [4318] = {.lex_state = 323, .external_lex_state = 4}, + [4319] = {.lex_state = 142, .external_lex_state = 4}, + [4320] = {.lex_state = 323, .external_lex_state = 4}, + [4321] = {.lex_state = 166, .external_lex_state = 4}, [4322] = {.lex_state = 187, .external_lex_state = 4}, - [4323] = {.lex_state = 187, .external_lex_state = 4}, - [4324] = {.lex_state = 319, .external_lex_state = 4}, - [4325] = {.lex_state = 142, .external_lex_state = 4}, - [4326] = {.lex_state = 142, .external_lex_state = 4}, - [4327] = {.lex_state = 319, .external_lex_state = 4}, - [4328] = {.lex_state = 190, .external_lex_state = 4}, - [4329] = {.lex_state = 190, .external_lex_state = 4}, - [4330] = {.lex_state = 142, .external_lex_state = 4}, - [4331] = {.lex_state = 142, .external_lex_state = 4}, - [4332] = {.lex_state = 319, .external_lex_state = 4}, - [4333] = {.lex_state = 319, .external_lex_state = 4}, - [4334] = {.lex_state = 319, .external_lex_state = 4}, - [4335] = {.lex_state = 319, .external_lex_state = 4}, - [4336] = {.lex_state = 319, .external_lex_state = 4}, - [4337] = {.lex_state = 169, .external_lex_state = 4}, - [4338] = {.lex_state = 142, .external_lex_state = 4}, - [4339] = {.lex_state = 169, .external_lex_state = 4}, - [4340] = {.lex_state = 169, .external_lex_state = 4}, - [4341] = {.lex_state = 169, .external_lex_state = 4}, - [4342] = {.lex_state = 169, .external_lex_state = 4}, - [4343] = {.lex_state = 319, .external_lex_state = 4}, - [4344] = {.lex_state = 190, .external_lex_state = 4}, - [4345] = {.lex_state = 190, .external_lex_state = 4}, - [4346] = {.lex_state = 190, .external_lex_state = 4}, - [4347] = {.lex_state = 190, .external_lex_state = 4}, - [4348] = {.lex_state = 190, .external_lex_state = 4}, - [4349] = {.lex_state = 190, .external_lex_state = 4}, - [4350] = {.lex_state = 190, .external_lex_state = 4}, - [4351] = {.lex_state = 190, .external_lex_state = 4}, - [4352] = {.lex_state = 190, .external_lex_state = 4}, - [4353] = {.lex_state = 190, .external_lex_state = 4}, - [4354] = {.lex_state = 190, .external_lex_state = 4}, - [4355] = {.lex_state = 190, .external_lex_state = 4}, - [4356] = {.lex_state = 190, .external_lex_state = 4}, - [4357] = {.lex_state = 190, .external_lex_state = 4}, - [4358] = {.lex_state = 319, .external_lex_state = 4}, + [4323] = {.lex_state = 323, .external_lex_state = 4}, + [4324] = {.lex_state = 187, .external_lex_state = 4}, + [4325] = {.lex_state = 187, .external_lex_state = 4}, + [4326] = {.lex_state = 187, .external_lex_state = 4}, + [4327] = {.lex_state = 187, .external_lex_state = 4}, + [4328] = {.lex_state = 166, .external_lex_state = 4}, + [4329] = {.lex_state = 166, .external_lex_state = 4}, + [4330] = {.lex_state = 323, .external_lex_state = 4}, + [4331] = {.lex_state = 323, .external_lex_state = 4}, + [4332] = {.lex_state = 323, .external_lex_state = 4}, + [4333] = {.lex_state = 323, .external_lex_state = 4}, + [4334] = {.lex_state = 323, .external_lex_state = 4}, + [4335] = {.lex_state = 323, .external_lex_state = 4}, + [4336] = {.lex_state = 323, .external_lex_state = 4}, + [4337] = {.lex_state = 323, .external_lex_state = 4}, + [4338] = {.lex_state = 323, .external_lex_state = 4}, + [4339] = {.lex_state = 323, .external_lex_state = 4}, + [4340] = {.lex_state = 323, .external_lex_state = 4}, + [4341] = {.lex_state = 323, .external_lex_state = 4}, + [4342] = {.lex_state = 323, .external_lex_state = 4}, + [4343] = {.lex_state = 187, .external_lex_state = 4}, + [4344] = {.lex_state = 187, .external_lex_state = 4}, + [4345] = {.lex_state = 187, .external_lex_state = 4}, + [4346] = {.lex_state = 142, .external_lex_state = 4}, + [4347] = {.lex_state = 142, .external_lex_state = 4}, + [4348] = {.lex_state = 187, .external_lex_state = 4}, + [4349] = {.lex_state = 187, .external_lex_state = 4}, + [4350] = {.lex_state = 323, .external_lex_state = 4}, + [4351] = {.lex_state = 187, .external_lex_state = 4}, + [4352] = {.lex_state = 142, .external_lex_state = 4}, + [4353] = {.lex_state = 142, .external_lex_state = 4}, + [4354] = {.lex_state = 142, .external_lex_state = 4}, + [4355] = {.lex_state = 323, .external_lex_state = 4}, + [4356] = {.lex_state = 166, .external_lex_state = 4}, + [4357] = {.lex_state = 142, .external_lex_state = 4}, + [4358] = {.lex_state = 190, .external_lex_state = 4}, [4359] = {.lex_state = 190, .external_lex_state = 4}, - [4360] = {.lex_state = 319, .external_lex_state = 4}, - [4361] = {.lex_state = 319, .external_lex_state = 4}, - [4362] = {.lex_state = 190, .external_lex_state = 4}, - [4363] = {.lex_state = 319, .external_lex_state = 4}, - [4364] = {.lex_state = 319, .external_lex_state = 4}, - [4365] = {.lex_state = 169, .external_lex_state = 4}, - [4366] = {.lex_state = 187, .external_lex_state = 4}, - [4367] = {.lex_state = 187, .external_lex_state = 4}, - [4368] = {.lex_state = 319, .external_lex_state = 4}, - [4369] = {.lex_state = 319, .external_lex_state = 4}, - [4370] = {.lex_state = 319, .external_lex_state = 4}, - [4371] = {.lex_state = 319, .external_lex_state = 4}, - [4372] = {.lex_state = 319, .external_lex_state = 4}, - [4373] = {.lex_state = 319, .external_lex_state = 4}, - [4374] = {.lex_state = 319, .external_lex_state = 4}, - [4375] = {.lex_state = 319, .external_lex_state = 4}, - [4376] = {.lex_state = 319, .external_lex_state = 4}, - [4377] = {.lex_state = 319, .external_lex_state = 4}, - [4378] = {.lex_state = 319, .external_lex_state = 4}, - [4379] = {.lex_state = 319, .external_lex_state = 4}, - [4380] = {.lex_state = 319, .external_lex_state = 4}, - [4381] = {.lex_state = 319, .external_lex_state = 4}, - [4382] = {.lex_state = 319, .external_lex_state = 4}, - [4383] = {.lex_state = 319, .external_lex_state = 4}, - [4384] = {.lex_state = 319, .external_lex_state = 4}, - [4385] = {.lex_state = 319, .external_lex_state = 4}, - [4386] = {.lex_state = 319, .external_lex_state = 4}, - [4387] = {.lex_state = 319, .external_lex_state = 4}, - [4388] = {.lex_state = 187, .external_lex_state = 4}, - [4389] = {.lex_state = 166, .external_lex_state = 4}, - [4390] = {.lex_state = 187, .external_lex_state = 4}, - [4391] = {.lex_state = 142, .external_lex_state = 4}, - [4392] = {.lex_state = 169, .external_lex_state = 4}, + [4360] = {.lex_state = 142, .external_lex_state = 4}, + [4361] = {.lex_state = 142, .external_lex_state = 4}, + [4362] = {.lex_state = 187, .external_lex_state = 4}, + [4363] = {.lex_state = 190, .external_lex_state = 4}, + [4364] = {.lex_state = 166, .external_lex_state = 4}, + [4365] = {.lex_state = 323, .external_lex_state = 4}, + [4366] = {.lex_state = 323, .external_lex_state = 4}, + [4367] = {.lex_state = 323, .external_lex_state = 4}, + [4368] = {.lex_state = 323, .external_lex_state = 4}, + [4369] = {.lex_state = 187, .external_lex_state = 4}, + [4370] = {.lex_state = 323, .external_lex_state = 4}, + [4371] = {.lex_state = 323, .external_lex_state = 4}, + [4372] = {.lex_state = 142, .external_lex_state = 4}, + [4373] = {.lex_state = 142, .external_lex_state = 4}, + [4374] = {.lex_state = 190, .external_lex_state = 4}, + [4375] = {.lex_state = 190, .external_lex_state = 4}, + [4376] = {.lex_state = 142, .external_lex_state = 4}, + [4377] = {.lex_state = 190, .external_lex_state = 4}, + [4378] = {.lex_state = 190, .external_lex_state = 4}, + [4379] = {.lex_state = 187, .external_lex_state = 4}, + [4380] = {.lex_state = 190, .external_lex_state = 4}, + [4381] = {.lex_state = 169, .external_lex_state = 4}, + [4382] = {.lex_state = 323, .external_lex_state = 4}, + [4383] = {.lex_state = 142, .external_lex_state = 4}, + [4384] = {.lex_state = 142, .external_lex_state = 4}, + [4385] = {.lex_state = 190, .external_lex_state = 4}, + [4386] = {.lex_state = 187, .external_lex_state = 4}, + [4387] = {.lex_state = 169, .external_lex_state = 4}, + [4388] = {.lex_state = 169, .external_lex_state = 4}, + [4389] = {.lex_state = 190, .external_lex_state = 4}, + [4390] = {.lex_state = 142, .external_lex_state = 4}, + [4391] = {.lex_state = 323, .external_lex_state = 4}, + [4392] = {.lex_state = 187, .external_lex_state = 4}, [4393] = {.lex_state = 187, .external_lex_state = 4}, - [4394] = {.lex_state = 187, .external_lex_state = 4}, - [4395] = {.lex_state = 319, .external_lex_state = 4}, - [4396] = {.lex_state = 169, .external_lex_state = 4}, - [4397] = {.lex_state = 319, .external_lex_state = 4}, - [4398] = {.lex_state = 319, .external_lex_state = 4}, - [4399] = {.lex_state = 319, .external_lex_state = 4}, - [4400] = {.lex_state = 319, .external_lex_state = 4}, - [4401] = {.lex_state = 319, .external_lex_state = 4}, - [4402] = {.lex_state = 319, .external_lex_state = 4}, - [4403] = {.lex_state = 319, .external_lex_state = 4}, - [4404] = {.lex_state = 319, .external_lex_state = 4}, - [4405] = {.lex_state = 319, .external_lex_state = 4}, - [4406] = {.lex_state = 319, .external_lex_state = 4}, - [4407] = {.lex_state = 319, .external_lex_state = 4}, - [4408] = {.lex_state = 319, .external_lex_state = 4}, - [4409] = {.lex_state = 319, .external_lex_state = 4}, + [4394] = {.lex_state = 190, .external_lex_state = 4}, + [4395] = {.lex_state = 169, .external_lex_state = 4}, + [4396] = {.lex_state = 323, .external_lex_state = 4}, + [4397] = {.lex_state = 190, .external_lex_state = 4}, + [4398] = {.lex_state = 190, .external_lex_state = 4}, + [4399] = {.lex_state = 190, .external_lex_state = 4}, + [4400] = {.lex_state = 187, .external_lex_state = 4}, + [4401] = {.lex_state = 142, .external_lex_state = 4}, + [4402] = {.lex_state = 323, .external_lex_state = 4}, + [4403] = {.lex_state = 323, .external_lex_state = 4}, + [4404] = {.lex_state = 187, .external_lex_state = 4}, + [4405] = {.lex_state = 166, .external_lex_state = 4}, + [4406] = {.lex_state = 142, .external_lex_state = 4}, + [4407] = {.lex_state = 190, .external_lex_state = 4}, + [4408] = {.lex_state = 190, .external_lex_state = 4}, + [4409] = {.lex_state = 190, .external_lex_state = 4}, [4410] = {.lex_state = 190, .external_lex_state = 4}, - [4411] = {.lex_state = 190, .external_lex_state = 4}, - [4412] = {.lex_state = 190, .external_lex_state = 4}, - [4413] = {.lex_state = 190, .external_lex_state = 4}, - [4414] = {.lex_state = 190, .external_lex_state = 4}, - [4415] = {.lex_state = 190, .external_lex_state = 4}, - [4416] = {.lex_state = 190, .external_lex_state = 4}, - [4417] = {.lex_state = 319, .external_lex_state = 4}, - [4418] = {.lex_state = 319, .external_lex_state = 4}, - [4419] = {.lex_state = 319, .external_lex_state = 4}, - [4420] = {.lex_state = 319, .external_lex_state = 4}, - [4421] = {.lex_state = 190, .external_lex_state = 4}, - [4422] = {.lex_state = 319, .external_lex_state = 4}, - [4423] = {.lex_state = 319, .external_lex_state = 4}, - [4424] = {.lex_state = 190, .external_lex_state = 4}, - [4425] = {.lex_state = 190, .external_lex_state = 4}, - [4426] = {.lex_state = 190, .external_lex_state = 4}, - [4427] = {.lex_state = 190, .external_lex_state = 4}, - [4428] = {.lex_state = 190, .external_lex_state = 4}, - [4429] = {.lex_state = 319, .external_lex_state = 4}, - [4430] = {.lex_state = 190, .external_lex_state = 4}, - [4431] = {.lex_state = 190, .external_lex_state = 4}, - [4432] = {.lex_state = 190, .external_lex_state = 4}, - [4433] = {.lex_state = 169, .external_lex_state = 4}, - [4434] = {.lex_state = 190, .external_lex_state = 4}, - [4435] = {.lex_state = 190, .external_lex_state = 4}, - [4436] = {.lex_state = 190, .external_lex_state = 4}, - [4437] = {.lex_state = 190, .external_lex_state = 4}, - [4438] = {.lex_state = 169, .external_lex_state = 4}, - [4439] = {.lex_state = 319, .external_lex_state = 4}, - [4440] = {.lex_state = 190, .external_lex_state = 4}, - [4441] = {.lex_state = 190, .external_lex_state = 4}, - [4442] = {.lex_state = 142, .external_lex_state = 4}, - [4443] = {.lex_state = 190, .external_lex_state = 4}, - [4444] = {.lex_state = 190, .external_lex_state = 4}, - [4445] = {.lex_state = 190, .external_lex_state = 4}, - [4446] = {.lex_state = 190, .external_lex_state = 4}, - [4447] = {.lex_state = 190, .external_lex_state = 4}, - [4448] = {.lex_state = 190, .external_lex_state = 4}, - [4449] = {.lex_state = 190, .external_lex_state = 4}, - [4450] = {.lex_state = 190, .external_lex_state = 4}, - [4451] = {.lex_state = 319, .external_lex_state = 4}, - [4452] = {.lex_state = 319, .external_lex_state = 4}, - [4453] = {.lex_state = 169, .external_lex_state = 4}, - [4454] = {.lex_state = 166, .external_lex_state = 4}, - [4455] = {.lex_state = 169, .external_lex_state = 4}, - [4456] = {.lex_state = 319, .external_lex_state = 4}, - [4457] = {.lex_state = 319, .external_lex_state = 4}, - [4458] = {.lex_state = 319, .external_lex_state = 4}, - [4459] = {.lex_state = 319, .external_lex_state = 4}, - [4460] = {.lex_state = 319, .external_lex_state = 4}, - [4461] = {.lex_state = 319, .external_lex_state = 4}, - [4462] = {.lex_state = 319, .external_lex_state = 4}, - [4463] = {.lex_state = 319, .external_lex_state = 4}, - [4464] = {.lex_state = 319, .external_lex_state = 4}, - [4465] = {.lex_state = 319, .external_lex_state = 4}, - [4466] = {.lex_state = 319, .external_lex_state = 4}, - [4467] = {.lex_state = 319, .external_lex_state = 4}, - [4468] = {.lex_state = 319, .external_lex_state = 4}, - [4469] = {.lex_state = 190, .external_lex_state = 4}, - [4470] = {.lex_state = 190, .external_lex_state = 4}, - [4471] = {.lex_state = 190, .external_lex_state = 4}, - [4472] = {.lex_state = 190, .external_lex_state = 4}, - [4473] = {.lex_state = 190, .external_lex_state = 4}, - [4474] = {.lex_state = 190, .external_lex_state = 4}, - [4475] = {.lex_state = 190, .external_lex_state = 4}, - [4476] = {.lex_state = 190, .external_lex_state = 4}, - [4477] = {.lex_state = 169, .external_lex_state = 4}, - [4478] = {.lex_state = 169, .external_lex_state = 4}, - [4479] = {.lex_state = 169, .external_lex_state = 4}, - [4480] = {.lex_state = 166, .external_lex_state = 4}, - [4481] = {.lex_state = 166, .external_lex_state = 4}, - [4482] = {.lex_state = 319, .external_lex_state = 4}, - [4483] = {.lex_state = 319, .external_lex_state = 4}, - [4484] = {.lex_state = 166, .external_lex_state = 4}, - [4485] = {.lex_state = 319, .external_lex_state = 4}, - [4486] = {.lex_state = 169, .external_lex_state = 4}, + [4411] = {.lex_state = 187, .external_lex_state = 4}, + [4412] = {.lex_state = 187, .external_lex_state = 4}, + [4413] = {.lex_state = 187, .external_lex_state = 4}, + [4414] = {.lex_state = 142, .external_lex_state = 4}, + [4415] = {.lex_state = 323, .external_lex_state = 4}, + [4416] = {.lex_state = 169, .external_lex_state = 4}, + [4417] = {.lex_state = 323, .external_lex_state = 4}, + [4418] = {.lex_state = 323, .external_lex_state = 4}, + [4419] = {.lex_state = 323, .external_lex_state = 4}, + [4420] = {.lex_state = 323, .external_lex_state = 4}, + [4421] = {.lex_state = 323, .external_lex_state = 4}, + [4422] = {.lex_state = 323, .external_lex_state = 4}, + [4423] = {.lex_state = 323, .external_lex_state = 4}, + [4424] = {.lex_state = 323, .external_lex_state = 4}, + [4425] = {.lex_state = 323, .external_lex_state = 4}, + [4426] = {.lex_state = 323, .external_lex_state = 4}, + [4427] = {.lex_state = 323, .external_lex_state = 4}, + [4428] = {.lex_state = 323, .external_lex_state = 4}, + [4429] = {.lex_state = 323, .external_lex_state = 4}, + [4430] = {.lex_state = 323, .external_lex_state = 4}, + [4431] = {.lex_state = 323, .external_lex_state = 4}, + [4432] = {.lex_state = 323, .external_lex_state = 4}, + [4433] = {.lex_state = 142, .external_lex_state = 4}, + [4434] = {.lex_state = 142, .external_lex_state = 4}, + [4435] = {.lex_state = 142, .external_lex_state = 4}, + [4436] = {.lex_state = 169, .external_lex_state = 4}, + [4437] = {.lex_state = 323, .external_lex_state = 4}, + [4438] = {.lex_state = 323, .external_lex_state = 4}, + [4439] = {.lex_state = 323, .external_lex_state = 4}, + [4440] = {.lex_state = 142, .external_lex_state = 4}, + [4441] = {.lex_state = 323, .external_lex_state = 4}, + [4442] = {.lex_state = 323, .external_lex_state = 4}, + [4443] = {.lex_state = 323, .external_lex_state = 4}, + [4444] = {.lex_state = 142, .external_lex_state = 4}, + [4445] = {.lex_state = 142, .external_lex_state = 4}, + [4446] = {.lex_state = 169, .external_lex_state = 4}, + [4447] = {.lex_state = 323, .external_lex_state = 4}, + [4448] = {.lex_state = 323, .external_lex_state = 4}, + [4449] = {.lex_state = 323, .external_lex_state = 4}, + [4450] = {.lex_state = 142, .external_lex_state = 4}, + [4451] = {.lex_state = 323, .external_lex_state = 4}, + [4452] = {.lex_state = 323, .external_lex_state = 4}, + [4453] = {.lex_state = 323, .external_lex_state = 4}, + [4454] = {.lex_state = 142, .external_lex_state = 4}, + [4455] = {.lex_state = 323, .external_lex_state = 4}, + [4456] = {.lex_state = 169, .external_lex_state = 4}, + [4457] = {.lex_state = 166, .external_lex_state = 4}, + [4458] = {.lex_state = 166, .external_lex_state = 4}, + [4459] = {.lex_state = 166, .external_lex_state = 4}, + [4460] = {.lex_state = 323, .external_lex_state = 4}, + [4461] = {.lex_state = 166, .external_lex_state = 4}, + [4462] = {.lex_state = 166, .external_lex_state = 4}, + [4463] = {.lex_state = 169, .external_lex_state = 4}, + [4464] = {.lex_state = 166, .external_lex_state = 4}, + [4465] = {.lex_state = 166, .external_lex_state = 4}, + [4466] = {.lex_state = 166, .external_lex_state = 4}, + [4467] = {.lex_state = 166, .external_lex_state = 4}, + [4468] = {.lex_state = 166, .external_lex_state = 4}, + [4469] = {.lex_state = 166, .external_lex_state = 4}, + [4470] = {.lex_state = 166, .external_lex_state = 4}, + [4471] = {.lex_state = 323, .external_lex_state = 4}, + [4472] = {.lex_state = 166, .external_lex_state = 4}, + [4473] = {.lex_state = 166, .external_lex_state = 4}, + [4474] = {.lex_state = 166, .external_lex_state = 4}, + [4475] = {.lex_state = 166, .external_lex_state = 4}, + [4476] = {.lex_state = 166, .external_lex_state = 4}, + [4477] = {.lex_state = 166, .external_lex_state = 4}, + [4478] = {.lex_state = 166, .external_lex_state = 4}, + [4479] = {.lex_state = 323, .external_lex_state = 4}, + [4480] = {.lex_state = 323, .external_lex_state = 4}, + [4481] = {.lex_state = 323, .external_lex_state = 4}, + [4482] = {.lex_state = 166, .external_lex_state = 4}, + [4483] = {.lex_state = 169, .external_lex_state = 4}, + [4484] = {.lex_state = 169, .external_lex_state = 4}, + [4485] = {.lex_state = 169, .external_lex_state = 4}, + [4486] = {.lex_state = 323, .external_lex_state = 4}, [4487] = {.lex_state = 169, .external_lex_state = 4}, - [4488] = {.lex_state = 166, .external_lex_state = 4}, + [4488] = {.lex_state = 169, .external_lex_state = 4}, [4489] = {.lex_state = 169, .external_lex_state = 4}, - [4490] = {.lex_state = 166, .external_lex_state = 4}, - [4491] = {.lex_state = 169, .external_lex_state = 4}, + [4490] = {.lex_state = 323, .external_lex_state = 4}, + [4491] = {.lex_state = 166, .external_lex_state = 4}, [4492] = {.lex_state = 169, .external_lex_state = 4}, - [4493] = {.lex_state = 169, .external_lex_state = 4}, - [4494] = {.lex_state = 169, .external_lex_state = 4}, - [4495] = {.lex_state = 169, .external_lex_state = 4}, - [4496] = {.lex_state = 319, .external_lex_state = 4}, - [4497] = {.lex_state = 319, .external_lex_state = 4}, - [4498] = {.lex_state = 169, .external_lex_state = 4}, - [4499] = {.lex_state = 319, .external_lex_state = 4}, - [4500] = {.lex_state = 319, .external_lex_state = 4}, - [4501] = {.lex_state = 319, .external_lex_state = 4}, - [4502] = {.lex_state = 169, .external_lex_state = 4}, - [4503] = {.lex_state = 319, .external_lex_state = 4}, - [4504] = {.lex_state = 319, .external_lex_state = 4}, - [4505] = {.lex_state = 319, .external_lex_state = 4}, - [4506] = {.lex_state = 319, .external_lex_state = 4}, - [4507] = {.lex_state = 319, .external_lex_state = 4}, - [4508] = {.lex_state = 319, .external_lex_state = 4}, - [4509] = {.lex_state = 319, .external_lex_state = 4}, - [4510] = {.lex_state = 319, .external_lex_state = 4}, - [4511] = {.lex_state = 319, .external_lex_state = 4}, + [4493] = {.lex_state = 166, .external_lex_state = 4}, + [4494] = {.lex_state = 166, .external_lex_state = 4}, + [4495] = {.lex_state = 323, .external_lex_state = 4}, + [4496] = {.lex_state = 166, .external_lex_state = 4}, + [4497] = {.lex_state = 169, .external_lex_state = 4}, + [4498] = {.lex_state = 166, .external_lex_state = 4}, + [4499] = {.lex_state = 169, .external_lex_state = 4}, + [4500] = {.lex_state = 169, .external_lex_state = 4}, + [4501] = {.lex_state = 166, .external_lex_state = 4}, + [4502] = {.lex_state = 166, .external_lex_state = 4}, + [4503] = {.lex_state = 166, .external_lex_state = 4}, + [4504] = {.lex_state = 166, .external_lex_state = 4}, + [4505] = {.lex_state = 323, .external_lex_state = 4}, + [4506] = {.lex_state = 166, .external_lex_state = 4}, + [4507] = {.lex_state = 323, .external_lex_state = 4}, + [4508] = {.lex_state = 166, .external_lex_state = 4}, + [4509] = {.lex_state = 166, .external_lex_state = 4}, + [4510] = {.lex_state = 166, .external_lex_state = 4}, + [4511] = {.lex_state = 169, .external_lex_state = 4}, [4512] = {.lex_state = 166, .external_lex_state = 4}, [4513] = {.lex_state = 166, .external_lex_state = 4}, - [4514] = {.lex_state = 166, .external_lex_state = 4}, - [4515] = {.lex_state = 166, .external_lex_state = 4}, - [4516] = {.lex_state = 169, .external_lex_state = 4}, - [4517] = {.lex_state = 169, .external_lex_state = 4}, - [4518] = {.lex_state = 169, .external_lex_state = 4}, - [4519] = {.lex_state = 169, .external_lex_state = 4}, - [4520] = {.lex_state = 166, .external_lex_state = 4}, - [4521] = {.lex_state = 169, .external_lex_state = 4}, - [4522] = {.lex_state = 319, .external_lex_state = 4}, - [4523] = {.lex_state = 166, .external_lex_state = 4}, - [4524] = {.lex_state = 319, .external_lex_state = 4}, - [4525] = {.lex_state = 166, .external_lex_state = 4}, - [4526] = {.lex_state = 169, .external_lex_state = 4}, - [4527] = {.lex_state = 169, .external_lex_state = 4}, - [4528] = {.lex_state = 169, .external_lex_state = 4}, - [4529] = {.lex_state = 169, .external_lex_state = 4}, - [4530] = {.lex_state = 169, .external_lex_state = 4}, - [4531] = {.lex_state = 169, .external_lex_state = 4}, - [4532] = {.lex_state = 169, .external_lex_state = 4}, - [4533] = {.lex_state = 169, .external_lex_state = 4}, - [4534] = {.lex_state = 169, .external_lex_state = 4}, - [4535] = {.lex_state = 169, .external_lex_state = 4}, + [4514] = {.lex_state = 323, .external_lex_state = 4}, + [4515] = {.lex_state = 323, .external_lex_state = 4}, + [4516] = {.lex_state = 323, .external_lex_state = 4}, + [4517] = {.lex_state = 323, .external_lex_state = 4}, + [4518] = {.lex_state = 323, .external_lex_state = 4}, + [4519] = {.lex_state = 323, .external_lex_state = 4}, + [4520] = {.lex_state = 323, .external_lex_state = 4}, + [4521] = {.lex_state = 323, .external_lex_state = 4}, + [4522] = {.lex_state = 323, .external_lex_state = 4}, + [4523] = {.lex_state = 323, .external_lex_state = 4}, + [4524] = {.lex_state = 323, .external_lex_state = 4}, + [4525] = {.lex_state = 323, .external_lex_state = 4}, + [4526] = {.lex_state = 323, .external_lex_state = 4}, + [4527] = {.lex_state = 323, .external_lex_state = 4}, + [4528] = {.lex_state = 166, .external_lex_state = 4}, + [4529] = {.lex_state = 166, .external_lex_state = 4}, + [4530] = {.lex_state = 166, .external_lex_state = 4}, + [4531] = {.lex_state = 166, .external_lex_state = 4}, + [4532] = {.lex_state = 166, .external_lex_state = 4}, + [4533] = {.lex_state = 166, .external_lex_state = 4}, + [4534] = {.lex_state = 166, .external_lex_state = 4}, + [4535] = {.lex_state = 166, .external_lex_state = 4}, [4536] = {.lex_state = 169, .external_lex_state = 4}, - [4537] = {.lex_state = 166, .external_lex_state = 4}, - [4538] = {.lex_state = 319, .external_lex_state = 4}, - [4539] = {.lex_state = 319, .external_lex_state = 4}, + [4537] = {.lex_state = 169, .external_lex_state = 4}, + [4538] = {.lex_state = 166, .external_lex_state = 4}, + [4539] = {.lex_state = 166, .external_lex_state = 4}, [4540] = {.lex_state = 166, .external_lex_state = 4}, [4541] = {.lex_state = 166, .external_lex_state = 4}, - [4542] = {.lex_state = 142, .external_lex_state = 4}, + [4542] = {.lex_state = 169, .external_lex_state = 4}, [4543] = {.lex_state = 169, .external_lex_state = 4}, - [4544] = {.lex_state = 166, .external_lex_state = 4}, - [4545] = {.lex_state = 166, .external_lex_state = 4}, - [4546] = {.lex_state = 166, .external_lex_state = 4}, - [4547] = {.lex_state = 166, .external_lex_state = 4}, - [4548] = {.lex_state = 319, .external_lex_state = 4}, - [4549] = {.lex_state = 319, .external_lex_state = 4}, - [4550] = {.lex_state = 169, .external_lex_state = 4}, - [4551] = {.lex_state = 319, .external_lex_state = 4}, - [4552] = {.lex_state = 166, .external_lex_state = 4}, - [4553] = {.lex_state = 169, .external_lex_state = 4}, - [4554] = {.lex_state = 169, .external_lex_state = 4}, - [4555] = {.lex_state = 169, .external_lex_state = 4}, - [4556] = {.lex_state = 169, .external_lex_state = 4}, - [4557] = {.lex_state = 319, .external_lex_state = 4}, - [4558] = {.lex_state = 169, .external_lex_state = 4}, - [4559] = {.lex_state = 319, .external_lex_state = 4}, - [4560] = {.lex_state = 319, .external_lex_state = 4}, - [4561] = {.lex_state = 319, .external_lex_state = 4}, - [4562] = {.lex_state = 169, .external_lex_state = 4}, - [4563] = {.lex_state = 169, .external_lex_state = 4}, - [4564] = {.lex_state = 169, .external_lex_state = 4}, - [4565] = {.lex_state = 319, .external_lex_state = 4}, - [4566] = {.lex_state = 319, .external_lex_state = 4}, - [4567] = {.lex_state = 319, .external_lex_state = 4}, - [4568] = {.lex_state = 319, .external_lex_state = 4}, - [4569] = {.lex_state = 319, .external_lex_state = 4}, - [4570] = {.lex_state = 319, .external_lex_state = 4}, - [4571] = {.lex_state = 319, .external_lex_state = 4}, - [4572] = {.lex_state = 319, .external_lex_state = 4}, - [4573] = {.lex_state = 319, .external_lex_state = 4}, - [4574] = {.lex_state = 319, .external_lex_state = 4}, - [4575] = {.lex_state = 319, .external_lex_state = 4}, - [4576] = {.lex_state = 319, .external_lex_state = 4}, - [4577] = {.lex_state = 166, .external_lex_state = 4}, - [4578] = {.lex_state = 319, .external_lex_state = 4}, - [4579] = {.lex_state = 319, .external_lex_state = 4}, - [4580] = {.lex_state = 319, .external_lex_state = 4}, - [4581] = {.lex_state = 166, .external_lex_state = 4}, - [4582] = {.lex_state = 142, .external_lex_state = 4}, - [4583] = {.lex_state = 319, .external_lex_state = 4}, - [4584] = {.lex_state = 166, .external_lex_state = 4}, + [4544] = {.lex_state = 169, .external_lex_state = 4}, + [4545] = {.lex_state = 323, .external_lex_state = 4}, + [4546] = {.lex_state = 323, .external_lex_state = 4}, + [4547] = {.lex_state = 323, .external_lex_state = 4}, + [4548] = {.lex_state = 323, .external_lex_state = 4}, + [4549] = {.lex_state = 323, .external_lex_state = 4}, + [4550] = {.lex_state = 323, .external_lex_state = 4}, + [4551] = {.lex_state = 323, .external_lex_state = 4}, + [4552] = {.lex_state = 323, .external_lex_state = 4}, + [4553] = {.lex_state = 166, .external_lex_state = 4}, + [4554] = {.lex_state = 166, .external_lex_state = 4}, + [4555] = {.lex_state = 166, .external_lex_state = 4}, + [4556] = {.lex_state = 166, .external_lex_state = 4}, + [4557] = {.lex_state = 166, .external_lex_state = 4}, + [4558] = {.lex_state = 166, .external_lex_state = 4}, + [4559] = {.lex_state = 169, .external_lex_state = 4}, + [4560] = {.lex_state = 166, .external_lex_state = 4}, + [4561] = {.lex_state = 166, .external_lex_state = 4}, + [4562] = {.lex_state = 166, .external_lex_state = 4}, + [4563] = {.lex_state = 166, .external_lex_state = 4}, + [4564] = {.lex_state = 323, .external_lex_state = 4}, + [4565] = {.lex_state = 323, .external_lex_state = 4}, + [4566] = {.lex_state = 323, .external_lex_state = 4}, + [4567] = {.lex_state = 323, .external_lex_state = 4}, + [4568] = {.lex_state = 323, .external_lex_state = 4}, + [4569] = {.lex_state = 166, .external_lex_state = 4}, + [4570] = {.lex_state = 323, .external_lex_state = 4}, + [4571] = {.lex_state = 323, .external_lex_state = 4}, + [4572] = {.lex_state = 323, .external_lex_state = 4}, + [4573] = {.lex_state = 323, .external_lex_state = 4}, + [4574] = {.lex_state = 323, .external_lex_state = 4}, + [4575] = {.lex_state = 323, .external_lex_state = 4}, + [4576] = {.lex_state = 323, .external_lex_state = 4}, + [4577] = {.lex_state = 323, .external_lex_state = 4}, + [4578] = {.lex_state = 166, .external_lex_state = 4}, + [4579] = {.lex_state = 169, .external_lex_state = 4}, + [4580] = {.lex_state = 169, .external_lex_state = 4}, + [4581] = {.lex_state = 169, .external_lex_state = 4}, + [4582] = {.lex_state = 169, .external_lex_state = 4}, + [4583] = {.lex_state = 169, .external_lex_state = 4}, + [4584] = {.lex_state = 169, .external_lex_state = 4}, [4585] = {.lex_state = 169, .external_lex_state = 4}, - [4586] = {.lex_state = 166, .external_lex_state = 4}, - [4587] = {.lex_state = 166, .external_lex_state = 4}, + [4586] = {.lex_state = 169, .external_lex_state = 4}, + [4587] = {.lex_state = 169, .external_lex_state = 4}, [4588] = {.lex_state = 166, .external_lex_state = 4}, [4589] = {.lex_state = 169, .external_lex_state = 4}, - [4590] = {.lex_state = 319, .external_lex_state = 4}, - [4591] = {.lex_state = 166, .external_lex_state = 4}, + [4590] = {.lex_state = 166, .external_lex_state = 4}, + [4591] = {.lex_state = 169, .external_lex_state = 4}, [4592] = {.lex_state = 166, .external_lex_state = 4}, - [4593] = {.lex_state = 169, .external_lex_state = 4}, - [4594] = {.lex_state = 169, .external_lex_state = 4}, + [4593] = {.lex_state = 166, .external_lex_state = 4}, + [4594] = {.lex_state = 166, .external_lex_state = 4}, [4595] = {.lex_state = 169, .external_lex_state = 4}, - [4596] = {.lex_state = 319, .external_lex_state = 4}, - [4597] = {.lex_state = 319, .external_lex_state = 4}, - [4598] = {.lex_state = 319, .external_lex_state = 4}, - [4599] = {.lex_state = 319, .external_lex_state = 4}, - [4600] = {.lex_state = 166, .external_lex_state = 4}, + [4596] = {.lex_state = 169, .external_lex_state = 4}, + [4597] = {.lex_state = 169, .external_lex_state = 4}, + [4598] = {.lex_state = 169, .external_lex_state = 4}, + [4599] = {.lex_state = 169, .external_lex_state = 4}, + [4600] = {.lex_state = 169, .external_lex_state = 4}, [4601] = {.lex_state = 169, .external_lex_state = 4}, - [4602] = {.lex_state = 166, .external_lex_state = 4}, - [4603] = {.lex_state = 166, .external_lex_state = 4}, - [4604] = {.lex_state = 166, .external_lex_state = 4}, + [4602] = {.lex_state = 169, .external_lex_state = 4}, + [4603] = {.lex_state = 169, .external_lex_state = 4}, + [4604] = {.lex_state = 169, .external_lex_state = 4}, [4605] = {.lex_state = 169, .external_lex_state = 4}, - [4606] = {.lex_state = 169, .external_lex_state = 4}, + [4606] = {.lex_state = 142, .external_lex_state = 4}, [4607] = {.lex_state = 169, .external_lex_state = 4}, - [4608] = {.lex_state = 166, .external_lex_state = 4}, - [4609] = {.lex_state = 319, .external_lex_state = 4}, - [4610] = {.lex_state = 319, .external_lex_state = 4}, - [4611] = {.lex_state = 319, .external_lex_state = 4}, + [4608] = {.lex_state = 169, .external_lex_state = 4}, + [4609] = {.lex_state = 323, .external_lex_state = 4}, + [4610] = {.lex_state = 166, .external_lex_state = 4}, + [4611] = {.lex_state = 166, .external_lex_state = 4}, [4612] = {.lex_state = 169, .external_lex_state = 4}, - [4613] = {.lex_state = 169, .external_lex_state = 4}, - [4614] = {.lex_state = 169, .external_lex_state = 4}, + [4613] = {.lex_state = 323, .external_lex_state = 4}, + [4614] = {.lex_state = 166, .external_lex_state = 4}, [4615] = {.lex_state = 169, .external_lex_state = 4}, - [4616] = {.lex_state = 169, .external_lex_state = 4}, - [4617] = {.lex_state = 319, .external_lex_state = 4}, - [4618] = {.lex_state = 166, .external_lex_state = 4}, - [4619] = {.lex_state = 169, .external_lex_state = 4}, - [4620] = {.lex_state = 166, .external_lex_state = 4}, - [4621] = {.lex_state = 166, .external_lex_state = 4}, - [4622] = {.lex_state = 169, .external_lex_state = 4}, - [4623] = {.lex_state = 169, .external_lex_state = 4}, - [4624] = {.lex_state = 166, .external_lex_state = 4}, - [4625] = {.lex_state = 166, .external_lex_state = 4}, - [4626] = {.lex_state = 319, .external_lex_state = 4}, - [4627] = {.lex_state = 319, .external_lex_state = 4}, - [4628] = {.lex_state = 319, .external_lex_state = 4}, - [4629] = {.lex_state = 319, .external_lex_state = 4}, - [4630] = {.lex_state = 319, .external_lex_state = 4}, - [4631] = {.lex_state = 169, .external_lex_state = 4}, - [4632] = {.lex_state = 319, .external_lex_state = 4}, - [4633] = {.lex_state = 319, .external_lex_state = 4}, - [4634] = {.lex_state = 319, .external_lex_state = 4}, - [4635] = {.lex_state = 319, .external_lex_state = 4}, - [4636] = {.lex_state = 319, .external_lex_state = 4}, - [4637] = {.lex_state = 319, .external_lex_state = 4}, - [4638] = {.lex_state = 319, .external_lex_state = 4}, + [4616] = {.lex_state = 323, .external_lex_state = 4}, + [4617] = {.lex_state = 323, .external_lex_state = 4}, + [4618] = {.lex_state = 323, .external_lex_state = 4}, + [4619] = {.lex_state = 323, .external_lex_state = 4}, + [4620] = {.lex_state = 323, .external_lex_state = 4}, + [4621] = {.lex_state = 323, .external_lex_state = 4}, + [4622] = {.lex_state = 323, .external_lex_state = 4}, + [4623] = {.lex_state = 323, .external_lex_state = 4}, + [4624] = {.lex_state = 323, .external_lex_state = 4}, + [4625] = {.lex_state = 323, .external_lex_state = 4}, + [4626] = {.lex_state = 323, .external_lex_state = 4}, + [4627] = {.lex_state = 323, .external_lex_state = 4}, + [4628] = {.lex_state = 323, .external_lex_state = 4}, + [4629] = {.lex_state = 323, .external_lex_state = 4}, + [4630] = {.lex_state = 323, .external_lex_state = 4}, + [4631] = {.lex_state = 142, .external_lex_state = 4}, + [4632] = {.lex_state = 323, .external_lex_state = 4}, + [4633] = {.lex_state = 169, .external_lex_state = 4}, + [4634] = {.lex_state = 323, .external_lex_state = 4}, + [4635] = {.lex_state = 323, .external_lex_state = 4}, + [4636] = {.lex_state = 323, .external_lex_state = 4}, + [4637] = {.lex_state = 323, .external_lex_state = 4}, + [4638] = {.lex_state = 166, .external_lex_state = 4}, [4639] = {.lex_state = 166, .external_lex_state = 4}, - [4640] = {.lex_state = 166, .external_lex_state = 4}, + [4640] = {.lex_state = 169, .external_lex_state = 4}, [4641] = {.lex_state = 169, .external_lex_state = 4}, - [4642] = {.lex_state = 319, .external_lex_state = 4}, - [4643] = {.lex_state = 319, .external_lex_state = 4}, - [4644] = {.lex_state = 319, .external_lex_state = 4}, - [4645] = {.lex_state = 166, .external_lex_state = 4}, - [4646] = {.lex_state = 166, .external_lex_state = 4}, - [4647] = {.lex_state = 166, .external_lex_state = 4}, - [4648] = {.lex_state = 166, .external_lex_state = 4}, - [4649] = {.lex_state = 166, .external_lex_state = 4}, - [4650] = {.lex_state = 169, .external_lex_state = 4}, - [4651] = {.lex_state = 166, .external_lex_state = 4}, - [4652] = {.lex_state = 169, .external_lex_state = 4}, - [4653] = {.lex_state = 169, .external_lex_state = 4}, - [4654] = {.lex_state = 169, .external_lex_state = 4}, - [4655] = {.lex_state = 169, .external_lex_state = 4}, - [4656] = {.lex_state = 169, .external_lex_state = 4}, - [4657] = {.lex_state = 166, .external_lex_state = 4}, - [4658] = {.lex_state = 166, .external_lex_state = 4}, + [4642] = {.lex_state = 323, .external_lex_state = 4}, + [4643] = {.lex_state = 323, .external_lex_state = 4}, + [4644] = {.lex_state = 323, .external_lex_state = 4}, + [4645] = {.lex_state = 323, .external_lex_state = 4}, + [4646] = {.lex_state = 323, .external_lex_state = 4}, + [4647] = {.lex_state = 323, .external_lex_state = 4}, + [4648] = {.lex_state = 323, .external_lex_state = 4}, + [4649] = {.lex_state = 323, .external_lex_state = 4}, + [4650] = {.lex_state = 323, .external_lex_state = 4}, + [4651] = {.lex_state = 323, .external_lex_state = 4}, + [4652] = {.lex_state = 323, .external_lex_state = 4}, + [4653] = {.lex_state = 323, .external_lex_state = 4}, + [4654] = {.lex_state = 323, .external_lex_state = 4}, + [4655] = {.lex_state = 323, .external_lex_state = 4}, + [4656] = {.lex_state = 323, .external_lex_state = 4}, + [4657] = {.lex_state = 323, .external_lex_state = 4}, + [4658] = {.lex_state = 169, .external_lex_state = 4}, [4659] = {.lex_state = 169, .external_lex_state = 4}, [4660] = {.lex_state = 166, .external_lex_state = 4}, - [4661] = {.lex_state = 166, .external_lex_state = 4}, + [4661] = {.lex_state = 169, .external_lex_state = 4}, [4662] = {.lex_state = 166, .external_lex_state = 4}, - [4663] = {.lex_state = 169, .external_lex_state = 4}, - [4664] = {.lex_state = 166, .external_lex_state = 4}, - [4665] = {.lex_state = 166, .external_lex_state = 4}, - [4666] = {.lex_state = 319, .external_lex_state = 4}, - [4667] = {.lex_state = 166, .external_lex_state = 4}, - [4668] = {.lex_state = 166, .external_lex_state = 4}, - [4669] = {.lex_state = 166, .external_lex_state = 4}, - [4670] = {.lex_state = 166, .external_lex_state = 4}, + [4663] = {.lex_state = 166, .external_lex_state = 4}, + [4664] = {.lex_state = 323, .external_lex_state = 4}, + [4665] = {.lex_state = 169, .external_lex_state = 4}, + [4666] = {.lex_state = 166, .external_lex_state = 4}, + [4667] = {.lex_state = 169, .external_lex_state = 4}, + [4668] = {.lex_state = 169, .external_lex_state = 4}, + [4669] = {.lex_state = 142, .external_lex_state = 4}, + [4670] = {.lex_state = 169, .external_lex_state = 4}, [4671] = {.lex_state = 166, .external_lex_state = 4}, [4672] = {.lex_state = 166, .external_lex_state = 4}, - [4673] = {.lex_state = 319, .external_lex_state = 4}, - [4674] = {.lex_state = 166, .external_lex_state = 4}, - [4675] = {.lex_state = 166, .external_lex_state = 4}, - [4676] = {.lex_state = 142, .external_lex_state = 4}, + [4673] = {.lex_state = 166, .external_lex_state = 4}, + [4674] = {.lex_state = 323, .external_lex_state = 4}, + [4675] = {.lex_state = 323, .external_lex_state = 4}, + [4676] = {.lex_state = 169, .external_lex_state = 4}, [4677] = {.lex_state = 169, .external_lex_state = 4}, - [4678] = {.lex_state = 166, .external_lex_state = 4}, - [4679] = {.lex_state = 319, .external_lex_state = 4}, - [4680] = {.lex_state = 166, .external_lex_state = 4}, + [4678] = {.lex_state = 323, .external_lex_state = 4}, + [4679] = {.lex_state = 169, .external_lex_state = 4}, + [4680] = {.lex_state = 169, .external_lex_state = 4}, [4681] = {.lex_state = 166, .external_lex_state = 4}, - [4682] = {.lex_state = 166, .external_lex_state = 4}, - [4683] = {.lex_state = 166, .external_lex_state = 4}, - [4684] = {.lex_state = 169, .external_lex_state = 4}, - [4685] = {.lex_state = 166, .external_lex_state = 4}, - [4686] = {.lex_state = 169, .external_lex_state = 4}, - [4687] = {.lex_state = 166, .external_lex_state = 4}, - [4688] = {.lex_state = 319, .external_lex_state = 4}, - [4689] = {.lex_state = 166, .external_lex_state = 4}, - [4690] = {.lex_state = 169, .external_lex_state = 4}, - [4691] = {.lex_state = 169, .external_lex_state = 4}, - [4692] = {.lex_state = 319, .external_lex_state = 4}, - [4693] = {.lex_state = 319, .external_lex_state = 4}, - [4694] = {.lex_state = 319, .external_lex_state = 4}, - [4695] = {.lex_state = 319, .external_lex_state = 4}, - [4696] = {.lex_state = 319, .external_lex_state = 4}, - [4697] = {.lex_state = 319, .external_lex_state = 4}, - [4698] = {.lex_state = 319, .external_lex_state = 4}, - [4699] = {.lex_state = 319, .external_lex_state = 4}, - [4700] = {.lex_state = 319, .external_lex_state = 4}, - [4701] = {.lex_state = 319, .external_lex_state = 4}, - [4702] = {.lex_state = 319, .external_lex_state = 4}, - [4703] = {.lex_state = 319, .external_lex_state = 4}, - [4704] = {.lex_state = 319, .external_lex_state = 4}, - [4705] = {.lex_state = 319, .external_lex_state = 4}, - [4706] = {.lex_state = 319, .external_lex_state = 4}, - [4707] = {.lex_state = 319, .external_lex_state = 4}, - [4708] = {.lex_state = 319, .external_lex_state = 4}, - [4709] = {.lex_state = 166, .external_lex_state = 4}, + [4682] = {.lex_state = 169, .external_lex_state = 4}, + [4683] = {.lex_state = 323, .external_lex_state = 4}, + [4684] = {.lex_state = 166, .external_lex_state = 4}, + [4685] = {.lex_state = 169, .external_lex_state = 4}, + [4686] = {.lex_state = 166, .external_lex_state = 4}, + [4687] = {.lex_state = 323, .external_lex_state = 4}, + [4688] = {.lex_state = 323, .external_lex_state = 4}, + [4689] = {.lex_state = 323, .external_lex_state = 4}, + [4690] = {.lex_state = 323, .external_lex_state = 4}, + [4691] = {.lex_state = 166, .external_lex_state = 4}, + [4692] = {.lex_state = 169, .external_lex_state = 4}, + [4693] = {.lex_state = 169, .external_lex_state = 4}, + [4694] = {.lex_state = 169, .external_lex_state = 4}, + [4695] = {.lex_state = 169, .external_lex_state = 4}, + [4696] = {.lex_state = 169, .external_lex_state = 4}, + [4697] = {.lex_state = 169, .external_lex_state = 4}, + [4698] = {.lex_state = 323, .external_lex_state = 4}, + [4699] = {.lex_state = 166, .external_lex_state = 4}, + [4700] = {.lex_state = 323, .external_lex_state = 4}, + [4701] = {.lex_state = 166, .external_lex_state = 4}, + [4702] = {.lex_state = 323, .external_lex_state = 4}, + [4703] = {.lex_state = 169, .external_lex_state = 4}, + [4704] = {.lex_state = 169, .external_lex_state = 4}, + [4705] = {.lex_state = 166, .external_lex_state = 4}, + [4706] = {.lex_state = 169, .external_lex_state = 4}, + [4707] = {.lex_state = 169, .external_lex_state = 4}, + [4708] = {.lex_state = 166, .external_lex_state = 4}, + [4709] = {.lex_state = 169, .external_lex_state = 4}, [4710] = {.lex_state = 166, .external_lex_state = 4}, - [4711] = {.lex_state = 166, .external_lex_state = 4}, + [4711] = {.lex_state = 323, .external_lex_state = 4}, [4712] = {.lex_state = 166, .external_lex_state = 4}, - [4713] = {.lex_state = 166, .external_lex_state = 4}, + [4713] = {.lex_state = 169, .external_lex_state = 4}, [4714] = {.lex_state = 169, .external_lex_state = 4}, [4715] = {.lex_state = 169, .external_lex_state = 4}, - [4716] = {.lex_state = 166, .external_lex_state = 4}, + [4716] = {.lex_state = 169, .external_lex_state = 4}, [4717] = {.lex_state = 169, .external_lex_state = 4}, - [4718] = {.lex_state = 166, .external_lex_state = 4}, - [4719] = {.lex_state = 166, .external_lex_state = 4}, - [4720] = {.lex_state = 166, .external_lex_state = 4}, - [4721] = {.lex_state = 166, .external_lex_state = 4}, - [4722] = {.lex_state = 166, .external_lex_state = 4}, - [4723] = {.lex_state = 166, .external_lex_state = 4}, - [4724] = {.lex_state = 166, .external_lex_state = 4}, - [4725] = {.lex_state = 319, .external_lex_state = 4}, - [4726] = {.lex_state = 319, .external_lex_state = 4}, - [4727] = {.lex_state = 166, .external_lex_state = 4}, - [4728] = {.lex_state = 319, .external_lex_state = 4}, - [4729] = {.lex_state = 319, .external_lex_state = 4}, - [4730] = {.lex_state = 319, .external_lex_state = 4}, - [4731] = {.lex_state = 319, .external_lex_state = 4}, - [4732] = {.lex_state = 166, .external_lex_state = 4}, - [4733] = {.lex_state = 169, .external_lex_state = 4}, - [4734] = {.lex_state = 319, .external_lex_state = 4}, - [4735] = {.lex_state = 169, .external_lex_state = 4}, - [4736] = {.lex_state = 166, .external_lex_state = 4}, - [4737] = {.lex_state = 166, .external_lex_state = 4}, - [4738] = {.lex_state = 166, .external_lex_state = 4}, - [4739] = {.lex_state = 166, .external_lex_state = 4}, - [4740] = {.lex_state = 169, .external_lex_state = 4}, - [4741] = {.lex_state = 169, .external_lex_state = 4}, - [4742] = {.lex_state = 169, .external_lex_state = 4}, + [4718] = {.lex_state = 169, .external_lex_state = 4}, + [4719] = {.lex_state = 142, .external_lex_state = 4}, + [4720] = {.lex_state = 169, .external_lex_state = 4}, + [4721] = {.lex_state = 169, .external_lex_state = 4}, + [4722] = {.lex_state = 169, .external_lex_state = 4}, + [4723] = {.lex_state = 169, .external_lex_state = 4}, + [4724] = {.lex_state = 169, .external_lex_state = 4}, + [4725] = {.lex_state = 169, .external_lex_state = 4}, + [4726] = {.lex_state = 169, .external_lex_state = 4}, + [4727] = {.lex_state = 169, .external_lex_state = 4}, + [4728] = {.lex_state = 166, .external_lex_state = 4}, + [4729] = {.lex_state = 323, .external_lex_state = 4}, + [4730] = {.lex_state = 323, .external_lex_state = 4}, + [4731] = {.lex_state = 142, .external_lex_state = 4}, + [4732] = {.lex_state = 169, .external_lex_state = 4}, + [4733] = {.lex_state = 142, .external_lex_state = 4}, + [4734] = {.lex_state = 169, .external_lex_state = 4}, + [4735] = {.lex_state = 323, .external_lex_state = 4}, + [4736] = {.lex_state = 323, .external_lex_state = 4}, + [4737] = {.lex_state = 323, .external_lex_state = 4}, + [4738] = {.lex_state = 323, .external_lex_state = 4}, + [4739] = {.lex_state = 169, .external_lex_state = 4}, + [4740] = {.lex_state = 323, .external_lex_state = 4}, + [4741] = {.lex_state = 323, .external_lex_state = 4}, + [4742] = {.lex_state = 323, .external_lex_state = 4}, [4743] = {.lex_state = 169, .external_lex_state = 4}, [4744] = {.lex_state = 169, .external_lex_state = 4}, - [4745] = {.lex_state = 169, .external_lex_state = 4}, - [4746] = {.lex_state = 169, .external_lex_state = 4}, + [4745] = {.lex_state = 323, .external_lex_state = 4}, + [4746] = {.lex_state = 323, .external_lex_state = 4}, [4747] = {.lex_state = 169, .external_lex_state = 4}, - [4748] = {.lex_state = 169, .external_lex_state = 4}, + [4748] = {.lex_state = 323, .external_lex_state = 4}, [4749] = {.lex_state = 169, .external_lex_state = 4}, - [4750] = {.lex_state = 169, .external_lex_state = 4}, + [4750] = {.lex_state = 323, .external_lex_state = 4}, [4751] = {.lex_state = 169, .external_lex_state = 4}, - [4752] = {.lex_state = 319, .external_lex_state = 4}, + [4752] = {.lex_state = 323, .external_lex_state = 4}, [4753] = {.lex_state = 169, .external_lex_state = 4}, - [4754] = {.lex_state = 319, .external_lex_state = 4}, - [4755] = {.lex_state = 319, .external_lex_state = 4}, - [4756] = {.lex_state = 169, .external_lex_state = 4}, - [4757] = {.lex_state = 319, .external_lex_state = 4}, - [4758] = {.lex_state = 169, .external_lex_state = 4}, - [4759] = {.lex_state = 169, .external_lex_state = 4}, - [4760] = {.lex_state = 169, .external_lex_state = 4}, - [4761] = {.lex_state = 169, .external_lex_state = 4}, - [4762] = {.lex_state = 169, .external_lex_state = 4}, - [4763] = {.lex_state = 169, .external_lex_state = 4}, - [4764] = {.lex_state = 169, .external_lex_state = 4}, - [4765] = {.lex_state = 169, .external_lex_state = 4}, - [4766] = {.lex_state = 169, .external_lex_state = 4}, - [4767] = {.lex_state = 169, .external_lex_state = 4}, - [4768] = {.lex_state = 319, .external_lex_state = 4}, - [4769] = {.lex_state = 169, .external_lex_state = 4}, - [4770] = {.lex_state = 169, .external_lex_state = 4}, - [4771] = {.lex_state = 169, .external_lex_state = 4}, - [4772] = {.lex_state = 319, .external_lex_state = 4}, - [4773] = {.lex_state = 169, .external_lex_state = 4}, - [4774] = {.lex_state = 169, .external_lex_state = 4}, - [4775] = {.lex_state = 169, .external_lex_state = 4}, - [4776] = {.lex_state = 319, .external_lex_state = 4}, - [4777] = {.lex_state = 319, .external_lex_state = 4}, - [4778] = {.lex_state = 319, .external_lex_state = 4}, - [4779] = {.lex_state = 169, .external_lex_state = 4}, - [4780] = {.lex_state = 319, .external_lex_state = 4}, - [4781] = {.lex_state = 169, .external_lex_state = 4}, - [4782] = {.lex_state = 319, .external_lex_state = 4}, - [4783] = {.lex_state = 319, .external_lex_state = 4}, - [4784] = {.lex_state = 319, .external_lex_state = 4}, - [4785] = {.lex_state = 142, .external_lex_state = 4}, + [4754] = {.lex_state = 323, .external_lex_state = 4}, + [4755] = {.lex_state = 169, .external_lex_state = 4}, + [4756] = {.lex_state = 323, .external_lex_state = 4}, + [4757] = {.lex_state = 169, .external_lex_state = 4}, + [4758] = {.lex_state = 323, .external_lex_state = 4}, + [4759] = {.lex_state = 323, .external_lex_state = 4}, + [4760] = {.lex_state = 323, .external_lex_state = 4}, + [4761] = {.lex_state = 323, .external_lex_state = 4}, + [4762] = {.lex_state = 323, .external_lex_state = 4}, + [4763] = {.lex_state = 323, .external_lex_state = 4}, + [4764] = {.lex_state = 142, .external_lex_state = 4}, + [4765] = {.lex_state = 142, .external_lex_state = 4}, + [4766] = {.lex_state = 142, .external_lex_state = 4}, + [4767] = {.lex_state = 142, .external_lex_state = 4}, + [4768] = {.lex_state = 142, .external_lex_state = 4}, + [4769] = {.lex_state = 142, .external_lex_state = 4}, + [4770] = {.lex_state = 142, .external_lex_state = 4}, + [4771] = {.lex_state = 142, .external_lex_state = 4}, + [4772] = {.lex_state = 142, .external_lex_state = 4}, + [4773] = {.lex_state = 142, .external_lex_state = 4}, + [4774] = {.lex_state = 142, .external_lex_state = 4}, + [4775] = {.lex_state = 142, .external_lex_state = 4}, + [4776] = {.lex_state = 142, .external_lex_state = 4}, + [4777] = {.lex_state = 169, .external_lex_state = 4}, + [4778] = {.lex_state = 323, .external_lex_state = 4}, + [4779] = {.lex_state = 142, .external_lex_state = 4}, + [4780] = {.lex_state = 142, .external_lex_state = 4}, + [4781] = {.lex_state = 323, .external_lex_state = 4}, + [4782] = {.lex_state = 169, .external_lex_state = 4}, + [4783] = {.lex_state = 169, .external_lex_state = 4}, + [4784] = {.lex_state = 323, .external_lex_state = 4}, + [4785] = {.lex_state = 169, .external_lex_state = 4}, [4786] = {.lex_state = 169, .external_lex_state = 4}, - [4787] = {.lex_state = 142, .external_lex_state = 4}, - [4788] = {.lex_state = 142, .external_lex_state = 4}, - [4789] = {.lex_state = 142, .external_lex_state = 4}, - [4790] = {.lex_state = 142, .external_lex_state = 4}, - [4791] = {.lex_state = 142, .external_lex_state = 4}, - [4792] = {.lex_state = 142, .external_lex_state = 4}, - [4793] = {.lex_state = 142, .external_lex_state = 4}, - [4794] = {.lex_state = 142, .external_lex_state = 4}, - [4795] = {.lex_state = 142, .external_lex_state = 4}, - [4796] = {.lex_state = 142, .external_lex_state = 4}, - [4797] = {.lex_state = 142, .external_lex_state = 4}, - [4798] = {.lex_state = 142, .external_lex_state = 4}, - [4799] = {.lex_state = 142, .external_lex_state = 4}, - [4800] = {.lex_state = 169, .external_lex_state = 4}, - [4801] = {.lex_state = 319, .external_lex_state = 4}, - [4802] = {.lex_state = 169, .external_lex_state = 4}, - [4803] = {.lex_state = 142, .external_lex_state = 4}, - [4804] = {.lex_state = 169, .external_lex_state = 4}, - [4805] = {.lex_state = 142, .external_lex_state = 4}, - [4806] = {.lex_state = 169, .external_lex_state = 4}, - [4807] = {.lex_state = 319, .external_lex_state = 4}, - [4808] = {.lex_state = 319, .external_lex_state = 4}, + [4787] = {.lex_state = 169, .external_lex_state = 4}, + [4788] = {.lex_state = 169, .external_lex_state = 4}, + [4789] = {.lex_state = 169, .external_lex_state = 4}, + [4790] = {.lex_state = 169, .external_lex_state = 4}, + [4791] = {.lex_state = 169, .external_lex_state = 4}, + [4792] = {.lex_state = 169, .external_lex_state = 4}, + [4793] = {.lex_state = 169, .external_lex_state = 4}, + [4794] = {.lex_state = 169, .external_lex_state = 4}, + [4795] = {.lex_state = 323, .external_lex_state = 4}, + [4796] = {.lex_state = 323, .external_lex_state = 4}, + [4797] = {.lex_state = 323, .external_lex_state = 4}, + [4798] = {.lex_state = 323, .external_lex_state = 4}, + [4799] = {.lex_state = 323, .external_lex_state = 4}, + [4800] = {.lex_state = 323, .external_lex_state = 4}, + [4801] = {.lex_state = 323, .external_lex_state = 4}, + [4802] = {.lex_state = 323, .external_lex_state = 4}, + [4803] = {.lex_state = 323, .external_lex_state = 4}, + [4804] = {.lex_state = 323, .external_lex_state = 4}, + [4805] = {.lex_state = 323, .external_lex_state = 4}, + [4806] = {.lex_state = 323, .external_lex_state = 4}, + [4807] = {.lex_state = 323, .external_lex_state = 4}, + [4808] = {.lex_state = 323, .external_lex_state = 4}, [4809] = {.lex_state = 169, .external_lex_state = 4}, [4810] = {.lex_state = 169, .external_lex_state = 4}, - [4811] = {.lex_state = 319, .external_lex_state = 4}, - [4812] = {.lex_state = 319, .external_lex_state = 4}, - [4813] = {.lex_state = 319, .external_lex_state = 4}, - [4814] = {.lex_state = 319, .external_lex_state = 4}, - [4815] = {.lex_state = 319, .external_lex_state = 4}, - [4816] = {.lex_state = 319, .external_lex_state = 4}, - [4817] = {.lex_state = 319, .external_lex_state = 4}, - [4818] = {.lex_state = 319, .external_lex_state = 4}, - [4819] = {.lex_state = 319, .external_lex_state = 4}, - [4820] = {.lex_state = 319, .external_lex_state = 4}, - [4821] = {.lex_state = 142, .external_lex_state = 4}, + [4811] = {.lex_state = 169, .external_lex_state = 4}, + [4812] = {.lex_state = 142, .external_lex_state = 4}, + [4813] = {.lex_state = 169, .external_lex_state = 4}, + [4814] = {.lex_state = 169, .external_lex_state = 4}, + [4815] = {.lex_state = 323, .external_lex_state = 4}, + [4816] = {.lex_state = 323, .external_lex_state = 4}, + [4817] = {.lex_state = 323, .external_lex_state = 4}, + [4818] = {.lex_state = 323, .external_lex_state = 4}, + [4819] = {.lex_state = 169, .external_lex_state = 4}, + [4820] = {.lex_state = 169, .external_lex_state = 4}, + [4821] = {.lex_state = 169, .external_lex_state = 4}, [4822] = {.lex_state = 142, .external_lex_state = 4}, - [4823] = {.lex_state = 319, .external_lex_state = 4}, - [4824] = {.lex_state = 319, .external_lex_state = 4}, - [4825] = {.lex_state = 319, .external_lex_state = 4}, - [4826] = {.lex_state = 319, .external_lex_state = 4}, - [4827] = {.lex_state = 169, .external_lex_state = 4}, - [4828] = {.lex_state = 169, .external_lex_state = 4}, - [4829] = {.lex_state = 319, .external_lex_state = 4}, - [4830] = {.lex_state = 319, .external_lex_state = 4}, - [4831] = {.lex_state = 319, .external_lex_state = 4}, - [4832] = {.lex_state = 319, .external_lex_state = 4}, - [4833] = {.lex_state = 319, .external_lex_state = 4}, - [4834] = {.lex_state = 319, .external_lex_state = 4}, - [4835] = {.lex_state = 319, .external_lex_state = 4}, - [4836] = {.lex_state = 319, .external_lex_state = 4}, - [4837] = {.lex_state = 142, .external_lex_state = 4}, - [4838] = {.lex_state = 169, .external_lex_state = 4}, - [4839] = {.lex_state = 319, .external_lex_state = 4}, - [4840] = {.lex_state = 169, .external_lex_state = 4}, - [4841] = {.lex_state = 169, .external_lex_state = 4}, - [4842] = {.lex_state = 319, .external_lex_state = 4}, - [4843] = {.lex_state = 319, .external_lex_state = 4}, - [4844] = {.lex_state = 319, .external_lex_state = 4}, - [4845] = {.lex_state = 319, .external_lex_state = 4}, - [4846] = {.lex_state = 319, .external_lex_state = 4}, - [4847] = {.lex_state = 319, .external_lex_state = 4}, - [4848] = {.lex_state = 142, .external_lex_state = 4}, - [4849] = {.lex_state = 319, .external_lex_state = 4}, + [4823] = {.lex_state = 142, .external_lex_state = 4}, + [4824] = {.lex_state = 323, .external_lex_state = 4}, + [4825] = {.lex_state = 323, .external_lex_state = 4}, + [4826] = {.lex_state = 50, .external_lex_state = 6}, + [4827] = {.lex_state = 50, .external_lex_state = 6}, + [4828] = {.lex_state = 50, .external_lex_state = 6}, + [4829] = {.lex_state = 50, .external_lex_state = 6}, + [4830] = {.lex_state = 50, .external_lex_state = 6}, + [4831] = {.lex_state = 50, .external_lex_state = 6}, + [4832] = {.lex_state = 50, .external_lex_state = 6}, + [4833] = {.lex_state = 50, .external_lex_state = 6}, + [4834] = {.lex_state = 50, .external_lex_state = 6}, + [4835] = {.lex_state = 50, .external_lex_state = 6}, + [4836] = {.lex_state = 50, .external_lex_state = 6}, + [4837] = {.lex_state = 50, .external_lex_state = 6}, + [4838] = {.lex_state = 50, .external_lex_state = 6}, + [4839] = {.lex_state = 50, .external_lex_state = 6}, + [4840] = {.lex_state = 50, .external_lex_state = 6}, + [4841] = {.lex_state = 50, .external_lex_state = 6}, + [4842] = {.lex_state = 50, .external_lex_state = 6}, + [4843] = {.lex_state = 50, .external_lex_state = 6}, + [4844] = {.lex_state = 50, .external_lex_state = 6}, + [4845] = {.lex_state = 50, .external_lex_state = 6}, + [4846] = {.lex_state = 50, .external_lex_state = 6}, + [4847] = {.lex_state = 50, .external_lex_state = 6}, + [4848] = {.lex_state = 50, .external_lex_state = 6}, + [4849] = {.lex_state = 50, .external_lex_state = 6}, [4850] = {.lex_state = 50, .external_lex_state = 6}, [4851] = {.lex_state = 50, .external_lex_state = 6}, [4852] = {.lex_state = 50, .external_lex_state = 6}, @@ -21362,32 +21289,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4863] = {.lex_state = 50, .external_lex_state = 6}, [4864] = {.lex_state = 50, .external_lex_state = 6}, [4865] = {.lex_state = 50, .external_lex_state = 6}, - [4866] = {.lex_state = 50, .external_lex_state = 6}, - [4867] = {.lex_state = 50, .external_lex_state = 6}, - [4868] = {.lex_state = 50, .external_lex_state = 6}, - [4869] = {.lex_state = 50, .external_lex_state = 6}, - [4870] = {.lex_state = 50, .external_lex_state = 6}, - [4871] = {.lex_state = 50, .external_lex_state = 6}, - [4872] = {.lex_state = 50, .external_lex_state = 6}, - [4873] = {.lex_state = 50, .external_lex_state = 6}, - [4874] = {.lex_state = 50, .external_lex_state = 6}, - [4875] = {.lex_state = 50, .external_lex_state = 6}, - [4876] = {.lex_state = 50, .external_lex_state = 6}, - [4877] = {.lex_state = 50, .external_lex_state = 6}, - [4878] = {.lex_state = 50, .external_lex_state = 6}, - [4879] = {.lex_state = 50, .external_lex_state = 6}, - [4880] = {.lex_state = 50, .external_lex_state = 6}, - [4881] = {.lex_state = 50, .external_lex_state = 6}, - [4882] = {.lex_state = 50, .external_lex_state = 6}, - [4883] = {.lex_state = 50, .external_lex_state = 6}, - [4884] = {.lex_state = 50, .external_lex_state = 6}, - [4885] = {.lex_state = 50, .external_lex_state = 6}, - [4886] = {.lex_state = 50, .external_lex_state = 6}, - [4887] = {.lex_state = 50, .external_lex_state = 6}, - [4888] = {.lex_state = 50, .external_lex_state = 6}, - [4889] = {.lex_state = 50, .external_lex_state = 6}, - [4890] = {.lex_state = 193, .external_lex_state = 6}, - [4891] = {.lex_state = 193, .external_lex_state = 6}, + [4866] = {.lex_state = 193, .external_lex_state = 6}, + [4867] = {.lex_state = 193, .external_lex_state = 6}, + [4868] = {.lex_state = 142, .external_lex_state = 6}, + [4869] = {.lex_state = 142, .external_lex_state = 6}, + [4870] = {.lex_state = 142, .external_lex_state = 6}, + [4871] = {.lex_state = 142, .external_lex_state = 6}, + [4872] = {.lex_state = 142, .external_lex_state = 6}, + [4873] = {.lex_state = 142, .external_lex_state = 6}, + [4874] = {.lex_state = 142, .external_lex_state = 6}, + [4875] = {.lex_state = 142, .external_lex_state = 6}, + [4876] = {.lex_state = 142, .external_lex_state = 6}, + [4877] = {.lex_state = 142, .external_lex_state = 6}, + [4878] = {.lex_state = 142, .external_lex_state = 6}, + [4879] = {.lex_state = 142, .external_lex_state = 6}, + [4880] = {.lex_state = 142, .external_lex_state = 6}, + [4881] = {.lex_state = 142, .external_lex_state = 6}, + [4882] = {.lex_state = 142, .external_lex_state = 6}, + [4883] = {.lex_state = 142, .external_lex_state = 6}, + [4884] = {.lex_state = 142, .external_lex_state = 6}, + [4885] = {.lex_state = 142, .external_lex_state = 6}, + [4886] = {.lex_state = 142, .external_lex_state = 6}, + [4887] = {.lex_state = 142, .external_lex_state = 6}, + [4888] = {.lex_state = 142, .external_lex_state = 6}, + [4889] = {.lex_state = 142, .external_lex_state = 6}, + [4890] = {.lex_state = 142, .external_lex_state = 6}, + [4891] = {.lex_state = 142, .external_lex_state = 6}, [4892] = {.lex_state = 142, .external_lex_state = 6}, [4893] = {.lex_state = 142, .external_lex_state = 6}, [4894] = {.lex_state = 142, .external_lex_state = 6}, @@ -21403,8 +21330,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4904] = {.lex_state = 142, .external_lex_state = 6}, [4905] = {.lex_state = 142, .external_lex_state = 6}, [4906] = {.lex_state = 142, .external_lex_state = 6}, - [4907] = {.lex_state = 142, .external_lex_state = 6}, - [4908] = {.lex_state = 142, .external_lex_state = 6}, + [4907] = {.lex_state = 193, .external_lex_state = 6}, + [4908] = {.lex_state = 193, .external_lex_state = 6}, [4909] = {.lex_state = 142, .external_lex_state = 6}, [4910] = {.lex_state = 142, .external_lex_state = 6}, [4911] = {.lex_state = 142, .external_lex_state = 6}, @@ -21450,55 +21377,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4951] = {.lex_state = 142, .external_lex_state = 6}, [4952] = {.lex_state = 142, .external_lex_state = 6}, [4953] = {.lex_state = 142, .external_lex_state = 6}, - [4954] = {.lex_state = 142, .external_lex_state = 6}, - [4955] = {.lex_state = 142, .external_lex_state = 6}, - [4956] = {.lex_state = 142, .external_lex_state = 6}, - [4957] = {.lex_state = 142, .external_lex_state = 6}, - [4958] = {.lex_state = 142, .external_lex_state = 6}, - [4959] = {.lex_state = 142, .external_lex_state = 6}, - [4960] = {.lex_state = 142, .external_lex_state = 6}, - [4961] = {.lex_state = 142, .external_lex_state = 6}, - [4962] = {.lex_state = 142, .external_lex_state = 6}, - [4963] = {.lex_state = 142, .external_lex_state = 6}, - [4964] = {.lex_state = 142, .external_lex_state = 6}, - [4965] = {.lex_state = 142, .external_lex_state = 6}, - [4966] = {.lex_state = 142, .external_lex_state = 6}, - [4967] = {.lex_state = 142, .external_lex_state = 6}, - [4968] = {.lex_state = 142, .external_lex_state = 6}, - [4969] = {.lex_state = 142, .external_lex_state = 6}, - [4970] = {.lex_state = 142, .external_lex_state = 6}, - [4971] = {.lex_state = 142, .external_lex_state = 6}, - [4972] = {.lex_state = 142, .external_lex_state = 6}, - [4973] = {.lex_state = 142, .external_lex_state = 6}, - [4974] = {.lex_state = 142, .external_lex_state = 6}, - [4975] = {.lex_state = 142, .external_lex_state = 6}, + [4954] = {.lex_state = 193, .external_lex_state = 6}, + [4955] = {.lex_state = 193, .external_lex_state = 6}, + [4956] = {.lex_state = 193, .external_lex_state = 6}, + [4957] = {.lex_state = 193, .external_lex_state = 6}, + [4958] = {.lex_state = 193, .external_lex_state = 6}, + [4959] = {.lex_state = 193, .external_lex_state = 6}, + [4960] = {.lex_state = 193, .external_lex_state = 6}, + [4961] = {.lex_state = 193, .external_lex_state = 6}, + [4962] = {.lex_state = 193, .external_lex_state = 6}, + [4963] = {.lex_state = 193, .external_lex_state = 6}, + [4964] = {.lex_state = 193, .external_lex_state = 6}, + [4965] = {.lex_state = 193, .external_lex_state = 6}, + [4966] = {.lex_state = 193, .external_lex_state = 6}, + [4967] = {.lex_state = 193, .external_lex_state = 6}, + [4968] = {.lex_state = 193, .external_lex_state = 6}, + [4969] = {.lex_state = 193, .external_lex_state = 6}, + [4970] = {.lex_state = 193, .external_lex_state = 6}, + [4971] = {.lex_state = 193, .external_lex_state = 6}, + [4972] = {.lex_state = 193, .external_lex_state = 6}, + [4973] = {.lex_state = 193, .external_lex_state = 6}, + [4974] = {.lex_state = 193, .external_lex_state = 6}, + [4975] = {.lex_state = 193, .external_lex_state = 6}, [4976] = {.lex_state = 193, .external_lex_state = 6}, [4977] = {.lex_state = 193, .external_lex_state = 6}, [4978] = {.lex_state = 193, .external_lex_state = 6}, - [4979] = {.lex_state = 193, .external_lex_state = 6}, - [4980] = {.lex_state = 193, .external_lex_state = 6}, - [4981] = {.lex_state = 193, .external_lex_state = 6}, - [4982] = {.lex_state = 193, .external_lex_state = 6}, - [4983] = {.lex_state = 193, .external_lex_state = 6}, - [4984] = {.lex_state = 193, .external_lex_state = 6}, - [4985] = {.lex_state = 193, .external_lex_state = 6}, - [4986] = {.lex_state = 193, .external_lex_state = 6}, - [4987] = {.lex_state = 193, .external_lex_state = 6}, - [4988] = {.lex_state = 193, .external_lex_state = 6}, - [4989] = {.lex_state = 193, .external_lex_state = 6}, - [4990] = {.lex_state = 193, .external_lex_state = 6}, - [4991] = {.lex_state = 193, .external_lex_state = 6}, - [4992] = {.lex_state = 193, .external_lex_state = 6}, - [4993] = {.lex_state = 193, .external_lex_state = 6}, - [4994] = {.lex_state = 193, .external_lex_state = 6}, - [4995] = {.lex_state = 193, .external_lex_state = 6}, - [4996] = {.lex_state = 193, .external_lex_state = 6}, - [4997] = {.lex_state = 193, .external_lex_state = 6}, - [4998] = {.lex_state = 193, .external_lex_state = 6}, - [4999] = {.lex_state = 193, .external_lex_state = 6}, - [5000] = {.lex_state = 193, .external_lex_state = 6}, - [5001] = {.lex_state = 193, .external_lex_state = 6}, - [5002] = {.lex_state = 193, .external_lex_state = 6}, + [4979] = {.lex_state = 142, .external_lex_state = 6}, + [4980] = {.lex_state = 142, .external_lex_state = 6}, + [4981] = {.lex_state = 142, .external_lex_state = 6}, + [4982] = {.lex_state = 142, .external_lex_state = 6}, + [4983] = {.lex_state = 142, .external_lex_state = 6}, + [4984] = {.lex_state = 142, .external_lex_state = 6}, + [4985] = {.lex_state = 142, .external_lex_state = 6}, + [4986] = {.lex_state = 142, .external_lex_state = 6}, + [4987] = {.lex_state = 142, .external_lex_state = 6}, + [4988] = {.lex_state = 142, .external_lex_state = 6}, + [4989] = {.lex_state = 142, .external_lex_state = 6}, + [4990] = {.lex_state = 142, .external_lex_state = 6}, + [4991] = {.lex_state = 142, .external_lex_state = 6}, + [4992] = {.lex_state = 142, .external_lex_state = 6}, + [4993] = {.lex_state = 142, .external_lex_state = 6}, + [4994] = {.lex_state = 142, .external_lex_state = 6}, + [4995] = {.lex_state = 142, .external_lex_state = 6}, + [4996] = {.lex_state = 142, .external_lex_state = 6}, + [4997] = {.lex_state = 142, .external_lex_state = 6}, + [4998] = {.lex_state = 142, .external_lex_state = 6}, + [4999] = {.lex_state = 142, .external_lex_state = 6}, + [5000] = {.lex_state = 142, .external_lex_state = 6}, + [5001] = {.lex_state = 142, .external_lex_state = 6}, + [5002] = {.lex_state = 142, .external_lex_state = 6}, [5003] = {.lex_state = 142, .external_lex_state = 6}, [5004] = {.lex_state = 142, .external_lex_state = 6}, [5005] = {.lex_state = 142, .external_lex_state = 6}, @@ -21575,2476 +21502,2452 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5076] = {.lex_state = 142, .external_lex_state = 6}, [5077] = {.lex_state = 142, .external_lex_state = 6}, [5078] = {.lex_state = 142, .external_lex_state = 6}, - [5079] = {.lex_state = 142, .external_lex_state = 6}, - [5080] = {.lex_state = 142, .external_lex_state = 6}, - [5081] = {.lex_state = 142, .external_lex_state = 6}, - [5082] = {.lex_state = 142, .external_lex_state = 6}, - [5083] = {.lex_state = 142, .external_lex_state = 6}, - [5084] = {.lex_state = 142, .external_lex_state = 6}, - [5085] = {.lex_state = 142, .external_lex_state = 6}, - [5086] = {.lex_state = 142, .external_lex_state = 6}, - [5087] = {.lex_state = 142, .external_lex_state = 6}, - [5088] = {.lex_state = 142, .external_lex_state = 6}, - [5089] = {.lex_state = 142, .external_lex_state = 6}, - [5090] = {.lex_state = 142, .external_lex_state = 6}, - [5091] = {.lex_state = 142, .external_lex_state = 6}, - [5092] = {.lex_state = 142, .external_lex_state = 6}, - [5093] = {.lex_state = 142, .external_lex_state = 6}, - [5094] = {.lex_state = 142, .external_lex_state = 6}, - [5095] = {.lex_state = 142, .external_lex_state = 6}, - [5096] = {.lex_state = 142, .external_lex_state = 6}, - [5097] = {.lex_state = 142, .external_lex_state = 6}, - [5098] = {.lex_state = 142, .external_lex_state = 6}, - [5099] = {.lex_state = 142, .external_lex_state = 6}, - [5100] = {.lex_state = 142, .external_lex_state = 6}, - [5101] = {.lex_state = 142, .external_lex_state = 6}, - [5102] = {.lex_state = 142, .external_lex_state = 6}, + [5079] = {.lex_state = 50, .external_lex_state = 6}, + [5080] = {.lex_state = 50, .external_lex_state = 6}, + [5081] = {.lex_state = 50, .external_lex_state = 6}, + [5082] = {.lex_state = 50, .external_lex_state = 6}, + [5083] = {.lex_state = 50, .external_lex_state = 6}, + [5084] = {.lex_state = 50, .external_lex_state = 6}, + [5085] = {.lex_state = 50, .external_lex_state = 6}, + [5086] = {.lex_state = 50, .external_lex_state = 6}, + [5087] = {.lex_state = 50, .external_lex_state = 6}, + [5088] = {.lex_state = 50, .external_lex_state = 6}, + [5089] = {.lex_state = 50, .external_lex_state = 6}, + [5090] = {.lex_state = 50, .external_lex_state = 6}, + [5091] = {.lex_state = 50, .external_lex_state = 6}, + [5092] = {.lex_state = 50, .external_lex_state = 6}, + [5093] = {.lex_state = 50, .external_lex_state = 6}, + [5094] = {.lex_state = 50, .external_lex_state = 6}, + [5095] = {.lex_state = 50, .external_lex_state = 6}, + [5096] = {.lex_state = 50, .external_lex_state = 6}, + [5097] = {.lex_state = 50, .external_lex_state = 6}, + [5098] = {.lex_state = 50, .external_lex_state = 6}, + [5099] = {.lex_state = 50, .external_lex_state = 6}, + [5100] = {.lex_state = 50, .external_lex_state = 6}, + [5101] = {.lex_state = 50, .external_lex_state = 6}, + [5102] = {.lex_state = 50, .external_lex_state = 6}, [5103] = {.lex_state = 50, .external_lex_state = 6}, [5104] = {.lex_state = 50, .external_lex_state = 6}, [5105] = {.lex_state = 50, .external_lex_state = 6}, [5106] = {.lex_state = 50, .external_lex_state = 6}, [5107] = {.lex_state = 50, .external_lex_state = 6}, [5108] = {.lex_state = 50, .external_lex_state = 6}, - [5109] = {.lex_state = 50, .external_lex_state = 6}, - [5110] = {.lex_state = 50, .external_lex_state = 6}, - [5111] = {.lex_state = 50, .external_lex_state = 6}, - [5112] = {.lex_state = 50, .external_lex_state = 6}, - [5113] = {.lex_state = 50, .external_lex_state = 6}, - [5114] = {.lex_state = 50, .external_lex_state = 6}, - [5115] = {.lex_state = 50, .external_lex_state = 6}, - [5116] = {.lex_state = 50, .external_lex_state = 6}, - [5117] = {.lex_state = 50, .external_lex_state = 6}, - [5118] = {.lex_state = 50, .external_lex_state = 6}, - [5119] = {.lex_state = 50, .external_lex_state = 6}, - [5120] = {.lex_state = 50, .external_lex_state = 6}, - [5121] = {.lex_state = 50, .external_lex_state = 6}, - [5122] = {.lex_state = 50, .external_lex_state = 6}, - [5123] = {.lex_state = 50, .external_lex_state = 6}, - [5124] = {.lex_state = 50, .external_lex_state = 6}, - [5125] = {.lex_state = 50, .external_lex_state = 6}, - [5126] = {.lex_state = 50, .external_lex_state = 6}, - [5127] = {.lex_state = 50, .external_lex_state = 6}, - [5128] = {.lex_state = 50, .external_lex_state = 6}, - [5129] = {.lex_state = 50, .external_lex_state = 6}, - [5130] = {.lex_state = 50, .external_lex_state = 6}, - [5131] = {.lex_state = 50, .external_lex_state = 6}, - [5132] = {.lex_state = 50, .external_lex_state = 6}, - [5133] = {.lex_state = 142, .external_lex_state = 6}, - [5134] = {.lex_state = 142, .external_lex_state = 6}, - [5135] = {.lex_state = 142, .external_lex_state = 6}, - [5136] = {.lex_state = 51, .external_lex_state = 6}, - [5137] = {.lex_state = 51, .external_lex_state = 6}, - [5138] = {.lex_state = 51, .external_lex_state = 6}, - [5139] = {.lex_state = 62, .external_lex_state = 7}, - [5140] = {.lex_state = 62, .external_lex_state = 7}, - [5141] = {.lex_state = 62, .external_lex_state = 8}, - [5142] = {.lex_state = 64, .external_lex_state = 9}, + [5109] = {.lex_state = 51, .external_lex_state = 6}, + [5110] = {.lex_state = 51, .external_lex_state = 6}, + [5111] = {.lex_state = 142, .external_lex_state = 6}, + [5112] = {.lex_state = 142, .external_lex_state = 6}, + [5113] = {.lex_state = 51, .external_lex_state = 6}, + [5114] = {.lex_state = 142, .external_lex_state = 6}, + [5115] = {.lex_state = 64, .external_lex_state = 7}, + [5116] = {.lex_state = 64, .external_lex_state = 8}, + [5117] = {.lex_state = 62, .external_lex_state = 9}, + [5118] = {.lex_state = 64, .external_lex_state = 10}, + [5119] = {.lex_state = 62, .external_lex_state = 11}, + [5120] = {.lex_state = 62, .external_lex_state = 11}, + [5121] = {.lex_state = 64, .external_lex_state = 8}, + [5122] = {.lex_state = 62, .external_lex_state = 9}, + [5123] = {.lex_state = 64, .external_lex_state = 10}, + [5124] = {.lex_state = 62, .external_lex_state = 11}, + [5125] = {.lex_state = 64, .external_lex_state = 8}, + [5126] = {.lex_state = 62, .external_lex_state = 9}, + [5127] = {.lex_state = 64, .external_lex_state = 10}, + [5128] = {.lex_state = 62, .external_lex_state = 11}, + [5129] = {.lex_state = 64, .external_lex_state = 8}, + [5130] = {.lex_state = 62, .external_lex_state = 9}, + [5131] = {.lex_state = 64, .external_lex_state = 10}, + [5132] = {.lex_state = 62, .external_lex_state = 11}, + [5133] = {.lex_state = 64, .external_lex_state = 8}, + [5134] = {.lex_state = 62, .external_lex_state = 9}, + [5135] = {.lex_state = 64, .external_lex_state = 10}, + [5136] = {.lex_state = 62, .external_lex_state = 11}, + [5137] = {.lex_state = 64, .external_lex_state = 8}, + [5138] = {.lex_state = 62, .external_lex_state = 9}, + [5139] = {.lex_state = 64, .external_lex_state = 10}, + [5140] = {.lex_state = 62, .external_lex_state = 11}, + [5141] = {.lex_state = 64, .external_lex_state = 8}, + [5142] = {.lex_state = 62, .external_lex_state = 9}, [5143] = {.lex_state = 64, .external_lex_state = 10}, [5144] = {.lex_state = 62, .external_lex_state = 11}, - [5145] = {.lex_state = 62, .external_lex_state = 12}, - [5146] = {.lex_state = 62, .external_lex_state = 13}, - [5147] = {.lex_state = 62, .external_lex_state = 14}, - [5148] = {.lex_state = 62, .external_lex_state = 15}, - [5149] = {.lex_state = 62, .external_lex_state = 16}, - [5150] = {.lex_state = 62, .external_lex_state = 11}, - [5151] = {.lex_state = 62, .external_lex_state = 12}, - [5152] = {.lex_state = 62, .external_lex_state = 13}, - [5153] = {.lex_state = 62, .external_lex_state = 14}, - [5154] = {.lex_state = 62, .external_lex_state = 15}, - [5155] = {.lex_state = 62, .external_lex_state = 16}, - [5156] = {.lex_state = 62, .external_lex_state = 7}, - [5157] = {.lex_state = 62, .external_lex_state = 8}, - [5158] = {.lex_state = 64, .external_lex_state = 9}, + [5145] = {.lex_state = 64, .external_lex_state = 8}, + [5146] = {.lex_state = 62, .external_lex_state = 9}, + [5147] = {.lex_state = 64, .external_lex_state = 10}, + [5148] = {.lex_state = 62, .external_lex_state = 11}, + [5149] = {.lex_state = 64, .external_lex_state = 8}, + [5150] = {.lex_state = 62, .external_lex_state = 9}, + [5151] = {.lex_state = 64, .external_lex_state = 10}, + [5152] = {.lex_state = 62, .external_lex_state = 11}, + [5153] = {.lex_state = 64, .external_lex_state = 8}, + [5154] = {.lex_state = 62, .external_lex_state = 9}, + [5155] = {.lex_state = 64, .external_lex_state = 10}, + [5156] = {.lex_state = 62, .external_lex_state = 11}, + [5157] = {.lex_state = 64, .external_lex_state = 8}, + [5158] = {.lex_state = 62, .external_lex_state = 9}, [5159] = {.lex_state = 64, .external_lex_state = 10}, [5160] = {.lex_state = 62, .external_lex_state = 11}, - [5161] = {.lex_state = 62, .external_lex_state = 12}, - [5162] = {.lex_state = 62, .external_lex_state = 13}, - [5163] = {.lex_state = 62, .external_lex_state = 14}, - [5164] = {.lex_state = 62, .external_lex_state = 15}, - [5165] = {.lex_state = 62, .external_lex_state = 16}, - [5166] = {.lex_state = 62, .external_lex_state = 11}, - [5167] = {.lex_state = 62, .external_lex_state = 12}, - [5168] = {.lex_state = 62, .external_lex_state = 7}, - [5169] = {.lex_state = 62, .external_lex_state = 8}, - [5170] = {.lex_state = 64, .external_lex_state = 9}, - [5171] = {.lex_state = 64, .external_lex_state = 10}, - [5172] = {.lex_state = 62, .external_lex_state = 13}, - [5173] = {.lex_state = 62, .external_lex_state = 11}, - [5174] = {.lex_state = 62, .external_lex_state = 12}, - [5175] = {.lex_state = 62, .external_lex_state = 13}, - [5176] = {.lex_state = 62, .external_lex_state = 14}, - [5177] = {.lex_state = 62, .external_lex_state = 15}, - [5178] = {.lex_state = 62, .external_lex_state = 16}, - [5179] = {.lex_state = 62, .external_lex_state = 14}, - [5180] = {.lex_state = 62, .external_lex_state = 15}, - [5181] = {.lex_state = 62, .external_lex_state = 16}, - [5182] = {.lex_state = 62, .external_lex_state = 7}, - [5183] = {.lex_state = 62, .external_lex_state = 8}, - [5184] = {.lex_state = 64, .external_lex_state = 9}, - [5185] = {.lex_state = 64, .external_lex_state = 10}, - [5186] = {.lex_state = 62, .external_lex_state = 11}, - [5187] = {.lex_state = 62, .external_lex_state = 12}, - [5188] = {.lex_state = 62, .external_lex_state = 13}, - [5189] = {.lex_state = 62, .external_lex_state = 14}, - [5190] = {.lex_state = 62, .external_lex_state = 15}, - [5191] = {.lex_state = 62, .external_lex_state = 16}, - [5192] = {.lex_state = 62, .external_lex_state = 8}, - [5193] = {.lex_state = 62, .external_lex_state = 7}, - [5194] = {.lex_state = 62, .external_lex_state = 8}, - [5195] = {.lex_state = 64, .external_lex_state = 9}, - [5196] = {.lex_state = 64, .external_lex_state = 10}, - [5197] = {.lex_state = 62, .external_lex_state = 7}, - [5198] = {.lex_state = 62, .external_lex_state = 11}, - [5199] = {.lex_state = 62, .external_lex_state = 12}, - [5200] = {.lex_state = 62, .external_lex_state = 13}, - [5201] = {.lex_state = 62, .external_lex_state = 14}, - [5202] = {.lex_state = 62, .external_lex_state = 15}, - [5203] = {.lex_state = 62, .external_lex_state = 16}, - [5204] = {.lex_state = 62, .external_lex_state = 11}, - [5205] = {.lex_state = 62, .external_lex_state = 12}, - [5206] = {.lex_state = 62, .external_lex_state = 13}, - [5207] = {.lex_state = 62, .external_lex_state = 14}, - [5208] = {.lex_state = 62, .external_lex_state = 15}, - [5209] = {.lex_state = 62, .external_lex_state = 16}, - [5210] = {.lex_state = 64, .external_lex_state = 9}, - [5211] = {.lex_state = 62, .external_lex_state = 7}, - [5212] = {.lex_state = 62, .external_lex_state = 8}, - [5213] = {.lex_state = 64, .external_lex_state = 9}, - [5214] = {.lex_state = 64, .external_lex_state = 10}, - [5215] = {.lex_state = 62, .external_lex_state = 7}, - [5216] = {.lex_state = 62, .external_lex_state = 8}, - [5217] = {.lex_state = 62, .external_lex_state = 7}, - [5218] = {.lex_state = 62, .external_lex_state = 8}, - [5219] = {.lex_state = 64, .external_lex_state = 9}, - [5220] = {.lex_state = 64, .external_lex_state = 10}, - [5221] = {.lex_state = 64, .external_lex_state = 9}, - [5222] = {.lex_state = 64, .external_lex_state = 10}, - [5223] = {.lex_state = 62, .external_lex_state = 11}, - [5224] = {.lex_state = 62, .external_lex_state = 12}, - [5225] = {.lex_state = 62, .external_lex_state = 13}, - [5226] = {.lex_state = 62, .external_lex_state = 14}, - [5227] = {.lex_state = 62, .external_lex_state = 15}, - [5228] = {.lex_state = 62, .external_lex_state = 16}, - [5229] = {.lex_state = 62, .external_lex_state = 11}, - [5230] = {.lex_state = 62, .external_lex_state = 12}, - [5231] = {.lex_state = 62, .external_lex_state = 13}, - [5232] = {.lex_state = 62, .external_lex_state = 14}, - [5233] = {.lex_state = 62, .external_lex_state = 15}, - [5234] = {.lex_state = 62, .external_lex_state = 16}, - [5235] = {.lex_state = 62, .external_lex_state = 7}, - [5236] = {.lex_state = 62, .external_lex_state = 8}, - [5237] = {.lex_state = 64, .external_lex_state = 9}, - [5238] = {.lex_state = 64, .external_lex_state = 10}, + [5161] = {.lex_state = 64, .external_lex_state = 8}, + [5162] = {.lex_state = 62, .external_lex_state = 9}, + [5163] = {.lex_state = 64, .external_lex_state = 10}, + [5164] = {.lex_state = 62, .external_lex_state = 11}, + [5165] = {.lex_state = 64, .external_lex_state = 8}, + [5166] = {.lex_state = 62, .external_lex_state = 9}, + [5167] = {.lex_state = 64, .external_lex_state = 10}, + [5168] = {.lex_state = 62, .external_lex_state = 11}, + [5169] = {.lex_state = 64, .external_lex_state = 8}, + [5170] = {.lex_state = 62, .external_lex_state = 11}, + [5171] = {.lex_state = 64, .external_lex_state = 8}, + [5172] = {.lex_state = 62, .external_lex_state = 11}, + [5173] = {.lex_state = 64, .external_lex_state = 8}, + [5174] = {.lex_state = 62, .external_lex_state = 11}, + [5175] = {.lex_state = 64, .external_lex_state = 8}, + [5176] = {.lex_state = 62, .external_lex_state = 11}, + [5177] = {.lex_state = 64, .external_lex_state = 8}, + [5178] = {.lex_state = 62, .external_lex_state = 11}, + [5179] = {.lex_state = 64, .external_lex_state = 8}, + [5180] = {.lex_state = 62, .external_lex_state = 11}, + [5181] = {.lex_state = 64, .external_lex_state = 8}, + [5182] = {.lex_state = 62, .external_lex_state = 11}, + [5183] = {.lex_state = 64, .external_lex_state = 8}, + [5184] = {.lex_state = 64, .external_lex_state = 7}, + [5185] = {.lex_state = 64, .external_lex_state = 8}, + [5186] = {.lex_state = 62, .external_lex_state = 9}, + [5187] = {.lex_state = 64, .external_lex_state = 10}, + [5188] = {.lex_state = 64, .external_lex_state = 10}, + [5189] = {.lex_state = 62, .external_lex_state = 9}, + [5190] = {.lex_state = 64, .external_lex_state = 12}, + [5191] = {.lex_state = 64, .external_lex_state = 13}, + [5192] = {.lex_state = 64, .external_lex_state = 10}, + [5193] = {.lex_state = 64, .external_lex_state = 14}, + [5194] = {.lex_state = 64, .external_lex_state = 15}, + [5195] = {.lex_state = 64, .external_lex_state = 15}, + [5196] = {.lex_state = 62, .external_lex_state = 11}, + [5197] = {.lex_state = 64, .external_lex_state = 8}, + [5198] = {.lex_state = 64, .external_lex_state = 14}, + [5199] = {.lex_state = 64, .external_lex_state = 7}, + [5200] = {.lex_state = 64, .external_lex_state = 12}, + [5201] = {.lex_state = 64, .external_lex_state = 13}, + [5202] = {.lex_state = 64, .external_lex_state = 15}, + [5203] = {.lex_state = 64, .external_lex_state = 16}, + [5204] = {.lex_state = 62, .external_lex_state = 9}, + [5205] = {.lex_state = 64, .external_lex_state = 16}, + [5206] = {.lex_state = 64, .external_lex_state = 10}, + [5207] = {.lex_state = 64, .external_lex_state = 14}, + [5208] = {.lex_state = 64, .external_lex_state = 7}, + [5209] = {.lex_state = 64, .external_lex_state = 12}, + [5210] = {.lex_state = 62, .external_lex_state = 9}, + [5211] = {.lex_state = 64, .external_lex_state = 13}, + [5212] = {.lex_state = 64, .external_lex_state = 15}, + [5213] = {.lex_state = 64, .external_lex_state = 14}, + [5214] = {.lex_state = 64, .external_lex_state = 7}, + [5215] = {.lex_state = 64, .external_lex_state = 12}, + [5216] = {.lex_state = 64, .external_lex_state = 13}, + [5217] = {.lex_state = 64, .external_lex_state = 15}, + [5218] = {.lex_state = 64, .external_lex_state = 16}, + [5219] = {.lex_state = 64, .external_lex_state = 16}, + [5220] = {.lex_state = 64, .external_lex_state = 8}, + [5221] = {.lex_state = 64, .external_lex_state = 16}, + [5222] = {.lex_state = 64, .external_lex_state = 8}, + [5223] = {.lex_state = 62, .external_lex_state = 9}, + [5224] = {.lex_state = 64, .external_lex_state = 10}, + [5225] = {.lex_state = 64, .external_lex_state = 7}, + [5226] = {.lex_state = 62, .external_lex_state = 11}, + [5227] = {.lex_state = 64, .external_lex_state = 8}, + [5228] = {.lex_state = 62, .external_lex_state = 9}, + [5229] = {.lex_state = 64, .external_lex_state = 10}, + [5230] = {.lex_state = 64, .external_lex_state = 12}, + [5231] = {.lex_state = 64, .external_lex_state = 13}, + [5232] = {.lex_state = 64, .external_lex_state = 14}, + [5233] = {.lex_state = 64, .external_lex_state = 7}, + [5234] = {.lex_state = 64, .external_lex_state = 12}, + [5235] = {.lex_state = 64, .external_lex_state = 13}, + [5236] = {.lex_state = 64, .external_lex_state = 15}, + [5237] = {.lex_state = 62, .external_lex_state = 11}, + [5238] = {.lex_state = 64, .external_lex_state = 8}, [5239] = {.lex_state = 62, .external_lex_state = 11}, - [5240] = {.lex_state = 62, .external_lex_state = 12}, - [5241] = {.lex_state = 62, .external_lex_state = 13}, - [5242] = {.lex_state = 62, .external_lex_state = 14}, - [5243] = {.lex_state = 62, .external_lex_state = 15}, - [5244] = {.lex_state = 62, .external_lex_state = 16}, - [5245] = {.lex_state = 62, .external_lex_state = 7}, - [5246] = {.lex_state = 62, .external_lex_state = 8}, - [5247] = {.lex_state = 64, .external_lex_state = 9}, - [5248] = {.lex_state = 64, .external_lex_state = 10}, - [5249] = {.lex_state = 62, .external_lex_state = 11}, - [5250] = {.lex_state = 62, .external_lex_state = 12}, - [5251] = {.lex_state = 62, .external_lex_state = 13}, - [5252] = {.lex_state = 62, .external_lex_state = 14}, - [5253] = {.lex_state = 62, .external_lex_state = 15}, - [5254] = {.lex_state = 62, .external_lex_state = 16}, - [5255] = {.lex_state = 62, .external_lex_state = 7}, - [5256] = {.lex_state = 62, .external_lex_state = 8}, - [5257] = {.lex_state = 64, .external_lex_state = 9}, - [5258] = {.lex_state = 64, .external_lex_state = 10}, - [5259] = {.lex_state = 62, .external_lex_state = 11}, - [5260] = {.lex_state = 62, .external_lex_state = 12}, - [5261] = {.lex_state = 62, .external_lex_state = 13}, - [5262] = {.lex_state = 62, .external_lex_state = 14}, - [5263] = {.lex_state = 62, .external_lex_state = 15}, - [5264] = {.lex_state = 62, .external_lex_state = 16}, - [5265] = {.lex_state = 62, .external_lex_state = 7}, - [5266] = {.lex_state = 62, .external_lex_state = 8}, - [5267] = {.lex_state = 64, .external_lex_state = 9}, - [5268] = {.lex_state = 64, .external_lex_state = 10}, - [5269] = {.lex_state = 62, .external_lex_state = 11}, - [5270] = {.lex_state = 62, .external_lex_state = 12}, - [5271] = {.lex_state = 62, .external_lex_state = 13}, - [5272] = {.lex_state = 62, .external_lex_state = 14}, - [5273] = {.lex_state = 62, .external_lex_state = 15}, - [5274] = {.lex_state = 62, .external_lex_state = 16}, - [5275] = {.lex_state = 62, .external_lex_state = 7}, - [5276] = {.lex_state = 62, .external_lex_state = 8}, - [5277] = {.lex_state = 64, .external_lex_state = 9}, - [5278] = {.lex_state = 64, .external_lex_state = 10}, + [5240] = {.lex_state = 64, .external_lex_state = 8}, + [5241] = {.lex_state = 62, .external_lex_state = 9}, + [5242] = {.lex_state = 64, .external_lex_state = 10}, + [5243] = {.lex_state = 62, .external_lex_state = 9}, + [5244] = {.lex_state = 64, .external_lex_state = 8}, + [5245] = {.lex_state = 64, .external_lex_state = 10}, + [5246] = {.lex_state = 62, .external_lex_state = 11}, + [5247] = {.lex_state = 64, .external_lex_state = 14}, + [5248] = {.lex_state = 64, .external_lex_state = 7}, + [5249] = {.lex_state = 64, .external_lex_state = 16}, + [5250] = {.lex_state = 64, .external_lex_state = 14}, + [5251] = {.lex_state = 64, .external_lex_state = 14}, + [5252] = {.lex_state = 64, .external_lex_state = 7}, + [5253] = {.lex_state = 64, .external_lex_state = 12}, + [5254] = {.lex_state = 64, .external_lex_state = 13}, + [5255] = {.lex_state = 64, .external_lex_state = 15}, + [5256] = {.lex_state = 64, .external_lex_state = 16}, + [5257] = {.lex_state = 64, .external_lex_state = 7}, + [5258] = {.lex_state = 62, .external_lex_state = 11}, + [5259] = {.lex_state = 64, .external_lex_state = 8}, + [5260] = {.lex_state = 62, .external_lex_state = 9}, + [5261] = {.lex_state = 64, .external_lex_state = 12}, + [5262] = {.lex_state = 64, .external_lex_state = 13}, + [5263] = {.lex_state = 64, .external_lex_state = 12}, + [5264] = {.lex_state = 64, .external_lex_state = 15}, + [5265] = {.lex_state = 64, .external_lex_state = 16}, + [5266] = {.lex_state = 64, .external_lex_state = 12}, + [5267] = {.lex_state = 64, .external_lex_state = 13}, + [5268] = {.lex_state = 64, .external_lex_state = 13}, + [5269] = {.lex_state = 64, .external_lex_state = 15}, + [5270] = {.lex_state = 62, .external_lex_state = 9}, + [5271] = {.lex_state = 64, .external_lex_state = 16}, + [5272] = {.lex_state = 64, .external_lex_state = 14}, + [5273] = {.lex_state = 64, .external_lex_state = 7}, + [5274] = {.lex_state = 64, .external_lex_state = 12}, + [5275] = {.lex_state = 64, .external_lex_state = 13}, + [5276] = {.lex_state = 64, .external_lex_state = 15}, + [5277] = {.lex_state = 64, .external_lex_state = 16}, + [5278] = {.lex_state = 64, .external_lex_state = 15}, [5279] = {.lex_state = 62, .external_lex_state = 11}, - [5280] = {.lex_state = 62, .external_lex_state = 12}, - [5281] = {.lex_state = 62, .external_lex_state = 13}, - [5282] = {.lex_state = 62, .external_lex_state = 14}, - [5283] = {.lex_state = 62, .external_lex_state = 15}, - [5284] = {.lex_state = 62, .external_lex_state = 16}, - [5285] = {.lex_state = 62, .external_lex_state = 7}, - [5286] = {.lex_state = 62, .external_lex_state = 8}, - [5287] = {.lex_state = 62, .external_lex_state = 16}, - [5288] = {.lex_state = 64, .external_lex_state = 10}, - [5289] = {.lex_state = 62, .external_lex_state = 11}, - [5290] = {.lex_state = 62, .external_lex_state = 12}, - [5291] = {.lex_state = 62, .external_lex_state = 13}, - [5292] = {.lex_state = 62, .external_lex_state = 14}, - [5293] = {.lex_state = 62, .external_lex_state = 15}, - [5294] = {.lex_state = 62, .external_lex_state = 16}, - [5295] = {.lex_state = 62, .external_lex_state = 7}, - [5296] = {.lex_state = 62, .external_lex_state = 8}, - [5297] = {.lex_state = 64, .external_lex_state = 9}, - [5298] = {.lex_state = 64, .external_lex_state = 10}, - [5299] = {.lex_state = 62, .external_lex_state = 11}, - [5300] = {.lex_state = 62, .external_lex_state = 12}, - [5301] = {.lex_state = 62, .external_lex_state = 13}, - [5302] = {.lex_state = 62, .external_lex_state = 14}, - [5303] = {.lex_state = 62, .external_lex_state = 15}, - [5304] = {.lex_state = 62, .external_lex_state = 16}, - [5305] = {.lex_state = 62, .external_lex_state = 7}, - [5306] = {.lex_state = 62, .external_lex_state = 8}, - [5307] = {.lex_state = 64, .external_lex_state = 9}, - [5308] = {.lex_state = 64, .external_lex_state = 10}, - [5309] = {.lex_state = 62, .external_lex_state = 7}, - [5310] = {.lex_state = 62, .external_lex_state = 8}, - [5311] = {.lex_state = 62, .external_lex_state = 11}, - [5312] = {.lex_state = 62, .external_lex_state = 12}, - [5313] = {.lex_state = 62, .external_lex_state = 13}, - [5314] = {.lex_state = 62, .external_lex_state = 14}, - [5315] = {.lex_state = 62, .external_lex_state = 15}, - [5316] = {.lex_state = 62, .external_lex_state = 16}, - [5317] = {.lex_state = 64, .external_lex_state = 9}, - [5318] = {.lex_state = 62, .external_lex_state = 7}, - [5319] = {.lex_state = 62, .external_lex_state = 8}, - [5320] = {.lex_state = 64, .external_lex_state = 9}, - [5321] = {.lex_state = 64, .external_lex_state = 10}, - [5322] = {.lex_state = 64, .external_lex_state = 10}, - [5323] = {.lex_state = 62, .external_lex_state = 7}, - [5324] = {.lex_state = 62, .external_lex_state = 8}, - [5325] = {.lex_state = 64, .external_lex_state = 9}, - [5326] = {.lex_state = 64, .external_lex_state = 10}, - [5327] = {.lex_state = 62, .external_lex_state = 7}, - [5328] = {.lex_state = 62, .external_lex_state = 8}, - [5329] = {.lex_state = 64, .external_lex_state = 9}, - [5330] = {.lex_state = 64, .external_lex_state = 10}, - [5331] = {.lex_state = 62, .external_lex_state = 7}, - [5332] = {.lex_state = 62, .external_lex_state = 8}, - [5333] = {.lex_state = 64, .external_lex_state = 9}, - [5334] = {.lex_state = 64, .external_lex_state = 10}, - [5335] = {.lex_state = 62, .external_lex_state = 7}, - [5336] = {.lex_state = 62, .external_lex_state = 8}, - [5337] = {.lex_state = 64, .external_lex_state = 9}, - [5338] = {.lex_state = 64, .external_lex_state = 10}, - [5339] = {.lex_state = 62, .external_lex_state = 7}, - [5340] = {.lex_state = 62, .external_lex_state = 8}, - [5341] = {.lex_state = 64, .external_lex_state = 9}, - [5342] = {.lex_state = 64, .external_lex_state = 10}, - [5343] = {.lex_state = 62, .external_lex_state = 7}, - [5344] = {.lex_state = 62, .external_lex_state = 8}, - [5345] = {.lex_state = 64, .external_lex_state = 9}, - [5346] = {.lex_state = 64, .external_lex_state = 10}, - [5347] = {.lex_state = 62, .external_lex_state = 7}, - [5348] = {.lex_state = 62, .external_lex_state = 8}, - [5349] = {.lex_state = 64, .external_lex_state = 9}, - [5350] = {.lex_state = 64, .external_lex_state = 10}, - [5351] = {.lex_state = 62, .external_lex_state = 7}, - [5352] = {.lex_state = 62, .external_lex_state = 8}, - [5353] = {.lex_state = 64, .external_lex_state = 9}, - [5354] = {.lex_state = 64, .external_lex_state = 10}, - [5355] = {.lex_state = 62, .external_lex_state = 7}, - [5356] = {.lex_state = 62, .external_lex_state = 8}, - [5357] = {.lex_state = 64, .external_lex_state = 9}, + [5280] = {.lex_state = 62, .external_lex_state = 11}, + [5281] = {.lex_state = 64, .external_lex_state = 8}, + [5282] = {.lex_state = 62, .external_lex_state = 9}, + [5283] = {.lex_state = 64, .external_lex_state = 10}, + [5284] = {.lex_state = 64, .external_lex_state = 16}, + [5285] = {.lex_state = 64, .external_lex_state = 8}, + [5286] = {.lex_state = 64, .external_lex_state = 12}, + [5287] = {.lex_state = 62, .external_lex_state = 11}, + [5288] = {.lex_state = 64, .external_lex_state = 14}, + [5289] = {.lex_state = 64, .external_lex_state = 7}, + [5290] = {.lex_state = 64, .external_lex_state = 12}, + [5291] = {.lex_state = 64, .external_lex_state = 13}, + [5292] = {.lex_state = 64, .external_lex_state = 15}, + [5293] = {.lex_state = 64, .external_lex_state = 16}, + [5294] = {.lex_state = 62, .external_lex_state = 11}, + [5295] = {.lex_state = 64, .external_lex_state = 14}, + [5296] = {.lex_state = 62, .external_lex_state = 11}, + [5297] = {.lex_state = 64, .external_lex_state = 8}, + [5298] = {.lex_state = 62, .external_lex_state = 9}, + [5299] = {.lex_state = 64, .external_lex_state = 10}, + [5300] = {.lex_state = 64, .external_lex_state = 15}, + [5301] = {.lex_state = 62, .external_lex_state = 9}, + [5302] = {.lex_state = 64, .external_lex_state = 13}, + [5303] = {.lex_state = 64, .external_lex_state = 14}, + [5304] = {.lex_state = 64, .external_lex_state = 7}, + [5305] = {.lex_state = 64, .external_lex_state = 12}, + [5306] = {.lex_state = 64, .external_lex_state = 7}, + [5307] = {.lex_state = 64, .external_lex_state = 12}, + [5308] = {.lex_state = 64, .external_lex_state = 13}, + [5309] = {.lex_state = 64, .external_lex_state = 13}, + [5310] = {.lex_state = 64, .external_lex_state = 15}, + [5311] = {.lex_state = 64, .external_lex_state = 15}, + [5312] = {.lex_state = 64, .external_lex_state = 16}, + [5313] = {.lex_state = 64, .external_lex_state = 16}, + [5314] = {.lex_state = 62, .external_lex_state = 11}, + [5315] = {.lex_state = 64, .external_lex_state = 8}, + [5316] = {.lex_state = 64, .external_lex_state = 16}, + [5317] = {.lex_state = 62, .external_lex_state = 9}, + [5318] = {.lex_state = 64, .external_lex_state = 10}, + [5319] = {.lex_state = 64, .external_lex_state = 14}, + [5320] = {.lex_state = 64, .external_lex_state = 14}, + [5321] = {.lex_state = 64, .external_lex_state = 14}, + [5322] = {.lex_state = 64, .external_lex_state = 7}, + [5323] = {.lex_state = 64, .external_lex_state = 12}, + [5324] = {.lex_state = 64, .external_lex_state = 13}, + [5325] = {.lex_state = 64, .external_lex_state = 15}, + [5326] = {.lex_state = 64, .external_lex_state = 16}, + [5327] = {.lex_state = 64, .external_lex_state = 7}, + [5328] = {.lex_state = 62, .external_lex_state = 11}, + [5329] = {.lex_state = 64, .external_lex_state = 8}, + [5330] = {.lex_state = 62, .external_lex_state = 9}, + [5331] = {.lex_state = 64, .external_lex_state = 10}, + [5332] = {.lex_state = 64, .external_lex_state = 7}, + [5333] = {.lex_state = 62, .external_lex_state = 11}, + [5334] = {.lex_state = 64, .external_lex_state = 14}, + [5335] = {.lex_state = 64, .external_lex_state = 7}, + [5336] = {.lex_state = 64, .external_lex_state = 12}, + [5337] = {.lex_state = 64, .external_lex_state = 13}, + [5338] = {.lex_state = 64, .external_lex_state = 15}, + [5339] = {.lex_state = 64, .external_lex_state = 16}, + [5340] = {.lex_state = 64, .external_lex_state = 8}, + [5341] = {.lex_state = 62, .external_lex_state = 11}, + [5342] = {.lex_state = 64, .external_lex_state = 8}, + [5343] = {.lex_state = 62, .external_lex_state = 9}, + [5344] = {.lex_state = 64, .external_lex_state = 10}, + [5345] = {.lex_state = 62, .external_lex_state = 9}, + [5346] = {.lex_state = 64, .external_lex_state = 12}, + [5347] = {.lex_state = 64, .external_lex_state = 13}, + [5348] = {.lex_state = 64, .external_lex_state = 14}, + [5349] = {.lex_state = 64, .external_lex_state = 7}, + [5350] = {.lex_state = 64, .external_lex_state = 12}, + [5351] = {.lex_state = 64, .external_lex_state = 13}, + [5352] = {.lex_state = 64, .external_lex_state = 15}, + [5353] = {.lex_state = 64, .external_lex_state = 16}, + [5354] = {.lex_state = 64, .external_lex_state = 15}, + [5355] = {.lex_state = 62, .external_lex_state = 11}, + [5356] = {.lex_state = 64, .external_lex_state = 8}, + [5357] = {.lex_state = 62, .external_lex_state = 9}, [5358] = {.lex_state = 64, .external_lex_state = 10}, - [5359] = {.lex_state = 62, .external_lex_state = 7}, - [5360] = {.lex_state = 62, .external_lex_state = 8}, - [5361] = {.lex_state = 64, .external_lex_state = 9}, - [5362] = {.lex_state = 64, .external_lex_state = 10}, - [5363] = {.lex_state = 62, .external_lex_state = 7}, - [5364] = {.lex_state = 62, .external_lex_state = 8}, - [5365] = {.lex_state = 64, .external_lex_state = 9}, - [5366] = {.lex_state = 64, .external_lex_state = 10}, - [5367] = {.lex_state = 62, .external_lex_state = 7}, - [5368] = {.lex_state = 62, .external_lex_state = 8}, - [5369] = {.lex_state = 64, .external_lex_state = 9}, - [5370] = {.lex_state = 64, .external_lex_state = 10}, - [5371] = {.lex_state = 62, .external_lex_state = 7}, - [5372] = {.lex_state = 62, .external_lex_state = 8}, - [5373] = {.lex_state = 64, .external_lex_state = 9}, - [5374] = {.lex_state = 64, .external_lex_state = 10}, - [5375] = {.lex_state = 62, .external_lex_state = 7}, - [5376] = {.lex_state = 62, .external_lex_state = 8}, - [5377] = {.lex_state = 62, .external_lex_state = 7}, - [5378] = {.lex_state = 62, .external_lex_state = 8}, - [5379] = {.lex_state = 62, .external_lex_state = 7}, - [5380] = {.lex_state = 62, .external_lex_state = 8}, - [5381] = {.lex_state = 62, .external_lex_state = 7}, - [5382] = {.lex_state = 62, .external_lex_state = 8}, - [5383] = {.lex_state = 62, .external_lex_state = 7}, - [5384] = {.lex_state = 62, .external_lex_state = 8}, - [5385] = {.lex_state = 62, .external_lex_state = 7}, - [5386] = {.lex_state = 62, .external_lex_state = 8}, - [5387] = {.lex_state = 62, .external_lex_state = 7}, - [5388] = {.lex_state = 62, .external_lex_state = 8}, - [5389] = {.lex_state = 62, .external_lex_state = 7}, - [5390] = {.lex_state = 62, .external_lex_state = 8}, - [5391] = {.lex_state = 62, .external_lex_state = 11}, - [5392] = {.lex_state = 62, .external_lex_state = 12}, - [5393] = {.lex_state = 62, .external_lex_state = 13}, - [5394] = {.lex_state = 62, .external_lex_state = 14}, - [5395] = {.lex_state = 62, .external_lex_state = 15}, - [5396] = {.lex_state = 62, .external_lex_state = 16}, - [5397] = {.lex_state = 64, .external_lex_state = 10}, - [5398] = {.lex_state = 62, .external_lex_state = 8}, - [5399] = {.lex_state = 64, .external_lex_state = 9}, - [5400] = {.lex_state = 64, .external_lex_state = 10}, - [5401] = {.lex_state = 62, .external_lex_state = 7}, - [5402] = {.lex_state = 62, .external_lex_state = 8}, - [5403] = {.lex_state = 64, .external_lex_state = 9}, - [5404] = {.lex_state = 64, .external_lex_state = 10}, - [5405] = {.lex_state = 62, .external_lex_state = 11}, - [5406] = {.lex_state = 62, .external_lex_state = 12}, - [5407] = {.lex_state = 62, .external_lex_state = 13}, - [5408] = {.lex_state = 62, .external_lex_state = 14}, - [5409] = {.lex_state = 62, .external_lex_state = 15}, - [5410] = {.lex_state = 64, .external_lex_state = 9}, - [5411] = {.lex_state = 62, .external_lex_state = 6}, - [5412] = {.lex_state = 62, .external_lex_state = 6}, - [5413] = {.lex_state = 62, .external_lex_state = 6}, - [5414] = {.lex_state = 142, .external_lex_state = 6}, + [5359] = {.lex_state = 64, .external_lex_state = 16}, + [5360] = {.lex_state = 64, .external_lex_state = 10}, + [5361] = {.lex_state = 62, .external_lex_state = 11}, + [5362] = {.lex_state = 62, .external_lex_state = 11}, + [5363] = {.lex_state = 64, .external_lex_state = 8}, + [5364] = {.lex_state = 62, .external_lex_state = 9}, + [5365] = {.lex_state = 64, .external_lex_state = 10}, + [5366] = {.lex_state = 64, .external_lex_state = 14}, + [5367] = {.lex_state = 64, .external_lex_state = 10}, + [5368] = {.lex_state = 64, .external_lex_state = 7}, + [5369] = {.lex_state = 62, .external_lex_state = 11}, + [5370] = {.lex_state = 64, .external_lex_state = 8}, + [5371] = {.lex_state = 64, .external_lex_state = 12}, + [5372] = {.lex_state = 64, .external_lex_state = 13}, + [5373] = {.lex_state = 62, .external_lex_state = 9}, + [5374] = {.lex_state = 64, .external_lex_state = 15}, + [5375] = {.lex_state = 64, .external_lex_state = 10}, + [5376] = {.lex_state = 64, .external_lex_state = 16}, + [5377] = {.lex_state = 64, .external_lex_state = 8}, + [5378] = {.lex_state = 62, .external_lex_state = 11}, + [5379] = {.lex_state = 64, .external_lex_state = 8}, + [5380] = {.lex_state = 62, .external_lex_state = 9}, + [5381] = {.lex_state = 64, .external_lex_state = 10}, + [5382] = {.lex_state = 64, .external_lex_state = 14}, + [5383] = {.lex_state = 64, .external_lex_state = 14}, + [5384] = {.lex_state = 64, .external_lex_state = 10}, + [5385] = {.lex_state = 62, .external_lex_state = 11}, + [5386] = {.lex_state = 64, .external_lex_state = 10}, + [5387] = {.lex_state = 64, .external_lex_state = 6}, + [5388] = {.lex_state = 64, .external_lex_state = 6}, + [5389] = {.lex_state = 64, .external_lex_state = 6}, + [5390] = {.lex_state = 64, .external_lex_state = 6}, + [5391] = {.lex_state = 64, .external_lex_state = 6}, + [5392] = {.lex_state = 64, .external_lex_state = 6}, + [5393] = {.lex_state = 64, .external_lex_state = 6}, + [5394] = {.lex_state = 64, .external_lex_state = 6}, + [5395] = {.lex_state = 64, .external_lex_state = 6}, + [5396] = {.lex_state = 64, .external_lex_state = 6}, + [5397] = {.lex_state = 64, .external_lex_state = 6}, + [5398] = {.lex_state = 64, .external_lex_state = 6}, + [5399] = {.lex_state = 64, .external_lex_state = 6}, + [5400] = {.lex_state = 142, .external_lex_state = 6}, + [5401] = {.lex_state = 64, .external_lex_state = 6}, + [5402] = {.lex_state = 64, .external_lex_state = 6}, + [5403] = {.lex_state = 64, .external_lex_state = 6}, + [5404] = {.lex_state = 64, .external_lex_state = 6}, + [5405] = {.lex_state = 64, .external_lex_state = 6}, + [5406] = {.lex_state = 64, .external_lex_state = 6}, + [5407] = {.lex_state = 64, .external_lex_state = 6}, + [5408] = {.lex_state = 64, .external_lex_state = 6}, + [5409] = {.lex_state = 64, .external_lex_state = 6}, + [5410] = {.lex_state = 64, .external_lex_state = 6}, + [5411] = {.lex_state = 64, .external_lex_state = 6}, + [5412] = {.lex_state = 64, .external_lex_state = 6}, + [5413] = {.lex_state = 64, .external_lex_state = 6}, + [5414] = {.lex_state = 62, .external_lex_state = 6}, [5415] = {.lex_state = 62, .external_lex_state = 6}, - [5416] = {.lex_state = 62, .external_lex_state = 6}, - [5417] = {.lex_state = 62, .external_lex_state = 6}, - [5418] = {.lex_state = 314, .external_lex_state = 6}, + [5416] = {.lex_state = 64, .external_lex_state = 6}, + [5417] = {.lex_state = 64, .external_lex_state = 6}, + [5418] = {.lex_state = 318, .external_lex_state = 6}, [5419] = {.lex_state = 62, .external_lex_state = 6}, [5420] = {.lex_state = 62, .external_lex_state = 6}, - [5421] = {.lex_state = 62, .external_lex_state = 6}, - [5422] = {.lex_state = 62, .external_lex_state = 6}, + [5421] = {.lex_state = 64, .external_lex_state = 6}, + [5422] = {.lex_state = 64, .external_lex_state = 6}, [5423] = {.lex_state = 62, .external_lex_state = 6}, [5424] = {.lex_state = 62, .external_lex_state = 6}, - [5425] = {.lex_state = 62, .external_lex_state = 6}, - [5426] = {.lex_state = 62, .external_lex_state = 6}, - [5427] = {.lex_state = 314, .external_lex_state = 6}, - [5428] = {.lex_state = 62, .external_lex_state = 6}, - [5429] = {.lex_state = 62, .external_lex_state = 6}, - [5430] = {.lex_state = 62, .external_lex_state = 6}, - [5431] = {.lex_state = 62, .external_lex_state = 6}, - [5432] = {.lex_state = 314, .external_lex_state = 6}, + [5425] = {.lex_state = 64, .external_lex_state = 6}, + [5426] = {.lex_state = 64, .external_lex_state = 6}, + [5427] = {.lex_state = 64, .external_lex_state = 6}, + [5428] = {.lex_state = 142, .external_lex_state = 6}, + [5429] = {.lex_state = 64, .external_lex_state = 6}, + [5430] = {.lex_state = 318, .external_lex_state = 6}, + [5431] = {.lex_state = 318, .external_lex_state = 6}, + [5432] = {.lex_state = 318, .external_lex_state = 6}, [5433] = {.lex_state = 62, .external_lex_state = 6}, - [5434] = {.lex_state = 62, .external_lex_state = 6}, + [5434] = {.lex_state = 64, .external_lex_state = 6}, [5435] = {.lex_state = 62, .external_lex_state = 6}, - [5436] = {.lex_state = 62, .external_lex_state = 6}, - [5437] = {.lex_state = 64, .external_lex_state = 6}, - [5438] = {.lex_state = 64, .external_lex_state = 6}, - [5439] = {.lex_state = 64, .external_lex_state = 6}, - [5440] = {.lex_state = 64, .external_lex_state = 6}, - [5441] = {.lex_state = 142, .external_lex_state = 6}, - [5442] = {.lex_state = 62, .external_lex_state = 6}, - [5443] = {.lex_state = 142, .external_lex_state = 6}, - [5444] = {.lex_state = 64, .external_lex_state = 6}, - [5445] = {.lex_state = 64, .external_lex_state = 6}, - [5446] = {.lex_state = 62, .external_lex_state = 6}, - [5447] = {.lex_state = 62, .external_lex_state = 6}, + [5436] = {.lex_state = 64, .external_lex_state = 6}, + [5437] = {.lex_state = 142, .external_lex_state = 6}, + [5438] = {.lex_state = 142, .external_lex_state = 6}, + [5439] = {.lex_state = 142, .external_lex_state = 6}, + [5440] = {.lex_state = 142, .external_lex_state = 6}, + [5441] = {.lex_state = 318, .external_lex_state = 6}, + [5442] = {.lex_state = 142, .external_lex_state = 6}, + [5443] = {.lex_state = 64, .external_lex_state = 6}, + [5444] = {.lex_state = 318, .external_lex_state = 6}, + [5445] = {.lex_state = 318, .external_lex_state = 6}, + [5446] = {.lex_state = 64, .external_lex_state = 6}, + [5447] = {.lex_state = 64, .external_lex_state = 6}, [5448] = {.lex_state = 64, .external_lex_state = 6}, - [5449] = {.lex_state = 314, .external_lex_state = 6}, - [5450] = {.lex_state = 62, .external_lex_state = 6}, - [5451] = {.lex_state = 314, .external_lex_state = 6}, - [5452] = {.lex_state = 314, .external_lex_state = 6}, - [5453] = {.lex_state = 62, .external_lex_state = 6}, + [5449] = {.lex_state = 64, .external_lex_state = 6}, + [5450] = {.lex_state = 64, .external_lex_state = 6}, + [5451] = {.lex_state = 64, .external_lex_state = 6}, + [5452] = {.lex_state = 64, .external_lex_state = 6}, + [5453] = {.lex_state = 64, .external_lex_state = 6}, [5454] = {.lex_state = 64, .external_lex_state = 6}, - [5455] = {.lex_state = 62, .external_lex_state = 6}, + [5455] = {.lex_state = 64, .external_lex_state = 6}, [5456] = {.lex_state = 64, .external_lex_state = 6}, [5457] = {.lex_state = 64, .external_lex_state = 6}, - [5458] = {.lex_state = 62, .external_lex_state = 6}, - [5459] = {.lex_state = 64, .external_lex_state = 6}, + [5458] = {.lex_state = 142, .external_lex_state = 6}, + [5459] = {.lex_state = 142, .external_lex_state = 6}, [5460] = {.lex_state = 64, .external_lex_state = 6}, - [5461] = {.lex_state = 62, .external_lex_state = 6}, - [5462] = {.lex_state = 62, .external_lex_state = 6}, - [5463] = {.lex_state = 142, .external_lex_state = 6}, - [5464] = {.lex_state = 142, .external_lex_state = 6}, - [5465] = {.lex_state = 314, .external_lex_state = 6}, - [5466] = {.lex_state = 142, .external_lex_state = 6}, - [5467] = {.lex_state = 314, .external_lex_state = 6}, - [5468] = {.lex_state = 314, .external_lex_state = 6}, - [5469] = {.lex_state = 62, .external_lex_state = 6}, - [5470] = {.lex_state = 62, .external_lex_state = 6}, - [5471] = {.lex_state = 62, .external_lex_state = 6}, - [5472] = {.lex_state = 62, .external_lex_state = 6}, - [5473] = {.lex_state = 62, .external_lex_state = 6}, + [5461] = {.lex_state = 64, .external_lex_state = 6}, + [5462] = {.lex_state = 64, .external_lex_state = 6}, + [5463] = {.lex_state = 64, .external_lex_state = 6}, + [5464] = {.lex_state = 64, .external_lex_state = 6}, + [5465] = {.lex_state = 318, .external_lex_state = 6}, + [5466] = {.lex_state = 64, .external_lex_state = 6}, + [5467] = {.lex_state = 64, .external_lex_state = 6}, + [5468] = {.lex_state = 64, .external_lex_state = 6}, + [5469] = {.lex_state = 64, .external_lex_state = 6}, + [5470] = {.lex_state = 64, .external_lex_state = 6}, + [5471] = {.lex_state = 64, .external_lex_state = 6}, + [5472] = {.lex_state = 64, .external_lex_state = 6}, + [5473] = {.lex_state = 318, .external_lex_state = 6}, [5474] = {.lex_state = 62, .external_lex_state = 6}, - [5475] = {.lex_state = 62, .external_lex_state = 6}, + [5475] = {.lex_state = 318, .external_lex_state = 6}, [5476] = {.lex_state = 62, .external_lex_state = 6}, - [5477] = {.lex_state = 62, .external_lex_state = 6}, + [5477] = {.lex_state = 318, .external_lex_state = 6}, [5478] = {.lex_state = 62, .external_lex_state = 6}, - [5479] = {.lex_state = 62, .external_lex_state = 6}, - [5480] = {.lex_state = 62, .external_lex_state = 6}, - [5481] = {.lex_state = 142, .external_lex_state = 6}, + [5479] = {.lex_state = 64, .external_lex_state = 6}, + [5480] = {.lex_state = 318, .external_lex_state = 6}, + [5481] = {.lex_state = 62, .external_lex_state = 6}, [5482] = {.lex_state = 62, .external_lex_state = 6}, - [5483] = {.lex_state = 62, .external_lex_state = 6}, - [5484] = {.lex_state = 62, .external_lex_state = 6}, + [5483] = {.lex_state = 64, .external_lex_state = 6}, + [5484] = {.lex_state = 64, .external_lex_state = 6}, [5485] = {.lex_state = 62, .external_lex_state = 6}, [5486] = {.lex_state = 62, .external_lex_state = 6}, - [5487] = {.lex_state = 62, .external_lex_state = 6}, - [5488] = {.lex_state = 62, .external_lex_state = 6}, - [5489] = {.lex_state = 62, .external_lex_state = 6}, - [5490] = {.lex_state = 62, .external_lex_state = 6}, - [5491] = {.lex_state = 62, .external_lex_state = 6}, - [5492] = {.lex_state = 62, .external_lex_state = 6}, - [5493] = {.lex_state = 62, .external_lex_state = 6}, - [5494] = {.lex_state = 62, .external_lex_state = 6}, - [5495] = {.lex_state = 62, .external_lex_state = 6}, - [5496] = {.lex_state = 62, .external_lex_state = 6}, - [5497] = {.lex_state = 314, .external_lex_state = 6}, - [5498] = {.lex_state = 62, .external_lex_state = 6}, + [5487] = {.lex_state = 64, .external_lex_state = 6}, + [5488] = {.lex_state = 64, .external_lex_state = 6}, + [5489] = {.lex_state = 64, .external_lex_state = 6}, + [5490] = {.lex_state = 64, .external_lex_state = 6}, + [5491] = {.lex_state = 142, .external_lex_state = 6}, + [5492] = {.lex_state = 64, .external_lex_state = 6}, + [5493] = {.lex_state = 64, .external_lex_state = 6}, + [5494] = {.lex_state = 318, .external_lex_state = 6}, + [5495] = {.lex_state = 318, .external_lex_state = 6}, + [5496] = {.lex_state = 318, .external_lex_state = 6}, + [5497] = {.lex_state = 62, .external_lex_state = 6}, + [5498] = {.lex_state = 64, .external_lex_state = 6}, [5499] = {.lex_state = 62, .external_lex_state = 6}, - [5500] = {.lex_state = 62, .external_lex_state = 6}, - [5501] = {.lex_state = 62, .external_lex_state = 6}, + [5500] = {.lex_state = 64, .external_lex_state = 6}, + [5501] = {.lex_state = 64, .external_lex_state = 6}, [5502] = {.lex_state = 64, .external_lex_state = 6}, [5503] = {.lex_state = 64, .external_lex_state = 6}, - [5504] = {.lex_state = 64, .external_lex_state = 6}, - [5505] = {.lex_state = 64, .external_lex_state = 6}, - [5506] = {.lex_state = 142, .external_lex_state = 6}, - [5507] = {.lex_state = 314, .external_lex_state = 6}, - [5508] = {.lex_state = 314, .external_lex_state = 6}, - [5509] = {.lex_state = 314, .external_lex_state = 6}, - [5510] = {.lex_state = 62, .external_lex_state = 6}, - [5511] = {.lex_state = 142, .external_lex_state = 6}, - [5512] = {.lex_state = 62, .external_lex_state = 6}, + [5504] = {.lex_state = 142, .external_lex_state = 6}, + [5505] = {.lex_state = 142, .external_lex_state = 6}, + [5506] = {.lex_state = 64, .external_lex_state = 6}, + [5507] = {.lex_state = 318, .external_lex_state = 6}, + [5508] = {.lex_state = 318, .external_lex_state = 6}, + [5509] = {.lex_state = 64, .external_lex_state = 6}, + [5510] = {.lex_state = 64, .external_lex_state = 6}, + [5511] = {.lex_state = 64, .external_lex_state = 6}, + [5512] = {.lex_state = 64, .external_lex_state = 6}, [5513] = {.lex_state = 64, .external_lex_state = 6}, [5514] = {.lex_state = 64, .external_lex_state = 6}, - [5515] = {.lex_state = 62, .external_lex_state = 6}, + [5515] = {.lex_state = 64, .external_lex_state = 6}, [5516] = {.lex_state = 64, .external_lex_state = 6}, [5517] = {.lex_state = 64, .external_lex_state = 6}, [5518] = {.lex_state = 64, .external_lex_state = 6}, [5519] = {.lex_state = 64, .external_lex_state = 6}, - [5520] = {.lex_state = 142, .external_lex_state = 6}, + [5520] = {.lex_state = 64, .external_lex_state = 6}, [5521] = {.lex_state = 142, .external_lex_state = 6}, - [5522] = {.lex_state = 314, .external_lex_state = 6}, - [5523] = {.lex_state = 314, .external_lex_state = 6}, + [5522] = {.lex_state = 318, .external_lex_state = 6}, + [5523] = {.lex_state = 62, .external_lex_state = 6}, [5524] = {.lex_state = 62, .external_lex_state = 6}, - [5525] = {.lex_state = 62, .external_lex_state = 6}, - [5526] = {.lex_state = 62, .external_lex_state = 6}, - [5527] = {.lex_state = 62, .external_lex_state = 6}, - [5528] = {.lex_state = 62, .external_lex_state = 6}, - [5529] = {.lex_state = 62, .external_lex_state = 6}, - [5530] = {.lex_state = 62, .external_lex_state = 6}, - [5531] = {.lex_state = 62, .external_lex_state = 6}, - [5532] = {.lex_state = 62, .external_lex_state = 6}, + [5525] = {.lex_state = 64, .external_lex_state = 6}, + [5526] = {.lex_state = 64, .external_lex_state = 6}, + [5527] = {.lex_state = 64, .external_lex_state = 6}, + [5528] = {.lex_state = 64, .external_lex_state = 6}, + [5529] = {.lex_state = 64, .external_lex_state = 6}, + [5530] = {.lex_state = 64, .external_lex_state = 6}, + [5531] = {.lex_state = 64, .external_lex_state = 6}, + [5532] = {.lex_state = 64, .external_lex_state = 6}, [5533] = {.lex_state = 62, .external_lex_state = 6}, [5534] = {.lex_state = 62, .external_lex_state = 6}, - [5535] = {.lex_state = 62, .external_lex_state = 6}, - [5536] = {.lex_state = 142, .external_lex_state = 6}, + [5535] = {.lex_state = 64, .external_lex_state = 6}, + [5536] = {.lex_state = 64, .external_lex_state = 6}, [5537] = {.lex_state = 64, .external_lex_state = 6}, - [5538] = {.lex_state = 64, .external_lex_state = 6}, + [5538] = {.lex_state = 318, .external_lex_state = 6}, [5539] = {.lex_state = 62, .external_lex_state = 6}, [5540] = {.lex_state = 62, .external_lex_state = 6}, - [5541] = {.lex_state = 62, .external_lex_state = 6}, - [5542] = {.lex_state = 62, .external_lex_state = 6}, + [5541] = {.lex_state = 64, .external_lex_state = 6}, + [5542] = {.lex_state = 64, .external_lex_state = 6}, [5543] = {.lex_state = 62, .external_lex_state = 6}, [5544] = {.lex_state = 62, .external_lex_state = 6}, - [5545] = {.lex_state = 314, .external_lex_state = 6}, - [5546] = {.lex_state = 314, .external_lex_state = 6}, - [5547] = {.lex_state = 142, .external_lex_state = 6}, - [5548] = {.lex_state = 314, .external_lex_state = 6}, - [5549] = {.lex_state = 62, .external_lex_state = 6}, + [5545] = {.lex_state = 64, .external_lex_state = 6}, + [5546] = {.lex_state = 64, .external_lex_state = 6}, + [5547] = {.lex_state = 64, .external_lex_state = 6}, + [5548] = {.lex_state = 142, .external_lex_state = 6}, + [5549] = {.lex_state = 142, .external_lex_state = 6}, [5550] = {.lex_state = 62, .external_lex_state = 6}, - [5551] = {.lex_state = 142, .external_lex_state = 6}, - [5552] = {.lex_state = 62, .external_lex_state = 6}, - [5553] = {.lex_state = 64, .external_lex_state = 6}, - [5554] = {.lex_state = 314, .external_lex_state = 6}, - [5555] = {.lex_state = 62, .external_lex_state = 6}, + [5551] = {.lex_state = 62, .external_lex_state = 6}, + [5552] = {.lex_state = 64, .external_lex_state = 6}, + [5553] = {.lex_state = 318, .external_lex_state = 6}, + [5554] = {.lex_state = 318, .external_lex_state = 6}, + [5555] = {.lex_state = 318, .external_lex_state = 6}, [5556] = {.lex_state = 62, .external_lex_state = 6}, - [5557] = {.lex_state = 62, .external_lex_state = 6}, + [5557] = {.lex_state = 64, .external_lex_state = 6}, [5558] = {.lex_state = 62, .external_lex_state = 6}, [5559] = {.lex_state = 64, .external_lex_state = 6}, - [5560] = {.lex_state = 64, .external_lex_state = 6}, + [5560] = {.lex_state = 318, .external_lex_state = 6}, [5561] = {.lex_state = 64, .external_lex_state = 6}, [5562] = {.lex_state = 64, .external_lex_state = 6}, - [5563] = {.lex_state = 64, .external_lex_state = 6}, - [5564] = {.lex_state = 314, .external_lex_state = 6}, - [5565] = {.lex_state = 142, .external_lex_state = 6}, + [5563] = {.lex_state = 142, .external_lex_state = 6}, + [5564] = {.lex_state = 142, .external_lex_state = 6}, + [5565] = {.lex_state = 318, .external_lex_state = 6}, [5566] = {.lex_state = 142, .external_lex_state = 6}, - [5567] = {.lex_state = 314, .external_lex_state = 6}, - [5568] = {.lex_state = 314, .external_lex_state = 6}, - [5569] = {.lex_state = 314, .external_lex_state = 6}, - [5570] = {.lex_state = 62, .external_lex_state = 6}, - [5571] = {.lex_state = 62, .external_lex_state = 6}, + [5567] = {.lex_state = 318, .external_lex_state = 6}, + [5568] = {.lex_state = 318, .external_lex_state = 6}, + [5569] = {.lex_state = 318, .external_lex_state = 6}, + [5570] = {.lex_state = 64, .external_lex_state = 6}, + [5571] = {.lex_state = 64, .external_lex_state = 6}, [5572] = {.lex_state = 64, .external_lex_state = 6}, [5573] = {.lex_state = 64, .external_lex_state = 6}, - [5574] = {.lex_state = 314, .external_lex_state = 6}, - [5575] = {.lex_state = 62, .external_lex_state = 6}, - [5576] = {.lex_state = 314, .external_lex_state = 6}, - [5577] = {.lex_state = 142, .external_lex_state = 6}, - [5578] = {.lex_state = 142, .external_lex_state = 6}, - [5579] = {.lex_state = 314, .external_lex_state = 6}, - [5580] = {.lex_state = 314, .external_lex_state = 6}, - [5581] = {.lex_state = 314, .external_lex_state = 6}, - [5582] = {.lex_state = 62, .external_lex_state = 6}, - [5583] = {.lex_state = 62, .external_lex_state = 6}, - [5584] = {.lex_state = 62, .external_lex_state = 6}, + [5574] = {.lex_state = 64, .external_lex_state = 6}, + [5575] = {.lex_state = 64, .external_lex_state = 6}, + [5576] = {.lex_state = 64, .external_lex_state = 6}, + [5577] = {.lex_state = 64, .external_lex_state = 6}, + [5578] = {.lex_state = 64, .external_lex_state = 6}, + [5579] = {.lex_state = 64, .external_lex_state = 6}, + [5580] = {.lex_state = 64, .external_lex_state = 6}, + [5581] = {.lex_state = 64, .external_lex_state = 6}, + [5582] = {.lex_state = 142, .external_lex_state = 6}, + [5583] = {.lex_state = 142, .external_lex_state = 6}, + [5584] = {.lex_state = 318, .external_lex_state = 6}, [5585] = {.lex_state = 62, .external_lex_state = 6}, - [5586] = {.lex_state = 62, .external_lex_state = 6}, - [5587] = {.lex_state = 62, .external_lex_state = 6}, + [5586] = {.lex_state = 64, .external_lex_state = 6}, + [5587] = {.lex_state = 318, .external_lex_state = 6}, [5588] = {.lex_state = 62, .external_lex_state = 6}, - [5589] = {.lex_state = 62, .external_lex_state = 6}, - [5590] = {.lex_state = 62, .external_lex_state = 6}, - [5591] = {.lex_state = 62, .external_lex_state = 6}, - [5592] = {.lex_state = 62, .external_lex_state = 6}, - [5593] = {.lex_state = 62, .external_lex_state = 6}, - [5594] = {.lex_state = 142, .external_lex_state = 6}, - [5595] = {.lex_state = 62, .external_lex_state = 6}, - [5596] = {.lex_state = 62, .external_lex_state = 6}, - [5597] = {.lex_state = 64, .external_lex_state = 6}, + [5589] = {.lex_state = 64, .external_lex_state = 6}, + [5590] = {.lex_state = 64, .external_lex_state = 6}, + [5591] = {.lex_state = 64, .external_lex_state = 6}, + [5592] = {.lex_state = 64, .external_lex_state = 6}, + [5593] = {.lex_state = 64, .external_lex_state = 6}, + [5594] = {.lex_state = 64, .external_lex_state = 6}, + [5595] = {.lex_state = 64, .external_lex_state = 6}, + [5596] = {.lex_state = 318, .external_lex_state = 6}, + [5597] = {.lex_state = 62, .external_lex_state = 6}, [5598] = {.lex_state = 62, .external_lex_state = 6}, - [5599] = {.lex_state = 62, .external_lex_state = 6}, - [5600] = {.lex_state = 62, .external_lex_state = 6}, + [5599] = {.lex_state = 64, .external_lex_state = 6}, + [5600] = {.lex_state = 64, .external_lex_state = 6}, [5601] = {.lex_state = 62, .external_lex_state = 6}, [5602] = {.lex_state = 62, .external_lex_state = 6}, - [5603] = {.lex_state = 62, .external_lex_state = 6}, + [5603] = {.lex_state = 64, .external_lex_state = 6}, [5604] = {.lex_state = 64, .external_lex_state = 6}, [5605] = {.lex_state = 142, .external_lex_state = 6}, [5606] = {.lex_state = 142, .external_lex_state = 6}, - [5607] = {.lex_state = 314, .external_lex_state = 6}, - [5608] = {.lex_state = 62, .external_lex_state = 6}, - [5609] = {.lex_state = 142, .external_lex_state = 6}, - [5610] = {.lex_state = 62, .external_lex_state = 6}, + [5607] = {.lex_state = 142, .external_lex_state = 6}, + [5608] = {.lex_state = 318, .external_lex_state = 6}, + [5609] = {.lex_state = 318, .external_lex_state = 6}, + [5610] = {.lex_state = 318, .external_lex_state = 6}, [5611] = {.lex_state = 62, .external_lex_state = 6}, - [5612] = {.lex_state = 62, .external_lex_state = 6}, - [5613] = {.lex_state = 314, .external_lex_state = 6}, - [5614] = {.lex_state = 62, .external_lex_state = 6}, - [5615] = {.lex_state = 62, .external_lex_state = 6}, - [5616] = {.lex_state = 62, .external_lex_state = 6}, - [5617] = {.lex_state = 62, .external_lex_state = 6}, - [5618] = {.lex_state = 64, .external_lex_state = 6}, + [5612] = {.lex_state = 64, .external_lex_state = 6}, + [5613] = {.lex_state = 62, .external_lex_state = 6}, + [5614] = {.lex_state = 64, .external_lex_state = 6}, + [5615] = {.lex_state = 142, .external_lex_state = 6}, + [5616] = {.lex_state = 142, .external_lex_state = 6}, + [5617] = {.lex_state = 318, .external_lex_state = 6}, + [5618] = {.lex_state = 318, .external_lex_state = 6}, [5619] = {.lex_state = 64, .external_lex_state = 6}, - [5620] = {.lex_state = 64, .external_lex_state = 6}, - [5621] = {.lex_state = 64, .external_lex_state = 6}, + [5620] = {.lex_state = 318, .external_lex_state = 6}, + [5621] = {.lex_state = 318, .external_lex_state = 6}, [5622] = {.lex_state = 64, .external_lex_state = 6}, [5623] = {.lex_state = 64, .external_lex_state = 6}, [5624] = {.lex_state = 64, .external_lex_state = 6}, [5625] = {.lex_state = 64, .external_lex_state = 6}, - [5626] = {.lex_state = 142, .external_lex_state = 6}, - [5627] = {.lex_state = 314, .external_lex_state = 6}, - [5628] = {.lex_state = 314, .external_lex_state = 6}, - [5629] = {.lex_state = 314, .external_lex_state = 6}, - [5630] = {.lex_state = 62, .external_lex_state = 6}, - [5631] = {.lex_state = 314, .external_lex_state = 6}, - [5632] = {.lex_state = 62, .external_lex_state = 6}, - [5633] = {.lex_state = 62, .external_lex_state = 6}, - [5634] = {.lex_state = 64, .external_lex_state = 6}, + [5626] = {.lex_state = 64, .external_lex_state = 6}, + [5627] = {.lex_state = 64, .external_lex_state = 6}, + [5628] = {.lex_state = 64, .external_lex_state = 6}, + [5629] = {.lex_state = 64, .external_lex_state = 6}, + [5630] = {.lex_state = 64, .external_lex_state = 6}, + [5631] = {.lex_state = 64, .external_lex_state = 6}, + [5632] = {.lex_state = 64, .external_lex_state = 6}, + [5633] = {.lex_state = 64, .external_lex_state = 6}, + [5634] = {.lex_state = 142, .external_lex_state = 6}, [5635] = {.lex_state = 64, .external_lex_state = 6}, - [5636] = {.lex_state = 314, .external_lex_state = 6}, - [5637] = {.lex_state = 142, .external_lex_state = 6}, - [5638] = {.lex_state = 142, .external_lex_state = 6}, - [5639] = {.lex_state = 142, .external_lex_state = 6}, - [5640] = {.lex_state = 142, .external_lex_state = 6}, - [5641] = {.lex_state = 314, .external_lex_state = 6}, - [5642] = {.lex_state = 314, .external_lex_state = 6}, - [5643] = {.lex_state = 62, .external_lex_state = 6}, - [5644] = {.lex_state = 62, .external_lex_state = 6}, - [5645] = {.lex_state = 62, .external_lex_state = 6}, - [5646] = {.lex_state = 62, .external_lex_state = 6}, - [5647] = {.lex_state = 62, .external_lex_state = 6}, - [5648] = {.lex_state = 62, .external_lex_state = 6}, - [5649] = {.lex_state = 62, .external_lex_state = 6}, - [5650] = {.lex_state = 62, .external_lex_state = 6}, - [5651] = {.lex_state = 62, .external_lex_state = 6}, - [5652] = {.lex_state = 62, .external_lex_state = 6}, - [5653] = {.lex_state = 62, .external_lex_state = 6}, + [5636] = {.lex_state = 64, .external_lex_state = 6}, + [5637] = {.lex_state = 64, .external_lex_state = 6}, + [5638] = {.lex_state = 64, .external_lex_state = 6}, + [5639] = {.lex_state = 64, .external_lex_state = 6}, + [5640] = {.lex_state = 64, .external_lex_state = 6}, + [5641] = {.lex_state = 64, .external_lex_state = 6}, + [5642] = {.lex_state = 64, .external_lex_state = 6}, + [5643] = {.lex_state = 64, .external_lex_state = 6}, + [5644] = {.lex_state = 64, .external_lex_state = 6}, + [5645] = {.lex_state = 64, .external_lex_state = 6}, + [5646] = {.lex_state = 64, .external_lex_state = 6}, + [5647] = {.lex_state = 64, .external_lex_state = 6}, + [5648] = {.lex_state = 64, .external_lex_state = 6}, + [5649] = {.lex_state = 64, .external_lex_state = 6}, + [5650] = {.lex_state = 64, .external_lex_state = 6}, + [5651] = {.lex_state = 64, .external_lex_state = 6}, + [5652] = {.lex_state = 318, .external_lex_state = 6}, + [5653] = {.lex_state = 318, .external_lex_state = 6}, [5654] = {.lex_state = 62, .external_lex_state = 6}, - [5655] = {.lex_state = 142, .external_lex_state = 6}, - [5656] = {.lex_state = 314, .external_lex_state = 6}, - [5657] = {.lex_state = 314, .external_lex_state = 6}, - [5658] = {.lex_state = 314, .external_lex_state = 6}, + [5655] = {.lex_state = 62, .external_lex_state = 6}, + [5656] = {.lex_state = 64, .external_lex_state = 6}, + [5657] = {.lex_state = 64, .external_lex_state = 6}, + [5658] = {.lex_state = 62, .external_lex_state = 6}, [5659] = {.lex_state = 62, .external_lex_state = 6}, - [5660] = {.lex_state = 62, .external_lex_state = 6}, - [5661] = {.lex_state = 62, .external_lex_state = 6}, - [5662] = {.lex_state = 62, .external_lex_state = 6}, - [5663] = {.lex_state = 62, .external_lex_state = 6}, - [5664] = {.lex_state = 62, .external_lex_state = 6}, - [5665] = {.lex_state = 62, .external_lex_state = 6}, - [5666] = {.lex_state = 62, .external_lex_state = 6}, + [5660] = {.lex_state = 64, .external_lex_state = 6}, + [5661] = {.lex_state = 64, .external_lex_state = 6}, + [5662] = {.lex_state = 142, .external_lex_state = 6}, + [5663] = {.lex_state = 142, .external_lex_state = 6}, + [5664] = {.lex_state = 318, .external_lex_state = 6}, + [5665] = {.lex_state = 318, .external_lex_state = 6}, + [5666] = {.lex_state = 318, .external_lex_state = 6}, [5667] = {.lex_state = 62, .external_lex_state = 6}, [5668] = {.lex_state = 64, .external_lex_state = 6}, - [5669] = {.lex_state = 64, .external_lex_state = 6}, - [5670] = {.lex_state = 62, .external_lex_state = 6}, - [5671] = {.lex_state = 142, .external_lex_state = 6}, - [5672] = {.lex_state = 142, .external_lex_state = 6}, - [5673] = {.lex_state = 64, .external_lex_state = 6}, - [5674] = {.lex_state = 314, .external_lex_state = 6}, - [5675] = {.lex_state = 62, .external_lex_state = 6}, - [5676] = {.lex_state = 62, .external_lex_state = 6}, - [5677] = {.lex_state = 62, .external_lex_state = 6}, - [5678] = {.lex_state = 62, .external_lex_state = 6}, - [5679] = {.lex_state = 64, .external_lex_state = 6}, + [5669] = {.lex_state = 62, .external_lex_state = 6}, + [5670] = {.lex_state = 64, .external_lex_state = 6}, + [5671] = {.lex_state = 64, .external_lex_state = 6}, + [5672] = {.lex_state = 64, .external_lex_state = 6}, + [5673] = {.lex_state = 142, .external_lex_state = 6}, + [5674] = {.lex_state = 142, .external_lex_state = 6}, + [5675] = {.lex_state = 64, .external_lex_state = 6}, + [5676] = {.lex_state = 64, .external_lex_state = 6}, + [5677] = {.lex_state = 64, .external_lex_state = 6}, + [5678] = {.lex_state = 318, .external_lex_state = 6}, + [5679] = {.lex_state = 318, .external_lex_state = 6}, [5680] = {.lex_state = 64, .external_lex_state = 6}, [5681] = {.lex_state = 64, .external_lex_state = 6}, [5682] = {.lex_state = 64, .external_lex_state = 6}, - [5683] = {.lex_state = 142, .external_lex_state = 6}, - [5684] = {.lex_state = 314, .external_lex_state = 6}, - [5685] = {.lex_state = 314, .external_lex_state = 6}, - [5686] = {.lex_state = 142, .external_lex_state = 6}, - [5687] = {.lex_state = 314, .external_lex_state = 6}, - [5688] = {.lex_state = 62, .external_lex_state = 6}, - [5689] = {.lex_state = 62, .external_lex_state = 6}, + [5683] = {.lex_state = 64, .external_lex_state = 6}, + [5684] = {.lex_state = 64, .external_lex_state = 6}, + [5685] = {.lex_state = 64, .external_lex_state = 6}, + [5686] = {.lex_state = 64, .external_lex_state = 6}, + [5687] = {.lex_state = 64, .external_lex_state = 6}, + [5688] = {.lex_state = 64, .external_lex_state = 6}, + [5689] = {.lex_state = 64, .external_lex_state = 6}, [5690] = {.lex_state = 64, .external_lex_state = 6}, [5691] = {.lex_state = 64, .external_lex_state = 6}, [5692] = {.lex_state = 142, .external_lex_state = 6}, - [5693] = {.lex_state = 142, .external_lex_state = 6}, - [5694] = {.lex_state = 142, .external_lex_state = 6}, - [5695] = {.lex_state = 314, .external_lex_state = 6}, - [5696] = {.lex_state = 314, .external_lex_state = 6}, - [5697] = {.lex_state = 62, .external_lex_state = 6}, - [5698] = {.lex_state = 62, .external_lex_state = 6}, - [5699] = {.lex_state = 62, .external_lex_state = 6}, - [5700] = {.lex_state = 62, .external_lex_state = 6}, - [5701] = {.lex_state = 62, .external_lex_state = 6}, - [5702] = {.lex_state = 62, .external_lex_state = 6}, - [5703] = {.lex_state = 62, .external_lex_state = 6}, + [5693] = {.lex_state = 64, .external_lex_state = 6}, + [5694] = {.lex_state = 318, .external_lex_state = 6}, + [5695] = {.lex_state = 64, .external_lex_state = 6}, + [5696] = {.lex_state = 64, .external_lex_state = 6}, + [5697] = {.lex_state = 64, .external_lex_state = 6}, + [5698] = {.lex_state = 64, .external_lex_state = 6}, + [5699] = {.lex_state = 64, .external_lex_state = 6}, + [5700] = {.lex_state = 64, .external_lex_state = 6}, + [5701] = {.lex_state = 64, .external_lex_state = 6}, + [5702] = {.lex_state = 64, .external_lex_state = 6}, + [5703] = {.lex_state = 142, .external_lex_state = 6}, [5704] = {.lex_state = 62, .external_lex_state = 6}, - [5705] = {.lex_state = 62, .external_lex_state = 6}, - [5706] = {.lex_state = 62, .external_lex_state = 6}, - [5707] = {.lex_state = 62, .external_lex_state = 6}, + [5705] = {.lex_state = 142, .external_lex_state = 6}, + [5706] = {.lex_state = 318, .external_lex_state = 6}, + [5707] = {.lex_state = 64, .external_lex_state = 6}, [5708] = {.lex_state = 62, .external_lex_state = 6}, - [5709] = {.lex_state = 142, .external_lex_state = 6}, - [5710] = {.lex_state = 314, .external_lex_state = 6}, + [5709] = {.lex_state = 318, .external_lex_state = 6}, + [5710] = {.lex_state = 62, .external_lex_state = 6}, [5711] = {.lex_state = 62, .external_lex_state = 6}, - [5712] = {.lex_state = 62, .external_lex_state = 6}, - [5713] = {.lex_state = 62, .external_lex_state = 6}, + [5712] = {.lex_state = 64, .external_lex_state = 6}, + [5713] = {.lex_state = 64, .external_lex_state = 6}, [5714] = {.lex_state = 62, .external_lex_state = 6}, [5715] = {.lex_state = 62, .external_lex_state = 6}, - [5716] = {.lex_state = 62, .external_lex_state = 6}, - [5717] = {.lex_state = 314, .external_lex_state = 6}, - [5718] = {.lex_state = 62, .external_lex_state = 6}, - [5719] = {.lex_state = 62, .external_lex_state = 6}, - [5720] = {.lex_state = 62, .external_lex_state = 6}, + [5716] = {.lex_state = 64, .external_lex_state = 6}, + [5717] = {.lex_state = 64, .external_lex_state = 6}, + [5718] = {.lex_state = 142, .external_lex_state = 6}, + [5719] = {.lex_state = 64, .external_lex_state = 6}, + [5720] = {.lex_state = 142, .external_lex_state = 6}, [5721] = {.lex_state = 62, .external_lex_state = 6}, [5722] = {.lex_state = 62, .external_lex_state = 6}, - [5723] = {.lex_state = 62, .external_lex_state = 6}, - [5724] = {.lex_state = 62, .external_lex_state = 6}, - [5725] = {.lex_state = 62, .external_lex_state = 6}, - [5726] = {.lex_state = 314, .external_lex_state = 6}, - [5727] = {.lex_state = 314, .external_lex_state = 6}, + [5723] = {.lex_state = 64, .external_lex_state = 6}, + [5724] = {.lex_state = 64, .external_lex_state = 6}, + [5725] = {.lex_state = 318, .external_lex_state = 6}, + [5726] = {.lex_state = 318, .external_lex_state = 6}, + [5727] = {.lex_state = 318, .external_lex_state = 6}, [5728] = {.lex_state = 62, .external_lex_state = 6}, - [5729] = {.lex_state = 62, .external_lex_state = 6}, + [5729] = {.lex_state = 64, .external_lex_state = 6}, [5730] = {.lex_state = 62, .external_lex_state = 6}, - [5731] = {.lex_state = 62, .external_lex_state = 6}, + [5731] = {.lex_state = 64, .external_lex_state = 6}, [5732] = {.lex_state = 62, .external_lex_state = 6}, - [5733] = {.lex_state = 314, .external_lex_state = 6}, + [5733] = {.lex_state = 64, .external_lex_state = 6}, [5734] = {.lex_state = 62, .external_lex_state = 6}, [5735] = {.lex_state = 62, .external_lex_state = 6}, - [5736] = {.lex_state = 62, .external_lex_state = 6}, - [5737] = {.lex_state = 62, .external_lex_state = 6}, - [5738] = {.lex_state = 64, .external_lex_state = 6}, - [5739] = {.lex_state = 64, .external_lex_state = 6}, - [5740] = {.lex_state = 64, .external_lex_state = 6}, + [5736] = {.lex_state = 142, .external_lex_state = 6}, + [5737] = {.lex_state = 142, .external_lex_state = 6}, + [5738] = {.lex_state = 318, .external_lex_state = 6}, + [5739] = {.lex_state = 318, .external_lex_state = 6}, + [5740] = {.lex_state = 318, .external_lex_state = 6}, [5741] = {.lex_state = 64, .external_lex_state = 6}, - [5742] = {.lex_state = 142, .external_lex_state = 6}, - [5743] = {.lex_state = 314, .external_lex_state = 6}, - [5744] = {.lex_state = 314, .external_lex_state = 6}, - [5745] = {.lex_state = 314, .external_lex_state = 6}, - [5746] = {.lex_state = 314, .external_lex_state = 6}, - [5747] = {.lex_state = 62, .external_lex_state = 6}, - [5748] = {.lex_state = 62, .external_lex_state = 6}, + [5742] = {.lex_state = 64, .external_lex_state = 6}, + [5743] = {.lex_state = 64, .external_lex_state = 6}, + [5744] = {.lex_state = 64, .external_lex_state = 6}, + [5745] = {.lex_state = 64, .external_lex_state = 6}, + [5746] = {.lex_state = 64, .external_lex_state = 6}, + [5747] = {.lex_state = 64, .external_lex_state = 6}, + [5748] = {.lex_state = 64, .external_lex_state = 6}, [5749] = {.lex_state = 64, .external_lex_state = 6}, [5750] = {.lex_state = 64, .external_lex_state = 6}, - [5751] = {.lex_state = 62, .external_lex_state = 6}, - [5752] = {.lex_state = 62, .external_lex_state = 6}, - [5753] = {.lex_state = 62, .external_lex_state = 6}, + [5751] = {.lex_state = 64, .external_lex_state = 6}, + [5752] = {.lex_state = 64, .external_lex_state = 6}, + [5753] = {.lex_state = 142, .external_lex_state = 6}, [5754] = {.lex_state = 62, .external_lex_state = 6}, [5755] = {.lex_state = 62, .external_lex_state = 6}, - [5756] = {.lex_state = 62, .external_lex_state = 6}, - [5757] = {.lex_state = 142, .external_lex_state = 6}, - [5758] = {.lex_state = 142, .external_lex_state = 6}, - [5759] = {.lex_state = 314, .external_lex_state = 6}, - [5760] = {.lex_state = 314, .external_lex_state = 6}, - [5761] = {.lex_state = 62, .external_lex_state = 6}, - [5762] = {.lex_state = 62, .external_lex_state = 6}, - [5763] = {.lex_state = 62, .external_lex_state = 6}, - [5764] = {.lex_state = 62, .external_lex_state = 6}, + [5756] = {.lex_state = 64, .external_lex_state = 6}, + [5757] = {.lex_state = 64, .external_lex_state = 6}, + [5758] = {.lex_state = 64, .external_lex_state = 6}, + [5759] = {.lex_state = 64, .external_lex_state = 6}, + [5760] = {.lex_state = 64, .external_lex_state = 6}, + [5761] = {.lex_state = 64, .external_lex_state = 6}, + [5762] = {.lex_state = 64, .external_lex_state = 6}, + [5763] = {.lex_state = 64, .external_lex_state = 6}, + [5764] = {.lex_state = 142, .external_lex_state = 6}, [5765] = {.lex_state = 62, .external_lex_state = 6}, [5766] = {.lex_state = 62, .external_lex_state = 6}, - [5767] = {.lex_state = 62, .external_lex_state = 6}, - [5768] = {.lex_state = 62, .external_lex_state = 6}, - [5769] = {.lex_state = 62, .external_lex_state = 6}, - [5770] = {.lex_state = 62, .external_lex_state = 6}, + [5767] = {.lex_state = 64, .external_lex_state = 6}, + [5768] = {.lex_state = 64, .external_lex_state = 6}, + [5769] = {.lex_state = 318, .external_lex_state = 6}, + [5770] = {.lex_state = 142, .external_lex_state = 6}, [5771] = {.lex_state = 62, .external_lex_state = 6}, [5772] = {.lex_state = 62, .external_lex_state = 6}, - [5773] = {.lex_state = 142, .external_lex_state = 6}, - [5774] = {.lex_state = 142, .external_lex_state = 6}, - [5775] = {.lex_state = 142, .external_lex_state = 6}, + [5773] = {.lex_state = 64, .external_lex_state = 6}, + [5774] = {.lex_state = 64, .external_lex_state = 6}, + [5775] = {.lex_state = 62, .external_lex_state = 6}, [5776] = {.lex_state = 62, .external_lex_state = 6}, - [5777] = {.lex_state = 62, .external_lex_state = 6}, - [5778] = {.lex_state = 62, .external_lex_state = 6}, + [5777] = {.lex_state = 64, .external_lex_state = 6}, + [5778] = {.lex_state = 64, .external_lex_state = 6}, [5779] = {.lex_state = 62, .external_lex_state = 6}, [5780] = {.lex_state = 62, .external_lex_state = 6}, - [5781] = {.lex_state = 62, .external_lex_state = 6}, - [5782] = {.lex_state = 314, .external_lex_state = 6}, - [5783] = {.lex_state = 62, .external_lex_state = 6}, - [5784] = {.lex_state = 62, .external_lex_state = 6}, - [5785] = {.lex_state = 62, .external_lex_state = 6}, - [5786] = {.lex_state = 62, .external_lex_state = 6}, - [5787] = {.lex_state = 62, .external_lex_state = 6}, - [5788] = {.lex_state = 62, .external_lex_state = 6}, - [5789] = {.lex_state = 62, .external_lex_state = 6}, - [5790] = {.lex_state = 62, .external_lex_state = 6}, - [5791] = {.lex_state = 62, .external_lex_state = 6}, - [5792] = {.lex_state = 62, .external_lex_state = 6}, - [5793] = {.lex_state = 62, .external_lex_state = 6}, + [5781] = {.lex_state = 64, .external_lex_state = 6}, + [5782] = {.lex_state = 62, .external_lex_state = 6}, + [5783] = {.lex_state = 64, .external_lex_state = 6}, + [5784] = {.lex_state = 64, .external_lex_state = 6}, + [5785] = {.lex_state = 318, .external_lex_state = 6}, + [5786] = {.lex_state = 318, .external_lex_state = 6}, + [5787] = {.lex_state = 64, .external_lex_state = 6}, + [5788] = {.lex_state = 64, .external_lex_state = 6}, + [5789] = {.lex_state = 64, .external_lex_state = 6}, + [5790] = {.lex_state = 64, .external_lex_state = 6}, + [5791] = {.lex_state = 64, .external_lex_state = 6}, + [5792] = {.lex_state = 64, .external_lex_state = 6}, + [5793] = {.lex_state = 64, .external_lex_state = 6}, [5794] = {.lex_state = 64, .external_lex_state = 6}, [5795] = {.lex_state = 64, .external_lex_state = 6}, [5796] = {.lex_state = 64, .external_lex_state = 6}, [5797] = {.lex_state = 64, .external_lex_state = 6}, - [5798] = {.lex_state = 62, .external_lex_state = 6}, - [5799] = {.lex_state = 62, .external_lex_state = 6}, - [5800] = {.lex_state = 62, .external_lex_state = 6}, - [5801] = {.lex_state = 62, .external_lex_state = 6}, - [5802] = {.lex_state = 62, .external_lex_state = 6}, + [5798] = {.lex_state = 64, .external_lex_state = 6}, + [5799] = {.lex_state = 64, .external_lex_state = 6}, + [5800] = {.lex_state = 64, .external_lex_state = 6}, + [5801] = {.lex_state = 64, .external_lex_state = 6}, + [5802] = {.lex_state = 64, .external_lex_state = 6}, [5803] = {.lex_state = 64, .external_lex_state = 6}, [5804] = {.lex_state = 64, .external_lex_state = 6}, - [5805] = {.lex_state = 62, .external_lex_state = 6}, - [5806] = {.lex_state = 62, .external_lex_state = 6}, + [5805] = {.lex_state = 318, .external_lex_state = 6}, + [5806] = {.lex_state = 318, .external_lex_state = 6}, [5807] = {.lex_state = 62, .external_lex_state = 6}, - [5808] = {.lex_state = 62, .external_lex_state = 6}, + [5808] = {.lex_state = 64, .external_lex_state = 6}, [5809] = {.lex_state = 62, .external_lex_state = 6}, [5810] = {.lex_state = 62, .external_lex_state = 6}, - [5811] = {.lex_state = 62, .external_lex_state = 6}, - [5812] = {.lex_state = 62, .external_lex_state = 6}, + [5811] = {.lex_state = 64, .external_lex_state = 6}, + [5812] = {.lex_state = 64, .external_lex_state = 6}, [5813] = {.lex_state = 62, .external_lex_state = 6}, [5814] = {.lex_state = 62, .external_lex_state = 6}, - [5815] = {.lex_state = 62, .external_lex_state = 6}, - [5816] = {.lex_state = 62, .external_lex_state = 6}, + [5815] = {.lex_state = 64, .external_lex_state = 6}, + [5816] = {.lex_state = 64, .external_lex_state = 6}, [5817] = {.lex_state = 62, .external_lex_state = 6}, - [5818] = {.lex_state = 62, .external_lex_state = 6}, + [5818] = {.lex_state = 64, .external_lex_state = 6}, [5819] = {.lex_state = 62, .external_lex_state = 6}, - [5820] = {.lex_state = 62, .external_lex_state = 6}, + [5820] = {.lex_state = 64, .external_lex_state = 6}, [5821] = {.lex_state = 62, .external_lex_state = 6}, - [5822] = {.lex_state = 62, .external_lex_state = 6}, - [5823] = {.lex_state = 62, .external_lex_state = 6}, - [5824] = {.lex_state = 62, .external_lex_state = 6}, - [5825] = {.lex_state = 62, .external_lex_state = 6}, - [5826] = {.lex_state = 62, .external_lex_state = 6}, - [5827] = {.lex_state = 62, .external_lex_state = 6}, + [5822] = {.lex_state = 64, .external_lex_state = 6}, + [5823] = {.lex_state = 64, .external_lex_state = 6}, + [5824] = {.lex_state = 318, .external_lex_state = 6}, + [5825] = {.lex_state = 318, .external_lex_state = 6}, + [5826] = {.lex_state = 64, .external_lex_state = 6}, + [5827] = {.lex_state = 64, .external_lex_state = 6}, [5828] = {.lex_state = 64, .external_lex_state = 6}, [5829] = {.lex_state = 64, .external_lex_state = 6}, [5830] = {.lex_state = 64, .external_lex_state = 6}, [5831] = {.lex_state = 64, .external_lex_state = 6}, - [5832] = {.lex_state = 62, .external_lex_state = 6}, - [5833] = {.lex_state = 62, .external_lex_state = 6}, + [5832] = {.lex_state = 64, .external_lex_state = 6}, + [5833] = {.lex_state = 64, .external_lex_state = 6}, [5834] = {.lex_state = 64, .external_lex_state = 6}, [5835] = {.lex_state = 64, .external_lex_state = 6}, - [5836] = {.lex_state = 62, .external_lex_state = 6}, - [5837] = {.lex_state = 62, .external_lex_state = 6}, - [5838] = {.lex_state = 62, .external_lex_state = 6}, - [5839] = {.lex_state = 62, .external_lex_state = 6}, - [5840] = {.lex_state = 62, .external_lex_state = 6}, - [5841] = {.lex_state = 62, .external_lex_state = 6}, - [5842] = {.lex_state = 62, .external_lex_state = 6}, - [5843] = {.lex_state = 62, .external_lex_state = 6}, - [5844] = {.lex_state = 62, .external_lex_state = 6}, + [5836] = {.lex_state = 64, .external_lex_state = 6}, + [5837] = {.lex_state = 64, .external_lex_state = 6}, + [5838] = {.lex_state = 64, .external_lex_state = 6}, + [5839] = {.lex_state = 64, .external_lex_state = 6}, + [5840] = {.lex_state = 64, .external_lex_state = 6}, + [5841] = {.lex_state = 64, .external_lex_state = 6}, + [5842] = {.lex_state = 64, .external_lex_state = 6}, + [5843] = {.lex_state = 64, .external_lex_state = 6}, + [5844] = {.lex_state = 318, .external_lex_state = 6}, [5845] = {.lex_state = 62, .external_lex_state = 6}, [5846] = {.lex_state = 62, .external_lex_state = 6}, - [5847] = {.lex_state = 62, .external_lex_state = 6}, - [5848] = {.lex_state = 62, .external_lex_state = 6}, + [5847] = {.lex_state = 64, .external_lex_state = 6}, + [5848] = {.lex_state = 64, .external_lex_state = 6}, [5849] = {.lex_state = 62, .external_lex_state = 6}, [5850] = {.lex_state = 62, .external_lex_state = 6}, - [5851] = {.lex_state = 62, .external_lex_state = 6}, - [5852] = {.lex_state = 62, .external_lex_state = 6}, + [5851] = {.lex_state = 64, .external_lex_state = 6}, + [5852] = {.lex_state = 64, .external_lex_state = 6}, [5853] = {.lex_state = 62, .external_lex_state = 6}, - [5854] = {.lex_state = 314, .external_lex_state = 6}, + [5854] = {.lex_state = 64, .external_lex_state = 6}, [5855] = {.lex_state = 62, .external_lex_state = 6}, - [5856] = {.lex_state = 62, .external_lex_state = 6}, - [5857] = {.lex_state = 62, .external_lex_state = 6}, - [5858] = {.lex_state = 62, .external_lex_state = 6}, + [5856] = {.lex_state = 64, .external_lex_state = 6}, + [5857] = {.lex_state = 318, .external_lex_state = 6}, + [5858] = {.lex_state = 64, .external_lex_state = 6}, [5859] = {.lex_state = 64, .external_lex_state = 6}, [5860] = {.lex_state = 64, .external_lex_state = 6}, [5861] = {.lex_state = 64, .external_lex_state = 6}, [5862] = {.lex_state = 64, .external_lex_state = 6}, - [5863] = {.lex_state = 314, .external_lex_state = 6}, - [5864] = {.lex_state = 62, .external_lex_state = 6}, - [5865] = {.lex_state = 62, .external_lex_state = 6}, + [5863] = {.lex_state = 64, .external_lex_state = 6}, + [5864] = {.lex_state = 64, .external_lex_state = 6}, + [5865] = {.lex_state = 64, .external_lex_state = 6}, [5866] = {.lex_state = 64, .external_lex_state = 6}, [5867] = {.lex_state = 64, .external_lex_state = 6}, - [5868] = {.lex_state = 142, .external_lex_state = 6}, - [5869] = {.lex_state = 62, .external_lex_state = 6}, - [5870] = {.lex_state = 62, .external_lex_state = 6}, - [5871] = {.lex_state = 62, .external_lex_state = 6}, - [5872] = {.lex_state = 62, .external_lex_state = 6}, - [5873] = {.lex_state = 62, .external_lex_state = 6}, - [5874] = {.lex_state = 62, .external_lex_state = 6}, - [5875] = {.lex_state = 62, .external_lex_state = 6}, - [5876] = {.lex_state = 62, .external_lex_state = 6}, - [5877] = {.lex_state = 62, .external_lex_state = 6}, + [5868] = {.lex_state = 64, .external_lex_state = 6}, + [5869] = {.lex_state = 64, .external_lex_state = 6}, + [5870] = {.lex_state = 64, .external_lex_state = 6}, + [5871] = {.lex_state = 64, .external_lex_state = 6}, + [5872] = {.lex_state = 64, .external_lex_state = 6}, + [5873] = {.lex_state = 64, .external_lex_state = 6}, + [5874] = {.lex_state = 64, .external_lex_state = 6}, + [5875] = {.lex_state = 64, .external_lex_state = 6}, + [5876] = {.lex_state = 142, .external_lex_state = 6}, + [5877] = {.lex_state = 142, .external_lex_state = 6}, [5878] = {.lex_state = 62, .external_lex_state = 6}, [5879] = {.lex_state = 62, .external_lex_state = 6}, - [5880] = {.lex_state = 62, .external_lex_state = 6}, - [5881] = {.lex_state = 62, .external_lex_state = 6}, + [5880] = {.lex_state = 64, .external_lex_state = 6}, + [5881] = {.lex_state = 64, .external_lex_state = 6}, [5882] = {.lex_state = 62, .external_lex_state = 6}, [5883] = {.lex_state = 62, .external_lex_state = 6}, - [5884] = {.lex_state = 62, .external_lex_state = 6}, - [5885] = {.lex_state = 62, .external_lex_state = 6}, - [5886] = {.lex_state = 62, .external_lex_state = 6}, - [5887] = {.lex_state = 62, .external_lex_state = 6}, - [5888] = {.lex_state = 142, .external_lex_state = 6}, - [5889] = {.lex_state = 142, .external_lex_state = 6}, + [5884] = {.lex_state = 64, .external_lex_state = 6}, + [5885] = {.lex_state = 64, .external_lex_state = 6}, + [5886] = {.lex_state = 64, .external_lex_state = 6}, + [5887] = {.lex_state = 64, .external_lex_state = 6}, + [5888] = {.lex_state = 62, .external_lex_state = 6}, + [5889] = {.lex_state = 64, .external_lex_state = 6}, [5890] = {.lex_state = 62, .external_lex_state = 6}, - [5891] = {.lex_state = 62, .external_lex_state = 6}, - [5892] = {.lex_state = 62, .external_lex_state = 6}, - [5893] = {.lex_state = 62, .external_lex_state = 6}, + [5891] = {.lex_state = 64, .external_lex_state = 6}, + [5892] = {.lex_state = 64, .external_lex_state = 6}, + [5893] = {.lex_state = 64, .external_lex_state = 6}, [5894] = {.lex_state = 64, .external_lex_state = 6}, [5895] = {.lex_state = 64, .external_lex_state = 6}, [5896] = {.lex_state = 64, .external_lex_state = 6}, [5897] = {.lex_state = 64, .external_lex_state = 6}, - [5898] = {.lex_state = 314, .external_lex_state = 6}, - [5899] = {.lex_state = 314, .external_lex_state = 6}, - [5900] = {.lex_state = 62, .external_lex_state = 6}, - [5901] = {.lex_state = 62, .external_lex_state = 6}, + [5898] = {.lex_state = 64, .external_lex_state = 6}, + [5899] = {.lex_state = 64, .external_lex_state = 6}, + [5900] = {.lex_state = 64, .external_lex_state = 6}, + [5901] = {.lex_state = 64, .external_lex_state = 6}, [5902] = {.lex_state = 64, .external_lex_state = 6}, [5903] = {.lex_state = 64, .external_lex_state = 6}, [5904] = {.lex_state = 64, .external_lex_state = 6}, - [5905] = {.lex_state = 62, .external_lex_state = 6}, - [5906] = {.lex_state = 62, .external_lex_state = 6}, - [5907] = {.lex_state = 62, .external_lex_state = 6}, - [5908] = {.lex_state = 62, .external_lex_state = 6}, - [5909] = {.lex_state = 62, .external_lex_state = 6}, - [5910] = {.lex_state = 62, .external_lex_state = 6}, - [5911] = {.lex_state = 62, .external_lex_state = 6}, - [5912] = {.lex_state = 62, .external_lex_state = 6}, - [5913] = {.lex_state = 62, .external_lex_state = 6}, + [5905] = {.lex_state = 64, .external_lex_state = 6}, + [5906] = {.lex_state = 64, .external_lex_state = 6}, + [5907] = {.lex_state = 64, .external_lex_state = 6}, + [5908] = {.lex_state = 64, .external_lex_state = 6}, + [5909] = {.lex_state = 64, .external_lex_state = 6}, + [5910] = {.lex_state = 142, .external_lex_state = 6}, + [5911] = {.lex_state = 318, .external_lex_state = 6}, + [5912] = {.lex_state = 318, .external_lex_state = 6}, + [5913] = {.lex_state = 64, .external_lex_state = 6}, [5914] = {.lex_state = 62, .external_lex_state = 6}, [5915] = {.lex_state = 62, .external_lex_state = 6}, - [5916] = {.lex_state = 62, .external_lex_state = 6}, - [5917] = {.lex_state = 62, .external_lex_state = 6}, + [5916] = {.lex_state = 64, .external_lex_state = 6}, + [5917] = {.lex_state = 64, .external_lex_state = 6}, [5918] = {.lex_state = 62, .external_lex_state = 6}, [5919] = {.lex_state = 62, .external_lex_state = 6}, - [5920] = {.lex_state = 62, .external_lex_state = 6}, - [5921] = {.lex_state = 62, .external_lex_state = 6}, - [5922] = {.lex_state = 62, .external_lex_state = 6}, - [5923] = {.lex_state = 62, .external_lex_state = 6}, + [5920] = {.lex_state = 64, .external_lex_state = 6}, + [5921] = {.lex_state = 64, .external_lex_state = 6}, + [5922] = {.lex_state = 64, .external_lex_state = 6}, + [5923] = {.lex_state = 64, .external_lex_state = 6}, [5924] = {.lex_state = 62, .external_lex_state = 6}, - [5925] = {.lex_state = 62, .external_lex_state = 6}, + [5925] = {.lex_state = 64, .external_lex_state = 6}, [5926] = {.lex_state = 62, .external_lex_state = 6}, - [5927] = {.lex_state = 62, .external_lex_state = 6}, - [5928] = {.lex_state = 62, .external_lex_state = 6}, - [5929] = {.lex_state = 62, .external_lex_state = 6}, - [5930] = {.lex_state = 62, .external_lex_state = 6}, - [5931] = {.lex_state = 62, .external_lex_state = 6}, - [5932] = {.lex_state = 62, .external_lex_state = 6}, - [5933] = {.lex_state = 62, .external_lex_state = 6}, + [5927] = {.lex_state = 64, .external_lex_state = 6}, + [5928] = {.lex_state = 64, .external_lex_state = 6}, + [5929] = {.lex_state = 64, .external_lex_state = 6}, + [5930] = {.lex_state = 64, .external_lex_state = 6}, + [5931] = {.lex_state = 64, .external_lex_state = 6}, + [5932] = {.lex_state = 64, .external_lex_state = 6}, + [5933] = {.lex_state = 64, .external_lex_state = 6}, [5934] = {.lex_state = 64, .external_lex_state = 6}, [5935] = {.lex_state = 64, .external_lex_state = 6}, - [5936] = {.lex_state = 62, .external_lex_state = 6}, + [5936] = {.lex_state = 64, .external_lex_state = 6}, [5937] = {.lex_state = 64, .external_lex_state = 6}, - [5938] = {.lex_state = 62, .external_lex_state = 6}, - [5939] = {.lex_state = 62, .external_lex_state = 6}, - [5940] = {.lex_state = 62, .external_lex_state = 6}, - [5941] = {.lex_state = 62, .external_lex_state = 6}, - [5942] = {.lex_state = 62, .external_lex_state = 6}, - [5943] = {.lex_state = 64, .external_lex_state = 6}, + [5938] = {.lex_state = 64, .external_lex_state = 6}, + [5939] = {.lex_state = 64, .external_lex_state = 6}, + [5940] = {.lex_state = 64, .external_lex_state = 6}, + [5941] = {.lex_state = 64, .external_lex_state = 6}, + [5942] = {.lex_state = 64, .external_lex_state = 6}, + [5943] = {.lex_state = 318, .external_lex_state = 6}, [5944] = {.lex_state = 64, .external_lex_state = 6}, - [5945] = {.lex_state = 62, .external_lex_state = 6}, - [5946] = {.lex_state = 62, .external_lex_state = 6}, - [5947] = {.lex_state = 62, .external_lex_state = 6}, - [5948] = {.lex_state = 62, .external_lex_state = 6}, - [5949] = {.lex_state = 62, .external_lex_state = 6}, - [5950] = {.lex_state = 62, .external_lex_state = 6}, - [5951] = {.lex_state = 62, .external_lex_state = 6}, - [5952] = {.lex_state = 62, .external_lex_state = 6}, - [5953] = {.lex_state = 62, .external_lex_state = 6}, - [5954] = {.lex_state = 62, .external_lex_state = 6}, + [5945] = {.lex_state = 64, .external_lex_state = 6}, + [5946] = {.lex_state = 64, .external_lex_state = 6}, + [5947] = {.lex_state = 64, .external_lex_state = 6}, + [5948] = {.lex_state = 64, .external_lex_state = 6}, + [5949] = {.lex_state = 64, .external_lex_state = 6}, + [5950] = {.lex_state = 64, .external_lex_state = 6}, + [5951] = {.lex_state = 64, .external_lex_state = 6}, + [5952] = {.lex_state = 64, .external_lex_state = 6}, + [5953] = {.lex_state = 64, .external_lex_state = 6}, + [5954] = {.lex_state = 64, .external_lex_state = 6}, [5955] = {.lex_state = 62, .external_lex_state = 6}, [5956] = {.lex_state = 62, .external_lex_state = 6}, - [5957] = {.lex_state = 62, .external_lex_state = 6}, - [5958] = {.lex_state = 62, .external_lex_state = 6}, + [5957] = {.lex_state = 64, .external_lex_state = 6}, + [5958] = {.lex_state = 64, .external_lex_state = 6}, [5959] = {.lex_state = 62, .external_lex_state = 6}, [5960] = {.lex_state = 62, .external_lex_state = 6}, - [5961] = {.lex_state = 62, .external_lex_state = 6}, - [5962] = {.lex_state = 62, .external_lex_state = 6}, + [5961] = {.lex_state = 64, .external_lex_state = 6}, + [5962] = {.lex_state = 64, .external_lex_state = 6}, [5963] = {.lex_state = 62, .external_lex_state = 6}, - [5964] = {.lex_state = 62, .external_lex_state = 6}, + [5964] = {.lex_state = 64, .external_lex_state = 6}, [5965] = {.lex_state = 62, .external_lex_state = 6}, - [5966] = {.lex_state = 62, .external_lex_state = 6}, - [5967] = {.lex_state = 62, .external_lex_state = 6}, + [5966] = {.lex_state = 64, .external_lex_state = 6}, + [5967] = {.lex_state = 64, .external_lex_state = 6}, [5968] = {.lex_state = 64, .external_lex_state = 6}, [5969] = {.lex_state = 64, .external_lex_state = 6}, [5970] = {.lex_state = 64, .external_lex_state = 6}, [5971] = {.lex_state = 64, .external_lex_state = 6}, - [5972] = {.lex_state = 62, .external_lex_state = 6}, - [5973] = {.lex_state = 62, .external_lex_state = 6}, + [5972] = {.lex_state = 64, .external_lex_state = 6}, + [5973] = {.lex_state = 64, .external_lex_state = 6}, [5974] = {.lex_state = 64, .external_lex_state = 6}, [5975] = {.lex_state = 64, .external_lex_state = 6}, - [5976] = {.lex_state = 62, .external_lex_state = 6}, - [5977] = {.lex_state = 62, .external_lex_state = 6}, - [5978] = {.lex_state = 62, .external_lex_state = 6}, - [5979] = {.lex_state = 62, .external_lex_state = 6}, - [5980] = {.lex_state = 62, .external_lex_state = 6}, - [5981] = {.lex_state = 62, .external_lex_state = 6}, - [5982] = {.lex_state = 62, .external_lex_state = 6}, - [5983] = {.lex_state = 62, .external_lex_state = 6}, - [5984] = {.lex_state = 62, .external_lex_state = 6}, + [5976] = {.lex_state = 64, .external_lex_state = 6}, + [5977] = {.lex_state = 64, .external_lex_state = 6}, + [5978] = {.lex_state = 64, .external_lex_state = 6}, + [5979] = {.lex_state = 64, .external_lex_state = 6}, + [5980] = {.lex_state = 64, .external_lex_state = 6}, + [5981] = {.lex_state = 64, .external_lex_state = 6}, + [5982] = {.lex_state = 64, .external_lex_state = 6}, + [5983] = {.lex_state = 64, .external_lex_state = 6}, + [5984] = {.lex_state = 64, .external_lex_state = 6}, [5985] = {.lex_state = 62, .external_lex_state = 6}, [5986] = {.lex_state = 62, .external_lex_state = 6}, - [5987] = {.lex_state = 62, .external_lex_state = 6}, - [5988] = {.lex_state = 62, .external_lex_state = 6}, + [5987] = {.lex_state = 64, .external_lex_state = 6}, + [5988] = {.lex_state = 64, .external_lex_state = 6}, [5989] = {.lex_state = 62, .external_lex_state = 6}, [5990] = {.lex_state = 62, .external_lex_state = 6}, - [5991] = {.lex_state = 62, .external_lex_state = 6}, - [5992] = {.lex_state = 62, .external_lex_state = 6}, + [5991] = {.lex_state = 64, .external_lex_state = 6}, + [5992] = {.lex_state = 64, .external_lex_state = 6}, [5993] = {.lex_state = 62, .external_lex_state = 6}, - [5994] = {.lex_state = 62, .external_lex_state = 6}, + [5994] = {.lex_state = 64, .external_lex_state = 6}, [5995] = {.lex_state = 62, .external_lex_state = 6}, - [5996] = {.lex_state = 62, .external_lex_state = 6}, - [5997] = {.lex_state = 62, .external_lex_state = 6}, + [5996] = {.lex_state = 64, .external_lex_state = 6}, + [5997] = {.lex_state = 142, .external_lex_state = 6}, [5998] = {.lex_state = 62, .external_lex_state = 6}, [5999] = {.lex_state = 62, .external_lex_state = 6}, - [6000] = {.lex_state = 62, .external_lex_state = 6}, + [6000] = {.lex_state = 64, .external_lex_state = 6}, [6001] = {.lex_state = 64, .external_lex_state = 6}, - [6002] = {.lex_state = 64, .external_lex_state = 6}, - [6003] = {.lex_state = 64, .external_lex_state = 6}, + [6002] = {.lex_state = 62, .external_lex_state = 6}, + [6003] = {.lex_state = 62, .external_lex_state = 6}, [6004] = {.lex_state = 64, .external_lex_state = 6}, - [6005] = {.lex_state = 62, .external_lex_state = 6}, + [6005] = {.lex_state = 64, .external_lex_state = 6}, [6006] = {.lex_state = 62, .external_lex_state = 6}, [6007] = {.lex_state = 64, .external_lex_state = 6}, - [6008] = {.lex_state = 64, .external_lex_state = 6}, - [6009] = {.lex_state = 62, .external_lex_state = 6}, - [6010] = {.lex_state = 62, .external_lex_state = 6}, - [6011] = {.lex_state = 62, .external_lex_state = 6}, - [6012] = {.lex_state = 62, .external_lex_state = 6}, + [6008] = {.lex_state = 62, .external_lex_state = 6}, + [6009] = {.lex_state = 64, .external_lex_state = 6}, + [6010] = {.lex_state = 64, .external_lex_state = 6}, + [6011] = {.lex_state = 64, .external_lex_state = 6}, + [6012] = {.lex_state = 142, .external_lex_state = 6}, [6013] = {.lex_state = 62, .external_lex_state = 6}, [6014] = {.lex_state = 62, .external_lex_state = 6}, [6015] = {.lex_state = 64, .external_lex_state = 6}, [6016] = {.lex_state = 64, .external_lex_state = 6}, - [6017] = {.lex_state = 64, .external_lex_state = 6}, - [6018] = {.lex_state = 64, .external_lex_state = 6}, - [6019] = {.lex_state = 62, .external_lex_state = 6}, - [6020] = {.lex_state = 62, .external_lex_state = 6}, - [6021] = {.lex_state = 64, .external_lex_state = 6}, + [6017] = {.lex_state = 62, .external_lex_state = 6}, + [6018] = {.lex_state = 62, .external_lex_state = 6}, + [6019] = {.lex_state = 64, .external_lex_state = 6}, + [6020] = {.lex_state = 64, .external_lex_state = 6}, + [6021] = {.lex_state = 62, .external_lex_state = 6}, [6022] = {.lex_state = 64, .external_lex_state = 6}, [6023] = {.lex_state = 62, .external_lex_state = 6}, - [6024] = {.lex_state = 62, .external_lex_state = 6}, - [6025] = {.lex_state = 62, .external_lex_state = 6}, - [6026] = {.lex_state = 62, .external_lex_state = 6}, + [6024] = {.lex_state = 64, .external_lex_state = 6}, + [6025] = {.lex_state = 64, .external_lex_state = 6}, + [6026] = {.lex_state = 64, .external_lex_state = 6}, [6027] = {.lex_state = 62, .external_lex_state = 6}, [6028] = {.lex_state = 62, .external_lex_state = 6}, [6029] = {.lex_state = 64, .external_lex_state = 6}, [6030] = {.lex_state = 64, .external_lex_state = 6}, - [6031] = {.lex_state = 64, .external_lex_state = 6}, - [6032] = {.lex_state = 64, .external_lex_state = 6}, - [6033] = {.lex_state = 62, .external_lex_state = 6}, - [6034] = {.lex_state = 62, .external_lex_state = 6}, - [6035] = {.lex_state = 64, .external_lex_state = 6}, + [6031] = {.lex_state = 62, .external_lex_state = 6}, + [6032] = {.lex_state = 62, .external_lex_state = 6}, + [6033] = {.lex_state = 64, .external_lex_state = 6}, + [6034] = {.lex_state = 64, .external_lex_state = 6}, + [6035] = {.lex_state = 62, .external_lex_state = 6}, [6036] = {.lex_state = 64, .external_lex_state = 6}, - [6037] = {.lex_state = 314, .external_lex_state = 6}, - [6038] = {.lex_state = 62, .external_lex_state = 6}, - [6039] = {.lex_state = 62, .external_lex_state = 6}, - [6040] = {.lex_state = 62, .external_lex_state = 6}, - [6041] = {.lex_state = 62, .external_lex_state = 6}, - [6042] = {.lex_state = 62, .external_lex_state = 6}, + [6037] = {.lex_state = 62, .external_lex_state = 6}, + [6038] = {.lex_state = 64, .external_lex_state = 6}, + [6039] = {.lex_state = 64, .external_lex_state = 6}, + [6040] = {.lex_state = 64, .external_lex_state = 6}, + [6041] = {.lex_state = 64, .external_lex_state = 6}, + [6042] = {.lex_state = 64, .external_lex_state = 6}, [6043] = {.lex_state = 62, .external_lex_state = 6}, - [6044] = {.lex_state = 64, .external_lex_state = 6}, + [6044] = {.lex_state = 62, .external_lex_state = 6}, [6045] = {.lex_state = 64, .external_lex_state = 6}, [6046] = {.lex_state = 64, .external_lex_state = 6}, - [6047] = {.lex_state = 64, .external_lex_state = 6}, + [6047] = {.lex_state = 62, .external_lex_state = 6}, [6048] = {.lex_state = 62, .external_lex_state = 6}, - [6049] = {.lex_state = 62, .external_lex_state = 6}, + [6049] = {.lex_state = 64, .external_lex_state = 6}, [6050] = {.lex_state = 64, .external_lex_state = 6}, - [6051] = {.lex_state = 64, .external_lex_state = 6}, - [6052] = {.lex_state = 62, .external_lex_state = 6}, + [6051] = {.lex_state = 62, .external_lex_state = 6}, + [6052] = {.lex_state = 64, .external_lex_state = 6}, [6053] = {.lex_state = 62, .external_lex_state = 6}, [6054] = {.lex_state = 64, .external_lex_state = 6}, [6055] = {.lex_state = 64, .external_lex_state = 6}, - [6056] = {.lex_state = 62, .external_lex_state = 6}, + [6056] = {.lex_state = 64, .external_lex_state = 6}, [6057] = {.lex_state = 62, .external_lex_state = 6}, [6058] = {.lex_state = 62, .external_lex_state = 6}, - [6059] = {.lex_state = 62, .external_lex_state = 6}, + [6059] = {.lex_state = 64, .external_lex_state = 6}, [6060] = {.lex_state = 64, .external_lex_state = 6}, - [6061] = {.lex_state = 64, .external_lex_state = 6}, - [6062] = {.lex_state = 64, .external_lex_state = 6}, + [6061] = {.lex_state = 62, .external_lex_state = 6}, + [6062] = {.lex_state = 62, .external_lex_state = 6}, [6063] = {.lex_state = 64, .external_lex_state = 6}, - [6064] = {.lex_state = 62, .external_lex_state = 6}, + [6064] = {.lex_state = 64, .external_lex_state = 6}, [6065] = {.lex_state = 62, .external_lex_state = 6}, [6066] = {.lex_state = 64, .external_lex_state = 6}, - [6067] = {.lex_state = 64, .external_lex_state = 6}, + [6067] = {.lex_state = 62, .external_lex_state = 6}, [6068] = {.lex_state = 64, .external_lex_state = 6}, - [6069] = {.lex_state = 64, .external_lex_state = 6}, + [6069] = {.lex_state = 62, .external_lex_state = 6}, [6070] = {.lex_state = 62, .external_lex_state = 6}, - [6071] = {.lex_state = 62, .external_lex_state = 6}, - [6072] = {.lex_state = 62, .external_lex_state = 6}, + [6071] = {.lex_state = 64, .external_lex_state = 6}, + [6072] = {.lex_state = 64, .external_lex_state = 6}, [6073] = {.lex_state = 62, .external_lex_state = 6}, - [6074] = {.lex_state = 64, .external_lex_state = 6}, + [6074] = {.lex_state = 62, .external_lex_state = 6}, [6075] = {.lex_state = 64, .external_lex_state = 6}, [6076] = {.lex_state = 64, .external_lex_state = 6}, - [6077] = {.lex_state = 64, .external_lex_state = 6}, - [6078] = {.lex_state = 62, .external_lex_state = 6}, + [6077] = {.lex_state = 62, .external_lex_state = 6}, + [6078] = {.lex_state = 64, .external_lex_state = 6}, [6079] = {.lex_state = 62, .external_lex_state = 6}, [6080] = {.lex_state = 64, .external_lex_state = 6}, - [6081] = {.lex_state = 64, .external_lex_state = 6}, + [6081] = {.lex_state = 62, .external_lex_state = 6}, [6082] = {.lex_state = 62, .external_lex_state = 6}, - [6083] = {.lex_state = 62, .external_lex_state = 6}, - [6084] = {.lex_state = 62, .external_lex_state = 6}, + [6083] = {.lex_state = 64, .external_lex_state = 6}, + [6084] = {.lex_state = 64, .external_lex_state = 6}, [6085] = {.lex_state = 62, .external_lex_state = 6}, [6086] = {.lex_state = 62, .external_lex_state = 6}, - [6087] = {.lex_state = 62, .external_lex_state = 6}, - [6088] = {.lex_state = 62, .external_lex_state = 6}, - [6089] = {.lex_state = 64, .external_lex_state = 6}, + [6087] = {.lex_state = 64, .external_lex_state = 6}, + [6088] = {.lex_state = 64, .external_lex_state = 6}, + [6089] = {.lex_state = 62, .external_lex_state = 6}, [6090] = {.lex_state = 64, .external_lex_state = 6}, - [6091] = {.lex_state = 64, .external_lex_state = 6}, + [6091] = {.lex_state = 62, .external_lex_state = 6}, [6092] = {.lex_state = 64, .external_lex_state = 6}, - [6093] = {.lex_state = 62, .external_lex_state = 6}, - [6094] = {.lex_state = 62, .external_lex_state = 6}, - [6095] = {.lex_state = 64, .external_lex_state = 6}, + [6093] = {.lex_state = 64, .external_lex_state = 6}, + [6094] = {.lex_state = 318, .external_lex_state = 6}, + [6095] = {.lex_state = 62, .external_lex_state = 6}, [6096] = {.lex_state = 64, .external_lex_state = 6}, - [6097] = {.lex_state = 314, .external_lex_state = 6}, - [6098] = {.lex_state = 142, .external_lex_state = 6}, - [6099] = {.lex_state = 314, .external_lex_state = 6}, - [6100] = {.lex_state = 62, .external_lex_state = 6}, + [6097] = {.lex_state = 62, .external_lex_state = 6}, + [6098] = {.lex_state = 62, .external_lex_state = 6}, + [6099] = {.lex_state = 64, .external_lex_state = 6}, + [6100] = {.lex_state = 64, .external_lex_state = 6}, [6101] = {.lex_state = 62, .external_lex_state = 6}, [6102] = {.lex_state = 62, .external_lex_state = 6}, - [6103] = {.lex_state = 62, .external_lex_state = 6}, - [6104] = {.lex_state = 62, .external_lex_state = 6}, - [6105] = {.lex_state = 64, .external_lex_state = 6}, + [6103] = {.lex_state = 64, .external_lex_state = 6}, + [6104] = {.lex_state = 64, .external_lex_state = 6}, + [6105] = {.lex_state = 62, .external_lex_state = 6}, [6106] = {.lex_state = 64, .external_lex_state = 6}, - [6107] = {.lex_state = 64, .external_lex_state = 6}, + [6107] = {.lex_state = 62, .external_lex_state = 6}, [6108] = {.lex_state = 64, .external_lex_state = 6}, [6109] = {.lex_state = 62, .external_lex_state = 6}, - [6110] = {.lex_state = 62, .external_lex_state = 6}, + [6110] = {.lex_state = 142, .external_lex_state = 6}, [6111] = {.lex_state = 64, .external_lex_state = 6}, - [6112] = {.lex_state = 64, .external_lex_state = 6}, + [6112] = {.lex_state = 62, .external_lex_state = 6}, [6113] = {.lex_state = 62, .external_lex_state = 6}, - [6114] = {.lex_state = 62, .external_lex_state = 6}, - [6115] = {.lex_state = 62, .external_lex_state = 6}, + [6114] = {.lex_state = 64, .external_lex_state = 6}, + [6115] = {.lex_state = 64, .external_lex_state = 6}, [6116] = {.lex_state = 62, .external_lex_state = 6}, - [6117] = {.lex_state = 64, .external_lex_state = 6}, + [6117] = {.lex_state = 62, .external_lex_state = 6}, [6118] = {.lex_state = 64, .external_lex_state = 6}, [6119] = {.lex_state = 64, .external_lex_state = 6}, - [6120] = {.lex_state = 64, .external_lex_state = 6}, - [6121] = {.lex_state = 62, .external_lex_state = 6}, + [6120] = {.lex_state = 62, .external_lex_state = 6}, + [6121] = {.lex_state = 64, .external_lex_state = 6}, [6122] = {.lex_state = 62, .external_lex_state = 6}, [6123] = {.lex_state = 64, .external_lex_state = 6}, [6124] = {.lex_state = 64, .external_lex_state = 6}, [6125] = {.lex_state = 62, .external_lex_state = 6}, - [6126] = {.lex_state = 314, .external_lex_state = 6}, - [6127] = {.lex_state = 64, .external_lex_state = 6}, - [6128] = {.lex_state = 314, .external_lex_state = 6}, - [6129] = {.lex_state = 62, .external_lex_state = 6}, - [6130] = {.lex_state = 62, .external_lex_state = 6}, + [6126] = {.lex_state = 62, .external_lex_state = 6}, + [6127] = {.lex_state = 62, .external_lex_state = 6}, + [6128] = {.lex_state = 62, .external_lex_state = 6}, + [6129] = {.lex_state = 64, .external_lex_state = 6}, + [6130] = {.lex_state = 64, .external_lex_state = 6}, [6131] = {.lex_state = 62, .external_lex_state = 6}, [6132] = {.lex_state = 62, .external_lex_state = 6}, [6133] = {.lex_state = 64, .external_lex_state = 6}, [6134] = {.lex_state = 64, .external_lex_state = 6}, - [6135] = {.lex_state = 64, .external_lex_state = 6}, + [6135] = {.lex_state = 62, .external_lex_state = 6}, [6136] = {.lex_state = 64, .external_lex_state = 6}, [6137] = {.lex_state = 62, .external_lex_state = 6}, - [6138] = {.lex_state = 62, .external_lex_state = 6}, + [6138] = {.lex_state = 64, .external_lex_state = 6}, [6139] = {.lex_state = 64, .external_lex_state = 6}, [6140] = {.lex_state = 64, .external_lex_state = 6}, [6141] = {.lex_state = 62, .external_lex_state = 6}, - [6142] = {.lex_state = 314, .external_lex_state = 6}, - [6143] = {.lex_state = 62, .external_lex_state = 6}, - [6144] = {.lex_state = 62, .external_lex_state = 6}, + [6142] = {.lex_state = 62, .external_lex_state = 6}, + [6143] = {.lex_state = 64, .external_lex_state = 6}, + [6144] = {.lex_state = 64, .external_lex_state = 6}, [6145] = {.lex_state = 62, .external_lex_state = 6}, [6146] = {.lex_state = 62, .external_lex_state = 6}, - [6147] = {.lex_state = 62, .external_lex_state = 6}, - [6148] = {.lex_state = 62, .external_lex_state = 6}, - [6149] = {.lex_state = 64, .external_lex_state = 6}, + [6147] = {.lex_state = 64, .external_lex_state = 6}, + [6148] = {.lex_state = 64, .external_lex_state = 6}, + [6149] = {.lex_state = 62, .external_lex_state = 6}, [6150] = {.lex_state = 64, .external_lex_state = 6}, - [6151] = {.lex_state = 64, .external_lex_state = 6}, + [6151] = {.lex_state = 62, .external_lex_state = 6}, [6152] = {.lex_state = 64, .external_lex_state = 6}, - [6153] = {.lex_state = 62, .external_lex_state = 6}, - [6154] = {.lex_state = 62, .external_lex_state = 6}, - [6155] = {.lex_state = 64, .external_lex_state = 6}, - [6156] = {.lex_state = 64, .external_lex_state = 6}, - [6157] = {.lex_state = 62, .external_lex_state = 6}, + [6153] = {.lex_state = 64, .external_lex_state = 6}, + [6154] = {.lex_state = 64, .external_lex_state = 6}, + [6155] = {.lex_state = 62, .external_lex_state = 6}, + [6156] = {.lex_state = 62, .external_lex_state = 6}, + [6157] = {.lex_state = 64, .external_lex_state = 6}, [6158] = {.lex_state = 64, .external_lex_state = 6}, - [6159] = {.lex_state = 64, .external_lex_state = 6}, + [6159] = {.lex_state = 62, .external_lex_state = 6}, [6160] = {.lex_state = 62, .external_lex_state = 6}, - [6161] = {.lex_state = 62, .external_lex_state = 6}, - [6162] = {.lex_state = 62, .external_lex_state = 6}, + [6161] = {.lex_state = 64, .external_lex_state = 6}, + [6162] = {.lex_state = 64, .external_lex_state = 6}, [6163] = {.lex_state = 62, .external_lex_state = 6}, - [6164] = {.lex_state = 62, .external_lex_state = 6}, - [6165] = {.lex_state = 64, .external_lex_state = 6}, + [6164] = {.lex_state = 64, .external_lex_state = 6}, + [6165] = {.lex_state = 62, .external_lex_state = 6}, [6166] = {.lex_state = 64, .external_lex_state = 6}, [6167] = {.lex_state = 64, .external_lex_state = 6}, - [6168] = {.lex_state = 64, .external_lex_state = 6}, + [6168] = {.lex_state = 62, .external_lex_state = 6}, [6169] = {.lex_state = 62, .external_lex_state = 6}, - [6170] = {.lex_state = 62, .external_lex_state = 6}, + [6170] = {.lex_state = 64, .external_lex_state = 6}, [6171] = {.lex_state = 64, .external_lex_state = 6}, - [6172] = {.lex_state = 64, .external_lex_state = 6}, + [6172] = {.lex_state = 62, .external_lex_state = 6}, [6173] = {.lex_state = 62, .external_lex_state = 6}, - [6174] = {.lex_state = 314, .external_lex_state = 6}, - [6175] = {.lex_state = 314, .external_lex_state = 6}, + [6174] = {.lex_state = 64, .external_lex_state = 6}, + [6175] = {.lex_state = 64, .external_lex_state = 6}, [6176] = {.lex_state = 62, .external_lex_state = 6}, - [6177] = {.lex_state = 62, .external_lex_state = 6}, + [6177] = {.lex_state = 64, .external_lex_state = 6}, [6178] = {.lex_state = 62, .external_lex_state = 6}, - [6179] = {.lex_state = 62, .external_lex_state = 6}, + [6179] = {.lex_state = 64, .external_lex_state = 6}, [6180] = {.lex_state = 64, .external_lex_state = 6}, - [6181] = {.lex_state = 64, .external_lex_state = 6}, - [6182] = {.lex_state = 64, .external_lex_state = 6}, - [6183] = {.lex_state = 64, .external_lex_state = 6}, - [6184] = {.lex_state = 62, .external_lex_state = 6}, - [6185] = {.lex_state = 62, .external_lex_state = 6}, - [6186] = {.lex_state = 64, .external_lex_state = 6}, + [6181] = {.lex_state = 318, .external_lex_state = 6}, + [6182] = {.lex_state = 62, .external_lex_state = 6}, + [6183] = {.lex_state = 62, .external_lex_state = 6}, + [6184] = {.lex_state = 64, .external_lex_state = 6}, + [6185] = {.lex_state = 64, .external_lex_state = 6}, + [6186] = {.lex_state = 62, .external_lex_state = 6}, [6187] = {.lex_state = 64, .external_lex_state = 6}, [6188] = {.lex_state = 62, .external_lex_state = 6}, - [6189] = {.lex_state = 62, .external_lex_state = 6}, + [6189] = {.lex_state = 318, .external_lex_state = 6}, [6190] = {.lex_state = 62, .external_lex_state = 6}, [6191] = {.lex_state = 62, .external_lex_state = 6}, [6192] = {.lex_state = 64, .external_lex_state = 6}, [6193] = {.lex_state = 64, .external_lex_state = 6}, - [6194] = {.lex_state = 64, .external_lex_state = 6}, + [6194] = {.lex_state = 62, .external_lex_state = 6}, [6195] = {.lex_state = 64, .external_lex_state = 6}, [6196] = {.lex_state = 62, .external_lex_state = 6}, - [6197] = {.lex_state = 62, .external_lex_state = 6}, - [6198] = {.lex_state = 64, .external_lex_state = 6}, - [6199] = {.lex_state = 64, .external_lex_state = 6}, - [6200] = {.lex_state = 62, .external_lex_state = 6}, - [6201] = {.lex_state = 62, .external_lex_state = 6}, + [6197] = {.lex_state = 64, .external_lex_state = 6}, + [6198] = {.lex_state = 62, .external_lex_state = 6}, + [6199] = {.lex_state = 62, .external_lex_state = 6}, + [6200] = {.lex_state = 64, .external_lex_state = 6}, + [6201] = {.lex_state = 64, .external_lex_state = 6}, [6202] = {.lex_state = 62, .external_lex_state = 6}, - [6203] = {.lex_state = 62, .external_lex_state = 6}, - [6204] = {.lex_state = 62, .external_lex_state = 6}, + [6203] = {.lex_state = 64, .external_lex_state = 6}, + [6204] = {.lex_state = 64, .external_lex_state = 6}, [6205] = {.lex_state = 62, .external_lex_state = 6}, [6206] = {.lex_state = 62, .external_lex_state = 6}, [6207] = {.lex_state = 62, .external_lex_state = 6}, - [6208] = {.lex_state = 62, .external_lex_state = 6}, - [6209] = {.lex_state = 62, .external_lex_state = 6}, + [6208] = {.lex_state = 64, .external_lex_state = 6}, + [6209] = {.lex_state = 64, .external_lex_state = 6}, [6210] = {.lex_state = 62, .external_lex_state = 6}, - [6211] = {.lex_state = 62, .external_lex_state = 6}, + [6211] = {.lex_state = 64, .external_lex_state = 6}, [6212] = {.lex_state = 62, .external_lex_state = 6}, - [6213] = {.lex_state = 62, .external_lex_state = 6}, + [6213] = {.lex_state = 64, .external_lex_state = 6}, [6214] = {.lex_state = 62, .external_lex_state = 6}, [6215] = {.lex_state = 62, .external_lex_state = 6}, - [6216] = {.lex_state = 62, .external_lex_state = 6}, - [6217] = {.lex_state = 62, .external_lex_state = 6}, + [6216] = {.lex_state = 64, .external_lex_state = 6}, + [6217] = {.lex_state = 64, .external_lex_state = 6}, [6218] = {.lex_state = 62, .external_lex_state = 6}, - [6219] = {.lex_state = 62, .external_lex_state = 6}, - [6220] = {.lex_state = 62, .external_lex_state = 6}, + [6219] = {.lex_state = 64, .external_lex_state = 6}, + [6220] = {.lex_state = 64, .external_lex_state = 6}, [6221] = {.lex_state = 62, .external_lex_state = 6}, [6222] = {.lex_state = 62, .external_lex_state = 6}, - [6223] = {.lex_state = 62, .external_lex_state = 6}, - [6224] = {.lex_state = 62, .external_lex_state = 6}, - [6225] = {.lex_state = 64, .external_lex_state = 6}, - [6226] = {.lex_state = 62, .external_lex_state = 6}, - [6227] = {.lex_state = 62, .external_lex_state = 6}, + [6223] = {.lex_state = 64, .external_lex_state = 6}, + [6224] = {.lex_state = 64, .external_lex_state = 6}, + [6225] = {.lex_state = 62, .external_lex_state = 6}, + [6226] = {.lex_state = 64, .external_lex_state = 6}, + [6227] = {.lex_state = 142, .external_lex_state = 6}, [6228] = {.lex_state = 62, .external_lex_state = 6}, [6229] = {.lex_state = 62, .external_lex_state = 6}, - [6230] = {.lex_state = 62, .external_lex_state = 6}, - [6231] = {.lex_state = 62, .external_lex_state = 6}, - [6232] = {.lex_state = 142, .external_lex_state = 6}, - [6233] = {.lex_state = 142, .external_lex_state = 6}, - [6234] = {.lex_state = 62, .external_lex_state = 6}, + [6230] = {.lex_state = 64, .external_lex_state = 6}, + [6231] = {.lex_state = 64, .external_lex_state = 6}, + [6232] = {.lex_state = 62, .external_lex_state = 6}, + [6233] = {.lex_state = 64, .external_lex_state = 6}, + [6234] = {.lex_state = 64, .external_lex_state = 6}, [6235] = {.lex_state = 62, .external_lex_state = 6}, [6236] = {.lex_state = 62, .external_lex_state = 6}, - [6237] = {.lex_state = 62, .external_lex_state = 6}, - [6238] = {.lex_state = 62, .external_lex_state = 6}, + [6237] = {.lex_state = 64, .external_lex_state = 6}, + [6238] = {.lex_state = 64, .external_lex_state = 6}, [6239] = {.lex_state = 62, .external_lex_state = 6}, - [6240] = {.lex_state = 62, .external_lex_state = 6}, - [6241] = {.lex_state = 62, .external_lex_state = 6}, - [6242] = {.lex_state = 62, .external_lex_state = 6}, - [6243] = {.lex_state = 62, .external_lex_state = 6}, - [6244] = {.lex_state = 62, .external_lex_state = 6}, - [6245] = {.lex_state = 62, .external_lex_state = 6}, + [6240] = {.lex_state = 64, .external_lex_state = 6}, + [6241] = {.lex_state = 318, .external_lex_state = 6}, + [6242] = {.lex_state = 318, .external_lex_state = 6}, + [6243] = {.lex_state = 142, .external_lex_state = 6}, + [6244] = {.lex_state = 318, .external_lex_state = 6}, + [6245] = {.lex_state = 318, .external_lex_state = 6}, [6246] = {.lex_state = 62, .external_lex_state = 6}, - [6247] = {.lex_state = 64, .external_lex_state = 6}, - [6248] = {.lex_state = 62, .external_lex_state = 6}, - [6249] = {.lex_state = 62, .external_lex_state = 6}, - [6250] = {.lex_state = 62, .external_lex_state = 6}, - [6251] = {.lex_state = 62, .external_lex_state = 6}, + [6247] = {.lex_state = 318, .external_lex_state = 6}, + [6248] = {.lex_state = 318, .external_lex_state = 6}, + [6249] = {.lex_state = 64, .external_lex_state = 6}, + [6250] = {.lex_state = 318, .external_lex_state = 6}, + [6251] = {.lex_state = 318, .external_lex_state = 6}, [6252] = {.lex_state = 62, .external_lex_state = 6}, - [6253] = {.lex_state = 62, .external_lex_state = 6}, + [6253] = {.lex_state = 64, .external_lex_state = 6}, [6254] = {.lex_state = 62, .external_lex_state = 6}, - [6255] = {.lex_state = 62, .external_lex_state = 6}, + [6255] = {.lex_state = 64, .external_lex_state = 6}, [6256] = {.lex_state = 62, .external_lex_state = 6}, - [6257] = {.lex_state = 314, .external_lex_state = 6}, - [6258] = {.lex_state = 62, .external_lex_state = 6}, - [6259] = {.lex_state = 62, .external_lex_state = 6}, + [6257] = {.lex_state = 64, .external_lex_state = 6}, + [6258] = {.lex_state = 318, .external_lex_state = 6}, + [6259] = {.lex_state = 318, .external_lex_state = 6}, [6260] = {.lex_state = 62, .external_lex_state = 6}, - [6261] = {.lex_state = 62, .external_lex_state = 6}, - [6262] = {.lex_state = 64, .external_lex_state = 6}, + [6261] = {.lex_state = 64, .external_lex_state = 6}, + [6262] = {.lex_state = 62, .external_lex_state = 6}, [6263] = {.lex_state = 64, .external_lex_state = 6}, - [6264] = {.lex_state = 64, .external_lex_state = 6}, - [6265] = {.lex_state = 64, .external_lex_state = 6}, - [6266] = {.lex_state = 62, .external_lex_state = 6}, - [6267] = {.lex_state = 62, .external_lex_state = 6}, - [6268] = {.lex_state = 62, .external_lex_state = 6}, - [6269] = {.lex_state = 142, .external_lex_state = 6}, - [6270] = {.lex_state = 62, .external_lex_state = 6}, - [6271] = {.lex_state = 314, .external_lex_state = 6}, - [6272] = {.lex_state = 314, .external_lex_state = 6}, - [6273] = {.lex_state = 314, .external_lex_state = 6}, - [6274] = {.lex_state = 62, .external_lex_state = 6}, - [6275] = {.lex_state = 62, .external_lex_state = 6}, + [6264] = {.lex_state = 142, .external_lex_state = 6}, + [6265] = {.lex_state = 142, .external_lex_state = 6}, + [6266] = {.lex_state = 142, .external_lex_state = 6}, + [6267] = {.lex_state = 142, .external_lex_state = 6}, + [6268] = {.lex_state = 64, .external_lex_state = 6}, + [6269] = {.lex_state = 62, .external_lex_state = 6}, + [6270] = {.lex_state = 318, .external_lex_state = 6}, + [6271] = {.lex_state = 318, .external_lex_state = 6}, + [6272] = {.lex_state = 64, .external_lex_state = 6}, + [6273] = {.lex_state = 64, .external_lex_state = 6}, + [6274] = {.lex_state = 64, .external_lex_state = 6}, + [6275] = {.lex_state = 64, .external_lex_state = 6}, [6276] = {.lex_state = 64, .external_lex_state = 6}, [6277] = {.lex_state = 64, .external_lex_state = 6}, - [6278] = {.lex_state = 62, .external_lex_state = 6}, - [6279] = {.lex_state = 142, .external_lex_state = 6}, - [6280] = {.lex_state = 142, .external_lex_state = 6}, - [6281] = {.lex_state = 62, .external_lex_state = 6}, - [6282] = {.lex_state = 314, .external_lex_state = 6}, - [6283] = {.lex_state = 62, .external_lex_state = 6}, - [6284] = {.lex_state = 314, .external_lex_state = 6}, - [6285] = {.lex_state = 314, .external_lex_state = 6}, - [6286] = {.lex_state = 62, .external_lex_state = 6}, - [6287] = {.lex_state = 62, .external_lex_state = 6}, - [6288] = {.lex_state = 62, .external_lex_state = 6}, - [6289] = {.lex_state = 62, .external_lex_state = 6}, - [6290] = {.lex_state = 62, .external_lex_state = 6}, - [6291] = {.lex_state = 62, .external_lex_state = 6}, - [6292] = {.lex_state = 62, .external_lex_state = 6}, - [6293] = {.lex_state = 62, .external_lex_state = 6}, - [6294] = {.lex_state = 62, .external_lex_state = 6}, - [6295] = {.lex_state = 62, .external_lex_state = 6}, - [6296] = {.lex_state = 62, .external_lex_state = 6}, - [6297] = {.lex_state = 62, .external_lex_state = 6}, - [6298] = {.lex_state = 314, .external_lex_state = 6}, - [6299] = {.lex_state = 142, .external_lex_state = 6}, - [6300] = {.lex_state = 314, .external_lex_state = 6}, - [6301] = {.lex_state = 314, .external_lex_state = 6}, - [6302] = {.lex_state = 314, .external_lex_state = 6}, - [6303] = {.lex_state = 62, .external_lex_state = 6}, - [6304] = {.lex_state = 62, .external_lex_state = 6}, - [6305] = {.lex_state = 62, .external_lex_state = 6}, - [6306] = {.lex_state = 62, .external_lex_state = 6}, - [6307] = {.lex_state = 62, .external_lex_state = 6}, - [6308] = {.lex_state = 62, .external_lex_state = 6}, - [6309] = {.lex_state = 314, .external_lex_state = 6}, - [6310] = {.lex_state = 62, .external_lex_state = 6}, - [6311] = {.lex_state = 62, .external_lex_state = 6}, - [6312] = {.lex_state = 314, .external_lex_state = 6}, + [6278] = {.lex_state = 64, .external_lex_state = 6}, + [6279] = {.lex_state = 64, .external_lex_state = 6}, + [6280] = {.lex_state = 64, .external_lex_state = 6}, + [6281] = {.lex_state = 64, .external_lex_state = 6}, + [6282] = {.lex_state = 142, .external_lex_state = 6}, + [6283] = {.lex_state = 64, .external_lex_state = 6}, + [6284] = {.lex_state = 318, .external_lex_state = 6}, + [6285] = {.lex_state = 318, .external_lex_state = 6}, + [6286] = {.lex_state = 64, .external_lex_state = 6}, + [6287] = {.lex_state = 318, .external_lex_state = 6}, + [6288] = {.lex_state = 64, .external_lex_state = 6}, + [6289] = {.lex_state = 64, .external_lex_state = 6}, + [6290] = {.lex_state = 64, .external_lex_state = 6}, + [6291] = {.lex_state = 64, .external_lex_state = 6}, + [6292] = {.lex_state = 64, .external_lex_state = 6}, + [6293] = {.lex_state = 64, .external_lex_state = 6}, + [6294] = {.lex_state = 64, .external_lex_state = 6}, + [6295] = {.lex_state = 64, .external_lex_state = 6}, + [6296] = {.lex_state = 64, .external_lex_state = 6}, + [6297] = {.lex_state = 64, .external_lex_state = 6}, + [6298] = {.lex_state = 64, .external_lex_state = 6}, + [6299] = {.lex_state = 64, .external_lex_state = 6}, + [6300] = {.lex_state = 64, .external_lex_state = 6}, + [6301] = {.lex_state = 64, .external_lex_state = 6}, + [6302] = {.lex_state = 142, .external_lex_state = 6}, + [6303] = {.lex_state = 318, .external_lex_state = 6}, + [6304] = {.lex_state = 142, .external_lex_state = 6}, + [6305] = {.lex_state = 318, .external_lex_state = 6}, + [6306] = {.lex_state = 318, .external_lex_state = 6}, + [6307] = {.lex_state = 64, .external_lex_state = 6}, + [6308] = {.lex_state = 64, .external_lex_state = 6}, + [6309] = {.lex_state = 64, .external_lex_state = 6}, + [6310] = {.lex_state = 64, .external_lex_state = 6}, + [6311] = {.lex_state = 64, .external_lex_state = 6}, + [6312] = {.lex_state = 64, .external_lex_state = 6}, [6313] = {.lex_state = 142, .external_lex_state = 6}, - [6314] = {.lex_state = 314, .external_lex_state = 6}, - [6315] = {.lex_state = 314, .external_lex_state = 6}, + [6314] = {.lex_state = 64, .external_lex_state = 6}, + [6315] = {.lex_state = 142, .external_lex_state = 6}, [6316] = {.lex_state = 62, .external_lex_state = 6}, - [6317] = {.lex_state = 62, .external_lex_state = 6}, - [6318] = {.lex_state = 62, .external_lex_state = 6}, - [6319] = {.lex_state = 142, .external_lex_state = 6}, - [6320] = {.lex_state = 314, .external_lex_state = 6}, - [6321] = {.lex_state = 314, .external_lex_state = 6}, - [6322] = {.lex_state = 62, .external_lex_state = 6}, - [6323] = {.lex_state = 314, .external_lex_state = 6}, - [6324] = {.lex_state = 62, .external_lex_state = 6}, - [6325] = {.lex_state = 314, .external_lex_state = 6}, - [6326] = {.lex_state = 62, .external_lex_state = 6}, - [6327] = {.lex_state = 62, .external_lex_state = 6}, - [6328] = {.lex_state = 62, .external_lex_state = 6}, - [6329] = {.lex_state = 64, .external_lex_state = 6}, + [6317] = {.lex_state = 318, .external_lex_state = 6}, + [6318] = {.lex_state = 64, .external_lex_state = 6}, + [6319] = {.lex_state = 64, .external_lex_state = 6}, + [6320] = {.lex_state = 142, .external_lex_state = 6}, + [6321] = {.lex_state = 64, .external_lex_state = 6}, + [6322] = {.lex_state = 318, .external_lex_state = 6}, + [6323] = {.lex_state = 64, .external_lex_state = 6}, + [6324] = {.lex_state = 64, .external_lex_state = 6}, + [6325] = {.lex_state = 64, .external_lex_state = 6}, + [6326] = {.lex_state = 318, .external_lex_state = 6}, + [6327] = {.lex_state = 64, .external_lex_state = 6}, + [6328] = {.lex_state = 142, .external_lex_state = 6}, + [6329] = {.lex_state = 142, .external_lex_state = 6}, [6330] = {.lex_state = 64, .external_lex_state = 6}, - [6331] = {.lex_state = 64, .external_lex_state = 6}, - [6332] = {.lex_state = 62, .external_lex_state = 6}, - [6333] = {.lex_state = 64, .external_lex_state = 6}, - [6334] = {.lex_state = 314, .external_lex_state = 6}, - [6335] = {.lex_state = 62, .external_lex_state = 6}, - [6336] = {.lex_state = 142, .external_lex_state = 6}, - [6337] = {.lex_state = 62, .external_lex_state = 6}, - [6338] = {.lex_state = 62, .external_lex_state = 6}, - [6339] = {.lex_state = 142, .external_lex_state = 6}, + [6331] = {.lex_state = 62, .external_lex_state = 6}, + [6332] = {.lex_state = 64, .external_lex_state = 6}, + [6333] = {.lex_state = 318, .external_lex_state = 6}, + [6334] = {.lex_state = 62, .external_lex_state = 6}, + [6335] = {.lex_state = 64, .external_lex_state = 6}, + [6336] = {.lex_state = 62, .external_lex_state = 6}, + [6337] = {.lex_state = 64, .external_lex_state = 6}, + [6338] = {.lex_state = 64, .external_lex_state = 6}, + [6339] = {.lex_state = 62, .external_lex_state = 6}, [6340] = {.lex_state = 62, .external_lex_state = 6}, - [6341] = {.lex_state = 62, .external_lex_state = 6}, - [6342] = {.lex_state = 314, .external_lex_state = 6}, - [6343] = {.lex_state = 62, .external_lex_state = 6}, - [6344] = {.lex_state = 64, .external_lex_state = 6}, - [6345] = {.lex_state = 314, .external_lex_state = 6}, - [6346] = {.lex_state = 64, .external_lex_state = 6}, - [6347] = {.lex_state = 314, .external_lex_state = 6}, - [6348] = {.lex_state = 62, .external_lex_state = 6}, - [6349] = {.lex_state = 64, .external_lex_state = 6}, - [6350] = {.lex_state = 62, .external_lex_state = 6}, - [6351] = {.lex_state = 64, .external_lex_state = 6}, + [6341] = {.lex_state = 64, .external_lex_state = 6}, + [6342] = {.lex_state = 64, .external_lex_state = 6}, + [6343] = {.lex_state = 64, .external_lex_state = 6}, + [6344] = {.lex_state = 142, .external_lex_state = 6}, + [6345] = {.lex_state = 64, .external_lex_state = 6}, + [6346] = {.lex_state = 318, .external_lex_state = 6}, + [6347] = {.lex_state = 318, .external_lex_state = 6}, + [6348] = {.lex_state = 318, .external_lex_state = 6}, + [6349] = {.lex_state = 62, .external_lex_state = 6}, + [6350] = {.lex_state = 64, .external_lex_state = 6}, + [6351] = {.lex_state = 62, .external_lex_state = 6}, [6352] = {.lex_state = 64, .external_lex_state = 6}, - [6353] = {.lex_state = 62, .external_lex_state = 6}, - [6354] = {.lex_state = 62, .external_lex_state = 6}, - [6355] = {.lex_state = 62, .external_lex_state = 6}, - [6356] = {.lex_state = 62, .external_lex_state = 6}, - [6357] = {.lex_state = 62, .external_lex_state = 6}, - [6358] = {.lex_state = 62, .external_lex_state = 6}, - [6359] = {.lex_state = 314, .external_lex_state = 6}, - [6360] = {.lex_state = 62, .external_lex_state = 6}, - [6361] = {.lex_state = 142, .external_lex_state = 6}, - [6362] = {.lex_state = 142, .external_lex_state = 6}, + [6353] = {.lex_state = 318, .external_lex_state = 6}, + [6354] = {.lex_state = 318, .external_lex_state = 6}, + [6355] = {.lex_state = 64, .external_lex_state = 6}, + [6356] = {.lex_state = 64, .external_lex_state = 6}, + [6357] = {.lex_state = 64, .external_lex_state = 6}, + [6358] = {.lex_state = 64, .external_lex_state = 6}, + [6359] = {.lex_state = 318, .external_lex_state = 6}, + [6360] = {.lex_state = 64, .external_lex_state = 6}, + [6361] = {.lex_state = 64, .external_lex_state = 6}, + [6362] = {.lex_state = 64, .external_lex_state = 6}, [6363] = {.lex_state = 64, .external_lex_state = 6}, [6364] = {.lex_state = 64, .external_lex_state = 6}, - [6365] = {.lex_state = 142, .external_lex_state = 6}, + [6365] = {.lex_state = 64, .external_lex_state = 6}, [6366] = {.lex_state = 142, .external_lex_state = 6}, - [6367] = {.lex_state = 314, .external_lex_state = 6}, - [6368] = {.lex_state = 314, .external_lex_state = 6}, - [6369] = {.lex_state = 62, .external_lex_state = 6}, - [6370] = {.lex_state = 62, .external_lex_state = 6}, - [6371] = {.lex_state = 62, .external_lex_state = 6}, - [6372] = {.lex_state = 62, .external_lex_state = 6}, - [6373] = {.lex_state = 62, .external_lex_state = 6}, - [6374] = {.lex_state = 62, .external_lex_state = 6}, - [6375] = {.lex_state = 62, .external_lex_state = 6}, - [6376] = {.lex_state = 62, .external_lex_state = 6}, - [6377] = {.lex_state = 62, .external_lex_state = 6}, - [6378] = {.lex_state = 62, .external_lex_state = 6}, - [6379] = {.lex_state = 62, .external_lex_state = 6}, - [6380] = {.lex_state = 62, .external_lex_state = 6}, - [6381] = {.lex_state = 62, .external_lex_state = 6}, - [6382] = {.lex_state = 62, .external_lex_state = 6}, - [6383] = {.lex_state = 62, .external_lex_state = 6}, - [6384] = {.lex_state = 142, .external_lex_state = 6}, - [6385] = {.lex_state = 62, .external_lex_state = 6}, - [6386] = {.lex_state = 62, .external_lex_state = 6}, - [6387] = {.lex_state = 62, .external_lex_state = 6}, - [6388] = {.lex_state = 62, .external_lex_state = 6}, - [6389] = {.lex_state = 142, .external_lex_state = 6}, - [6390] = {.lex_state = 62, .external_lex_state = 6}, - [6391] = {.lex_state = 62, .external_lex_state = 6}, - [6392] = {.lex_state = 142, .external_lex_state = 6}, - [6393] = {.lex_state = 62, .external_lex_state = 6}, - [6394] = {.lex_state = 62, .external_lex_state = 6}, - [6395] = {.lex_state = 64, .external_lex_state = 6}, - [6396] = {.lex_state = 65, .external_lex_state = 17}, - [6397] = {.lex_state = 65, .external_lex_state = 18}, - [6398] = {.lex_state = 65, .external_lex_state = 19}, - [6399] = {.lex_state = 65, .external_lex_state = 20}, - [6400] = {.lex_state = 62, .external_lex_state = 13}, - [6401] = {.lex_state = 65, .external_lex_state = 18}, - [6402] = {.lex_state = 65, .external_lex_state = 21}, - [6403] = {.lex_state = 65, .external_lex_state = 21}, - [6404] = {.lex_state = 65, .external_lex_state = 22}, - [6405] = {.lex_state = 65, .external_lex_state = 23}, - [6406] = {.lex_state = 65, .external_lex_state = 20}, - [6407] = {.lex_state = 65, .external_lex_state = 17}, - [6408] = {.lex_state = 64, .external_lex_state = 10}, - [6409] = {.lex_state = 65, .external_lex_state = 24}, - [6410] = {.lex_state = 63, .external_lex_state = 25}, - [6411] = {.lex_state = 139, .external_lex_state = 6}, - [6412] = {.lex_state = 62, .external_lex_state = 14}, - [6413] = {.lex_state = 65, .external_lex_state = 21}, - [6414] = {.lex_state = 65, .external_lex_state = 22}, - [6415] = {.lex_state = 65, .external_lex_state = 24}, - [6416] = {.lex_state = 63, .external_lex_state = 25}, - [6417] = {.lex_state = 63, .external_lex_state = 26}, - [6418] = {.lex_state = 65, .external_lex_state = 18}, - [6419] = {.lex_state = 65, .external_lex_state = 19}, - [6420] = {.lex_state = 65, .external_lex_state = 23}, - [6421] = {.lex_state = 65, .external_lex_state = 17}, - [6422] = {.lex_state = 65, .external_lex_state = 20}, - [6423] = {.lex_state = 65, .external_lex_state = 21}, - [6424] = {.lex_state = 65, .external_lex_state = 22}, - [6425] = {.lex_state = 65, .external_lex_state = 17}, - [6426] = {.lex_state = 62, .external_lex_state = 12}, - [6427] = {.lex_state = 62, .external_lex_state = 7}, - [6428] = {.lex_state = 65, .external_lex_state = 24}, - [6429] = {.lex_state = 65, .external_lex_state = 21}, - [6430] = {.lex_state = 65, .external_lex_state = 22}, - [6431] = {.lex_state = 65, .external_lex_state = 17}, - [6432] = {.lex_state = 65, .external_lex_state = 24}, - [6433] = {.lex_state = 63, .external_lex_state = 25}, - [6434] = {.lex_state = 63, .external_lex_state = 26}, - [6435] = {.lex_state = 65, .external_lex_state = 18}, - [6436] = {.lex_state = 65, .external_lex_state = 19}, - [6437] = {.lex_state = 65, .external_lex_state = 23}, - [6438] = {.lex_state = 65, .external_lex_state = 20}, - [6439] = {.lex_state = 65, .external_lex_state = 21}, - [6440] = {.lex_state = 65, .external_lex_state = 22}, - [6441] = {.lex_state = 65, .external_lex_state = 17}, - [6442] = {.lex_state = 65, .external_lex_state = 19}, - [6443] = {.lex_state = 139, .external_lex_state = 6}, - [6444] = {.lex_state = 139, .external_lex_state = 6}, - [6445] = {.lex_state = 139, .external_lex_state = 6}, - [6446] = {.lex_state = 63, .external_lex_state = 26}, - [6447] = {.lex_state = 65, .external_lex_state = 23}, - [6448] = {.lex_state = 65, .external_lex_state = 20}, - [6449] = {.lex_state = 62, .external_lex_state = 15}, - [6450] = {.lex_state = 65, .external_lex_state = 24}, - [6451] = {.lex_state = 63, .external_lex_state = 25}, - [6452] = {.lex_state = 63, .external_lex_state = 26}, - [6453] = {.lex_state = 65, .external_lex_state = 18}, - [6454] = {.lex_state = 62, .external_lex_state = 8}, - [6455] = {.lex_state = 62, .external_lex_state = 11}, - [6456] = {.lex_state = 65, .external_lex_state = 24}, - [6457] = {.lex_state = 65, .external_lex_state = 24}, - [6458] = {.lex_state = 62, .external_lex_state = 8}, - [6459] = {.lex_state = 63, .external_lex_state = 25}, - [6460] = {.lex_state = 63, .external_lex_state = 26}, - [6461] = {.lex_state = 62, .external_lex_state = 15}, - [6462] = {.lex_state = 65, .external_lex_state = 18}, - [6463] = {.lex_state = 63, .external_lex_state = 25}, - [6464] = {.lex_state = 65, .external_lex_state = 19}, - [6465] = {.lex_state = 65, .external_lex_state = 24}, - [6466] = {.lex_state = 63, .external_lex_state = 25}, - [6467] = {.lex_state = 65, .external_lex_state = 24}, - [6468] = {.lex_state = 63, .external_lex_state = 25}, - [6469] = {.lex_state = 63, .external_lex_state = 26}, - [6470] = {.lex_state = 139, .external_lex_state = 6}, - [6471] = {.lex_state = 62, .external_lex_state = 12}, - [6472] = {.lex_state = 65, .external_lex_state = 18}, - [6473] = {.lex_state = 65, .external_lex_state = 19}, - [6474] = {.lex_state = 65, .external_lex_state = 23}, - [6475] = {.lex_state = 65, .external_lex_state = 20}, - [6476] = {.lex_state = 65, .external_lex_state = 21}, - [6477] = {.lex_state = 65, .external_lex_state = 22}, - [6478] = {.lex_state = 65, .external_lex_state = 17}, - [6479] = {.lex_state = 65, .external_lex_state = 19}, - [6480] = {.lex_state = 65, .external_lex_state = 23}, - [6481] = {.lex_state = 65, .external_lex_state = 20}, - [6482] = {.lex_state = 65, .external_lex_state = 21}, - [6483] = {.lex_state = 63, .external_lex_state = 26}, - [6484] = {.lex_state = 65, .external_lex_state = 22}, - [6485] = {.lex_state = 64, .external_lex_state = 9}, - [6486] = {.lex_state = 65, .external_lex_state = 24}, - [6487] = {.lex_state = 63, .external_lex_state = 25}, - [6488] = {.lex_state = 63, .external_lex_state = 26}, - [6489] = {.lex_state = 65, .external_lex_state = 18}, - [6490] = {.lex_state = 65, .external_lex_state = 19}, - [6491] = {.lex_state = 65, .external_lex_state = 23}, - [6492] = {.lex_state = 65, .external_lex_state = 20}, - [6493] = {.lex_state = 65, .external_lex_state = 21}, - [6494] = {.lex_state = 65, .external_lex_state = 22}, - [6495] = {.lex_state = 65, .external_lex_state = 17}, - [6496] = {.lex_state = 65, .external_lex_state = 17}, - [6497] = {.lex_state = 65, .external_lex_state = 24}, - [6498] = {.lex_state = 62, .external_lex_state = 13}, - [6499] = {.lex_state = 63, .external_lex_state = 25}, - [6500] = {.lex_state = 63, .external_lex_state = 26}, - [6501] = {.lex_state = 65, .external_lex_state = 18}, - [6502] = {.lex_state = 65, .external_lex_state = 19}, - [6503] = {.lex_state = 65, .external_lex_state = 23}, - [6504] = {.lex_state = 65, .external_lex_state = 20}, - [6505] = {.lex_state = 65, .external_lex_state = 21}, - [6506] = {.lex_state = 65, .external_lex_state = 21}, - [6507] = {.lex_state = 65, .external_lex_state = 22}, - [6508] = {.lex_state = 65, .external_lex_state = 17}, - [6509] = {.lex_state = 65, .external_lex_state = 24}, - [6510] = {.lex_state = 63, .external_lex_state = 25}, - [6511] = {.lex_state = 63, .external_lex_state = 26}, - [6512] = {.lex_state = 65, .external_lex_state = 18}, - [6513] = {.lex_state = 65, .external_lex_state = 19}, - [6514] = {.lex_state = 65, .external_lex_state = 23}, - [6515] = {.lex_state = 65, .external_lex_state = 20}, - [6516] = {.lex_state = 65, .external_lex_state = 24}, - [6517] = {.lex_state = 63, .external_lex_state = 25}, - [6518] = {.lex_state = 63, .external_lex_state = 26}, - [6519] = {.lex_state = 62, .external_lex_state = 7}, - [6520] = {.lex_state = 65, .external_lex_state = 18}, - [6521] = {.lex_state = 65, .external_lex_state = 19}, - [6522] = {.lex_state = 65, .external_lex_state = 23}, - [6523] = {.lex_state = 65, .external_lex_state = 20}, - [6524] = {.lex_state = 64, .external_lex_state = 10}, - [6525] = {.lex_state = 65, .external_lex_state = 21}, - [6526] = {.lex_state = 65, .external_lex_state = 22}, - [6527] = {.lex_state = 139, .external_lex_state = 6}, - [6528] = {.lex_state = 65, .external_lex_state = 17}, - [6529] = {.lex_state = 139, .external_lex_state = 6}, - [6530] = {.lex_state = 63, .external_lex_state = 25}, - [6531] = {.lex_state = 314, .external_lex_state = 6}, - [6532] = {.lex_state = 63, .external_lex_state = 26}, - [6533] = {.lex_state = 65, .external_lex_state = 18}, - [6534] = {.lex_state = 139, .external_lex_state = 6}, - [6535] = {.lex_state = 65, .external_lex_state = 19}, - [6536] = {.lex_state = 65, .external_lex_state = 23}, - [6537] = {.lex_state = 65, .external_lex_state = 20}, - [6538] = {.lex_state = 65, .external_lex_state = 21}, - [6539] = {.lex_state = 65, .external_lex_state = 22}, - [6540] = {.lex_state = 142, .external_lex_state = 6}, - [6541] = {.lex_state = 64, .external_lex_state = 10}, - [6542] = {.lex_state = 142, .external_lex_state = 6}, - [6543] = {.lex_state = 65, .external_lex_state = 17}, - [6544] = {.lex_state = 65, .external_lex_state = 21}, - [6545] = {.lex_state = 62, .external_lex_state = 7}, - [6546] = {.lex_state = 65, .external_lex_state = 22}, - [6547] = {.lex_state = 65, .external_lex_state = 17}, - [6548] = {.lex_state = 65, .external_lex_state = 22}, - [6549] = {.lex_state = 65, .external_lex_state = 24}, - [6550] = {.lex_state = 65, .external_lex_state = 17}, - [6551] = {.lex_state = 63, .external_lex_state = 26}, - [6552] = {.lex_state = 65, .external_lex_state = 18}, - [6553] = {.lex_state = 63, .external_lex_state = 25}, - [6554] = {.lex_state = 63, .external_lex_state = 26}, - [6555] = {.lex_state = 62, .external_lex_state = 11}, - [6556] = {.lex_state = 65, .external_lex_state = 19}, - [6557] = {.lex_state = 65, .external_lex_state = 18}, - [6558] = {.lex_state = 65, .external_lex_state = 19}, - [6559] = {.lex_state = 63, .external_lex_state = 25}, - [6560] = {.lex_state = 63, .external_lex_state = 26}, - [6561] = {.lex_state = 62, .external_lex_state = 14}, - [6562] = {.lex_state = 65, .external_lex_state = 18}, - [6563] = {.lex_state = 65, .external_lex_state = 19}, - [6564] = {.lex_state = 65, .external_lex_state = 23}, - [6565] = {.lex_state = 65, .external_lex_state = 20}, - [6566] = {.lex_state = 139, .external_lex_state = 6}, - [6567] = {.lex_state = 65, .external_lex_state = 24}, - [6568] = {.lex_state = 62, .external_lex_state = 16}, - [6569] = {.lex_state = 62, .external_lex_state = 8}, - [6570] = {.lex_state = 63, .external_lex_state = 25}, - [6571] = {.lex_state = 62, .external_lex_state = 12}, - [6572] = {.lex_state = 63, .external_lex_state = 26}, - [6573] = {.lex_state = 65, .external_lex_state = 18}, - [6574] = {.lex_state = 65, .external_lex_state = 19}, - [6575] = {.lex_state = 65, .external_lex_state = 23}, - [6576] = {.lex_state = 64, .external_lex_state = 9}, - [6577] = {.lex_state = 65, .external_lex_state = 20}, - [6578] = {.lex_state = 65, .external_lex_state = 21}, - [6579] = {.lex_state = 65, .external_lex_state = 22}, - [6580] = {.lex_state = 65, .external_lex_state = 17}, - [6581] = {.lex_state = 65, .external_lex_state = 23}, - [6582] = {.lex_state = 65, .external_lex_state = 24}, - [6583] = {.lex_state = 139, .external_lex_state = 6}, - [6584] = {.lex_state = 65, .external_lex_state = 24}, - [6585] = {.lex_state = 63, .external_lex_state = 25}, - [6586] = {.lex_state = 63, .external_lex_state = 26}, - [6587] = {.lex_state = 65, .external_lex_state = 18}, - [6588] = {.lex_state = 65, .external_lex_state = 19}, - [6589] = {.lex_state = 65, .external_lex_state = 23}, - [6590] = {.lex_state = 65, .external_lex_state = 24}, - [6591] = {.lex_state = 63, .external_lex_state = 25}, - [6592] = {.lex_state = 63, .external_lex_state = 26}, - [6593] = {.lex_state = 65, .external_lex_state = 18}, - [6594] = {.lex_state = 65, .external_lex_state = 19}, - [6595] = {.lex_state = 65, .external_lex_state = 23}, - [6596] = {.lex_state = 65, .external_lex_state = 20}, - [6597] = {.lex_state = 65, .external_lex_state = 21}, - [6598] = {.lex_state = 65, .external_lex_state = 22}, - [6599] = {.lex_state = 65, .external_lex_state = 17}, - [6600] = {.lex_state = 65, .external_lex_state = 20}, - [6601] = {.lex_state = 65, .external_lex_state = 21}, - [6602] = {.lex_state = 65, .external_lex_state = 22}, - [6603] = {.lex_state = 65, .external_lex_state = 17}, - [6604] = {.lex_state = 63, .external_lex_state = 25}, - [6605] = {.lex_state = 63, .external_lex_state = 26}, - [6606] = {.lex_state = 62, .external_lex_state = 16}, - [6607] = {.lex_state = 65, .external_lex_state = 18}, - [6608] = {.lex_state = 65, .external_lex_state = 19}, - [6609] = {.lex_state = 62, .external_lex_state = 16}, - [6610] = {.lex_state = 65, .external_lex_state = 23}, - [6611] = {.lex_state = 65, .external_lex_state = 20}, - [6612] = {.lex_state = 65, .external_lex_state = 21}, - [6613] = {.lex_state = 65, .external_lex_state = 22}, - [6614] = {.lex_state = 65, .external_lex_state = 17}, - [6615] = {.lex_state = 65, .external_lex_state = 23}, - [6616] = {.lex_state = 65, .external_lex_state = 20}, - [6617] = {.lex_state = 139, .external_lex_state = 6}, - [6618] = {.lex_state = 62, .external_lex_state = 11}, - [6619] = {.lex_state = 139, .external_lex_state = 6}, - [6620] = {.lex_state = 65, .external_lex_state = 21}, - [6621] = {.lex_state = 139, .external_lex_state = 6}, - [6622] = {.lex_state = 65, .external_lex_state = 22}, - [6623] = {.lex_state = 65, .external_lex_state = 17}, - [6624] = {.lex_state = 62, .external_lex_state = 13}, - [6625] = {.lex_state = 65, .external_lex_state = 22}, - [6626] = {.lex_state = 65, .external_lex_state = 24}, - [6627] = {.lex_state = 63, .external_lex_state = 25}, - [6628] = {.lex_state = 63, .external_lex_state = 26}, - [6629] = {.lex_state = 62, .external_lex_state = 14}, - [6630] = {.lex_state = 65, .external_lex_state = 17}, - [6631] = {.lex_state = 65, .external_lex_state = 23}, - [6632] = {.lex_state = 62, .external_lex_state = 15}, - [6633] = {.lex_state = 65, .external_lex_state = 20}, - [6634] = {.lex_state = 65, .external_lex_state = 18}, - [6635] = {.lex_state = 65, .external_lex_state = 19}, - [6636] = {.lex_state = 139, .external_lex_state = 6}, - [6637] = {.lex_state = 65, .external_lex_state = 23}, - [6638] = {.lex_state = 64, .external_lex_state = 9}, - [6639] = {.lex_state = 65, .external_lex_state = 20}, - [6640] = {.lex_state = 65, .external_lex_state = 21}, - [6641] = {.lex_state = 65, .external_lex_state = 22}, - [6642] = {.lex_state = 65, .external_lex_state = 24}, + [6367] = {.lex_state = 142, .external_lex_state = 6}, + [6368] = {.lex_state = 64, .external_lex_state = 6}, + [6369] = {.lex_state = 64, .external_lex_state = 6}, + [6370] = {.lex_state = 64, .external_lex_state = 6}, + [6371] = {.lex_state = 64, .external_lex_state = 6}, + [6372] = {.lex_state = 63, .external_lex_state = 17}, + [6373] = {.lex_state = 63, .external_lex_state = 18}, + [6374] = {.lex_state = 63, .external_lex_state = 19}, + [6375] = {.lex_state = 63, .external_lex_state = 20}, + [6376] = {.lex_state = 65, .external_lex_state = 21}, + [6377] = {.lex_state = 65, .external_lex_state = 22}, + [6378] = {.lex_state = 63, .external_lex_state = 17}, + [6379] = {.lex_state = 63, .external_lex_state = 23}, + [6380] = {.lex_state = 63, .external_lex_state = 24}, + [6381] = {.lex_state = 63, .external_lex_state = 25}, + [6382] = {.lex_state = 63, .external_lex_state = 26}, + [6383] = {.lex_state = 139, .external_lex_state = 6}, + [6384] = {.lex_state = 139, .external_lex_state = 6}, + [6385] = {.lex_state = 64, .external_lex_state = 14}, + [6386] = {.lex_state = 63, .external_lex_state = 18}, + [6387] = {.lex_state = 63, .external_lex_state = 19}, + [6388] = {.lex_state = 63, .external_lex_state = 20}, + [6389] = {.lex_state = 65, .external_lex_state = 21}, + [6390] = {.lex_state = 65, .external_lex_state = 22}, + [6391] = {.lex_state = 63, .external_lex_state = 17}, + [6392] = {.lex_state = 63, .external_lex_state = 23}, + [6393] = {.lex_state = 63, .external_lex_state = 24}, + [6394] = {.lex_state = 63, .external_lex_state = 25}, + [6395] = {.lex_state = 63, .external_lex_state = 26}, + [6396] = {.lex_state = 62, .external_lex_state = 9}, + [6397] = {.lex_state = 318, .external_lex_state = 6}, + [6398] = {.lex_state = 63, .external_lex_state = 18}, + [6399] = {.lex_state = 63, .external_lex_state = 19}, + [6400] = {.lex_state = 63, .external_lex_state = 20}, + [6401] = {.lex_state = 65, .external_lex_state = 21}, + [6402] = {.lex_state = 65, .external_lex_state = 22}, + [6403] = {.lex_state = 63, .external_lex_state = 17}, + [6404] = {.lex_state = 63, .external_lex_state = 23}, + [6405] = {.lex_state = 64, .external_lex_state = 15}, + [6406] = {.lex_state = 63, .external_lex_state = 24}, + [6407] = {.lex_state = 63, .external_lex_state = 25}, + [6408] = {.lex_state = 63, .external_lex_state = 26}, + [6409] = {.lex_state = 63, .external_lex_state = 18}, + [6410] = {.lex_state = 63, .external_lex_state = 19}, + [6411] = {.lex_state = 63, .external_lex_state = 20}, + [6412] = {.lex_state = 65, .external_lex_state = 21}, + [6413] = {.lex_state = 65, .external_lex_state = 22}, + [6414] = {.lex_state = 63, .external_lex_state = 17}, + [6415] = {.lex_state = 63, .external_lex_state = 23}, + [6416] = {.lex_state = 63, .external_lex_state = 24}, + [6417] = {.lex_state = 63, .external_lex_state = 25}, + [6418] = {.lex_state = 63, .external_lex_state = 26}, + [6419] = {.lex_state = 64, .external_lex_state = 10}, + [6420] = {.lex_state = 142, .external_lex_state = 6}, + [6421] = {.lex_state = 64, .external_lex_state = 13}, + [6422] = {.lex_state = 63, .external_lex_state = 18}, + [6423] = {.lex_state = 63, .external_lex_state = 19}, + [6424] = {.lex_state = 63, .external_lex_state = 18}, + [6425] = {.lex_state = 63, .external_lex_state = 19}, + [6426] = {.lex_state = 63, .external_lex_state = 20}, + [6427] = {.lex_state = 65, .external_lex_state = 21}, + [6428] = {.lex_state = 65, .external_lex_state = 22}, + [6429] = {.lex_state = 63, .external_lex_state = 17}, + [6430] = {.lex_state = 63, .external_lex_state = 23}, + [6431] = {.lex_state = 63, .external_lex_state = 24}, + [6432] = {.lex_state = 63, .external_lex_state = 25}, + [6433] = {.lex_state = 63, .external_lex_state = 26}, + [6434] = {.lex_state = 63, .external_lex_state = 20}, + [6435] = {.lex_state = 65, .external_lex_state = 21}, + [6436] = {.lex_state = 139, .external_lex_state = 6}, + [6437] = {.lex_state = 65, .external_lex_state = 22}, + [6438] = {.lex_state = 63, .external_lex_state = 18}, + [6439] = {.lex_state = 63, .external_lex_state = 19}, + [6440] = {.lex_state = 63, .external_lex_state = 20}, + [6441] = {.lex_state = 65, .external_lex_state = 21}, + [6442] = {.lex_state = 65, .external_lex_state = 22}, + [6443] = {.lex_state = 62, .external_lex_state = 9}, + [6444] = {.lex_state = 63, .external_lex_state = 17}, + [6445] = {.lex_state = 63, .external_lex_state = 23}, + [6446] = {.lex_state = 63, .external_lex_state = 24}, + [6447] = {.lex_state = 63, .external_lex_state = 25}, + [6448] = {.lex_state = 139, .external_lex_state = 6}, + [6449] = {.lex_state = 63, .external_lex_state = 26}, + [6450] = {.lex_state = 63, .external_lex_state = 17}, + [6451] = {.lex_state = 63, .external_lex_state = 23}, + [6452] = {.lex_state = 63, .external_lex_state = 18}, + [6453] = {.lex_state = 63, .external_lex_state = 19}, + [6454] = {.lex_state = 63, .external_lex_state = 20}, + [6455] = {.lex_state = 65, .external_lex_state = 21}, + [6456] = {.lex_state = 65, .external_lex_state = 22}, + [6457] = {.lex_state = 63, .external_lex_state = 17}, + [6458] = {.lex_state = 63, .external_lex_state = 23}, + [6459] = {.lex_state = 63, .external_lex_state = 24}, + [6460] = {.lex_state = 63, .external_lex_state = 25}, + [6461] = {.lex_state = 63, .external_lex_state = 26}, + [6462] = {.lex_state = 139, .external_lex_state = 6}, + [6463] = {.lex_state = 63, .external_lex_state = 24}, + [6464] = {.lex_state = 63, .external_lex_state = 18}, + [6465] = {.lex_state = 63, .external_lex_state = 19}, + [6466] = {.lex_state = 63, .external_lex_state = 20}, + [6467] = {.lex_state = 65, .external_lex_state = 21}, + [6468] = {.lex_state = 65, .external_lex_state = 22}, + [6469] = {.lex_state = 63, .external_lex_state = 17}, + [6470] = {.lex_state = 63, .external_lex_state = 23}, + [6471] = {.lex_state = 63, .external_lex_state = 24}, + [6472] = {.lex_state = 64, .external_lex_state = 16}, + [6473] = {.lex_state = 63, .external_lex_state = 25}, + [6474] = {.lex_state = 63, .external_lex_state = 26}, + [6475] = {.lex_state = 63, .external_lex_state = 18}, + [6476] = {.lex_state = 63, .external_lex_state = 19}, + [6477] = {.lex_state = 63, .external_lex_state = 20}, + [6478] = {.lex_state = 65, .external_lex_state = 21}, + [6479] = {.lex_state = 65, .external_lex_state = 22}, + [6480] = {.lex_state = 63, .external_lex_state = 17}, + [6481] = {.lex_state = 63, .external_lex_state = 23}, + [6482] = {.lex_state = 63, .external_lex_state = 24}, + [6483] = {.lex_state = 63, .external_lex_state = 25}, + [6484] = {.lex_state = 63, .external_lex_state = 26}, + [6485] = {.lex_state = 139, .external_lex_state = 6}, + [6486] = {.lex_state = 139, .external_lex_state = 6}, + [6487] = {.lex_state = 63, .external_lex_state = 18}, + [6488] = {.lex_state = 63, .external_lex_state = 19}, + [6489] = {.lex_state = 63, .external_lex_state = 20}, + [6490] = {.lex_state = 65, .external_lex_state = 21}, + [6491] = {.lex_state = 65, .external_lex_state = 22}, + [6492] = {.lex_state = 63, .external_lex_state = 17}, + [6493] = {.lex_state = 63, .external_lex_state = 23}, + [6494] = {.lex_state = 64, .external_lex_state = 15}, + [6495] = {.lex_state = 63, .external_lex_state = 25}, + [6496] = {.lex_state = 63, .external_lex_state = 26}, + [6497] = {.lex_state = 63, .external_lex_state = 24}, + [6498] = {.lex_state = 63, .external_lex_state = 25}, + [6499] = {.lex_state = 63, .external_lex_state = 26}, + [6500] = {.lex_state = 63, .external_lex_state = 18}, + [6501] = {.lex_state = 63, .external_lex_state = 19}, + [6502] = {.lex_state = 63, .external_lex_state = 20}, + [6503] = {.lex_state = 65, .external_lex_state = 21}, + [6504] = {.lex_state = 139, .external_lex_state = 6}, + [6505] = {.lex_state = 63, .external_lex_state = 17}, + [6506] = {.lex_state = 63, .external_lex_state = 23}, + [6507] = {.lex_state = 63, .external_lex_state = 24}, + [6508] = {.lex_state = 63, .external_lex_state = 25}, + [6509] = {.lex_state = 63, .external_lex_state = 26}, + [6510] = {.lex_state = 63, .external_lex_state = 18}, + [6511] = {.lex_state = 63, .external_lex_state = 18}, + [6512] = {.lex_state = 63, .external_lex_state = 19}, + [6513] = {.lex_state = 63, .external_lex_state = 20}, + [6514] = {.lex_state = 65, .external_lex_state = 21}, + [6515] = {.lex_state = 65, .external_lex_state = 22}, + [6516] = {.lex_state = 63, .external_lex_state = 17}, + [6517] = {.lex_state = 63, .external_lex_state = 23}, + [6518] = {.lex_state = 63, .external_lex_state = 24}, + [6519] = {.lex_state = 63, .external_lex_state = 25}, + [6520] = {.lex_state = 139, .external_lex_state = 6}, + [6521] = {.lex_state = 63, .external_lex_state = 26}, + [6522] = {.lex_state = 64, .external_lex_state = 8}, + [6523] = {.lex_state = 64, .external_lex_state = 14}, + [6524] = {.lex_state = 64, .external_lex_state = 8}, + [6525] = {.lex_state = 139, .external_lex_state = 6}, + [6526] = {.lex_state = 139, .external_lex_state = 6}, + [6527] = {.lex_state = 63, .external_lex_state = 19}, + [6528] = {.lex_state = 63, .external_lex_state = 20}, + [6529] = {.lex_state = 64, .external_lex_state = 13}, + [6530] = {.lex_state = 65, .external_lex_state = 21}, + [6531] = {.lex_state = 65, .external_lex_state = 22}, + [6532] = {.lex_state = 63, .external_lex_state = 17}, + [6533] = {.lex_state = 63, .external_lex_state = 18}, + [6534] = {.lex_state = 63, .external_lex_state = 19}, + [6535] = {.lex_state = 63, .external_lex_state = 20}, + [6536] = {.lex_state = 65, .external_lex_state = 21}, + [6537] = {.lex_state = 65, .external_lex_state = 22}, + [6538] = {.lex_state = 63, .external_lex_state = 17}, + [6539] = {.lex_state = 63, .external_lex_state = 23}, + [6540] = {.lex_state = 63, .external_lex_state = 24}, + [6541] = {.lex_state = 63, .external_lex_state = 25}, + [6542] = {.lex_state = 63, .external_lex_state = 26}, + [6543] = {.lex_state = 63, .external_lex_state = 18}, + [6544] = {.lex_state = 63, .external_lex_state = 19}, + [6545] = {.lex_state = 63, .external_lex_state = 20}, + [6546] = {.lex_state = 63, .external_lex_state = 23}, + [6547] = {.lex_state = 63, .external_lex_state = 18}, + [6548] = {.lex_state = 63, .external_lex_state = 19}, + [6549] = {.lex_state = 63, .external_lex_state = 20}, + [6550] = {.lex_state = 65, .external_lex_state = 21}, + [6551] = {.lex_state = 65, .external_lex_state = 22}, + [6552] = {.lex_state = 63, .external_lex_state = 17}, + [6553] = {.lex_state = 63, .external_lex_state = 23}, + [6554] = {.lex_state = 63, .external_lex_state = 24}, + [6555] = {.lex_state = 63, .external_lex_state = 25}, + [6556] = {.lex_state = 65, .external_lex_state = 21}, + [6557] = {.lex_state = 65, .external_lex_state = 22}, + [6558] = {.lex_state = 63, .external_lex_state = 17}, + [6559] = {.lex_state = 63, .external_lex_state = 26}, + [6560] = {.lex_state = 63, .external_lex_state = 23}, + [6561] = {.lex_state = 63, .external_lex_state = 24}, + [6562] = {.lex_state = 63, .external_lex_state = 25}, + [6563] = {.lex_state = 63, .external_lex_state = 26}, + [6564] = {.lex_state = 139, .external_lex_state = 6}, + [6565] = {.lex_state = 64, .external_lex_state = 10}, + [6566] = {.lex_state = 63, .external_lex_state = 24}, + [6567] = {.lex_state = 63, .external_lex_state = 25}, + [6568] = {.lex_state = 63, .external_lex_state = 26}, + [6569] = {.lex_state = 64, .external_lex_state = 7}, + [6570] = {.lex_state = 64, .external_lex_state = 12}, + [6571] = {.lex_state = 63, .external_lex_state = 18}, + [6572] = {.lex_state = 63, .external_lex_state = 19}, + [6573] = {.lex_state = 63, .external_lex_state = 20}, + [6574] = {.lex_state = 65, .external_lex_state = 21}, + [6575] = {.lex_state = 65, .external_lex_state = 22}, + [6576] = {.lex_state = 142, .external_lex_state = 6}, + [6577] = {.lex_state = 62, .external_lex_state = 11}, + [6578] = {.lex_state = 62, .external_lex_state = 11}, + [6579] = {.lex_state = 62, .external_lex_state = 11}, + [6580] = {.lex_state = 63, .external_lex_state = 17}, + [6581] = {.lex_state = 63, .external_lex_state = 23}, + [6582] = {.lex_state = 63, .external_lex_state = 24}, + [6583] = {.lex_state = 63, .external_lex_state = 25}, + [6584] = {.lex_state = 63, .external_lex_state = 26}, + [6585] = {.lex_state = 64, .external_lex_state = 16}, + [6586] = {.lex_state = 139, .external_lex_state = 6}, + [6587] = {.lex_state = 139, .external_lex_state = 6}, + [6588] = {.lex_state = 64, .external_lex_state = 14}, + [6589] = {.lex_state = 64, .external_lex_state = 13}, + [6590] = {.lex_state = 64, .external_lex_state = 8}, + [6591] = {.lex_state = 62, .external_lex_state = 9}, + [6592] = {.lex_state = 64, .external_lex_state = 16}, + [6593] = {.lex_state = 63, .external_lex_state = 18}, + [6594] = {.lex_state = 63, .external_lex_state = 19}, + [6595] = {.lex_state = 63, .external_lex_state = 20}, + [6596] = {.lex_state = 65, .external_lex_state = 21}, + [6597] = {.lex_state = 65, .external_lex_state = 22}, + [6598] = {.lex_state = 63, .external_lex_state = 17}, + [6599] = {.lex_state = 63, .external_lex_state = 23}, + [6600] = {.lex_state = 63, .external_lex_state = 24}, + [6601] = {.lex_state = 63, .external_lex_state = 25}, + [6602] = {.lex_state = 63, .external_lex_state = 26}, + [6603] = {.lex_state = 63, .external_lex_state = 18}, + [6604] = {.lex_state = 63, .external_lex_state = 19}, + [6605] = {.lex_state = 63, .external_lex_state = 20}, + [6606] = {.lex_state = 65, .external_lex_state = 21}, + [6607] = {.lex_state = 65, .external_lex_state = 22}, + [6608] = {.lex_state = 64, .external_lex_state = 12}, + [6609] = {.lex_state = 63, .external_lex_state = 23}, + [6610] = {.lex_state = 63, .external_lex_state = 24}, + [6611] = {.lex_state = 63, .external_lex_state = 25}, + [6612] = {.lex_state = 64, .external_lex_state = 10}, + [6613] = {.lex_state = 64, .external_lex_state = 15}, + [6614] = {.lex_state = 64, .external_lex_state = 7}, + [6615] = {.lex_state = 64, .external_lex_state = 7}, + [6616] = {.lex_state = 63, .external_lex_state = 26}, + [6617] = {.lex_state = 64, .external_lex_state = 12}, + [6618] = {.lex_state = 65, .external_lex_state = 22}, + [6619] = {.lex_state = 65, .external_lex_state = 6}, + [6620] = {.lex_state = 65, .external_lex_state = 6}, + [6621] = {.lex_state = 63, .external_lex_state = 6}, + [6622] = {.lex_state = 63, .external_lex_state = 6}, + [6623] = {.lex_state = 63, .external_lex_state = 6}, + [6624] = {.lex_state = 63, .external_lex_state = 6}, + [6625] = {.lex_state = 63, .external_lex_state = 6}, + [6626] = {.lex_state = 63, .external_lex_state = 6}, + [6627] = {.lex_state = 63, .external_lex_state = 6}, + [6628] = {.lex_state = 63, .external_lex_state = 6}, + [6629] = {.lex_state = 63, .external_lex_state = 6}, + [6630] = {.lex_state = 65, .external_lex_state = 6}, + [6631] = {.lex_state = 65, .external_lex_state = 6}, + [6632] = {.lex_state = 65, .external_lex_state = 6}, + [6633] = {.lex_state = 65, .external_lex_state = 6}, + [6634] = {.lex_state = 63, .external_lex_state = 6}, + [6635] = {.lex_state = 63, .external_lex_state = 6}, + [6636] = {.lex_state = 63, .external_lex_state = 6}, + [6637] = {.lex_state = 63, .external_lex_state = 6}, + [6638] = {.lex_state = 63, .external_lex_state = 6}, + [6639] = {.lex_state = 63, .external_lex_state = 6}, + [6640] = {.lex_state = 63, .external_lex_state = 6}, + [6641] = {.lex_state = 63, .external_lex_state = 6}, + [6642] = {.lex_state = 63, .external_lex_state = 6}, [6643] = {.lex_state = 63, .external_lex_state = 6}, - [6644] = {.lex_state = 65, .external_lex_state = 6}, - [6645] = {.lex_state = 63, .external_lex_state = 6}, - [6646] = {.lex_state = 65, .external_lex_state = 6}, - [6647] = {.lex_state = 50, .external_lex_state = 6}, - [6648] = {.lex_state = 65, .external_lex_state = 6}, - [6649] = {.lex_state = 65, .external_lex_state = 6}, + [6644] = {.lex_state = 63, .external_lex_state = 6}, + [6645] = {.lex_state = 63, .external_lex_state = 20}, + [6646] = {.lex_state = 64, .external_lex_state = 6}, + [6647] = {.lex_state = 63, .external_lex_state = 6}, + [6648] = {.lex_state = 63, .external_lex_state = 6}, + [6649] = {.lex_state = 63, .external_lex_state = 6}, [6650] = {.lex_state = 63, .external_lex_state = 6}, - [6651] = {.lex_state = 63, .external_lex_state = 6}, - [6652] = {.lex_state = 63, .external_lex_state = 6}, + [6651] = {.lex_state = 65, .external_lex_state = 6}, + [6652] = {.lex_state = 65, .external_lex_state = 6}, [6653] = {.lex_state = 63, .external_lex_state = 6}, - [6654] = {.lex_state = 65, .external_lex_state = 6}, - [6655] = {.lex_state = 65, .external_lex_state = 6}, - [6656] = {.lex_state = 65, .external_lex_state = 6}, - [6657] = {.lex_state = 65, .external_lex_state = 6}, - [6658] = {.lex_state = 65, .external_lex_state = 6}, + [6654] = {.lex_state = 63, .external_lex_state = 6}, + [6655] = {.lex_state = 63, .external_lex_state = 6}, + [6656] = {.lex_state = 63, .external_lex_state = 6}, + [6657] = {.lex_state = 63, .external_lex_state = 6}, + [6658] = {.lex_state = 63, .external_lex_state = 6}, [6659] = {.lex_state = 65, .external_lex_state = 6}, [6660] = {.lex_state = 65, .external_lex_state = 6}, - [6661] = {.lex_state = 65, .external_lex_state = 6}, - [6662] = {.lex_state = 65, .external_lex_state = 6}, - [6663] = {.lex_state = 65, .external_lex_state = 6}, - [6664] = {.lex_state = 65, .external_lex_state = 6}, - [6665] = {.lex_state = 65, .external_lex_state = 6}, - [6666] = {.lex_state = 65, .external_lex_state = 6}, - [6667] = {.lex_state = 65, .external_lex_state = 6}, - [6668] = {.lex_state = 65, .external_lex_state = 6}, - [6669] = {.lex_state = 65, .external_lex_state = 6}, - [6670] = {.lex_state = 65, .external_lex_state = 6}, - [6671] = {.lex_state = 65, .external_lex_state = 6}, - [6672] = {.lex_state = 65, .external_lex_state = 6}, + [6661] = {.lex_state = 63, .external_lex_state = 6}, + [6662] = {.lex_state = 63, .external_lex_state = 6}, + [6663] = {.lex_state = 63, .external_lex_state = 6}, + [6664] = {.lex_state = 63, .external_lex_state = 6}, + [6665] = {.lex_state = 63, .external_lex_state = 6}, + [6666] = {.lex_state = 63, .external_lex_state = 6}, + [6667] = {.lex_state = 64, .external_lex_state = 6}, + [6668] = {.lex_state = 63, .external_lex_state = 6}, + [6669] = {.lex_state = 63, .external_lex_state = 6}, + [6670] = {.lex_state = 63, .external_lex_state = 6}, + [6671] = {.lex_state = 63, .external_lex_state = 6}, + [6672] = {.lex_state = 63, .external_lex_state = 6}, [6673] = {.lex_state = 63, .external_lex_state = 6}, [6674] = {.lex_state = 63, .external_lex_state = 6}, - [6675] = {.lex_state = 65, .external_lex_state = 6}, - [6676] = {.lex_state = 65, .external_lex_state = 6}, - [6677] = {.lex_state = 65, .external_lex_state = 6}, - [6678] = {.lex_state = 65, .external_lex_state = 6}, + [6675] = {.lex_state = 63, .external_lex_state = 6}, + [6676] = {.lex_state = 63, .external_lex_state = 6}, + [6677] = {.lex_state = 63, .external_lex_state = 6}, + [6678] = {.lex_state = 63, .external_lex_state = 6}, [6679] = {.lex_state = 65, .external_lex_state = 6}, [6680] = {.lex_state = 65, .external_lex_state = 6}, [6681] = {.lex_state = 65, .external_lex_state = 6}, - [6682] = {.lex_state = 65, .external_lex_state = 6}, - [6683] = {.lex_state = 50, .external_lex_state = 6}, - [6684] = {.lex_state = 65, .external_lex_state = 6}, + [6682] = {.lex_state = 63, .external_lex_state = 6}, + [6683] = {.lex_state = 63, .external_lex_state = 6}, + [6684] = {.lex_state = 63, .external_lex_state = 6}, [6685] = {.lex_state = 63, .external_lex_state = 6}, - [6686] = {.lex_state = 63, .external_lex_state = 6}, - [6687] = {.lex_state = 63, .external_lex_state = 6}, - [6688] = {.lex_state = 65, .external_lex_state = 6}, - [6689] = {.lex_state = 65, .external_lex_state = 6}, - [6690] = {.lex_state = 65, .external_lex_state = 6}, - [6691] = {.lex_state = 65, .external_lex_state = 6}, - [6692] = {.lex_state = 65, .external_lex_state = 6}, - [6693] = {.lex_state = 65, .external_lex_state = 6}, - [6694] = {.lex_state = 63, .external_lex_state = 6}, + [6686] = {.lex_state = 65, .external_lex_state = 6}, + [6687] = {.lex_state = 65, .external_lex_state = 6}, + [6688] = {.lex_state = 63, .external_lex_state = 6}, + [6689] = {.lex_state = 63, .external_lex_state = 6}, + [6690] = {.lex_state = 63, .external_lex_state = 6}, + [6691] = {.lex_state = 63, .external_lex_state = 6}, + [6692] = {.lex_state = 63, .external_lex_state = 6}, + [6693] = {.lex_state = 63, .external_lex_state = 6}, + [6694] = {.lex_state = 65, .external_lex_state = 6}, [6695] = {.lex_state = 65, .external_lex_state = 6}, [6696] = {.lex_state = 65, .external_lex_state = 6}, [6697] = {.lex_state = 65, .external_lex_state = 6}, - [6698] = {.lex_state = 65, .external_lex_state = 6}, - [6699] = {.lex_state = 65, .external_lex_state = 6}, - [6700] = {.lex_state = 65, .external_lex_state = 6}, - [6701] = {.lex_state = 65, .external_lex_state = 6}, + [6698] = {.lex_state = 63, .external_lex_state = 6}, + [6699] = {.lex_state = 63, .external_lex_state = 6}, + [6700] = {.lex_state = 63, .external_lex_state = 6}, + [6701] = {.lex_state = 63, .external_lex_state = 6}, [6702] = {.lex_state = 63, .external_lex_state = 6}, - [6703] = {.lex_state = 65, .external_lex_state = 6}, + [6703] = {.lex_state = 63, .external_lex_state = 6}, [6704] = {.lex_state = 63, .external_lex_state = 6}, [6705] = {.lex_state = 63, .external_lex_state = 6}, - [6706] = {.lex_state = 62, .external_lex_state = 6}, - [6707] = {.lex_state = 65, .external_lex_state = 6}, - [6708] = {.lex_state = 62, .external_lex_state = 6}, - [6709] = {.lex_state = 65, .external_lex_state = 6}, + [6706] = {.lex_state = 63, .external_lex_state = 6}, + [6707] = {.lex_state = 63, .external_lex_state = 6}, + [6708] = {.lex_state = 63, .external_lex_state = 6}, + [6709] = {.lex_state = 63, .external_lex_state = 6}, [6710] = {.lex_state = 63, .external_lex_state = 6}, - [6711] = {.lex_state = 65, .external_lex_state = 6}, - [6712] = {.lex_state = 65, .external_lex_state = 6}, - [6713] = {.lex_state = 65, .external_lex_state = 6}, + [6711] = {.lex_state = 63, .external_lex_state = 6}, + [6712] = {.lex_state = 63, .external_lex_state = 6}, + [6713] = {.lex_state = 63, .external_lex_state = 6}, [6714] = {.lex_state = 63, .external_lex_state = 6}, [6715] = {.lex_state = 63, .external_lex_state = 6}, - [6716] = {.lex_state = 63, .external_lex_state = 6}, + [6716] = {.lex_state = 65, .external_lex_state = 6}, [6717] = {.lex_state = 65, .external_lex_state = 6}, - [6718] = {.lex_state = 65, .external_lex_state = 6}, - [6719] = {.lex_state = 65, .external_lex_state = 6}, - [6720] = {.lex_state = 65, .external_lex_state = 6}, - [6721] = {.lex_state = 65, .external_lex_state = 6}, - [6722] = {.lex_state = 65, .external_lex_state = 6}, - [6723] = {.lex_state = 65, .external_lex_state = 6}, - [6724] = {.lex_state = 65, .external_lex_state = 6}, - [6725] = {.lex_state = 65, .external_lex_state = 6}, - [6726] = {.lex_state = 65, .external_lex_state = 6}, - [6727] = {.lex_state = 65, .external_lex_state = 6}, - [6728] = {.lex_state = 65, .external_lex_state = 6}, - [6729] = {.lex_state = 65, .external_lex_state = 6}, - [6730] = {.lex_state = 65, .external_lex_state = 6}, - [6731] = {.lex_state = 65, .external_lex_state = 6}, - [6732] = {.lex_state = 65, .external_lex_state = 6}, - [6733] = {.lex_state = 65, .external_lex_state = 6}, - [6734] = {.lex_state = 65, .external_lex_state = 6}, - [6735] = {.lex_state = 65, .external_lex_state = 6}, - [6736] = {.lex_state = 65, .external_lex_state = 6}, - [6737] = {.lex_state = 65, .external_lex_state = 6}, - [6738] = {.lex_state = 63, .external_lex_state = 6}, - [6739] = {.lex_state = 63, .external_lex_state = 6}, + [6718] = {.lex_state = 63, .external_lex_state = 6}, + [6719] = {.lex_state = 63, .external_lex_state = 6}, + [6720] = {.lex_state = 63, .external_lex_state = 6}, + [6721] = {.lex_state = 63, .external_lex_state = 6}, + [6722] = {.lex_state = 63, .external_lex_state = 6}, + [6723] = {.lex_state = 63, .external_lex_state = 6}, + [6724] = {.lex_state = 63, .external_lex_state = 6}, + [6725] = {.lex_state = 63, .external_lex_state = 6}, + [6726] = {.lex_state = 63, .external_lex_state = 6}, + [6727] = {.lex_state = 63, .external_lex_state = 6}, + [6728] = {.lex_state = 63, .external_lex_state = 6}, + [6729] = {.lex_state = 63, .external_lex_state = 6}, + [6730] = {.lex_state = 63, .external_lex_state = 6}, + [6731] = {.lex_state = 63, .external_lex_state = 6}, + [6732] = {.lex_state = 63, .external_lex_state = 6}, + [6733] = {.lex_state = 63, .external_lex_state = 6}, + [6734] = {.lex_state = 63, .external_lex_state = 6}, + [6735] = {.lex_state = 63, .external_lex_state = 6}, + [6736] = {.lex_state = 63, .external_lex_state = 6}, + [6737] = {.lex_state = 63, .external_lex_state = 6}, + [6738] = {.lex_state = 65, .external_lex_state = 6}, + [6739] = {.lex_state = 65, .external_lex_state = 6}, [6740] = {.lex_state = 65, .external_lex_state = 6}, [6741] = {.lex_state = 65, .external_lex_state = 6}, - [6742] = {.lex_state = 65, .external_lex_state = 6}, - [6743] = {.lex_state = 65, .external_lex_state = 6}, - [6744] = {.lex_state = 65, .external_lex_state = 6}, - [6745] = {.lex_state = 65, .external_lex_state = 6}, - [6746] = {.lex_state = 65, .external_lex_state = 6}, - [6747] = {.lex_state = 65, .external_lex_state = 6}, - [6748] = {.lex_state = 65, .external_lex_state = 6}, - [6749] = {.lex_state = 65, .external_lex_state = 6}, - [6750] = {.lex_state = 65, .external_lex_state = 6}, + [6742] = {.lex_state = 63, .external_lex_state = 6}, + [6743] = {.lex_state = 63, .external_lex_state = 6}, + [6744] = {.lex_state = 63, .external_lex_state = 6}, + [6745] = {.lex_state = 63, .external_lex_state = 6}, + [6746] = {.lex_state = 63, .external_lex_state = 6}, + [6747] = {.lex_state = 63, .external_lex_state = 6}, + [6748] = {.lex_state = 63, .external_lex_state = 6}, + [6749] = {.lex_state = 63, .external_lex_state = 6}, + [6750] = {.lex_state = 63, .external_lex_state = 6}, [6751] = {.lex_state = 65, .external_lex_state = 6}, [6752] = {.lex_state = 65, .external_lex_state = 6}, - [6753] = {.lex_state = 63, .external_lex_state = 6}, + [6753] = {.lex_state = 63, .external_lex_state = 19}, [6754] = {.lex_state = 63, .external_lex_state = 6}, [6755] = {.lex_state = 63, .external_lex_state = 6}, [6756] = {.lex_state = 63, .external_lex_state = 6}, - [6757] = {.lex_state = 65, .external_lex_state = 6}, + [6757] = {.lex_state = 63, .external_lex_state = 6}, [6758] = {.lex_state = 65, .external_lex_state = 6}, - [6759] = {.lex_state = 65, .external_lex_state = 6}, - [6760] = {.lex_state = 65, .external_lex_state = 6}, - [6761] = {.lex_state = 65, .external_lex_state = 6}, - [6762] = {.lex_state = 65, .external_lex_state = 6}, - [6763] = {.lex_state = 65, .external_lex_state = 6}, - [6764] = {.lex_state = 65, .external_lex_state = 6}, + [6759] = {.lex_state = 63, .external_lex_state = 6}, + [6760] = {.lex_state = 63, .external_lex_state = 6}, + [6761] = {.lex_state = 63, .external_lex_state = 6}, + [6762] = {.lex_state = 63, .external_lex_state = 6}, + [6763] = {.lex_state = 63, .external_lex_state = 6}, + [6764] = {.lex_state = 63, .external_lex_state = 6}, [6765] = {.lex_state = 65, .external_lex_state = 6}, [6766] = {.lex_state = 65, .external_lex_state = 6}, [6767] = {.lex_state = 65, .external_lex_state = 6}, [6768] = {.lex_state = 65, .external_lex_state = 6}, - [6769] = {.lex_state = 65, .external_lex_state = 6}, - [6770] = {.lex_state = 65, .external_lex_state = 6}, - [6771] = {.lex_state = 65, .external_lex_state = 6}, - [6772] = {.lex_state = 65, .external_lex_state = 6}, - [6773] = {.lex_state = 65, .external_lex_state = 6}, - [6774] = {.lex_state = 65, .external_lex_state = 6}, - [6775] = {.lex_state = 65, .external_lex_state = 6}, - [6776] = {.lex_state = 65, .external_lex_state = 6}, - [6777] = {.lex_state = 65, .external_lex_state = 6}, - [6778] = {.lex_state = 65, .external_lex_state = 6}, + [6769] = {.lex_state = 63, .external_lex_state = 6}, + [6770] = {.lex_state = 63, .external_lex_state = 6}, + [6771] = {.lex_state = 63, .external_lex_state = 6}, + [6772] = {.lex_state = 63, .external_lex_state = 6}, + [6773] = {.lex_state = 63, .external_lex_state = 6}, + [6774] = {.lex_state = 63, .external_lex_state = 6}, + [6775] = {.lex_state = 63, .external_lex_state = 6}, + [6776] = {.lex_state = 63, .external_lex_state = 6}, + [6777] = {.lex_state = 63, .external_lex_state = 6}, + [6778] = {.lex_state = 63, .external_lex_state = 6}, [6779] = {.lex_state = 63, .external_lex_state = 6}, [6780] = {.lex_state = 63, .external_lex_state = 6}, [6781] = {.lex_state = 63, .external_lex_state = 6}, [6782] = {.lex_state = 63, .external_lex_state = 6}, - [6783] = {.lex_state = 65, .external_lex_state = 6}, - [6784] = {.lex_state = 65, .external_lex_state = 6}, - [6785] = {.lex_state = 65, .external_lex_state = 6}, - [6786] = {.lex_state = 65, .external_lex_state = 6}, + [6783] = {.lex_state = 63, .external_lex_state = 6}, + [6784] = {.lex_state = 63, .external_lex_state = 6}, + [6785] = {.lex_state = 63, .external_lex_state = 6}, + [6786] = {.lex_state = 63, .external_lex_state = 6}, [6787] = {.lex_state = 65, .external_lex_state = 6}, [6788] = {.lex_state = 65, .external_lex_state = 6}, - [6789] = {.lex_state = 65, .external_lex_state = 6}, - [6790] = {.lex_state = 65, .external_lex_state = 6}, - [6791] = {.lex_state = 65, .external_lex_state = 6}, - [6792] = {.lex_state = 65, .external_lex_state = 6}, - [6793] = {.lex_state = 65, .external_lex_state = 6}, - [6794] = {.lex_state = 65, .external_lex_state = 6}, - [6795] = {.lex_state = 65, .external_lex_state = 6}, - [6796] = {.lex_state = 65, .external_lex_state = 6}, - [6797] = {.lex_state = 65, .external_lex_state = 6}, + [6789] = {.lex_state = 63, .external_lex_state = 6}, + [6790] = {.lex_state = 63, .external_lex_state = 6}, + [6791] = {.lex_state = 63, .external_lex_state = 6}, + [6792] = {.lex_state = 63, .external_lex_state = 6}, + [6793] = {.lex_state = 63, .external_lex_state = 6}, + [6794] = {.lex_state = 63, .external_lex_state = 6}, + [6795] = {.lex_state = 63, .external_lex_state = 6}, + [6796] = {.lex_state = 63, .external_lex_state = 6}, + [6797] = {.lex_state = 63, .external_lex_state = 6}, [6798] = {.lex_state = 63, .external_lex_state = 6}, [6799] = {.lex_state = 63, .external_lex_state = 6}, - [6800] = {.lex_state = 65, .external_lex_state = 6}, - [6801] = {.lex_state = 65, .external_lex_state = 6}, - [6802] = {.lex_state = 65, .external_lex_state = 6}, - [6803] = {.lex_state = 65, .external_lex_state = 6}, - [6804] = {.lex_state = 63, .external_lex_state = 6}, - [6805] = {.lex_state = 63, .external_lex_state = 6}, + [6800] = {.lex_state = 63, .external_lex_state = 6}, + [6801] = {.lex_state = 63, .external_lex_state = 6}, + [6802] = {.lex_state = 63, .external_lex_state = 6}, + [6803] = {.lex_state = 63, .external_lex_state = 6}, + [6804] = {.lex_state = 65, .external_lex_state = 6}, + [6805] = {.lex_state = 65, .external_lex_state = 6}, [6806] = {.lex_state = 65, .external_lex_state = 6}, [6807] = {.lex_state = 65, .external_lex_state = 6}, - [6808] = {.lex_state = 65, .external_lex_state = 6}, - [6809] = {.lex_state = 65, .external_lex_state = 6}, - [6810] = {.lex_state = 65, .external_lex_state = 6}, - [6811] = {.lex_state = 65, .external_lex_state = 6}, - [6812] = {.lex_state = 65, .external_lex_state = 6}, - [6813] = {.lex_state = 65, .external_lex_state = 6}, - [6814] = {.lex_state = 62, .external_lex_state = 6}, - [6815] = {.lex_state = 65, .external_lex_state = 6}, - [6816] = {.lex_state = 65, .external_lex_state = 6}, - [6817] = {.lex_state = 65, .external_lex_state = 6}, + [6808] = {.lex_state = 63, .external_lex_state = 6}, + [6809] = {.lex_state = 63, .external_lex_state = 6}, + [6810] = {.lex_state = 63, .external_lex_state = 6}, + [6811] = {.lex_state = 63, .external_lex_state = 6}, + [6812] = {.lex_state = 63, .external_lex_state = 6}, + [6813] = {.lex_state = 63, .external_lex_state = 6}, + [6814] = {.lex_state = 63, .external_lex_state = 6}, + [6815] = {.lex_state = 63, .external_lex_state = 6}, + [6816] = {.lex_state = 63, .external_lex_state = 6}, + [6817] = {.lex_state = 63, .external_lex_state = 6}, [6818] = {.lex_state = 63, .external_lex_state = 6}, [6819] = {.lex_state = 63, .external_lex_state = 6}, - [6820] = {.lex_state = 65, .external_lex_state = 6}, - [6821] = {.lex_state = 65, .external_lex_state = 6}, - [6822] = {.lex_state = 65, .external_lex_state = 6}, - [6823] = {.lex_state = 65, .external_lex_state = 6}, - [6824] = {.lex_state = 65, .external_lex_state = 6}, - [6825] = {.lex_state = 65, .external_lex_state = 6}, - [6826] = {.lex_state = 62, .external_lex_state = 6}, - [6827] = {.lex_state = 65, .external_lex_state = 6}, - [6828] = {.lex_state = 62, .external_lex_state = 6}, - [6829] = {.lex_state = 63, .external_lex_state = 6}, - [6830] = {.lex_state = 64, .external_lex_state = 6}, + [6820] = {.lex_state = 63, .external_lex_state = 6}, + [6821] = {.lex_state = 63, .external_lex_state = 6}, + [6822] = {.lex_state = 63, .external_lex_state = 6}, + [6823] = {.lex_state = 63, .external_lex_state = 6}, + [6824] = {.lex_state = 63, .external_lex_state = 6}, + [6825] = {.lex_state = 63, .external_lex_state = 6}, + [6826] = {.lex_state = 64, .external_lex_state = 6}, + [6827] = {.lex_state = 64, .external_lex_state = 6}, + [6828] = {.lex_state = 63, .external_lex_state = 6}, + [6829] = {.lex_state = 65, .external_lex_state = 6}, + [6830] = {.lex_state = 63, .external_lex_state = 6}, [6831] = {.lex_state = 65, .external_lex_state = 6}, - [6832] = {.lex_state = 65, .external_lex_state = 6}, + [6832] = {.lex_state = 63, .external_lex_state = 6}, [6833] = {.lex_state = 65, .external_lex_state = 6}, - [6834] = {.lex_state = 65, .external_lex_state = 6}, - [6835] = {.lex_state = 65, .external_lex_state = 6}, + [6834] = {.lex_state = 63, .external_lex_state = 6}, + [6835] = {.lex_state = 63, .external_lex_state = 6}, [6836] = {.lex_state = 63, .external_lex_state = 6}, - [6837] = {.lex_state = 63, .external_lex_state = 6}, + [6837] = {.lex_state = 65, .external_lex_state = 6}, [6838] = {.lex_state = 65, .external_lex_state = 6}, - [6839] = {.lex_state = 65, .external_lex_state = 6}, + [6839] = {.lex_state = 63, .external_lex_state = 6}, [6840] = {.lex_state = 63, .external_lex_state = 6}, - [6841] = {.lex_state = 63, .external_lex_state = 6}, + [6841] = {.lex_state = 63, .external_lex_state = 23}, [6842] = {.lex_state = 63, .external_lex_state = 6}, [6843] = {.lex_state = 63, .external_lex_state = 6}, [6844] = {.lex_state = 63, .external_lex_state = 6}, - [6845] = {.lex_state = 65, .external_lex_state = 6}, + [6845] = {.lex_state = 63, .external_lex_state = 6}, [6846] = {.lex_state = 63, .external_lex_state = 6}, - [6847] = {.lex_state = 65, .external_lex_state = 6}, - [6848] = {.lex_state = 62, .external_lex_state = 6}, - [6849] = {.lex_state = 65, .external_lex_state = 6}, + [6847] = {.lex_state = 63, .external_lex_state = 6}, + [6848] = {.lex_state = 63, .external_lex_state = 6}, + [6849] = {.lex_state = 63, .external_lex_state = 6}, [6850] = {.lex_state = 63, .external_lex_state = 6}, - [6851] = {.lex_state = 65, .external_lex_state = 6}, - [6852] = {.lex_state = 65, .external_lex_state = 6}, - [6853] = {.lex_state = 65, .external_lex_state = 6}, - [6854] = {.lex_state = 65, .external_lex_state = 6}, - [6855] = {.lex_state = 65, .external_lex_state = 6}, + [6851] = {.lex_state = 63, .external_lex_state = 6}, + [6852] = {.lex_state = 63, .external_lex_state = 6}, + [6853] = {.lex_state = 63, .external_lex_state = 6}, + [6854] = {.lex_state = 63, .external_lex_state = 6}, + [6855] = {.lex_state = 63, .external_lex_state = 6}, [6856] = {.lex_state = 65, .external_lex_state = 6}, [6857] = {.lex_state = 65, .external_lex_state = 6}, [6858] = {.lex_state = 65, .external_lex_state = 6}, [6859] = {.lex_state = 65, .external_lex_state = 6}, - [6860] = {.lex_state = 65, .external_lex_state = 6}, - [6861] = {.lex_state = 65, .external_lex_state = 6}, - [6862] = {.lex_state = 65, .external_lex_state = 6}, - [6863] = {.lex_state = 65, .external_lex_state = 6}, - [6864] = {.lex_state = 65, .external_lex_state = 6}, - [6865] = {.lex_state = 65, .external_lex_state = 6}, - [6866] = {.lex_state = 65, .external_lex_state = 6}, - [6867] = {.lex_state = 65, .external_lex_state = 6}, - [6868] = {.lex_state = 65, .external_lex_state = 6}, + [6860] = {.lex_state = 63, .external_lex_state = 6}, + [6861] = {.lex_state = 63, .external_lex_state = 6}, + [6862] = {.lex_state = 63, .external_lex_state = 6}, + [6863] = {.lex_state = 63, .external_lex_state = 6}, + [6864] = {.lex_state = 63, .external_lex_state = 6}, + [6865] = {.lex_state = 63, .external_lex_state = 6}, + [6866] = {.lex_state = 63, .external_lex_state = 6}, + [6867] = {.lex_state = 63, .external_lex_state = 6}, + [6868] = {.lex_state = 63, .external_lex_state = 6}, [6869] = {.lex_state = 63, .external_lex_state = 6}, [6870] = {.lex_state = 63, .external_lex_state = 6}, [6871] = {.lex_state = 63, .external_lex_state = 6}, - [6872] = {.lex_state = 65, .external_lex_state = 6}, - [6873] = {.lex_state = 65, .external_lex_state = 6}, - [6874] = {.lex_state = 65, .external_lex_state = 6}, - [6875] = {.lex_state = 65, .external_lex_state = 6}, + [6872] = {.lex_state = 63, .external_lex_state = 6}, + [6873] = {.lex_state = 63, .external_lex_state = 6}, + [6874] = {.lex_state = 63, .external_lex_state = 6}, + [6875] = {.lex_state = 63, .external_lex_state = 6}, [6876] = {.lex_state = 65, .external_lex_state = 6}, [6877] = {.lex_state = 65, .external_lex_state = 6}, - [6878] = {.lex_state = 65, .external_lex_state = 19}, - [6879] = {.lex_state = 65, .external_lex_state = 6}, - [6880] = {.lex_state = 65, .external_lex_state = 6}, + [6878] = {.lex_state = 63, .external_lex_state = 6}, + [6879] = {.lex_state = 63, .external_lex_state = 6}, + [6880] = {.lex_state = 63, .external_lex_state = 6}, [6881] = {.lex_state = 65, .external_lex_state = 6}, - [6882] = {.lex_state = 65, .external_lex_state = 6}, + [6882] = {.lex_state = 63, .external_lex_state = 6}, [6883] = {.lex_state = 65, .external_lex_state = 6}, [6884] = {.lex_state = 65, .external_lex_state = 6}, - [6885] = {.lex_state = 65, .external_lex_state = 6}, - [6886] = {.lex_state = 65, .external_lex_state = 6}, - [6887] = {.lex_state = 65, .external_lex_state = 6}, - [6888] = {.lex_state = 65, .external_lex_state = 6}, - [6889] = {.lex_state = 65, .external_lex_state = 6}, - [6890] = {.lex_state = 63, .external_lex_state = 6}, - [6891] = {.lex_state = 63, .external_lex_state = 6}, - [6892] = {.lex_state = 65, .external_lex_state = 6}, + [6885] = {.lex_state = 63, .external_lex_state = 6}, + [6886] = {.lex_state = 63, .external_lex_state = 6}, + [6887] = {.lex_state = 63, .external_lex_state = 6}, + [6888] = {.lex_state = 63, .external_lex_state = 6}, + [6889] = {.lex_state = 63, .external_lex_state = 6}, + [6890] = {.lex_state = 65, .external_lex_state = 6}, + [6891] = {.lex_state = 65, .external_lex_state = 6}, + [6892] = {.lex_state = 65, .external_lex_state = 21}, [6893] = {.lex_state = 65, .external_lex_state = 6}, [6894] = {.lex_state = 65, .external_lex_state = 6}, - [6895] = {.lex_state = 65, .external_lex_state = 6}, - [6896] = {.lex_state = 65, .external_lex_state = 6}, - [6897] = {.lex_state = 65, .external_lex_state = 6}, - [6898] = {.lex_state = 65, .external_lex_state = 6}, - [6899] = {.lex_state = 63, .external_lex_state = 6}, - [6900] = {.lex_state = 63, .external_lex_state = 6}, + [6895] = {.lex_state = 63, .external_lex_state = 6}, + [6896] = {.lex_state = 63, .external_lex_state = 6}, + [6897] = {.lex_state = 63, .external_lex_state = 6}, + [6898] = {.lex_state = 63, .external_lex_state = 6}, + [6899] = {.lex_state = 65, .external_lex_state = 6}, + [6900] = {.lex_state = 65, .external_lex_state = 6}, [6901] = {.lex_state = 63, .external_lex_state = 6}, - [6902] = {.lex_state = 63, .external_lex_state = 6}, - [6903] = {.lex_state = 65, .external_lex_state = 6}, - [6904] = {.lex_state = 65, .external_lex_state = 6}, - [6905] = {.lex_state = 65, .external_lex_state = 6}, - [6906] = {.lex_state = 65, .external_lex_state = 6}, - [6907] = {.lex_state = 65, .external_lex_state = 6}, - [6908] = {.lex_state = 65, .external_lex_state = 6}, - [6909] = {.lex_state = 65, .external_lex_state = 6}, - [6910] = {.lex_state = 65, .external_lex_state = 6}, - [6911] = {.lex_state = 65, .external_lex_state = 6}, - [6912] = {.lex_state = 65, .external_lex_state = 6}, - [6913] = {.lex_state = 65, .external_lex_state = 6}, - [6914] = {.lex_state = 65, .external_lex_state = 6}, - [6915] = {.lex_state = 62, .external_lex_state = 6}, - [6916] = {.lex_state = 65, .external_lex_state = 6}, - [6917] = {.lex_state = 65, .external_lex_state = 6}, - [6918] = {.lex_state = 65, .external_lex_state = 6}, - [6919] = {.lex_state = 65, .external_lex_state = 6}, - [6920] = {.lex_state = 65, .external_lex_state = 6}, - [6921] = {.lex_state = 65, .external_lex_state = 21}, + [6902] = {.lex_state = 142, .external_lex_state = 6}, + [6903] = {.lex_state = 63, .external_lex_state = 6}, + [6904] = {.lex_state = 63, .external_lex_state = 6}, + [6905] = {.lex_state = 63, .external_lex_state = 6}, + [6906] = {.lex_state = 63, .external_lex_state = 6}, + [6907] = {.lex_state = 63, .external_lex_state = 6}, + [6908] = {.lex_state = 63, .external_lex_state = 6}, + [6909] = {.lex_state = 63, .external_lex_state = 6}, + [6910] = {.lex_state = 63, .external_lex_state = 6}, + [6911] = {.lex_state = 63, .external_lex_state = 6}, + [6912] = {.lex_state = 63, .external_lex_state = 6}, + [6913] = {.lex_state = 63, .external_lex_state = 6}, + [6914] = {.lex_state = 63, .external_lex_state = 6}, + [6915] = {.lex_state = 63, .external_lex_state = 6}, + [6916] = {.lex_state = 63, .external_lex_state = 6}, + [6917] = {.lex_state = 63, .external_lex_state = 6}, + [6918] = {.lex_state = 63, .external_lex_state = 6}, + [6919] = {.lex_state = 63, .external_lex_state = 6}, + [6920] = {.lex_state = 63, .external_lex_state = 6}, + [6921] = {.lex_state = 65, .external_lex_state = 6}, [6922] = {.lex_state = 65, .external_lex_state = 6}, [6923] = {.lex_state = 65, .external_lex_state = 6}, - [6924] = {.lex_state = 65, .external_lex_state = 6}, - [6925] = {.lex_state = 65, .external_lex_state = 6}, - [6926] = {.lex_state = 63, .external_lex_state = 6}, + [6924] = {.lex_state = 63, .external_lex_state = 6}, + [6925] = {.lex_state = 63, .external_lex_state = 17}, + [6926] = {.lex_state = 65, .external_lex_state = 22}, [6927] = {.lex_state = 63, .external_lex_state = 6}, - [6928] = {.lex_state = 65, .external_lex_state = 6}, - [6929] = {.lex_state = 65, .external_lex_state = 6}, - [6930] = {.lex_state = 65, .external_lex_state = 6}, - [6931] = {.lex_state = 65, .external_lex_state = 6}, - [6932] = {.lex_state = 65, .external_lex_state = 6}, - [6933] = {.lex_state = 65, .external_lex_state = 6}, - [6934] = {.lex_state = 65, .external_lex_state = 6}, - [6935] = {.lex_state = 65, .external_lex_state = 6}, + [6928] = {.lex_state = 63, .external_lex_state = 6}, + [6929] = {.lex_state = 63, .external_lex_state = 6}, + [6930] = {.lex_state = 63, .external_lex_state = 6}, + [6931] = {.lex_state = 63, .external_lex_state = 6}, + [6932] = {.lex_state = 63, .external_lex_state = 6}, + [6933] = {.lex_state = 63, .external_lex_state = 6}, + [6934] = {.lex_state = 63, .external_lex_state = 6}, + [6935] = {.lex_state = 63, .external_lex_state = 6}, [6936] = {.lex_state = 65, .external_lex_state = 6}, [6937] = {.lex_state = 65, .external_lex_state = 6}, [6938] = {.lex_state = 65, .external_lex_state = 6}, [6939] = {.lex_state = 65, .external_lex_state = 6}, - [6940] = {.lex_state = 65, .external_lex_state = 6}, - [6941] = {.lex_state = 65, .external_lex_state = 6}, - [6942] = {.lex_state = 65, .external_lex_state = 6}, - [6943] = {.lex_state = 314, .external_lex_state = 6}, - [6944] = {.lex_state = 65, .external_lex_state = 6}, - [6945] = {.lex_state = 65, .external_lex_state = 6}, - [6946] = {.lex_state = 65, .external_lex_state = 6}, - [6947] = {.lex_state = 65, .external_lex_state = 6}, - [6948] = {.lex_state = 65, .external_lex_state = 6}, - [6949] = {.lex_state = 65, .external_lex_state = 6}, - [6950] = {.lex_state = 65, .external_lex_state = 6}, - [6951] = {.lex_state = 65, .external_lex_state = 6}, - [6952] = {.lex_state = 65, .external_lex_state = 6}, + [6940] = {.lex_state = 63, .external_lex_state = 6}, + [6941] = {.lex_state = 63, .external_lex_state = 6}, + [6942] = {.lex_state = 63, .external_lex_state = 6}, + [6943] = {.lex_state = 63, .external_lex_state = 6}, + [6944] = {.lex_state = 63, .external_lex_state = 6}, + [6945] = {.lex_state = 63, .external_lex_state = 6}, + [6946] = {.lex_state = 63, .external_lex_state = 6}, + [6947] = {.lex_state = 63, .external_lex_state = 6}, + [6948] = {.lex_state = 63, .external_lex_state = 6}, + [6949] = {.lex_state = 63, .external_lex_state = 6}, + [6950] = {.lex_state = 63, .external_lex_state = 6}, + [6951] = {.lex_state = 63, .external_lex_state = 6}, + [6952] = {.lex_state = 63, .external_lex_state = 6}, [6953] = {.lex_state = 63, .external_lex_state = 6}, - [6954] = {.lex_state = 63, .external_lex_state = 6}, - [6955] = {.lex_state = 63, .external_lex_state = 6}, - [6956] = {.lex_state = 65, .external_lex_state = 6}, - [6957] = {.lex_state = 65, .external_lex_state = 6}, - [6958] = {.lex_state = 65, .external_lex_state = 6}, - [6959] = {.lex_state = 65, .external_lex_state = 6}, - [6960] = {.lex_state = 63, .external_lex_state = 26}, - [6961] = {.lex_state = 65, .external_lex_state = 6}, - [6962] = {.lex_state = 65, .external_lex_state = 6}, - [6963] = {.lex_state = 63, .external_lex_state = 6}, - [6964] = {.lex_state = 65, .external_lex_state = 6}, - [6965] = {.lex_state = 65, .external_lex_state = 6}, - [6966] = {.lex_state = 65, .external_lex_state = 6}, + [6954] = {.lex_state = 65, .external_lex_state = 6}, + [6955] = {.lex_state = 65, .external_lex_state = 6}, + [6956] = {.lex_state = 63, .external_lex_state = 6}, + [6957] = {.lex_state = 63, .external_lex_state = 6}, + [6958] = {.lex_state = 63, .external_lex_state = 6}, + [6959] = {.lex_state = 63, .external_lex_state = 6}, + [6960] = {.lex_state = 63, .external_lex_state = 6}, + [6961] = {.lex_state = 63, .external_lex_state = 6}, + [6962] = {.lex_state = 63, .external_lex_state = 6}, + [6963] = {.lex_state = 65, .external_lex_state = 6}, + [6964] = {.lex_state = 63, .external_lex_state = 6}, + [6965] = {.lex_state = 63, .external_lex_state = 6}, + [6966] = {.lex_state = 63, .external_lex_state = 6}, [6967] = {.lex_state = 65, .external_lex_state = 6}, - [6968] = {.lex_state = 63, .external_lex_state = 6}, - [6969] = {.lex_state = 65, .external_lex_state = 6}, - [6970] = {.lex_state = 65, .external_lex_state = 6}, + [6968] = {.lex_state = 65, .external_lex_state = 6}, + [6969] = {.lex_state = 63, .external_lex_state = 6}, + [6970] = {.lex_state = 63, .external_lex_state = 6}, [6971] = {.lex_state = 63, .external_lex_state = 6}, [6972] = {.lex_state = 63, .external_lex_state = 6}, [6973] = {.lex_state = 63, .external_lex_state = 6}, [6974] = {.lex_state = 63, .external_lex_state = 6}, - [6975] = {.lex_state = 65, .external_lex_state = 6}, - [6976] = {.lex_state = 65, .external_lex_state = 6}, - [6977] = {.lex_state = 65, .external_lex_state = 6}, - [6978] = {.lex_state = 65, .external_lex_state = 6}, - [6979] = {.lex_state = 65, .external_lex_state = 6}, + [6975] = {.lex_state = 63, .external_lex_state = 6}, + [6976] = {.lex_state = 63, .external_lex_state = 6}, + [6977] = {.lex_state = 63, .external_lex_state = 6}, + [6978] = {.lex_state = 63, .external_lex_state = 6}, + [6979] = {.lex_state = 63, .external_lex_state = 6}, [6980] = {.lex_state = 65, .external_lex_state = 6}, [6981] = {.lex_state = 65, .external_lex_state = 6}, - [6982] = {.lex_state = 65, .external_lex_state = 6}, + [6982] = {.lex_state = 63, .external_lex_state = 6}, [6983] = {.lex_state = 65, .external_lex_state = 6}, [6984] = {.lex_state = 65, .external_lex_state = 6}, - [6985] = {.lex_state = 65, .external_lex_state = 6}, + [6985] = {.lex_state = 318, .external_lex_state = 6}, [6986] = {.lex_state = 65, .external_lex_state = 6}, - [6987] = {.lex_state = 65, .external_lex_state = 6}, - [6988] = {.lex_state = 65, .external_lex_state = 6}, + [6987] = {.lex_state = 63, .external_lex_state = 6}, + [6988] = {.lex_state = 63, .external_lex_state = 6}, [6989] = {.lex_state = 63, .external_lex_state = 6}, [6990] = {.lex_state = 63, .external_lex_state = 6}, - [6991] = {.lex_state = 65, .external_lex_state = 6}, - [6992] = {.lex_state = 65, .external_lex_state = 6}, + [6991] = {.lex_state = 63, .external_lex_state = 6}, + [6992] = {.lex_state = 63, .external_lex_state = 6}, [6993] = {.lex_state = 63, .external_lex_state = 6}, - [6994] = {.lex_state = 65, .external_lex_state = 6}, + [6994] = {.lex_state = 63, .external_lex_state = 6}, [6995] = {.lex_state = 63, .external_lex_state = 6}, [6996] = {.lex_state = 63, .external_lex_state = 6}, - [6997] = {.lex_state = 65, .external_lex_state = 6}, - [6998] = {.lex_state = 65, .external_lex_state = 6}, - [6999] = {.lex_state = 65, .external_lex_state = 6}, - [7000] = {.lex_state = 65, .external_lex_state = 6}, - [7001] = {.lex_state = 65, .external_lex_state = 6}, + [6997] = {.lex_state = 63, .external_lex_state = 6}, + [6998] = {.lex_state = 63, .external_lex_state = 6}, + [6999] = {.lex_state = 63, .external_lex_state = 6}, + [7000] = {.lex_state = 63, .external_lex_state = 6}, + [7001] = {.lex_state = 63, .external_lex_state = 6}, [7002] = {.lex_state = 65, .external_lex_state = 6}, - [7003] = {.lex_state = 65, .external_lex_state = 6}, - [7004] = {.lex_state = 65, .external_lex_state = 6}, + [7003] = {.lex_state = 63, .external_lex_state = 6}, + [7004] = {.lex_state = 63, .external_lex_state = 6}, [7005] = {.lex_state = 63, .external_lex_state = 6}, [7006] = {.lex_state = 65, .external_lex_state = 6}, - [7007] = {.lex_state = 65, .external_lex_state = 6}, - [7008] = {.lex_state = 65, .external_lex_state = 6}, + [7007] = {.lex_state = 63, .external_lex_state = 24}, + [7008] = {.lex_state = 63, .external_lex_state = 6}, [7009] = {.lex_state = 63, .external_lex_state = 6}, [7010] = {.lex_state = 63, .external_lex_state = 6}, [7011] = {.lex_state = 63, .external_lex_state = 6}, [7012] = {.lex_state = 63, .external_lex_state = 6}, [7013] = {.lex_state = 65, .external_lex_state = 6}, - [7014] = {.lex_state = 65, .external_lex_state = 6}, + [7014] = {.lex_state = 142, .external_lex_state = 6}, [7015] = {.lex_state = 65, .external_lex_state = 6}, [7016] = {.lex_state = 63, .external_lex_state = 6}, [7017] = {.lex_state = 63, .external_lex_state = 6}, [7018] = {.lex_state = 63, .external_lex_state = 6}, [7019] = {.lex_state = 65, .external_lex_state = 6}, [7020] = {.lex_state = 65, .external_lex_state = 6}, - [7021] = {.lex_state = 65, .external_lex_state = 6}, + [7021] = {.lex_state = 63, .external_lex_state = 6}, [7022] = {.lex_state = 63, .external_lex_state = 6}, - [7023] = {.lex_state = 64, .external_lex_state = 6}, + [7023] = {.lex_state = 63, .external_lex_state = 6}, [7024] = {.lex_state = 63, .external_lex_state = 6}, - [7025] = {.lex_state = 65, .external_lex_state = 6}, - [7026] = {.lex_state = 65, .external_lex_state = 6}, - [7027] = {.lex_state = 65, .external_lex_state = 6}, - [7028] = {.lex_state = 65, .external_lex_state = 6}, - [7029] = {.lex_state = 65, .external_lex_state = 6}, - [7030] = {.lex_state = 65, .external_lex_state = 6}, - [7031] = {.lex_state = 65, .external_lex_state = 6}, - [7032] = {.lex_state = 65, .external_lex_state = 6}, - [7033] = {.lex_state = 65, .external_lex_state = 6}, - [7034] = {.lex_state = 65, .external_lex_state = 6}, - [7035] = {.lex_state = 65, .external_lex_state = 6}, - [7036] = {.lex_state = 65, .external_lex_state = 6}, - [7037] = {.lex_state = 65, .external_lex_state = 6}, - [7038] = {.lex_state = 65, .external_lex_state = 24}, - [7039] = {.lex_state = 314, .external_lex_state = 6}, - [7040] = {.lex_state = 65, .external_lex_state = 6}, - [7041] = {.lex_state = 50, .external_lex_state = 6}, - [7042] = {.lex_state = 65, .external_lex_state = 6}, - [7043] = {.lex_state = 65, .external_lex_state = 6}, - [7044] = {.lex_state = 142, .external_lex_state = 6}, - [7045] = {.lex_state = 65, .external_lex_state = 6}, - [7046] = {.lex_state = 65, .external_lex_state = 6}, - [7047] = {.lex_state = 65, .external_lex_state = 6}, + [7025] = {.lex_state = 64, .external_lex_state = 6}, + [7026] = {.lex_state = 318, .external_lex_state = 6}, + [7027] = {.lex_state = 63, .external_lex_state = 6}, + [7028] = {.lex_state = 318, .external_lex_state = 6}, + [7029] = {.lex_state = 50, .external_lex_state = 6}, + [7030] = {.lex_state = 63, .external_lex_state = 6}, + [7031] = {.lex_state = 50, .external_lex_state = 6}, + [7032] = {.lex_state = 63, .external_lex_state = 6}, + [7033] = {.lex_state = 63, .external_lex_state = 6}, + [7034] = {.lex_state = 63, .external_lex_state = 6}, + [7035] = {.lex_state = 63, .external_lex_state = 6}, + [7036] = {.lex_state = 63, .external_lex_state = 6}, + [7037] = {.lex_state = 63, .external_lex_state = 6}, + [7038] = {.lex_state = 50, .external_lex_state = 6}, + [7039] = {.lex_state = 50, .external_lex_state = 6}, + [7040] = {.lex_state = 63, .external_lex_state = 6}, + [7041] = {.lex_state = 63, .external_lex_state = 6}, + [7042] = {.lex_state = 63, .external_lex_state = 6}, + [7043] = {.lex_state = 64, .external_lex_state = 6}, + [7044] = {.lex_state = 63, .external_lex_state = 6}, + [7045] = {.lex_state = 63, .external_lex_state = 6}, + [7046] = {.lex_state = 63, .external_lex_state = 6}, + [7047] = {.lex_state = 63, .external_lex_state = 6}, [7048] = {.lex_state = 65, .external_lex_state = 6}, - [7049] = {.lex_state = 65, .external_lex_state = 6}, - [7050] = {.lex_state = 314, .external_lex_state = 6}, + [7049] = {.lex_state = 63, .external_lex_state = 6}, + [7050] = {.lex_state = 65, .external_lex_state = 6}, [7051] = {.lex_state = 65, .external_lex_state = 6}, - [7052] = {.lex_state = 65, .external_lex_state = 6}, + [7052] = {.lex_state = 63, .external_lex_state = 6}, [7053] = {.lex_state = 65, .external_lex_state = 6}, [7054] = {.lex_state = 65, .external_lex_state = 6}, - [7055] = {.lex_state = 65, .external_lex_state = 6}, + [7055] = {.lex_state = 63, .external_lex_state = 6}, [7056] = {.lex_state = 63, .external_lex_state = 6}, [7057] = {.lex_state = 63, .external_lex_state = 6}, - [7058] = {.lex_state = 65, .external_lex_state = 6}, + [7058] = {.lex_state = 63, .external_lex_state = 6}, [7059] = {.lex_state = 63, .external_lex_state = 6}, [7060] = {.lex_state = 63, .external_lex_state = 6}, [7061] = {.lex_state = 63, .external_lex_state = 6}, [7062] = {.lex_state = 63, .external_lex_state = 6}, [7063] = {.lex_state = 63, .external_lex_state = 6}, - [7064] = {.lex_state = 65, .external_lex_state = 6}, + [7064] = {.lex_state = 63, .external_lex_state = 6}, [7065] = {.lex_state = 63, .external_lex_state = 6}, - [7066] = {.lex_state = 65, .external_lex_state = 6}, - [7067] = {.lex_state = 65, .external_lex_state = 6}, - [7068] = {.lex_state = 65, .external_lex_state = 6}, - [7069] = {.lex_state = 65, .external_lex_state = 6}, - [7070] = {.lex_state = 65, .external_lex_state = 6}, - [7071] = {.lex_state = 65, .external_lex_state = 6}, - [7072] = {.lex_state = 65, .external_lex_state = 6}, - [7073] = {.lex_state = 65, .external_lex_state = 6}, + [7066] = {.lex_state = 63, .external_lex_state = 6}, + [7067] = {.lex_state = 63, .external_lex_state = 6}, + [7068] = {.lex_state = 63, .external_lex_state = 6}, + [7069] = {.lex_state = 63, .external_lex_state = 6}, + [7070] = {.lex_state = 63, .external_lex_state = 6}, + [7071] = {.lex_state = 63, .external_lex_state = 6}, + [7072] = {.lex_state = 63, .external_lex_state = 6}, + [7073] = {.lex_state = 63, .external_lex_state = 6}, [7074] = {.lex_state = 65, .external_lex_state = 6}, - [7075] = {.lex_state = 65, .external_lex_state = 6}, + [7075] = {.lex_state = 63, .external_lex_state = 6}, [7076] = {.lex_state = 65, .external_lex_state = 6}, [7077] = {.lex_state = 65, .external_lex_state = 6}, - [7078] = {.lex_state = 65, .external_lex_state = 6}, - [7079] = {.lex_state = 65, .external_lex_state = 6}, - [7080] = {.lex_state = 65, .external_lex_state = 6}, - [7081] = {.lex_state = 65, .external_lex_state = 6}, - [7082] = {.lex_state = 65, .external_lex_state = 20}, - [7083] = {.lex_state = 65, .external_lex_state = 6}, + [7078] = {.lex_state = 63, .external_lex_state = 6}, + [7079] = {.lex_state = 63, .external_lex_state = 6}, + [7080] = {.lex_state = 63, .external_lex_state = 6}, + [7081] = {.lex_state = 63, .external_lex_state = 6}, + [7082] = {.lex_state = 63, .external_lex_state = 6}, + [7083] = {.lex_state = 63, .external_lex_state = 6}, [7084] = {.lex_state = 65, .external_lex_state = 6}, [7085] = {.lex_state = 65, .external_lex_state = 6}, - [7086] = {.lex_state = 142, .external_lex_state = 6}, + [7086] = {.lex_state = 65, .external_lex_state = 6}, [7087] = {.lex_state = 65, .external_lex_state = 6}, - [7088] = {.lex_state = 65, .external_lex_state = 6}, - [7089] = {.lex_state = 62, .external_lex_state = 6}, - [7090] = {.lex_state = 65, .external_lex_state = 6}, - [7091] = {.lex_state = 65, .external_lex_state = 6}, - [7092] = {.lex_state = 65, .external_lex_state = 6}, - [7093] = {.lex_state = 65, .external_lex_state = 6}, + [7088] = {.lex_state = 63, .external_lex_state = 6}, + [7089] = {.lex_state = 63, .external_lex_state = 6}, + [7090] = {.lex_state = 63, .external_lex_state = 6}, + [7091] = {.lex_state = 63, .external_lex_state = 6}, + [7092] = {.lex_state = 63, .external_lex_state = 6}, + [7093] = {.lex_state = 63, .external_lex_state = 6}, [7094] = {.lex_state = 63, .external_lex_state = 6}, [7095] = {.lex_state = 63, .external_lex_state = 6}, - [7096] = {.lex_state = 65, .external_lex_state = 6}, - [7097] = {.lex_state = 65, .external_lex_state = 6}, - [7098] = {.lex_state = 65, .external_lex_state = 6}, - [7099] = {.lex_state = 314, .external_lex_state = 6}, + [7096] = {.lex_state = 63, .external_lex_state = 6}, + [7097] = {.lex_state = 63, .external_lex_state = 6}, + [7098] = {.lex_state = 63, .external_lex_state = 6}, + [7099] = {.lex_state = 63, .external_lex_state = 6}, [7100] = {.lex_state = 65, .external_lex_state = 6}, - [7101] = {.lex_state = 65, .external_lex_state = 6}, - [7102] = {.lex_state = 65, .external_lex_state = 6}, - [7103] = {.lex_state = 65, .external_lex_state = 6}, - [7104] = {.lex_state = 65, .external_lex_state = 6}, - [7105] = {.lex_state = 65, .external_lex_state = 6}, - [7106] = {.lex_state = 65, .external_lex_state = 6}, - [7107] = {.lex_state = 65, .external_lex_state = 6}, - [7108] = {.lex_state = 65, .external_lex_state = 6}, - [7109] = {.lex_state = 65, .external_lex_state = 6}, + [7101] = {.lex_state = 63, .external_lex_state = 6}, + [7102] = {.lex_state = 63, .external_lex_state = 6}, + [7103] = {.lex_state = 63, .external_lex_state = 6}, + [7104] = {.lex_state = 63, .external_lex_state = 6}, + [7105] = {.lex_state = 63, .external_lex_state = 6}, + [7106] = {.lex_state = 63, .external_lex_state = 6}, + [7107] = {.lex_state = 63, .external_lex_state = 6}, + [7108] = {.lex_state = 63, .external_lex_state = 6}, + [7109] = {.lex_state = 63, .external_lex_state = 6}, [7110] = {.lex_state = 63, .external_lex_state = 6}, [7111] = {.lex_state = 63, .external_lex_state = 6}, - [7112] = {.lex_state = 63, .external_lex_state = 6}, - [7113] = {.lex_state = 63, .external_lex_state = 6}, + [7112] = {.lex_state = 65, .external_lex_state = 6}, + [7113] = {.lex_state = 65, .external_lex_state = 6}, [7114] = {.lex_state = 65, .external_lex_state = 6}, [7115] = {.lex_state = 65, .external_lex_state = 6}, - [7116] = {.lex_state = 65, .external_lex_state = 6}, - [7117] = {.lex_state = 65, .external_lex_state = 6}, - [7118] = {.lex_state = 65, .external_lex_state = 6}, + [7116] = {.lex_state = 63, .external_lex_state = 6}, + [7117] = {.lex_state = 63, .external_lex_state = 6}, + [7118] = {.lex_state = 63, .external_lex_state = 6}, [7119] = {.lex_state = 65, .external_lex_state = 6}, - [7120] = {.lex_state = 65, .external_lex_state = 6}, - [7121] = {.lex_state = 65, .external_lex_state = 6}, - [7122] = {.lex_state = 65, .external_lex_state = 6}, - [7123] = {.lex_state = 65, .external_lex_state = 6}, - [7124] = {.lex_state = 65, .external_lex_state = 6}, - [7125] = {.lex_state = 65, .external_lex_state = 6}, - [7126] = {.lex_state = 65, .external_lex_state = 6}, - [7127] = {.lex_state = 65, .external_lex_state = 6}, - [7128] = {.lex_state = 65, .external_lex_state = 6}, - [7129] = {.lex_state = 65, .external_lex_state = 6}, + [7120] = {.lex_state = 63, .external_lex_state = 6}, + [7121] = {.lex_state = 63, .external_lex_state = 6}, + [7122] = {.lex_state = 63, .external_lex_state = 6}, + [7123] = {.lex_state = 63, .external_lex_state = 6}, + [7124] = {.lex_state = 63, .external_lex_state = 6}, + [7125] = {.lex_state = 63, .external_lex_state = 6}, + [7126] = {.lex_state = 63, .external_lex_state = 6}, + [7127] = {.lex_state = 63, .external_lex_state = 6}, + [7128] = {.lex_state = 63, .external_lex_state = 6}, + [7129] = {.lex_state = 63, .external_lex_state = 6}, [7130] = {.lex_state = 63, .external_lex_state = 6}, - [7131] = {.lex_state = 63, .external_lex_state = 6}, + [7131] = {.lex_state = 318, .external_lex_state = 6}, [7132] = {.lex_state = 65, .external_lex_state = 6}, - [7133] = {.lex_state = 65, .external_lex_state = 6}, - [7134] = {.lex_state = 65, .external_lex_state = 6}, - [7135] = {.lex_state = 65, .external_lex_state = 6}, - [7136] = {.lex_state = 65, .external_lex_state = 6}, - [7137] = {.lex_state = 63, .external_lex_state = 6}, - [7138] = {.lex_state = 63, .external_lex_state = 6}, + [7133] = {.lex_state = 63, .external_lex_state = 6}, + [7134] = {.lex_state = 63, .external_lex_state = 6}, + [7135] = {.lex_state = 63, .external_lex_state = 6}, + [7136] = {.lex_state = 63, .external_lex_state = 6}, + [7137] = {.lex_state = 65, .external_lex_state = 6}, + [7138] = {.lex_state = 65, .external_lex_state = 6}, [7139] = {.lex_state = 65, .external_lex_state = 6}, [7140] = {.lex_state = 65, .external_lex_state = 6}, - [7141] = {.lex_state = 65, .external_lex_state = 6}, - [7142] = {.lex_state = 65, .external_lex_state = 6}, - [7143] = {.lex_state = 65, .external_lex_state = 6}, - [7144] = {.lex_state = 65, .external_lex_state = 6}, - [7145] = {.lex_state = 65, .external_lex_state = 6}, + [7141] = {.lex_state = 63, .external_lex_state = 6}, + [7142] = {.lex_state = 63, .external_lex_state = 6}, + [7143] = {.lex_state = 63, .external_lex_state = 6}, + [7144] = {.lex_state = 63, .external_lex_state = 6}, + [7145] = {.lex_state = 63, .external_lex_state = 6}, [7146] = {.lex_state = 65, .external_lex_state = 6}, [7147] = {.lex_state = 63, .external_lex_state = 6}, [7148] = {.lex_state = 63, .external_lex_state = 6}, [7149] = {.lex_state = 65, .external_lex_state = 6}, - [7150] = {.lex_state = 65, .external_lex_state = 6}, - [7151] = {.lex_state = 65, .external_lex_state = 6}, - [7152] = {.lex_state = 65, .external_lex_state = 6}, - [7153] = {.lex_state = 65, .external_lex_state = 6}, - [7154] = {.lex_state = 65, .external_lex_state = 6}, - [7155] = {.lex_state = 65, .external_lex_state = 6}, - [7156] = {.lex_state = 65, .external_lex_state = 6}, - [7157] = {.lex_state = 65, .external_lex_state = 6}, + [7150] = {.lex_state = 63, .external_lex_state = 6}, + [7151] = {.lex_state = 63, .external_lex_state = 6}, + [7152] = {.lex_state = 63, .external_lex_state = 6}, + [7153] = {.lex_state = 63, .external_lex_state = 6}, + [7154] = {.lex_state = 63, .external_lex_state = 6}, + [7155] = {.lex_state = 63, .external_lex_state = 6}, + [7156] = {.lex_state = 63, .external_lex_state = 6}, + [7157] = {.lex_state = 63, .external_lex_state = 6}, [7158] = {.lex_state = 65, .external_lex_state = 6}, [7159] = {.lex_state = 65, .external_lex_state = 6}, - [7160] = {.lex_state = 65, .external_lex_state = 6}, - [7161] = {.lex_state = 65, .external_lex_state = 6}, - [7162] = {.lex_state = 65, .external_lex_state = 6}, - [7163] = {.lex_state = 65, .external_lex_state = 6}, - [7164] = {.lex_state = 65, .external_lex_state = 6}, - [7165] = {.lex_state = 65, .external_lex_state = 6}, - [7166] = {.lex_state = 65, .external_lex_state = 6}, - [7167] = {.lex_state = 65, .external_lex_state = 6}, - [7168] = {.lex_state = 65, .external_lex_state = 6}, - [7169] = {.lex_state = 65, .external_lex_state = 6}, - [7170] = {.lex_state = 65, .external_lex_state = 6}, - [7171] = {.lex_state = 65, .external_lex_state = 6}, - [7172] = {.lex_state = 65, .external_lex_state = 6}, - [7173] = {.lex_state = 65, .external_lex_state = 22}, - [7174] = {.lex_state = 50, .external_lex_state = 6}, - [7175] = {.lex_state = 65, .external_lex_state = 6}, - [7176] = {.lex_state = 65, .external_lex_state = 6}, - [7177] = {.lex_state = 65, .external_lex_state = 6}, - [7178] = {.lex_state = 50, .external_lex_state = 6}, - [7179] = {.lex_state = 65, .external_lex_state = 6}, - [7180] = {.lex_state = 65, .external_lex_state = 6}, - [7181] = {.lex_state = 65, .external_lex_state = 6}, - [7182] = {.lex_state = 65, .external_lex_state = 6}, - [7183] = {.lex_state = 65, .external_lex_state = 6}, - [7184] = {.lex_state = 65, .external_lex_state = 6}, - [7185] = {.lex_state = 63, .external_lex_state = 6}, - [7186] = {.lex_state = 63, .external_lex_state = 6}, - [7187] = {.lex_state = 65, .external_lex_state = 6}, - [7188] = {.lex_state = 50, .external_lex_state = 6}, + [7160] = {.lex_state = 63, .external_lex_state = 6}, + [7161] = {.lex_state = 63, .external_lex_state = 6}, + [7162] = {.lex_state = 63, .external_lex_state = 6}, + [7163] = {.lex_state = 63, .external_lex_state = 6}, + [7164] = {.lex_state = 63, .external_lex_state = 6}, + [7165] = {.lex_state = 63, .external_lex_state = 6}, + [7166] = {.lex_state = 63, .external_lex_state = 6}, + [7167] = {.lex_state = 63, .external_lex_state = 6}, + [7168] = {.lex_state = 63, .external_lex_state = 6}, + [7169] = {.lex_state = 63, .external_lex_state = 6}, + [7170] = {.lex_state = 63, .external_lex_state = 6}, + [7171] = {.lex_state = 63, .external_lex_state = 6}, + [7172] = {.lex_state = 63, .external_lex_state = 6}, + [7173] = {.lex_state = 63, .external_lex_state = 6}, + [7174] = {.lex_state = 63, .external_lex_state = 6}, + [7175] = {.lex_state = 63, .external_lex_state = 6}, + [7176] = {.lex_state = 63, .external_lex_state = 26}, + [7177] = {.lex_state = 63, .external_lex_state = 6}, + [7178] = {.lex_state = 63, .external_lex_state = 6}, + [7179] = {.lex_state = 63, .external_lex_state = 6}, + [7180] = {.lex_state = 63, .external_lex_state = 6}, + [7181] = {.lex_state = 63, .external_lex_state = 6}, + [7182] = {.lex_state = 63, .external_lex_state = 6}, + [7183] = {.lex_state = 63, .external_lex_state = 6}, + [7184] = {.lex_state = 50, .external_lex_state = 6}, + [7185] = {.lex_state = 65, .external_lex_state = 6}, + [7186] = {.lex_state = 62, .external_lex_state = 6}, + [7187] = {.lex_state = 63, .external_lex_state = 6}, + [7188] = {.lex_state = 63, .external_lex_state = 25}, [7189] = {.lex_state = 63, .external_lex_state = 6}, [7190] = {.lex_state = 63, .external_lex_state = 6}, [7191] = {.lex_state = 65, .external_lex_state = 6}, [7192] = {.lex_state = 65, .external_lex_state = 6}, - [7193] = {.lex_state = 65, .external_lex_state = 6}, + [7193] = {.lex_state = 63, .external_lex_state = 6}, [7194] = {.lex_state = 63, .external_lex_state = 6}, [7195] = {.lex_state = 63, .external_lex_state = 6}, [7196] = {.lex_state = 63, .external_lex_state = 6}, [7197] = {.lex_state = 63, .external_lex_state = 6}, - [7198] = {.lex_state = 65, .external_lex_state = 6}, - [7199] = {.lex_state = 65, .external_lex_state = 6}, - [7200] = {.lex_state = 65, .external_lex_state = 6}, + [7198] = {.lex_state = 50, .external_lex_state = 6}, + [7199] = {.lex_state = 318, .external_lex_state = 6}, + [7200] = {.lex_state = 63, .external_lex_state = 6}, [7201] = {.lex_state = 65, .external_lex_state = 6}, [7202] = {.lex_state = 65, .external_lex_state = 6}, - [7203] = {.lex_state = 65, .external_lex_state = 6}, + [7203] = {.lex_state = 63, .external_lex_state = 6}, [7204] = {.lex_state = 65, .external_lex_state = 6}, - [7205] = {.lex_state = 65, .external_lex_state = 6}, - [7206] = {.lex_state = 65, .external_lex_state = 6}, - [7207] = {.lex_state = 65, .external_lex_state = 6}, - [7208] = {.lex_state = 65, .external_lex_state = 6}, - [7209] = {.lex_state = 65, .external_lex_state = 6}, - [7210] = {.lex_state = 65, .external_lex_state = 6}, - [7211] = {.lex_state = 65, .external_lex_state = 6}, - [7212] = {.lex_state = 65, .external_lex_state = 6}, - [7213] = {.lex_state = 65, .external_lex_state = 6}, - [7214] = {.lex_state = 65, .external_lex_state = 6}, - [7215] = {.lex_state = 65, .external_lex_state = 6}, - [7216] = {.lex_state = 65, .external_lex_state = 6}, - [7217] = {.lex_state = 65, .external_lex_state = 6}, - [7218] = {.lex_state = 65, .external_lex_state = 6}, - [7219] = {.lex_state = 63, .external_lex_state = 6}, + [7205] = {.lex_state = 63, .external_lex_state = 6}, + [7206] = {.lex_state = 63, .external_lex_state = 6}, + [7207] = {.lex_state = 63, .external_lex_state = 6}, + [7208] = {.lex_state = 63, .external_lex_state = 6}, + [7209] = {.lex_state = 63, .external_lex_state = 6}, + [7210] = {.lex_state = 63, .external_lex_state = 6}, + [7211] = {.lex_state = 63, .external_lex_state = 6}, + [7212] = {.lex_state = 63, .external_lex_state = 6}, + [7213] = {.lex_state = 63, .external_lex_state = 6}, + [7214] = {.lex_state = 62, .external_lex_state = 6}, + [7215] = {.lex_state = 63, .external_lex_state = 6}, + [7216] = {.lex_state = 63, .external_lex_state = 6}, + [7217] = {.lex_state = 63, .external_lex_state = 6}, + [7218] = {.lex_state = 64, .external_lex_state = 6}, + [7219] = {.lex_state = 63, .external_lex_state = 18}, [7220] = {.lex_state = 63, .external_lex_state = 6}, - [7221] = {.lex_state = 65, .external_lex_state = 6}, - [7222] = {.lex_state = 65, .external_lex_state = 6}, - [7223] = {.lex_state = 65, .external_lex_state = 6}, - [7224] = {.lex_state = 65, .external_lex_state = 6}, - [7225] = {.lex_state = 65, .external_lex_state = 6}, - [7226] = {.lex_state = 65, .external_lex_state = 6}, - [7227] = {.lex_state = 65, .external_lex_state = 6}, - [7228] = {.lex_state = 65, .external_lex_state = 6}, - [7229] = {.lex_state = 65, .external_lex_state = 23}, - [7230] = {.lex_state = 65, .external_lex_state = 6}, - [7231] = {.lex_state = 65, .external_lex_state = 6}, + [7221] = {.lex_state = 63, .external_lex_state = 6}, + [7222] = {.lex_state = 63, .external_lex_state = 6}, + [7223] = {.lex_state = 63, .external_lex_state = 6}, + [7224] = {.lex_state = 63, .external_lex_state = 6}, + [7225] = {.lex_state = 63, .external_lex_state = 6}, + [7226] = {.lex_state = 50, .external_lex_state = 6}, + [7227] = {.lex_state = 63, .external_lex_state = 6}, + [7228] = {.lex_state = 63, .external_lex_state = 6}, + [7229] = {.lex_state = 63, .external_lex_state = 6}, + [7230] = {.lex_state = 63, .external_lex_state = 6}, + [7231] = {.lex_state = 63, .external_lex_state = 6}, [7232] = {.lex_state = 65, .external_lex_state = 6}, [7233] = {.lex_state = 65, .external_lex_state = 6}, [7234] = {.lex_state = 65, .external_lex_state = 6}, - [7235] = {.lex_state = 65, .external_lex_state = 6}, - [7236] = {.lex_state = 65, .external_lex_state = 6}, + [7235] = {.lex_state = 63, .external_lex_state = 6}, + [7236] = {.lex_state = 63, .external_lex_state = 6}, [7237] = {.lex_state = 65, .external_lex_state = 6}, - [7238] = {.lex_state = 65, .external_lex_state = 6}, - [7239] = {.lex_state = 50, .external_lex_state = 6}, + [7238] = {.lex_state = 63, .external_lex_state = 6}, + [7239] = {.lex_state = 63, .external_lex_state = 6}, [7240] = {.lex_state = 63, .external_lex_state = 6}, - [7241] = {.lex_state = 65, .external_lex_state = 6}, - [7242] = {.lex_state = 63, .external_lex_state = 25}, + [7241] = {.lex_state = 63, .external_lex_state = 6}, + [7242] = {.lex_state = 65, .external_lex_state = 6}, [7243] = {.lex_state = 63, .external_lex_state = 6}, [7244] = {.lex_state = 63, .external_lex_state = 6}, - [7245] = {.lex_state = 65, .external_lex_state = 6}, - [7246] = {.lex_state = 50, .external_lex_state = 6}, + [7245] = {.lex_state = 63, .external_lex_state = 6}, + [7246] = {.lex_state = 63, .external_lex_state = 6}, [7247] = {.lex_state = 65, .external_lex_state = 6}, [7248] = {.lex_state = 65, .external_lex_state = 6}, - [7249] = {.lex_state = 65, .external_lex_state = 6}, - [7250] = {.lex_state = 314, .external_lex_state = 6}, - [7251] = {.lex_state = 65, .external_lex_state = 6}, - [7252] = {.lex_state = 65, .external_lex_state = 6}, - [7253] = {.lex_state = 65, .external_lex_state = 6}, + [7249] = {.lex_state = 63, .external_lex_state = 6}, + [7250] = {.lex_state = 65, .external_lex_state = 6}, + [7251] = {.lex_state = 63, .external_lex_state = 6}, + [7252] = {.lex_state = 63, .external_lex_state = 6}, + [7253] = {.lex_state = 63, .external_lex_state = 6}, [7254] = {.lex_state = 63, .external_lex_state = 6}, [7255] = {.lex_state = 63, .external_lex_state = 6}, - [7256] = {.lex_state = 65, .external_lex_state = 6}, - [7257] = {.lex_state = 65, .external_lex_state = 18}, - [7258] = {.lex_state = 65, .external_lex_state = 6}, + [7256] = {.lex_state = 63, .external_lex_state = 6}, + [7257] = {.lex_state = 63, .external_lex_state = 6}, + [7258] = {.lex_state = 63, .external_lex_state = 6}, [7259] = {.lex_state = 63, .external_lex_state = 6}, [7260] = {.lex_state = 63, .external_lex_state = 6}, - [7261] = {.lex_state = 63, .external_lex_state = 6}, - [7262] = {.lex_state = 63, .external_lex_state = 6}, - [7263] = {.lex_state = 65, .external_lex_state = 6}, - [7264] = {.lex_state = 63, .external_lex_state = 6}, - [7265] = {.lex_state = 65, .external_lex_state = 6}, - [7266] = {.lex_state = 65, .external_lex_state = 6}, - [7267] = {.lex_state = 65, .external_lex_state = 6}, - [7268] = {.lex_state = 65, .external_lex_state = 6}, - [7269] = {.lex_state = 65, .external_lex_state = 6}, - [7270] = {.lex_state = 65, .external_lex_state = 6}, - [7271] = {.lex_state = 65, .external_lex_state = 6}, - [7272] = {.lex_state = 65, .external_lex_state = 6}, - [7273] = {.lex_state = 65, .external_lex_state = 6}, - [7274] = {.lex_state = 65, .external_lex_state = 6}, - [7275] = {.lex_state = 65, .external_lex_state = 6}, - [7276] = {.lex_state = 65, .external_lex_state = 6}, - [7277] = {.lex_state = 65, .external_lex_state = 6}, - [7278] = {.lex_state = 65, .external_lex_state = 6}, - [7279] = {.lex_state = 65, .external_lex_state = 6}, - [7280] = {.lex_state = 65, .external_lex_state = 6}, - [7281] = {.lex_state = 65, .external_lex_state = 6}, - [7282] = {.lex_state = 65, .external_lex_state = 6}, - [7283] = {.lex_state = 65, .external_lex_state = 17}, - [7284] = {.lex_state = 65, .external_lex_state = 6}, + [7261] = {.lex_state = 50, .external_lex_state = 6}, + [7262] = {.lex_state = 64, .external_lex_state = 6}, + [7263] = {.lex_state = 63, .external_lex_state = 6}, + [7264] = {.lex_state = 142, .external_lex_state = 6}, + [7265] = {.lex_state = 53, .external_lex_state = 6}, + [7266] = {.lex_state = 63, .external_lex_state = 6}, + [7267] = {.lex_state = 142, .external_lex_state = 6}, + [7268] = {.lex_state = 142, .external_lex_state = 6}, + [7269] = {.lex_state = 318, .external_lex_state = 6}, + [7270] = {.lex_state = 142, .external_lex_state = 6}, + [7271] = {.lex_state = 142, .external_lex_state = 6}, + [7272] = {.lex_state = 63, .external_lex_state = 6}, + [7273] = {.lex_state = 318, .external_lex_state = 6}, + [7274] = {.lex_state = 142, .external_lex_state = 6}, + [7275] = {.lex_state = 142, .external_lex_state = 6}, + [7276] = {.lex_state = 142, .external_lex_state = 6}, + [7277] = {.lex_state = 318, .external_lex_state = 6}, + [7278] = {.lex_state = 318, .external_lex_state = 6}, + [7279] = {.lex_state = 318, .external_lex_state = 6}, + [7280] = {.lex_state = 142, .external_lex_state = 6}, + [7281] = {.lex_state = 63, .external_lex_state = 6}, + [7282] = {.lex_state = 318, .external_lex_state = 6}, + [7283] = {.lex_state = 142, .external_lex_state = 6}, + [7284] = {.lex_state = 318, .external_lex_state = 6}, [7285] = {.lex_state = 65, .external_lex_state = 6}, [7286] = {.lex_state = 63, .external_lex_state = 6}, - [7287] = {.lex_state = 63, .external_lex_state = 6}, - [7288] = {.lex_state = 53, .external_lex_state = 6}, + [7287] = {.lex_state = 142, .external_lex_state = 6}, + [7288] = {.lex_state = 142, .external_lex_state = 6}, [7289] = {.lex_state = 142, .external_lex_state = 6}, [7290] = {.lex_state = 142, .external_lex_state = 6}, [7291] = {.lex_state = 142, .external_lex_state = 6}, - [7292] = {.lex_state = 314, .external_lex_state = 6}, - [7293] = {.lex_state = 53, .external_lex_state = 6}, - [7294] = {.lex_state = 65, .external_lex_state = 6}, - [7295] = {.lex_state = 314, .external_lex_state = 6}, + [7292] = {.lex_state = 318, .external_lex_state = 6}, + [7293] = {.lex_state = 142, .external_lex_state = 6}, + [7294] = {.lex_state = 53, .external_lex_state = 6}, + [7295] = {.lex_state = 142, .external_lex_state = 6}, [7296] = {.lex_state = 142, .external_lex_state = 6}, [7297] = {.lex_state = 142, .external_lex_state = 6}, - [7298] = {.lex_state = 65, .external_lex_state = 6}, - [7299] = {.lex_state = 142, .external_lex_state = 6}, + [7298] = {.lex_state = 142, .external_lex_state = 6}, + [7299] = {.lex_state = 53, .external_lex_state = 6}, [7300] = {.lex_state = 53, .external_lex_state = 6}, - [7301] = {.lex_state = 142, .external_lex_state = 6}, + [7301] = {.lex_state = 53, .external_lex_state = 6}, [7302] = {.lex_state = 142, .external_lex_state = 6}, - [7303] = {.lex_state = 314, .external_lex_state = 6}, - [7304] = {.lex_state = 314, .external_lex_state = 6}, - [7305] = {.lex_state = 314, .external_lex_state = 6}, - [7306] = {.lex_state = 314, .external_lex_state = 6}, - [7307] = {.lex_state = 142, .external_lex_state = 6}, - [7308] = {.lex_state = 65, .external_lex_state = 6}, - [7309] = {.lex_state = 142, .external_lex_state = 6}, + [7303] = {.lex_state = 53, .external_lex_state = 6}, + [7304] = {.lex_state = 53, .external_lex_state = 6}, + [7305] = {.lex_state = 318, .external_lex_state = 6}, + [7306] = {.lex_state = 318, .external_lex_state = 6}, + [7307] = {.lex_state = 53, .external_lex_state = 6}, + [7308] = {.lex_state = 142, .external_lex_state = 6}, + [7309] = {.lex_state = 53, .external_lex_state = 6}, [7310] = {.lex_state = 142, .external_lex_state = 6}, [7311] = {.lex_state = 142, .external_lex_state = 6}, - [7312] = {.lex_state = 53, .external_lex_state = 6}, + [7312] = {.lex_state = 318, .external_lex_state = 6}, [7313] = {.lex_state = 142, .external_lex_state = 6}, - [7314] = {.lex_state = 314, .external_lex_state = 6}, - [7315] = {.lex_state = 142, .external_lex_state = 6}, - [7316] = {.lex_state = 53, .external_lex_state = 6}, + [7314] = {.lex_state = 53, .external_lex_state = 6}, + [7315] = {.lex_state = 318, .external_lex_state = 6}, + [7316] = {.lex_state = 142, .external_lex_state = 6}, [7317] = {.lex_state = 53, .external_lex_state = 6}, - [7318] = {.lex_state = 142, .external_lex_state = 6}, + [7318] = {.lex_state = 53, .external_lex_state = 6}, [7319] = {.lex_state = 142, .external_lex_state = 6}, [7320] = {.lex_state = 53, .external_lex_state = 6}, - [7321] = {.lex_state = 142, .external_lex_state = 6}, - [7322] = {.lex_state = 65, .external_lex_state = 6}, + [7321] = {.lex_state = 53, .external_lex_state = 6}, + [7322] = {.lex_state = 53, .external_lex_state = 6}, [7323] = {.lex_state = 53, .external_lex_state = 6}, [7324] = {.lex_state = 53, .external_lex_state = 6}, - [7325] = {.lex_state = 314, .external_lex_state = 6}, - [7326] = {.lex_state = 53, .external_lex_state = 6}, + [7325] = {.lex_state = 53, .external_lex_state = 6}, + [7326] = {.lex_state = 142, .external_lex_state = 6}, [7327] = {.lex_state = 142, .external_lex_state = 6}, - [7328] = {.lex_state = 314, .external_lex_state = 6}, - [7329] = {.lex_state = 53, .external_lex_state = 6}, + [7328] = {.lex_state = 142, .external_lex_state = 6}, + [7329] = {.lex_state = 142, .external_lex_state = 6}, [7330] = {.lex_state = 142, .external_lex_state = 6}, - [7331] = {.lex_state = 65, .external_lex_state = 6}, - [7332] = {.lex_state = 53, .external_lex_state = 6}, + [7331] = {.lex_state = 142, .external_lex_state = 6}, + [7332] = {.lex_state = 142, .external_lex_state = 6}, [7333] = {.lex_state = 142, .external_lex_state = 6}, [7334] = {.lex_state = 142, .external_lex_state = 6}, - [7335] = {.lex_state = 53, .external_lex_state = 6}, - [7336] = {.lex_state = 142, .external_lex_state = 6}, - [7337] = {.lex_state = 53, .external_lex_state = 6}, - [7338] = {.lex_state = 53, .external_lex_state = 6}, - [7339] = {.lex_state = 63, .external_lex_state = 6}, - [7340] = {.lex_state = 53, .external_lex_state = 6}, - [7341] = {.lex_state = 53, .external_lex_state = 6}, - [7342] = {.lex_state = 53, .external_lex_state = 6}, - [7343] = {.lex_state = 53, .external_lex_state = 6}, - [7344] = {.lex_state = 53, .external_lex_state = 6}, - [7345] = {.lex_state = 142, .external_lex_state = 6}, + [7335] = {.lex_state = 142, .external_lex_state = 6}, + [7336] = {.lex_state = 63, .external_lex_state = 6}, + [7337] = {.lex_state = 142, .external_lex_state = 6}, + [7338] = {.lex_state = 142, .external_lex_state = 6}, + [7339] = {.lex_state = 142, .external_lex_state = 6}, + [7340] = {.lex_state = 142, .external_lex_state = 6}, + [7341] = {.lex_state = 65, .external_lex_state = 6}, + [7342] = {.lex_state = 142, .external_lex_state = 6}, + [7343] = {.lex_state = 142, .external_lex_state = 6}, + [7344] = {.lex_state = 63, .external_lex_state = 6}, + [7345] = {.lex_state = 63, .external_lex_state = 6}, [7346] = {.lex_state = 142, .external_lex_state = 6}, [7347] = {.lex_state = 142, .external_lex_state = 6}, [7348] = {.lex_state = 142, .external_lex_state = 6}, - [7349] = {.lex_state = 142, .external_lex_state = 6}, - [7350] = {.lex_state = 142, .external_lex_state = 6}, - [7351] = {.lex_state = 142, .external_lex_state = 6}, + [7349] = {.lex_state = 318, .external_lex_state = 6}, + [7350] = {.lex_state = 318, .external_lex_state = 6}, + [7351] = {.lex_state = 63, .external_lex_state = 6}, [7352] = {.lex_state = 142, .external_lex_state = 6}, [7353] = {.lex_state = 142, .external_lex_state = 6}, [7354] = {.lex_state = 142, .external_lex_state = 6}, - [7355] = {.lex_state = 142, .external_lex_state = 6}, + [7355] = {.lex_state = 53, .external_lex_state = 6}, [7356] = {.lex_state = 142, .external_lex_state = 6}, - [7357] = {.lex_state = 314, .external_lex_state = 6}, + [7357] = {.lex_state = 142, .external_lex_state = 6}, [7358] = {.lex_state = 142, .external_lex_state = 6}, - [7359] = {.lex_state = 65, .external_lex_state = 6}, - [7360] = {.lex_state = 142, .external_lex_state = 6}, - [7361] = {.lex_state = 142, .external_lex_state = 6}, - [7362] = {.lex_state = 142, .external_lex_state = 6}, - [7363] = {.lex_state = 314, .external_lex_state = 6}, - [7364] = {.lex_state = 142, .external_lex_state = 6}, - [7365] = {.lex_state = 142, .external_lex_state = 6}, - [7366] = {.lex_state = 142, .external_lex_state = 6}, - [7367] = {.lex_state = 142, .external_lex_state = 6}, - [7368] = {.lex_state = 142, .external_lex_state = 6}, - [7369] = {.lex_state = 142, .external_lex_state = 6}, - [7370] = {.lex_state = 142, .external_lex_state = 6}, - [7371] = {.lex_state = 142, .external_lex_state = 6}, - [7372] = {.lex_state = 142, .external_lex_state = 6}, - [7373] = {.lex_state = 142, .external_lex_state = 6}, - [7374] = {.lex_state = 314, .external_lex_state = 6}, - [7375] = {.lex_state = 142, .external_lex_state = 6}, - [7376] = {.lex_state = 314, .external_lex_state = 6}, - [7377] = {.lex_state = 142, .external_lex_state = 6}, - [7378] = {.lex_state = 142, .external_lex_state = 6}, - [7379] = {.lex_state = 65, .external_lex_state = 6}, - [7380] = {.lex_state = 65, .external_lex_state = 6}, - [7381] = {.lex_state = 63, .external_lex_state = 6}, - [7382] = {.lex_state = 314, .external_lex_state = 6}, - [7383] = {.lex_state = 142, .external_lex_state = 6}, - [7384] = {.lex_state = 314, .external_lex_state = 6}, - [7385] = {.lex_state = 50, .external_lex_state = 6}, - [7386] = {.lex_state = 50, .external_lex_state = 6}, - [7387] = {.lex_state = 139, .external_lex_state = 6}, - [7388] = {.lex_state = 139, .external_lex_state = 6}, - [7389] = {.lex_state = 314, .external_lex_state = 6}, - [7390] = {.lex_state = 314, .external_lex_state = 6}, - [7391] = {.lex_state = 314, .external_lex_state = 6}, - [7392] = {.lex_state = 314, .external_lex_state = 6}, - [7393] = {.lex_state = 139, .external_lex_state = 6}, - [7394] = {.lex_state = 314, .external_lex_state = 6}, - [7395] = {.lex_state = 314, .external_lex_state = 6}, - [7396] = {.lex_state = 314, .external_lex_state = 6}, - [7397] = {.lex_state = 314, .external_lex_state = 6}, - [7398] = {.lex_state = 314, .external_lex_state = 6}, - [7399] = {.lex_state = 314, .external_lex_state = 6}, - [7400] = {.lex_state = 314, .external_lex_state = 6}, - [7401] = {.lex_state = 314, .external_lex_state = 6}, - [7402] = {.lex_state = 314, .external_lex_state = 6}, - [7403] = {.lex_state = 314, .external_lex_state = 6}, - [7404] = {.lex_state = 314, .external_lex_state = 6}, - [7405] = {.lex_state = 314, .external_lex_state = 6}, - [7406] = {.lex_state = 314, .external_lex_state = 6}, - [7407] = {.lex_state = 314, .external_lex_state = 6}, - [7408] = {.lex_state = 139, .external_lex_state = 6}, - [7409] = {.lex_state = 50, .external_lex_state = 6}, - [7410] = {.lex_state = 314, .external_lex_state = 6}, - [7411] = {.lex_state = 50, .external_lex_state = 6}, - [7412] = {.lex_state = 314, .external_lex_state = 6}, - [7413] = {.lex_state = 314, .external_lex_state = 6}, - [7414] = {.lex_state = 139, .external_lex_state = 6}, - [7415] = {.lex_state = 314, .external_lex_state = 6}, - [7416] = {.lex_state = 50, .external_lex_state = 6}, - [7417] = {.lex_state = 314, .external_lex_state = 6}, - [7418] = {.lex_state = 314, .external_lex_state = 6}, - [7419] = {.lex_state = 314, .external_lex_state = 6}, - [7420] = {.lex_state = 314, .external_lex_state = 6}, - [7421] = {.lex_state = 314, .external_lex_state = 6}, - [7422] = {.lex_state = 314, .external_lex_state = 6}, - [7423] = {.lex_state = 314, .external_lex_state = 6}, - [7424] = {.lex_state = 314, .external_lex_state = 6}, - [7425] = {.lex_state = 314, .external_lex_state = 6}, - [7426] = {.lex_state = 314, .external_lex_state = 6}, - [7427] = {.lex_state = 314, .external_lex_state = 6}, - [7428] = {.lex_state = 314, .external_lex_state = 6}, - [7429] = {.lex_state = 139, .external_lex_state = 6}, - [7430] = {.lex_state = 314, .external_lex_state = 6}, - [7431] = {.lex_state = 314, .external_lex_state = 6}, - [7432] = {.lex_state = 314, .external_lex_state = 6}, - [7433] = {.lex_state = 314, .external_lex_state = 6}, - [7434] = {.lex_state = 139, .external_lex_state = 6}, - [7435] = {.lex_state = 314, .external_lex_state = 6}, - [7436] = {.lex_state = 314, .external_lex_state = 6}, - [7437] = {.lex_state = 314, .external_lex_state = 6}, - [7438] = {.lex_state = 314, .external_lex_state = 6}, - [7439] = {.lex_state = 314, .external_lex_state = 6}, - [7440] = {.lex_state = 314, .external_lex_state = 6}, - [7441] = {.lex_state = 314, .external_lex_state = 6}, - [7442] = {.lex_state = 314, .external_lex_state = 6}, - [7443] = {.lex_state = 314, .external_lex_state = 6}, - [7444] = {.lex_state = 125, .external_lex_state = 6}, - [7445] = {.lex_state = 139, .external_lex_state = 6}, - [7446] = {.lex_state = 314, .external_lex_state = 6}, - [7447] = {.lex_state = 314, .external_lex_state = 6}, - [7448] = {.lex_state = 314, .external_lex_state = 6}, - [7449] = {.lex_state = 314, .external_lex_state = 6}, - [7450] = {.lex_state = 314, .external_lex_state = 6}, - [7451] = {.lex_state = 314, .external_lex_state = 6}, - [7452] = {.lex_state = 314, .external_lex_state = 6}, - [7453] = {.lex_state = 314, .external_lex_state = 6}, - [7454] = {.lex_state = 314, .external_lex_state = 6}, - [7455] = {.lex_state = 314, .external_lex_state = 6}, - [7456] = {.lex_state = 314, .external_lex_state = 6}, - [7457] = {.lex_state = 314, .external_lex_state = 6}, - [7458] = {.lex_state = 314, .external_lex_state = 6}, - [7459] = {.lex_state = 314, .external_lex_state = 6}, - [7460] = {.lex_state = 314, .external_lex_state = 6}, - [7461] = {.lex_state = 314, .external_lex_state = 6}, - [7462] = {.lex_state = 314, .external_lex_state = 6}, - [7463] = {.lex_state = 314, .external_lex_state = 6}, - [7464] = {.lex_state = 314, .external_lex_state = 6}, - [7465] = {.lex_state = 314, .external_lex_state = 6}, - [7466] = {.lex_state = 314, .external_lex_state = 6}, - [7467] = {.lex_state = 50, .external_lex_state = 6}, - [7468] = {.lex_state = 314, .external_lex_state = 6}, - [7469] = {.lex_state = 314, .external_lex_state = 6}, - [7470] = {.lex_state = 314, .external_lex_state = 6}, - [7471] = {.lex_state = 314, .external_lex_state = 6}, - [7472] = {.lex_state = 139, .external_lex_state = 6}, - [7473] = {.lex_state = 314, .external_lex_state = 6}, - [7474] = {.lex_state = 314, .external_lex_state = 6}, - [7475] = {.lex_state = 314, .external_lex_state = 6}, - [7476] = {.lex_state = 314, .external_lex_state = 6}, - [7477] = {.lex_state = 314, .external_lex_state = 6}, - [7478] = {.lex_state = 314, .external_lex_state = 6}, - [7479] = {.lex_state = 314, .external_lex_state = 6}, - [7480] = {.lex_state = 139, .external_lex_state = 6}, - [7481] = {.lex_state = 314, .external_lex_state = 6}, - [7482] = {.lex_state = 314, .external_lex_state = 6}, - [7483] = {.lex_state = 314, .external_lex_state = 6}, - [7484] = {.lex_state = 314, .external_lex_state = 6}, + [7359] = {.lex_state = 53, .external_lex_state = 6}, + [7360] = {.lex_state = 50, .external_lex_state = 6}, + [7361] = {.lex_state = 318, .external_lex_state = 6}, + [7362] = {.lex_state = 318, .external_lex_state = 6}, + [7363] = {.lex_state = 318, .external_lex_state = 6}, + [7364] = {.lex_state = 318, .external_lex_state = 6}, + [7365] = {.lex_state = 139, .external_lex_state = 6}, + [7366] = {.lex_state = 318, .external_lex_state = 6}, + [7367] = {.lex_state = 318, .external_lex_state = 6}, + [7368] = {.lex_state = 50, .external_lex_state = 6}, + [7369] = {.lex_state = 50, .external_lex_state = 6}, + [7370] = {.lex_state = 318, .external_lex_state = 6}, + [7371] = {.lex_state = 318, .external_lex_state = 6}, + [7372] = {.lex_state = 318, .external_lex_state = 6}, + [7373] = {.lex_state = 139, .external_lex_state = 6}, + [7374] = {.lex_state = 318, .external_lex_state = 6}, + [7375] = {.lex_state = 318, .external_lex_state = 6}, + [7376] = {.lex_state = 318, .external_lex_state = 6}, + [7377] = {.lex_state = 318, .external_lex_state = 6}, + [7378] = {.lex_state = 318, .external_lex_state = 6}, + [7379] = {.lex_state = 318, .external_lex_state = 6}, + [7380] = {.lex_state = 318, .external_lex_state = 6}, + [7381] = {.lex_state = 318, .external_lex_state = 6}, + [7382] = {.lex_state = 318, .external_lex_state = 6}, + [7383] = {.lex_state = 139, .external_lex_state = 6}, + [7384] = {.lex_state = 318, .external_lex_state = 6}, + [7385] = {.lex_state = 318, .external_lex_state = 6}, + [7386] = {.lex_state = 318, .external_lex_state = 6}, + [7387] = {.lex_state = 50, .external_lex_state = 6}, + [7388] = {.lex_state = 318, .external_lex_state = 6}, + [7389] = {.lex_state = 318, .external_lex_state = 6}, + [7390] = {.lex_state = 318, .external_lex_state = 6}, + [7391] = {.lex_state = 318, .external_lex_state = 6}, + [7392] = {.lex_state = 318, .external_lex_state = 6}, + [7393] = {.lex_state = 318, .external_lex_state = 6}, + [7394] = {.lex_state = 318, .external_lex_state = 6}, + [7395] = {.lex_state = 318, .external_lex_state = 6}, + [7396] = {.lex_state = 318, .external_lex_state = 6}, + [7397] = {.lex_state = 318, .external_lex_state = 6}, + [7398] = {.lex_state = 318, .external_lex_state = 6}, + [7399] = {.lex_state = 318, .external_lex_state = 6}, + [7400] = {.lex_state = 318, .external_lex_state = 6}, + [7401] = {.lex_state = 139, .external_lex_state = 6}, + [7402] = {.lex_state = 318, .external_lex_state = 6}, + [7403] = {.lex_state = 318, .external_lex_state = 6}, + [7404] = {.lex_state = 318, .external_lex_state = 6}, + [7405] = {.lex_state = 139, .external_lex_state = 6}, + [7406] = {.lex_state = 50, .external_lex_state = 6}, + [7407] = {.lex_state = 139, .external_lex_state = 6}, + [7408] = {.lex_state = 318, .external_lex_state = 6}, + [7409] = {.lex_state = 318, .external_lex_state = 6}, + [7410] = {.lex_state = 318, .external_lex_state = 6}, + [7411] = {.lex_state = 318, .external_lex_state = 6}, + [7412] = {.lex_state = 318, .external_lex_state = 6}, + [7413] = {.lex_state = 318, .external_lex_state = 6}, + [7414] = {.lex_state = 318, .external_lex_state = 6}, + [7415] = {.lex_state = 318, .external_lex_state = 6}, + [7416] = {.lex_state = 318, .external_lex_state = 6}, + [7417] = {.lex_state = 318, .external_lex_state = 6}, + [7418] = {.lex_state = 318, .external_lex_state = 6}, + [7419] = {.lex_state = 318, .external_lex_state = 6}, + [7420] = {.lex_state = 318, .external_lex_state = 6}, + [7421] = {.lex_state = 318, .external_lex_state = 6}, + [7422] = {.lex_state = 318, .external_lex_state = 6}, + [7423] = {.lex_state = 318, .external_lex_state = 6}, + [7424] = {.lex_state = 318, .external_lex_state = 6}, + [7425] = {.lex_state = 139, .external_lex_state = 6}, + [7426] = {.lex_state = 318, .external_lex_state = 6}, + [7427] = {.lex_state = 318, .external_lex_state = 6}, + [7428] = {.lex_state = 318, .external_lex_state = 6}, + [7429] = {.lex_state = 50, .external_lex_state = 6}, + [7430] = {.lex_state = 318, .external_lex_state = 6}, + [7431] = {.lex_state = 318, .external_lex_state = 6}, + [7432] = {.lex_state = 318, .external_lex_state = 6}, + [7433] = {.lex_state = 318, .external_lex_state = 6}, + [7434] = {.lex_state = 318, .external_lex_state = 6}, + [7435] = {.lex_state = 318, .external_lex_state = 6}, + [7436] = {.lex_state = 139, .external_lex_state = 6}, + [7437] = {.lex_state = 318, .external_lex_state = 6}, + [7438] = {.lex_state = 318, .external_lex_state = 6}, + [7439] = {.lex_state = 318, .external_lex_state = 6}, + [7440] = {.lex_state = 50, .external_lex_state = 6}, + [7441] = {.lex_state = 318, .external_lex_state = 6}, + [7442] = {.lex_state = 318, .external_lex_state = 6}, + [7443] = {.lex_state = 318, .external_lex_state = 6}, + [7444] = {.lex_state = 318, .external_lex_state = 6}, + [7445] = {.lex_state = 50, .external_lex_state = 6}, + [7446] = {.lex_state = 318, .external_lex_state = 6}, + [7447] = {.lex_state = 318, .external_lex_state = 6}, + [7448] = {.lex_state = 318, .external_lex_state = 6}, + [7449] = {.lex_state = 318, .external_lex_state = 6}, + [7450] = {.lex_state = 318, .external_lex_state = 6}, + [7451] = {.lex_state = 318, .external_lex_state = 6}, + [7452] = {.lex_state = 318, .external_lex_state = 6}, + [7453] = {.lex_state = 318, .external_lex_state = 6}, + [7454] = {.lex_state = 139, .external_lex_state = 6}, + [7455] = {.lex_state = 50, .external_lex_state = 6}, + [7456] = {.lex_state = 139, .external_lex_state = 6}, + [7457] = {.lex_state = 318, .external_lex_state = 6}, + [7458] = {.lex_state = 139, .external_lex_state = 6}, + [7459] = {.lex_state = 318, .external_lex_state = 6}, + [7460] = {.lex_state = 318, .external_lex_state = 6}, + [7461] = {.lex_state = 318, .external_lex_state = 6}, + [7462] = {.lex_state = 50, .external_lex_state = 6}, + [7463] = {.lex_state = 318, .external_lex_state = 6}, + [7464] = {.lex_state = 318, .external_lex_state = 6}, + [7465] = {.lex_state = 318, .external_lex_state = 6}, + [7466] = {.lex_state = 125, .external_lex_state = 6}, + [7467] = {.lex_state = 318, .external_lex_state = 6}, + [7468] = {.lex_state = 139, .external_lex_state = 6}, + [7469] = {.lex_state = 139, .external_lex_state = 6}, + [7470] = {.lex_state = 318, .external_lex_state = 6}, + [7471] = {.lex_state = 318, .external_lex_state = 6}, + [7472] = {.lex_state = 318, .external_lex_state = 6}, + [7473] = {.lex_state = 139, .external_lex_state = 6}, + [7474] = {.lex_state = 318, .external_lex_state = 6}, + [7475] = {.lex_state = 318, .external_lex_state = 6}, + [7476] = {.lex_state = 139, .external_lex_state = 6}, + [7477] = {.lex_state = 50, .external_lex_state = 6}, + [7478] = {.lex_state = 318, .external_lex_state = 6}, + [7479] = {.lex_state = 318, .external_lex_state = 6}, + [7480] = {.lex_state = 318, .external_lex_state = 6}, + [7481] = {.lex_state = 139, .external_lex_state = 6}, + [7482] = {.lex_state = 318, .external_lex_state = 6}, + [7483] = {.lex_state = 139, .external_lex_state = 6}, + [7484] = {.lex_state = 318, .external_lex_state = 6}, [7485] = {.lex_state = 50, .external_lex_state = 6}, - [7486] = {.lex_state = 314, .external_lex_state = 6}, - [7487] = {.lex_state = 314, .external_lex_state = 6}, - [7488] = {.lex_state = 50, .external_lex_state = 6}, - [7489] = {.lex_state = 314, .external_lex_state = 6}, - [7490] = {.lex_state = 314, .external_lex_state = 6}, - [7491] = {.lex_state = 314, .external_lex_state = 6}, - [7492] = {.lex_state = 314, .external_lex_state = 6}, - [7493] = {.lex_state = 314, .external_lex_state = 6}, - [7494] = {.lex_state = 314, .external_lex_state = 6}, - [7495] = {.lex_state = 314, .external_lex_state = 6}, - [7496] = {.lex_state = 314, .external_lex_state = 6}, - [7497] = {.lex_state = 139, .external_lex_state = 6}, - [7498] = {.lex_state = 314, .external_lex_state = 6}, - [7499] = {.lex_state = 139, .external_lex_state = 6}, - [7500] = {.lex_state = 314, .external_lex_state = 6}, - [7501] = {.lex_state = 50, .external_lex_state = 6}, - [7502] = {.lex_state = 139, .external_lex_state = 6}, - [7503] = {.lex_state = 314, .external_lex_state = 6}, - [7504] = {.lex_state = 50, .external_lex_state = 6}, - [7505] = {.lex_state = 314, .external_lex_state = 6}, - [7506] = {.lex_state = 314, .external_lex_state = 6}, - [7507] = {.lex_state = 50, .external_lex_state = 6}, - [7508] = {.lex_state = 139, .external_lex_state = 6}, - [7509] = {.lex_state = 314, .external_lex_state = 6}, - [7510] = {.lex_state = 314, .external_lex_state = 6}, - [7511] = {.lex_state = 314, .external_lex_state = 6}, - [7512] = {.lex_state = 50, .external_lex_state = 6}, - [7513] = {.lex_state = 314, .external_lex_state = 6}, - [7514] = {.lex_state = 314, .external_lex_state = 6}, - [7515] = {.lex_state = 314, .external_lex_state = 6}, - [7516] = {.lex_state = 314, .external_lex_state = 6}, - [7517] = {.lex_state = 314, .external_lex_state = 6}, - [7518] = {.lex_state = 139, .external_lex_state = 6}, - [7519] = {.lex_state = 314, .external_lex_state = 6}, - [7520] = {.lex_state = 314, .external_lex_state = 6}, - [7521] = {.lex_state = 314, .external_lex_state = 6}, - [7522] = {.lex_state = 139, .external_lex_state = 6}, - [7523] = {.lex_state = 314, .external_lex_state = 6}, - [7524] = {.lex_state = 314, .external_lex_state = 6}, - [7525] = {.lex_state = 314, .external_lex_state = 6}, - [7526] = {.lex_state = 314, .external_lex_state = 6}, - [7527] = {.lex_state = 314, .external_lex_state = 6}, - [7528] = {.lex_state = 314, .external_lex_state = 6}, - [7529] = {.lex_state = 314, .external_lex_state = 6}, - [7530] = {.lex_state = 314, .external_lex_state = 6}, - [7531] = {.lex_state = 139, .external_lex_state = 6}, - [7532] = {.lex_state = 314, .external_lex_state = 6}, - [7533] = {.lex_state = 139, .external_lex_state = 6}, - [7534] = {.lex_state = 314, .external_lex_state = 6}, - [7535] = {.lex_state = 314, .external_lex_state = 6}, - [7536] = {.lex_state = 314, .external_lex_state = 6}, - [7537] = {.lex_state = 314, .external_lex_state = 6}, - [7538] = {.lex_state = 314, .external_lex_state = 6}, - [7539] = {.lex_state = 314, .external_lex_state = 6}, - [7540] = {.lex_state = 314, .external_lex_state = 6}, - [7541] = {.lex_state = 139, .external_lex_state = 6}, - [7542] = {.lex_state = 314, .external_lex_state = 6}, - [7543] = {.lex_state = 314, .external_lex_state = 6}, - [7544] = {.lex_state = 139, .external_lex_state = 6}, - [7545] = {.lex_state = 139, .external_lex_state = 6}, - [7546] = {.lex_state = 50, .external_lex_state = 6}, - [7547] = {.lex_state = 314, .external_lex_state = 6}, - [7548] = {.lex_state = 50, .external_lex_state = 6}, + [7486] = {.lex_state = 139, .external_lex_state = 6}, + [7487] = {.lex_state = 318, .external_lex_state = 6}, + [7488] = {.lex_state = 318, .external_lex_state = 6}, + [7489] = {.lex_state = 318, .external_lex_state = 6}, + [7490] = {.lex_state = 50, .external_lex_state = 6}, + [7491] = {.lex_state = 318, .external_lex_state = 6}, + [7492] = {.lex_state = 318, .external_lex_state = 6}, + [7493] = {.lex_state = 318, .external_lex_state = 6}, + [7494] = {.lex_state = 318, .external_lex_state = 6}, + [7495] = {.lex_state = 318, .external_lex_state = 6}, + [7496] = {.lex_state = 318, .external_lex_state = 6}, + [7497] = {.lex_state = 318, .external_lex_state = 6}, + [7498] = {.lex_state = 318, .external_lex_state = 6}, + [7499] = {.lex_state = 318, .external_lex_state = 6}, + [7500] = {.lex_state = 318, .external_lex_state = 6}, + [7501] = {.lex_state = 318, .external_lex_state = 6}, + [7502] = {.lex_state = 318, .external_lex_state = 6}, + [7503] = {.lex_state = 318, .external_lex_state = 6}, + [7504] = {.lex_state = 139, .external_lex_state = 6}, + [7505] = {.lex_state = 318, .external_lex_state = 6}, + [7506] = {.lex_state = 318, .external_lex_state = 6}, + [7507] = {.lex_state = 139, .external_lex_state = 6}, + [7508] = {.lex_state = 318, .external_lex_state = 6}, + [7509] = {.lex_state = 318, .external_lex_state = 6}, + [7510] = {.lex_state = 318, .external_lex_state = 6}, + [7511] = {.lex_state = 318, .external_lex_state = 6}, + [7512] = {.lex_state = 318, .external_lex_state = 6}, + [7513] = {.lex_state = 318, .external_lex_state = 6}, + [7514] = {.lex_state = 139, .external_lex_state = 6}, + [7515] = {.lex_state = 318, .external_lex_state = 6}, + [7516] = {.lex_state = 318, .external_lex_state = 6}, + [7517] = {.lex_state = 318, .external_lex_state = 6}, + [7518] = {.lex_state = 318, .external_lex_state = 6}, + [7519] = {.lex_state = 318, .external_lex_state = 6}, + [7520] = {.lex_state = 318, .external_lex_state = 6}, + [7521] = {.lex_state = 318, .external_lex_state = 6}, + [7522] = {.lex_state = 50, .external_lex_state = 6}, + [7523] = {.lex_state = 318, .external_lex_state = 6}, + [7524] = {.lex_state = 318, .external_lex_state = 6}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -24146,6 +24049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_metavariable_keyword_token1] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [sym_semgrep_metavariable] = ACTIONS(1), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1), [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1), [sym_quoted_content_i_single] = ACTIONS(1), @@ -24176,2253 +24080,2268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_atom_start] = ACTIONS(1), }, [1] = { - [sym_source] = STATE(7539), - [sym_terminator] = STATE(477), - [sym_expression] = STATE(3340), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_repeat1] = STATE(1390), + [sym_source] = STATE(7464), + [sym_terminator] = STATE(469), + [sym_expression] = STATE(3371), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_repeat1] = STATE(1375), [ts_builtin_sym_end] = ACTIONS(7), [aux_sym_terminator_token1] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [2] = { - [sym_terminator] = STATE(25), - [sym_expression] = STATE(1446), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5012), - [sym_rescue_block] = STATE(5012), - [sym_catch_block] = STATE(5012), - [sym_else_block] = STATE(5012), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4939), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5012), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(121), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [sym_terminator] = STATE(23), + [sym_expression] = STATE(1441), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5006), + [sym_rescue_block] = STATE(5006), + [sym_catch_block] = STATE(5006), + [sym_else_block] = STATE(5006), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4869), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(5006), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [3] = { - [sym_terminator] = STATE(31), - [sym_expression] = STATE(1449), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5054), - [sym_rescue_block] = STATE(5054), - [sym_catch_block] = STATE(5054), - [sym_else_block] = STATE(5054), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4951), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5054), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_terminator] = STATE(37), + [sym_expression] = STATE(1430), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(4982), + [sym_rescue_block] = STATE(4982), + [sym_catch_block] = STATE(4982), + [sym_else_block] = STATE(4982), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4944), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(4982), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(137), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [4] = { - [sym_terminator] = STATE(23), - [sym_expression] = STATE(1450), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5052), - [sym_rescue_block] = STATE(5052), - [sym_catch_block] = STATE(5052), - [sym_else_block] = STATE(5052), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4896), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5052), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_terminator] = STATE(31), + [sym_expression] = STATE(1440), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5013), + [sym_rescue_block] = STATE(5013), + [sym_catch_block] = STATE(5013), + [sym_else_block] = STATE(5013), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4875), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(5013), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(139), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [5] = { - [sym_terminator] = STATE(29), - [sym_expression] = STATE(1455), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5028), - [sym_rescue_block] = STATE(5028), - [sym_catch_block] = STATE(5028), - [sym_else_block] = STATE(5028), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4947), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5028), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_terminator] = STATE(24), + [sym_expression] = STATE(1438), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5033), + [sym_rescue_block] = STATE(5033), + [sym_catch_block] = STATE(5033), + [sym_else_block] = STATE(5033), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4945), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(5033), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(141), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [6] = { - [sym_terminator] = STATE(33), - [sym_expression] = STATE(1460), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5072), - [sym_rescue_block] = STATE(5072), - [sym_catch_block] = STATE(5072), - [sym_else_block] = STATE(5072), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4933), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5072), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_terminator] = STATE(30), + [sym_expression] = STATE(1434), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(4987), + [sym_rescue_block] = STATE(4987), + [sym_catch_block] = STATE(4987), + [sym_else_block] = STATE(4987), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4880), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(4987), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(143), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [7] = { - [sym_terminator] = STATE(37), - [sym_expression] = STATE(1443), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5003), - [sym_rescue_block] = STATE(5003), - [sym_catch_block] = STATE(5003), - [sym_else_block] = STATE(5003), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4927), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5003), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_terminator] = STATE(32), + [sym_expression] = STATE(1426), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(4979), + [sym_rescue_block] = STATE(4979), + [sym_catch_block] = STATE(4979), + [sym_else_block] = STATE(4979), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4941), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(4979), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(145), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [8] = { - [sym_terminator] = STATE(24), - [sym_expression] = STATE(1457), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5051), - [sym_rescue_block] = STATE(5051), - [sym_catch_block] = STATE(5051), - [sym_else_block] = STATE(5051), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4926), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5051), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_terminator] = STATE(36), + [sym_expression] = STATE(1446), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5022), + [sym_rescue_block] = STATE(5022), + [sym_catch_block] = STATE(5022), + [sym_else_block] = STATE(5022), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4921), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(5022), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(147), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [9] = { - [sym_terminator] = STATE(26), - [sym_expression] = STATE(1437), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5066), - [sym_rescue_block] = STATE(5066), - [sym_catch_block] = STATE(5066), - [sym_else_block] = STATE(5066), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4971), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5066), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_terminator] = STATE(25), + [sym_expression] = STATE(1425), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5017), + [sym_rescue_block] = STATE(5017), + [sym_catch_block] = STATE(5017), + [sym_else_block] = STATE(5017), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4899), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(5017), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(149), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [10] = { - [sym_terminator] = STATE(22), - [sym_expression] = STATE(1444), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5053), - [sym_rescue_block] = STATE(5053), - [sym_catch_block] = STATE(5053), - [sym_else_block] = STATE(5053), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4963), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5053), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_terminator] = STATE(27), + [sym_expression] = STATE(1424), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5021), + [sym_rescue_block] = STATE(5021), + [sym_catch_block] = STATE(5021), + [sym_else_block] = STATE(5021), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4926), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(5021), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(151), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [11] = { - [sym_terminator] = STATE(30), - [sym_expression] = STATE(1447), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5037), - [sym_rescue_block] = STATE(5037), - [sym_catch_block] = STATE(5037), - [sym_else_block] = STATE(5037), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4900), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5037), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_terminator] = STATE(29), + [sym_expression] = STATE(1433), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5026), + [sym_rescue_block] = STATE(5026), + [sym_catch_block] = STATE(5026), + [sym_else_block] = STATE(5026), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4872), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(5026), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(153), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [12] = { - [sym_terminator] = STATE(32), - [sym_expression] = STATE(1451), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5048), - [sym_rescue_block] = STATE(5048), - [sym_catch_block] = STATE(5048), - [sym_else_block] = STATE(5048), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4925), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5048), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_terminator] = STATE(22), + [sym_expression] = STATE(1439), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5024), + [sym_rescue_block] = STATE(5024), + [sym_catch_block] = STATE(5024), + [sym_else_block] = STATE(5024), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4900), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(5024), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [13] = { - [sym_terminator] = STATE(34), - [sym_expression] = STATE(1436), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5041), - [sym_rescue_block] = STATE(5041), - [sym_catch_block] = STATE(5041), - [sym_else_block] = STATE(5041), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4954), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5041), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_terminator] = STATE(26), + [sym_expression] = STATE(1429), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5030), + [sym_rescue_block] = STATE(5030), + [sym_catch_block] = STATE(5030), + [sym_else_block] = STATE(5030), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4933), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(5030), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(157), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [14] = { - [sym_terminator] = STATE(36), - [sym_expression] = STATE(1458), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5071), - [sym_rescue_block] = STATE(5071), - [sym_catch_block] = STATE(5071), - [sym_else_block] = STATE(5071), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4894), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5071), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_terminator] = STATE(33), + [sym_expression] = STATE(1419), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(4988), + [sym_rescue_block] = STATE(4988), + [sym_catch_block] = STATE(4988), + [sym_else_block] = STATE(4988), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4912), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(4988), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(159), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [15] = { - [sym_terminator] = STATE(28), - [sym_expression] = STATE(1439), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5059), - [sym_rescue_block] = STATE(5059), - [sym_catch_block] = STATE(5059), - [sym_else_block] = STATE(5059), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4899), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_do_block_repeat1] = STATE(5059), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_terminator] = STATE(35), + [sym_expression] = STATE(1436), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5023), + [sym_rescue_block] = STATE(5023), + [sym_catch_block] = STATE(5023), + [sym_else_block] = STATE(5023), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4927), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_do_block_repeat1] = STATE(5023), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(161), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [16] = { - [sym_expression] = STATE(1809), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1719), - [sym_pair] = STATE(1848), - [sym_keyword] = STATE(1032), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_call_arguments_with_parentheses_immediate] = STATE(1466), - [sym_call_arguments_without_parentheses] = STATE(1596), - [sym_do_block] = STATE(2196), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), + [sym_expression] = STATE(1541), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1528), + [sym_pair] = STATE(1641), + [sym_keyword] = STATE(1040), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_call_arguments_with_parentheses_immediate] = STATE(1450), + [sym_call_arguments_without_parentheses] = STATE(1473), + [sym_do_block] = STATE(1571), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(163), [anon_sym_SEMI] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(167), @@ -26442,427 +26361,577 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(196), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(193), [anon_sym_DOT] = ACTIONS(165), [anon_sym_after] = ACTIONS(165), [anon_sym_catch] = ACTIONS(165), - [anon_sym_do] = ACTIONS(205), + [anon_sym_do] = ACTIONS(165), [anon_sym_else] = ACTIONS(165), [anon_sym_end] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(207), + [anon_sym_fn] = ACTIONS(214), [anon_sym_rescue] = ACTIONS(165), - [anon_sym_LPAREN2] = ACTIONS(209), + [anon_sym_LPAREN2] = ACTIONS(216), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_do] = ACTIONS(217), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_do] = ACTIONS(163), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(231), }, [17] = { - [sym_expression] = STATE(1519), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1612), - [sym_pair] = STATE(1667), - [sym_keyword] = STATE(1028), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_call_arguments_with_parentheses_immediate] = STATE(1465), - [sym_call_arguments_without_parentheses] = STATE(1503), - [sym_do_block] = STATE(1904), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(163), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(223), + [sym_expression] = STATE(1692), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1820), + [sym_pair] = STATE(1763), + [sym_keyword] = STATE(1044), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_call_arguments_with_parentheses_immediate] = STATE(1487), + [sym_call_arguments_without_parentheses] = STATE(1572), + [sym_do_block] = STATE(2137), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(237), [aux_sym_identifier_token1] = ACTIONS(169), [anon_sym_DOT_DOT_DOT] = ACTIONS(171), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_after] = ACTIONS(165), - [anon_sym_catch] = ACTIONS(165), - [anon_sym_do] = ACTIONS(257), - [anon_sym_else] = ACTIONS(165), - [anon_sym_end] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(259), - [anon_sym_rescue] = ACTIONS(165), - [anon_sym_LPAREN2] = ACTIONS(261), - [anon_sym_LBRACK2] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_do] = ACTIONS(267), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_after] = ACTIONS(235), + [anon_sym_catch] = ACTIONS(235), + [anon_sym_do] = ACTIONS(271), + [anon_sym_else] = ACTIONS(235), + [anon_sym_end] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_rescue] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(275), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_do] = ACTIONS(283), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(287), }, [18] = { - [sym_expression] = STATE(1519), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1612), - [sym_pair] = STATE(1667), - [sym_keyword] = STATE(1028), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_call_arguments_with_parentheses_immediate] = STATE(1463), - [sym_call_arguments_without_parentheses] = STATE(1490), - [sym_do_block] = STATE(1526), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), + [sym_expression] = STATE(1692), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1820), + [sym_pair] = STATE(1763), + [sym_keyword] = STATE(1044), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_call_arguments_with_parentheses_immediate] = STATE(1461), + [sym_call_arguments_without_parentheses] = STATE(1601), + [sym_do_block] = STATE(1747), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), [aux_sym_terminator_token1] = ACTIONS(163), [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(237), [aux_sym_identifier_token1] = ACTIONS(169), [anon_sym_DOT_DOT_DOT] = ACTIONS(171), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(245), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(259), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_DOT] = ACTIONS(165), [anon_sym_after] = ACTIONS(165), [anon_sym_catch] = ACTIONS(165), [anon_sym_do] = ACTIONS(165), [anon_sym_else] = ACTIONS(165), [anon_sym_end] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(259), + [anon_sym_fn] = ACTIONS(273), [anon_sym_rescue] = ACTIONS(165), - [anon_sym_LPAREN2] = ACTIONS(261), + [anon_sym_LPAREN2] = ACTIONS(275), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), [sym_newline_before_do] = ACTIONS(163), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(287), }, [19] = { - [sym_expression] = STATE(1809), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1719), - [sym_pair] = STATE(1848), - [sym_keyword] = STATE(1032), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_call_arguments_with_parentheses_immediate] = STATE(1483), - [sym_call_arguments_without_parentheses] = STATE(1640), - [sym_do_block] = STATE(1769), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(275), + [sym_expression] = STATE(1692), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1820), + [sym_pair] = STATE(1763), + [sym_keyword] = STATE(1044), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_call_arguments_with_parentheses_immediate] = STATE(1469), + [sym_call_arguments_without_parentheses] = STATE(1603), + [sym_do_block] = STATE(1750), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(171), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_after] = ACTIONS(235), + [anon_sym_catch] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_else] = ACTIONS(235), + [anon_sym_end] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_rescue] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(275), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_do] = ACTIONS(233), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(287), + }, + [20] = { + [sym_expression] = STATE(1541), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1528), + [sym_pair] = STATE(1641), + [sym_keyword] = STATE(1040), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_call_arguments_with_parentheses_immediate] = STATE(1451), + [sym_call_arguments_without_parentheses] = STATE(1467), + [sym_do_block] = STATE(1968), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(167), [aux_sym_identifier_token1] = ACTIONS(169), [anon_sym_DOT_DOT_DOT] = ACTIONS(171), @@ -26880,135 +26949,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(280), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(283), - [anon_sym_DASH] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_after] = ACTIONS(275), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_do] = ACTIONS(275), - [anon_sym_else] = ACTIONS(275), - [anon_sym_end] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(207), - [anon_sym_rescue] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(209), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_do] = ACTIONS(273), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_after] = ACTIONS(235), + [anon_sym_catch] = ACTIONS(235), + [anon_sym_do] = ACTIONS(295), + [anon_sym_else] = ACTIONS(235), + [anon_sym_end] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(214), + [anon_sym_rescue] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(216), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_do] = ACTIONS(297), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(231), }, - [20] = { - [sym_expression] = STATE(1809), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1719), - [sym_pair] = STATE(1848), - [sym_keyword] = STATE(1032), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_call_arguments_with_parentheses_immediate] = STATE(1484), - [sym_call_arguments_without_parentheses] = STATE(1642), - [sym_do_block] = STATE(1773), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(163), - [anon_sym_SEMI] = ACTIONS(165), + [21] = { + [sym_expression] = STATE(1541), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1528), + [sym_pair] = STATE(1641), + [sym_keyword] = STATE(1040), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_call_arguments_with_parentheses_immediate] = STATE(1449), + [sym_call_arguments_without_parentheses] = STATE(1479), + [sym_do_block] = STATE(1574), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(167), [aux_sym_identifier_token1] = ACTIONS(169), [anon_sym_DOT_DOT_DOT] = ACTIONS(171), @@ -27026,4031 +27096,4342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_after] = ACTIONS(165), - [anon_sym_catch] = ACTIONS(165), - [anon_sym_do] = ACTIONS(165), - [anon_sym_else] = ACTIONS(165), - [anon_sym_end] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(207), - [anon_sym_rescue] = ACTIONS(165), - [anon_sym_LPAREN2] = ACTIONS(209), - [anon_sym_LBRACK2] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_do] = ACTIONS(163), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [21] = { - [sym_expression] = STATE(1519), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1612), - [sym_pair] = STATE(1667), - [sym_keyword] = STATE(1028), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_call_arguments_with_parentheses_immediate] = STATE(1462), - [sym_call_arguments_without_parentheses] = STATE(1486), - [sym_do_block] = STATE(1525), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(171), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_after] = ACTIONS(275), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_do] = ACTIONS(275), - [anon_sym_else] = ACTIONS(275), - [anon_sym_end] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(259), - [anon_sym_rescue] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(261), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_do] = ACTIONS(273), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(271), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_after] = ACTIONS(235), + [anon_sym_catch] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_else] = ACTIONS(235), + [anon_sym_end] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(214), + [anon_sym_rescue] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(216), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_do] = ACTIONS(233), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(231), }, [22] = { - [sym_expression] = STATE(1445), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5056), - [sym_rescue_block] = STATE(5056), - [sym_catch_block] = STATE(5056), - [sym_else_block] = STATE(5056), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4964), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5056), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(295), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [sym_expression] = STATE(1444), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5027), + [sym_rescue_block] = STATE(5027), + [sym_catch_block] = STATE(5027), + [sym_else_block] = STATE(5027), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4901), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(5027), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(299), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [23] = { - [sym_expression] = STATE(1452), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5040), - [sym_rescue_block] = STATE(5040), - [sym_catch_block] = STATE(5040), - [sym_else_block] = STATE(5040), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4907), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5040), + [sym_expression] = STATE(1420), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5007), + [sym_rescue_block] = STATE(5007), + [sym_catch_block] = STATE(5007), + [sym_else_block] = STATE(5007), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4878), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(5007), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(297), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(301), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [24] = { - [sym_expression] = STATE(1459), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5065), - [sym_rescue_block] = STATE(5065), - [sym_catch_block] = STATE(5065), - [sym_else_block] = STATE(5065), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4929), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5065), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(299), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [sym_expression] = STATE(1421), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(4998), + [sym_rescue_block] = STATE(4998), + [sym_catch_block] = STATE(4998), + [sym_else_block] = STATE(4998), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4892), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(4998), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(303), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [25] = { - [sym_expression] = STATE(1442), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5008), - [sym_rescue_block] = STATE(5008), - [sym_catch_block] = STATE(5008), - [sym_else_block] = STATE(5008), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4895), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5008), + [sym_expression] = STATE(1428), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5015), + [sym_rescue_block] = STATE(5015), + [sym_catch_block] = STATE(5015), + [sym_else_block] = STATE(5015), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4937), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(5015), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(301), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [26] = { - [sym_expression] = STATE(1438), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5069), - [sym_rescue_block] = STATE(5069), - [sym_catch_block] = STATE(5069), - [sym_else_block] = STATE(5069), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4973), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5069), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(303), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [sym_expression] = STATE(1432), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(4980), + [sym_rescue_block] = STATE(4980), + [sym_catch_block] = STATE(4980), + [sym_else_block] = STATE(4980), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4910), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(4980), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(307), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [27] = { - [sym_expression] = STATE(1809), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1719), - [sym_pair] = STATE(1848), - [sym_keyword] = STATE(1032), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), + [sym_expression] = STATE(1427), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_call_arguments_with_parentheses_immediate] = STATE(1500), - [sym_call_arguments_without_parentheses] = STATE(1664), - [sym_do_block] = STATE(2195), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(171), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(280), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(283), - [anon_sym_DASH] = ACTIONS(283), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_after] = ACTIONS(275), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_do] = ACTIONS(205), - [anon_sym_else] = ACTIONS(275), - [anon_sym_end] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(207), - [anon_sym_rescue] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(209), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [28] = { - [sym_expression] = STATE(1440), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5011), - [sym_rescue_block] = STATE(5011), - [sym_catch_block] = STATE(5011), - [sym_else_block] = STATE(5011), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4902), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5011), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5042), + [sym_rescue_block] = STATE(5042), + [sym_catch_block] = STATE(5042), + [sym_else_block] = STATE(5042), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4936), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(5042), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(305), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(309), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, + [28] = { + [sym_expression] = STATE(1692), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1820), + [sym_pair] = STATE(1763), + [sym_keyword] = STATE(1044), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_call_arguments_with_parentheses_immediate] = STATE(1471), + [sym_call_arguments_without_parentheses] = STATE(1569), + [sym_do_block] = STATE(2130), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(171), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(292), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), + [anon_sym_SLASH_SLASH] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_after] = ACTIONS(165), + [anon_sym_catch] = ACTIONS(165), + [anon_sym_do] = ACTIONS(271), + [anon_sym_else] = ACTIONS(165), + [anon_sym_end] = ACTIONS(165), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_rescue] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(275), + [anon_sym_LBRACK2] = ACTIONS(163), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(287), + }, [29] = { - [sym_expression] = STATE(1456), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5033), - [sym_rescue_block] = STATE(5033), - [sym_catch_block] = STATE(5033), - [sym_else_block] = STATE(5033), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4949), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5033), + [sym_expression] = STATE(1435), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5032), + [sym_rescue_block] = STATE(5032), + [sym_catch_block] = STATE(5032), + [sym_else_block] = STATE(5032), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4874), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(5032), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(311), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [30] = { - [sym_expression] = STATE(1448), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5055), - [sym_rescue_block] = STATE(5055), - [sym_catch_block] = STATE(5055), - [sym_else_block] = STATE(5055), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4908), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5055), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(309), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [sym_expression] = STATE(1442), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5012), + [sym_rescue_block] = STATE(5012), + [sym_catch_block] = STATE(5012), + [sym_else_block] = STATE(5012), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4884), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(5012), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [31] = { - [sym_expression] = STATE(1435), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5038), - [sym_rescue_block] = STATE(5038), - [sym_catch_block] = STATE(5038), - [sym_else_block] = STATE(5038), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4945), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5038), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(311), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [sym_expression] = STATE(1445), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(4994), + [sym_rescue_block] = STATE(4994), + [sym_catch_block] = STATE(4994), + [sym_else_block] = STATE(4994), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4891), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(4994), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [32] = { - [sym_expression] = STATE(1453), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5057), - [sym_rescue_block] = STATE(5057), - [sym_catch_block] = STATE(5057), - [sym_else_block] = STATE(5057), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4928), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5057), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [sym_expression] = STATE(1431), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5037), + [sym_rescue_block] = STATE(5037), + [sym_catch_block] = STATE(5037), + [sym_else_block] = STATE(5037), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4946), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(5037), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [33] = { - [sym_expression] = STATE(1454), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5021), - [sym_rescue_block] = STATE(5021), - [sym_catch_block] = STATE(5021), - [sym_else_block] = STATE(5021), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4918), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5021), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [sym_expression] = STATE(1423), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(4996), + [sym_rescue_block] = STATE(4996), + [sym_catch_block] = STATE(4996), + [sym_else_block] = STATE(4996), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4913), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(4996), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(319), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [34] = { - [sym_expression] = STATE(1441), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5045), - [sym_rescue_block] = STATE(5045), - [sym_catch_block] = STATE(5045), - [sym_else_block] = STATE(5045), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4956), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5045), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(317), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), - }, - [35] = { - [sym_expression] = STATE(1519), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1612), - [sym_pair] = STATE(1667), - [sym_keyword] = STATE(1028), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_call_arguments_with_parentheses_immediate] = STATE(1464), - [sym_call_arguments_without_parentheses] = STATE(1497), - [sym_do_block] = STATE(1901), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(223), + [sym_expression] = STATE(1541), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1528), + [sym_pair] = STATE(1641), + [sym_keyword] = STATE(1040), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_call_arguments_with_parentheses_immediate] = STATE(1448), + [sym_call_arguments_without_parentheses] = STATE(1493), + [sym_do_block] = STATE(1900), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(167), [aux_sym_identifier_token1] = ACTIONS(169), [anon_sym_DOT_DOT_DOT] = ACTIONS(171), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(292), - [anon_sym_DASH] = ACTIONS(292), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_after] = ACTIONS(275), - [anon_sym_catch] = ACTIONS(275), - [anon_sym_do] = ACTIONS(257), - [anon_sym_else] = ACTIONS(275), - [anon_sym_end] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(259), - [anon_sym_rescue] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(261), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(271), - }, - [36] = { - [sym_expression] = STATE(1434), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5068), - [sym_rescue_block] = STATE(5068), - [sym_catch_block] = STATE(5068), - [sym_else_block] = STATE(5068), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4898), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5068), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(319), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_COMMA] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(207), + [anon_sym_DASH] = ACTIONS(207), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), + [anon_sym_SLASH_SLASH] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(193), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_after] = ACTIONS(165), + [anon_sym_catch] = ACTIONS(165), + [anon_sym_do] = ACTIONS(295), + [anon_sym_else] = ACTIONS(165), + [anon_sym_end] = ACTIONS(165), + [anon_sym_fn] = ACTIONS(214), + [anon_sym_rescue] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(216), + [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(231), }, - [37] = { - [sym_expression] = STATE(1433), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_after_block] = STATE(5073), - [sym_rescue_block] = STATE(5073), - [sym_catch_block] = STATE(5073), - [sym_else_block] = STATE(5073), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(4948), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_do_block_repeat1] = STATE(5073), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [35] = { + [sym_expression] = STATE(1443), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5025), + [sym_rescue_block] = STATE(5025), + [sym_catch_block] = STATE(5025), + [sym_else_block] = STATE(5025), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4928), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(5025), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(321), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, - [38] = { - [sym_terminator] = STATE(71), - [sym_expression] = STATE(1506), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5095), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(323), - [anon_sym_catch] = ACTIONS(323), - [anon_sym_else] = ACTIONS(323), + [36] = { + [sym_expression] = STATE(1422), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(5036), + [sym_rescue_block] = STATE(5036), + [sym_catch_block] = STATE(5036), + [sym_else_block] = STATE(5036), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4934), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(5036), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(323), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(323), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, - [39] = { - [sym_terminator] = STATE(72), - [sym_expression] = STATE(1505), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5100), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(325), - [anon_sym_catch] = ACTIONS(325), - [anon_sym_else] = ACTIONS(325), + [37] = { + [sym_expression] = STATE(1437), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_after_block] = STATE(4984), + [sym_rescue_block] = STATE(4984), + [sym_catch_block] = STATE(4984), + [sym_else_block] = STATE(4984), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(4947), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_do_block_repeat1] = STATE(4984), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(325), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(325), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, - [40] = { + [38] = { [sym_terminator] = STATE(73), - [sym_expression] = STATE(1477), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5099), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), + [sym_expression] = STATE(1490), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5065), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), [anon_sym_after] = ACTIONS(327), [anon_sym_catch] = ACTIONS(327), [anon_sym_else] = ACTIONS(327), [anon_sym_end] = ACTIONS(327), - [anon_sym_fn] = ACTIONS(123), + [anon_sym_fn] = ACTIONS(121), [anon_sym_rescue] = ACTIONS(327), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, - [41] = { - [sym_terminator] = STATE(79), - [sym_expression] = STATE(1495), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5092), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1369), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(69), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), + [39] = { + [sym_terminator] = STATE(76), + [sym_expression] = STATE(1476), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5061), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), [anon_sym_after] = ACTIONS(329), [anon_sym_catch] = ACTIONS(329), [anon_sym_else] = ACTIONS(329), [anon_sym_end] = ACTIONS(329), - [anon_sym_fn] = ACTIONS(123), + [anon_sym_fn] = ACTIONS(121), [anon_sym_rescue] = ACTIONS(329), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), + }, + [40] = { + [sym_terminator] = STATE(72), + [sym_expression] = STATE(1472), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5059), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(331), + [anon_sym_catch] = ACTIONS(331), + [anon_sym_else] = ACTIONS(331), + [anon_sym_end] = ACTIONS(331), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(331), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), + }, + [41] = { + [sym_terminator] = STATE(77), + [sym_expression] = STATE(1480), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5053), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1355), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(333), + [anon_sym_catch] = ACTIONS(333), + [anon_sym_else] = ACTIONS(333), + [anon_sym_end] = ACTIONS(333), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(333), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [42] = { - [sym_expression] = STATE(2462), - [sym_block] = STATE(2332), + [sym_expression] = STATE(2402), + [sym_block] = STATE(2444), [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2463), - [sym_pair] = STATE(2441), - [sym_keyword] = STATE(840), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2408), + [sym_pair] = STATE(2367), + [sym_keyword] = STATE(941), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_call_arguments_with_parentheses_immediate] = STATE(1958), + [sym_call_arguments_without_parentheses] = STATE(2190), + [sym_do_block] = STATE(3483), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [anon_sym_RPAREN] = ACTIONS(235), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_RBRACK] = ACTIONS(235), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(373), + [anon_sym_fn] = ACTIONS(375), + [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_do] = ACTIONS(387), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(391), + }, + [43] = { + [sym_expression] = STATE(2402), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2408), + [sym_pair] = STATE(2367), + [sym_keyword] = STATE(941), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_call_arguments_with_parentheses_immediate] = STATE(1974), - [sym_call_arguments_without_parentheses] = STATE(2225), - [sym_do_block] = STATE(2979), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_call_arguments_with_parentheses_immediate] = STATE(1996), + [sym_call_arguments_without_parentheses] = STATE(2275), + [sym_do_block] = STATE(2427), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), [anon_sym_RPAREN] = ACTIONS(165), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), [anon_sym_RBRACE] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(355), + [anon_sym_LBRACK] = ACTIONS(359), [anon_sym_RBRACK] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(361), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_do] = ACTIONS(369), - [anon_sym_fn] = ACTIONS(371), - [anon_sym_LPAREN2] = ACTIONS(373), + [anon_sym_do] = ACTIONS(165), + [anon_sym_fn] = ACTIONS(375), + [anon_sym_LPAREN2] = ACTIONS(377), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_do] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_do] = ACTIONS(163), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(385), - }, - [43] = { - [sym_expression] = STATE(2462), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2463), - [sym_pair] = STATE(2441), - [sym_keyword] = STATE(840), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_call_arguments_with_parentheses_immediate] = STATE(1893), - [sym_call_arguments_without_parentheses] = STATE(2310), - [sym_do_block] = STATE(2485), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_RPAREN] = ACTIONS(275), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_RBRACE] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_RBRACK] = ACTIONS(275), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(371), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_do] = ACTIONS(273), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(391), }, [44] = { - [sym_expression] = STATE(2462), - [sym_block] = STATE(2332), + [sym_expression] = STATE(2402), + [sym_block] = STATE(2444), [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2463), - [sym_pair] = STATE(2441), - [sym_keyword] = STATE(840), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2408), + [sym_pair] = STATE(2367), + [sym_keyword] = STATE(941), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_call_arguments_with_parentheses_immediate] = STATE(1894), - [sym_call_arguments_without_parentheses] = STATE(2189), - [sym_do_block] = STATE(2363), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_call_arguments_with_parentheses_immediate] = STATE(1997), + [sym_call_arguments_without_parentheses] = STATE(2277), + [sym_do_block] = STATE(2431), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [anon_sym_RPAREN] = ACTIONS(235), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_RBRACK] = ACTIONS(235), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(375), + [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_do] = ACTIONS(233), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(391), + }, + [45] = { + [sym_expression] = STATE(2815), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1820), + [sym_pair] = STATE(2898), + [sym_keyword] = STATE(989), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_call_arguments_with_parentheses_immediate] = STATE(1461), + [sym_call_arguments_without_parentheses] = STATE(1601), + [sym_do_block] = STATE(1747), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(237), [anon_sym_RPAREN] = ACTIONS(165), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_RBRACE] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_RBRACK] = ACTIONS(165), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(403), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_DOT] = ACTIONS(165), [anon_sym_do] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(371), - [anon_sym_LPAREN2] = ACTIONS(373), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_LPAREN2] = ACTIONS(275), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), [sym_newline_before_do] = ACTIONS(163), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(287), }, - [45] = { - [sym_expression] = STATE(2829), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1719), - [sym_pair] = STATE(2913), - [sym_keyword] = STATE(933), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_call_arguments_with_parentheses_immediate] = STATE(1484), - [sym_call_arguments_without_parentheses] = STATE(1642), - [sym_do_block] = STATE(1773), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), + [46] = { + [sym_expression] = STATE(2887), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(2616), + [sym_quoted_i_single] = STATE(2617), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_keywords] = STATE(3374), + [sym_pair] = STATE(2893), + [sym_keyword] = STATE(911), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_call_arguments_with_parentheses_immediate] = STATE(2441), + [sym_call_arguments_without_parentheses] = STATE(2890), + [sym_do_block] = STATE(4447), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3260), + [sym_semgrep_ellipsis] = STATE(3378), + [sym_deep_ellipsis] = STATE(3257), + [ts_builtin_sym_end] = ACTIONS(233), + [aux_sym_terminator_token1] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(422), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(456), + [anon_sym_fn] = ACTIONS(458), + [anon_sym_LPAREN2] = ACTIONS(460), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(464), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(466), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_do] = ACTIONS(470), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(474), + }, + [47] = { + [sym_expression] = STATE(2824), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1820), + [sym_pair] = STATE(2954), + [sym_keyword] = STATE(1029), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_call_arguments_with_parentheses_immediate] = STATE(1461), + [sym_call_arguments_without_parentheses] = STATE(1601), + [sym_do_block] = STATE(1747), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), [aux_sym_terminator_token1] = ACTIONS(163), [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(167), - [anon_sym_RPAREN] = ACTIONS(165), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(480), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_DOT] = ACTIONS(165), [anon_sym_do] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), + [anon_sym_end] = ACTIONS(165), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_LPAREN2] = ACTIONS(275), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(491), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), [sym_newline_before_do] = ACTIONS(163), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [46] = { - [sym_expression] = STATE(2829), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1719), - [sym_pair] = STATE(2913), - [sym_keyword] = STATE(933), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_call_arguments_with_parentheses_immediate] = STATE(1483), - [sym_call_arguments_without_parentheses] = STATE(1640), - [sym_do_block] = STATE(1769), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(167), - [anon_sym_RPAREN] = ACTIONS(275), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(280), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_do] = ACTIONS(273), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(287), }, - [47] = { - [sym_expression] = STATE(2843), - [sym_block] = STATE(1730), + [48] = { + [sym_expression] = STATE(2824), + [sym_block] = STATE(1705), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1719), - [sym_pair] = STATE(2974), - [sym_keyword] = STATE(997), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1820), + [sym_pair] = STATE(2954), + [sym_keyword] = STATE(1029), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_call_arguments_with_parentheses_immediate] = STATE(1483), - [sym_call_arguments_without_parentheses] = STATE(1640), - [sym_do_block] = STATE(1769), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(414), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(280), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(275), - [anon_sym_end] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(427), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_do] = ACTIONS(273), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_call_arguments_with_parentheses_immediate] = STATE(1469), + [sym_call_arguments_without_parentheses] = STATE(1603), + [sym_do_block] = STATE(1750), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_end] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_LPAREN2] = ACTIONS(275), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(491), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_do] = ACTIONS(233), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(287), }, - [48] = { - [sym_expression] = STATE(2843), - [sym_block] = STATE(1730), + [49] = { + [sym_expression] = STATE(2824), + [sym_block] = STATE(1705), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1719), - [sym_pair] = STATE(2974), - [sym_keyword] = STATE(997), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1820), + [sym_pair] = STATE(2954), + [sym_keyword] = STATE(1029), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_call_arguments_with_parentheses_immediate] = STATE(1484), - [sym_call_arguments_without_parentheses] = STATE(1642), - [sym_do_block] = STATE(1773), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(163), - [anon_sym_SEMI] = ACTIONS(165), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_call_arguments_with_parentheses_immediate] = STATE(1487), + [sym_call_arguments_without_parentheses] = STATE(1572), + [sym_do_block] = STATE(2137), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(271), + [anon_sym_end] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_LPAREN2] = ACTIONS(275), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(491), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_do] = ACTIONS(283), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(287), + }, + [50] = { + [sym_expression] = STATE(2815), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1820), + [sym_pair] = STATE(2898), + [sym_keyword] = STATE(989), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_call_arguments_with_parentheses_immediate] = STATE(1469), + [sym_call_arguments_without_parentheses] = STATE(1603), + [sym_do_block] = STATE(1750), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_RPAREN] = ACTIONS(235), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_LPAREN2] = ACTIONS(275), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_do] = ACTIONS(233), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(287), + }, + [51] = { + [sym_expression] = STATE(2325), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1528), + [sym_pair] = STATE(2453), + [sym_keyword] = STATE(929), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_call_arguments_with_parentheses_immediate] = STATE(1451), + [sym_call_arguments_without_parentheses] = STATE(1467), + [sym_do_block] = STATE(1968), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(414), + [anon_sym_RPAREN] = ACTIONS(235), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -31065,1129 +31446,564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_do] = ACTIONS(165), - [anon_sym_end] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [anon_sym_LBRACK2] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(427), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_do] = ACTIONS(163), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [49] = { - [sym_expression] = STATE(2424), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1612), - [sym_pair] = STATE(2382), - [sym_keyword] = STATE(816), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_call_arguments_with_parentheses_immediate] = STATE(1465), - [sym_call_arguments_without_parentheses] = STATE(1503), - [sym_do_block] = STATE(1904), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(163), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(165), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(165), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_do] = ACTIONS(257), - [anon_sym_fn] = ACTIONS(259), - [anon_sym_LPAREN2] = ACTIONS(261), - [anon_sym_LBRACK2] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_do] = ACTIONS(267), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(271), - }, - [50] = { - [sym_expression] = STATE(2462), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2463), - [sym_pair] = STATE(2441), - [sym_keyword] = STATE(840), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_call_arguments_with_parentheses_immediate] = STATE(1938), - [sym_call_arguments_without_parentheses] = STATE(2200), - [sym_do_block] = STATE(3481), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_RPAREN] = ACTIONS(275), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_RBRACE] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_RBRACK] = ACTIONS(275), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(369), - [anon_sym_fn] = ACTIONS(371), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(295), + [anon_sym_fn] = ACTIONS(214), + [anon_sym_LPAREN2] = ACTIONS(216), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_do] = ACTIONS(297), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(231), }, - [51] = { - [sym_expression] = STATE(2902), - [sym_block] = STATE(3138), + [52] = { + [sym_expression] = STATE(2887), + [sym_block] = STATE(3257), [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(2628), - [sym_quoted_i_single] = STATE(2629), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_keywords] = STATE(3344), - [sym_pair] = STATE(2908), - [sym_keyword] = STATE(797), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_call_arguments_with_parentheses_immediate] = STATE(2470), - [sym_call_arguments_without_parentheses] = STATE(2832), - [sym_do_block] = STATE(3207), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3155), - [sym_semgrep_ellipsis] = STATE(3354), - [sym_deep_ellipsis] = STATE(3138), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(2616), + [sym_quoted_i_single] = STATE(2617), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_keywords] = STATE(3374), + [sym_pair] = STATE(2893), + [sym_keyword] = STATE(911), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_call_arguments_with_parentheses_immediate] = STATE(2403), + [sym_call_arguments_without_parentheses] = STATE(2816), + [sym_do_block] = STATE(3294), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3260), + [sym_semgrep_ellipsis] = STATE(3378), + [sym_deep_ellipsis] = STATE(3257), [ts_builtin_sym_end] = ACTIONS(163), [aux_sym_terminator_token1] = ACTIONS(163), [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(445), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(422), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(444), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_DOT] = ACTIONS(165), [anon_sym_do] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(479), - [anon_sym_LPAREN2] = ACTIONS(481), + [anon_sym_fn] = ACTIONS(458), + [anon_sym_LPAREN2] = ACTIONS(460), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(485), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(464), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(466), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), [sym_newline_before_do] = ACTIONS(163), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(491), - }, - [52] = { - [sym_expression] = STATE(2902), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(2628), - [sym_quoted_i_single] = STATE(2629), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_keywords] = STATE(3344), - [sym_pair] = STATE(2908), - [sym_keyword] = STATE(797), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_call_arguments_with_parentheses_immediate] = STATE(2469), - [sym_call_arguments_without_parentheses] = STATE(2830), - [sym_do_block] = STATE(3204), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3155), - [sym_semgrep_ellipsis] = STATE(3354), - [sym_deep_ellipsis] = STATE(3138), - [ts_builtin_sym_end] = ACTIONS(273), - [aux_sym_terminator_token1] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(445), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(479), - [anon_sym_LPAREN2] = ACTIONS(481), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(485), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_do] = ACTIONS(273), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(474), }, [53] = { - [sym_expression] = STATE(2424), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1612), - [sym_pair] = STATE(2382), - [sym_keyword] = STATE(816), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_call_arguments_with_parentheses_immediate] = STATE(1462), - [sym_call_arguments_without_parentheses] = STATE(1486), - [sym_do_block] = STATE(1525), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(275), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(499), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(259), - [anon_sym_LPAREN2] = ACTIONS(261), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_do] = ACTIONS(273), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(271), - }, - [54] = { - [sym_expression] = STATE(2424), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1612), - [sym_pair] = STATE(2382), - [sym_keyword] = STATE(816), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_call_arguments_with_parentheses_immediate] = STATE(1463), - [sym_call_arguments_without_parentheses] = STATE(1490), - [sym_do_block] = STATE(1526), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(163), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(223), + [sym_expression] = STATE(2402), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2408), + [sym_pair] = STATE(2367), + [sym_keyword] = STATE(941), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_call_arguments_with_parentheses_immediate] = STATE(1954), + [sym_call_arguments_without_parentheses] = STATE(2180), + [sym_do_block] = STATE(3481), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), [anon_sym_RPAREN] = ACTIONS(165), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(431), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(165), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_RBRACK] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(361), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_do] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(259), - [anon_sym_LPAREN2] = ACTIONS(261), + [anon_sym_do] = ACTIONS(373), + [anon_sym_fn] = ACTIONS(375), + [anon_sym_LPAREN2] = ACTIONS(377), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_do] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(391), }, - [55] = { - [sym_expression] = STATE(2902), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(2628), - [sym_quoted_i_single] = STATE(2629), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_keywords] = STATE(3344), - [sym_pair] = STATE(2908), - [sym_keyword] = STATE(797), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_call_arguments_with_parentheses_immediate] = STATE(2443), - [sym_call_arguments_without_parentheses] = STATE(2905), - [sym_do_block] = STATE(4263), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3155), - [sym_semgrep_ellipsis] = STATE(3354), - [sym_deep_ellipsis] = STATE(3138), - [ts_builtin_sym_end] = ACTIONS(163), - [aux_sym_terminator_token1] = ACTIONS(163), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(445), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_do] = ACTIONS(502), - [anon_sym_fn] = ACTIONS(479), - [anon_sym_LPAREN2] = ACTIONS(481), - [anon_sym_LBRACK2] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(485), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_do] = ACTIONS(504), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(491), + [54] = { + [sym_expression] = STATE(2815), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1820), + [sym_pair] = STATE(2898), + [sym_keyword] = STATE(989), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_call_arguments_with_parentheses_immediate] = STATE(1487), + [sym_call_arguments_without_parentheses] = STATE(1572), + [sym_do_block] = STATE(2137), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_RPAREN] = ACTIONS(235), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_LPAREN2] = ACTIONS(275), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_do] = ACTIONS(283), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(287), }, - [56] = { - [sym_expression] = STATE(2829), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1719), - [sym_pair] = STATE(2913), - [sym_keyword] = STATE(933), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_call_arguments_with_parentheses_immediate] = STATE(1466), - [sym_call_arguments_without_parentheses] = STATE(1596), - [sym_do_block] = STATE(2196), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), + [55] = { + [sym_expression] = STATE(2325), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1528), + [sym_pair] = STATE(2453), + [sym_keyword] = STATE(929), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_call_arguments_with_parentheses_immediate] = STATE(1450), + [sym_call_arguments_without_parentheses] = STATE(1473), + [sym_do_block] = STATE(1571), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(163), [anon_sym_SEMI] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(167), [anon_sym_RPAREN] = ACTIONS(165), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -32202,133 +32018,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(495), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(511), + [anon_sym_DASH] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(193), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_do] = ACTIONS(205), - [anon_sym_fn] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), + [anon_sym_do] = ACTIONS(165), + [anon_sym_fn] = ACTIONS(214), + [anon_sym_LPAREN2] = ACTIONS(216), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_do] = ACTIONS(217), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_do] = ACTIONS(163), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(231), }, - [57] = { - [sym_expression] = STATE(2843), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1719), - [sym_pair] = STATE(2974), - [sym_keyword] = STATE(997), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_call_arguments_with_parentheses_immediate] = STATE(1466), - [sym_call_arguments_without_parentheses] = STATE(1596), - [sym_do_block] = STATE(2196), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(163), - [anon_sym_SEMI] = ACTIONS(165), + [56] = { + [sym_expression] = STATE(2325), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1528), + [sym_pair] = STATE(2453), + [sym_keyword] = STATE(929), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_call_arguments_with_parentheses_immediate] = STATE(1449), + [sym_call_arguments_without_parentheses] = STATE(1479), + [sym_do_block] = STATE(1574), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(235), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(414), + [anon_sym_RPAREN] = ACTIONS(235), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -32343,417 +32161,1130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), - [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), - [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(165), - [anon_sym_do] = ACTIONS(205), - [anon_sym_end] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [anon_sym_LBRACK2] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(427), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_do] = ACTIONS(217), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(214), + [anon_sym_LPAREN2] = ACTIONS(216), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_do] = ACTIONS(233), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(231), + }, + [57] = { + [sym_expression] = STATE(2887), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(2616), + [sym_quoted_i_single] = STATE(2617), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_keywords] = STATE(3374), + [sym_pair] = STATE(2893), + [sym_keyword] = STATE(911), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_call_arguments_with_parentheses_immediate] = STATE(2406), + [sym_call_arguments_without_parentheses] = STATE(2818), + [sym_do_block] = STATE(3296), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3260), + [sym_semgrep_ellipsis] = STATE(3378), + [sym_deep_ellipsis] = STATE(3257), + [ts_builtin_sym_end] = ACTIONS(233), + [aux_sym_terminator_token1] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(235), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(422), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(458), + [anon_sym_LPAREN2] = ACTIONS(460), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(464), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(466), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_do] = ACTIONS(233), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(474), }, [58] = { - [sym_expression] = STATE(3162), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(3341), - [sym_quoted_i_single] = STATE(3342), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_keywords] = STATE(3693), - [sym_pair] = STATE(3333), - [sym_keyword] = STATE(865), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_call_arguments_with_parentheses_immediate] = STATE(2626), - [sym_call_arguments_without_parentheses] = STATE(3168), - [sym_do_block] = STATE(4537), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3725), - [sym_semgrep_ellipsis] = STATE(4042), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(510), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(532), + [sym_expression] = STATE(2887), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(2616), + [sym_quoted_i_single] = STATE(2617), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_keywords] = STATE(3374), + [sym_pair] = STATE(2893), + [sym_keyword] = STATE(911), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_call_arguments_with_parentheses_immediate] = STATE(2358), + [sym_call_arguments_without_parentheses] = STATE(2888), + [sym_do_block] = STATE(4439), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3260), + [sym_semgrep_ellipsis] = STATE(3378), + [sym_deep_ellipsis] = STATE(3257), + [ts_builtin_sym_end] = ACTIONS(163), + [aux_sym_terminator_token1] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(422), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(444), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_do] = ACTIONS(544), - [anon_sym_fn] = ACTIONS(546), - [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_do] = ACTIONS(456), + [anon_sym_fn] = ACTIONS(458), + [anon_sym_LPAREN2] = ACTIONS(460), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(552), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_do] = ACTIONS(556), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(464), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(466), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(474), }, [59] = { - [sym_expression] = STATE(2632), - [sym_block] = STATE(3148), + [sym_expression] = STATE(3201), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3462), + [sym_quoted_i_single] = STATE(3463), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_keywords] = STATE(3583), + [sym_pair] = STATE(3274), + [sym_keyword] = STATE(974), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_call_arguments_with_parentheses_immediate] = STATE(2559), + [sym_call_arguments_without_parentheses] = STATE(3389), + [sym_do_block] = STATE(3952), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3802), + [sym_semgrep_ellipsis] = STATE(3677), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(518), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(558), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(560), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(235), + [sym_newline_before_do] = ACTIONS(233), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(566), + }, + [60] = { + [sym_expression] = STATE(2976), + [sym_block] = STATE(3797), [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(2911), - [sym_quoted_i_single] = STATE(2912), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [sym_string] = STATE(3148), - [sym_charlist] = STATE(3148), - [sym_sigil] = STATE(3148), - [sym_keywords] = STATE(3347), - [sym_pair] = STATE(2760), - [sym_keyword] = STATE(888), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3148), - [sym_tuple] = STATE(3148), - [sym_bitstring] = STATE(3148), - [sym_map] = STATE(3148), - [sym_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3372), + [sym_quoted_i_single] = STATE(3373), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_keywords] = STATE(3849), + [sym_pair] = STATE(3059), + [sym_keyword] = STATE(947), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_call_arguments_with_parentheses_immediate] = STATE(2614), + [sym_call_arguments_without_parentheses] = STATE(2984), + [sym_do_block] = STATE(4671), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3816), + [sym_semgrep_ellipsis] = STATE(3630), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(606), + [anon_sym_fn] = ACTIONS(608), + [anon_sym_LPAREN2] = ACTIONS(610), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(614), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(616), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_do] = ACTIONS(620), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(624), + }, + [61] = { + [sym_expression] = STATE(3201), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3462), + [sym_quoted_i_single] = STATE(3463), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_keywords] = STATE(3583), + [sym_pair] = STATE(3274), + [sym_keyword] = STATE(974), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_call_arguments_with_parentheses_immediate] = STATE(2750), + [sym_call_arguments_without_parentheses] = STATE(3205), + [sym_do_block] = STATE(4615), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3802), + [sym_semgrep_ellipsis] = STATE(3677), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(518), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(626), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(558), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(560), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(235), + [sym_newline_before_do] = ACTIONS(628), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(566), + }, + [62] = { + [sym_expression] = STATE(2669), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(2896), + [sym_quoted_i_single] = STATE(2897), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_keywords] = STATE(3120), + [sym_pair] = STATE(2746), + [sym_keyword] = STATE(965), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_call_arguments_with_parentheses_immediate] = STATE(2398), + [sym_call_arguments_without_parentheses] = STATE(2672), + [sym_do_block] = STATE(4196), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3163), + [sym_semgrep_ellipsis] = STATE(3200), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(235), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(664), + [anon_sym_fn] = ACTIONS(666), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(672), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_do] = ACTIONS(676), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(680), + }, + [63] = { + [sym_expression] = STATE(2815), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1820), + [sym_pair] = STATE(2898), + [sym_keyword] = STATE(989), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_call_arguments_with_parentheses_immediate] = STATE(2432), - [sym_call_arguments_without_parentheses] = STATE(2637), - [sym_do_block] = STATE(4442), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3271), - [sym_semgrep_ellipsis] = STATE(3076), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), + [sym_double_call] = STATE(1718), + [sym_call_arguments_with_parentheses_immediate] = STATE(1471), + [sym_call_arguments_without_parentheses] = STATE(1569), + [sym_do_block] = STATE(2130), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(237), [anon_sym_RPAREN] = ACTIONS(165), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(584), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(403), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_do] = ACTIONS(596), - [anon_sym_fn] = ACTIONS(598), - [anon_sym_LPAREN2] = ACTIONS(600), + [anon_sym_do] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_LPAREN2] = ACTIONS(275), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_do] = ACTIONS(606), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(287), }, - [60] = { - [sym_expression] = STATE(2829), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1719), - [sym_pair] = STATE(2913), - [sym_keyword] = STATE(933), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_call_arguments_with_parentheses_immediate] = STATE(1500), - [sym_call_arguments_without_parentheses] = STATE(1664), - [sym_do_block] = STATE(2195), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(275), + [64] = { + [sym_expression] = STATE(2325), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1528), + [sym_pair] = STATE(2453), + [sym_keyword] = STATE(929), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_call_arguments_with_parentheses_immediate] = STATE(1448), + [sym_call_arguments_without_parentheses] = STATE(1493), + [sym_do_block] = STATE(1900), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(165), [anon_sym_LPAREN] = ACTIONS(167), - [anon_sym_RPAREN] = ACTIONS(275), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(165), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -32768,33599 +33299,31852 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(280), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(205), - [anon_sym_fn] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [61] = { - [sym_expression] = STATE(3077), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3462), - [sym_quoted_i_single] = STATE(3463), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_keywords] = STATE(3927), - [sym_pair] = STATE(3175), - [sym_keyword] = STATE(911), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_call_arguments_with_parentheses_immediate] = STATE(2762), - [sym_call_arguments_without_parentheses] = STATE(3084), - [sym_do_block] = STATE(4550), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3984), - [sym_semgrep_ellipsis] = STATE(3556), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(495), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [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(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(202), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(511), + [anon_sym_DASH] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(193), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_do] = ACTIONS(650), - [anon_sym_fn] = ACTIONS(652), - [anon_sym_LPAREN2] = ACTIONS(654), + [anon_sym_do] = ACTIONS(295), + [anon_sym_fn] = ACTIONS(214), + [anon_sym_LPAREN2] = ACTIONS(216), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(658), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(165), - [sym_newline_before_do] = ACTIONS(662), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(666), - }, - [62] = { - [sym_expression] = STATE(2424), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1612), - [sym_pair] = STATE(2382), - [sym_keyword] = STATE(816), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_call_arguments_with_parentheses_immediate] = STATE(1464), - [sym_call_arguments_without_parentheses] = STATE(1497), - [sym_do_block] = STATE(1901), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(275), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(289), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(499), - [anon_sym_DASH] = ACTIONS(499), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(257), - [anon_sym_fn] = ACTIONS(259), - [anon_sym_LPAREN2] = ACTIONS(261), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(271), - }, - [63] = { - [sym_expression] = STATE(2902), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(2628), - [sym_quoted_i_single] = STATE(2629), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_keywords] = STATE(3344), - [sym_pair] = STATE(2908), - [sym_keyword] = STATE(797), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_call_arguments_with_parentheses_immediate] = STATE(2317), - [sym_call_arguments_without_parentheses] = STATE(2903), - [sym_do_block] = STATE(4259), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3155), - [sym_semgrep_ellipsis] = STATE(3354), - [sym_deep_ellipsis] = STATE(3138), - [ts_builtin_sym_end] = ACTIONS(273), - [aux_sym_terminator_token1] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(445), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(502), - [anon_sym_fn] = ACTIONS(479), - [anon_sym_LPAREN2] = ACTIONS(481), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(485), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(231), }, - [64] = { - [sym_expression] = STATE(3162), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(3341), - [sym_quoted_i_single] = STATE(3342), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_keywords] = STATE(3693), - [sym_pair] = STATE(3333), - [sym_keyword] = STATE(865), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_call_arguments_with_parentheses_immediate] = STATE(2530), - [sym_call_arguments_without_parentheses] = STATE(3407), - [sym_do_block] = STATE(3572), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3725), - [sym_semgrep_ellipsis] = STATE(4042), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(510), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(532), + [65] = { + [sym_expression] = STATE(2976), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3372), + [sym_quoted_i_single] = STATE(3373), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_keywords] = STATE(3849), + [sym_pair] = STATE(3059), + [sym_keyword] = STATE(947), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_call_arguments_with_parentheses_immediate] = STATE(2513), + [sym_call_arguments_without_parentheses] = STATE(2957), + [sym_do_block] = STATE(3731), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3816), + [sym_semgrep_ellipsis] = STATE(3630), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(594), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(534), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(596), [anon_sym_GT_GT] = ACTIONS(165), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_DOT] = ACTIONS(165), [anon_sym_do] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(546), - [anon_sym_LPAREN2] = ACTIONS(548), + [anon_sym_fn] = ACTIONS(608), + [anon_sym_LPAREN2] = ACTIONS(610), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(552), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(614), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(616), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), [sym_newline_before_do] = ACTIONS(163), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(560), - }, - [65] = { - [sym_expression] = STATE(2632), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(2911), - [sym_quoted_i_single] = STATE(2912), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [sym_string] = STATE(3148), - [sym_charlist] = STATE(3148), - [sym_sigil] = STATE(3148), - [sym_keywords] = STATE(3347), - [sym_pair] = STATE(2760), - [sym_keyword] = STATE(888), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3148), - [sym_tuple] = STATE(3148), - [sym_bitstring] = STATE(3148), - [sym_map] = STATE(3148), - [sym_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_call_arguments_with_parentheses_immediate] = STATE(2403), - [sym_call_arguments_without_parentheses] = STATE(2552), - [sym_do_block] = STATE(3495), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3271), - [sym_semgrep_ellipsis] = STATE(3076), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_RPAREN] = ACTIONS(275), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(668), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(671), - [anon_sym_DASH] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(598), - [anon_sym_LPAREN2] = ACTIONS(600), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_do] = ACTIONS(273), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(624), }, [66] = { - [sym_expression] = STATE(3162), - [sym_block] = STATE(3962), + [sym_expression] = STATE(2669), + [sym_block] = STATE(3160), [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(3341), - [sym_quoted_i_single] = STATE(3342), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_keywords] = STATE(3693), - [sym_pair] = STATE(3333), - [sym_keyword] = STATE(865), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_call_arguments_with_parentheses_immediate] = STATE(2529), - [sym_call_arguments_without_parentheses] = STATE(3389), - [sym_do_block] = STATE(3564), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3725), - [sym_semgrep_ellipsis] = STATE(4042), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(510), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(674), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(546), - [anon_sym_LPAREN2] = ACTIONS(548), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(552), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_do] = ACTIONS(273), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(2896), + [sym_quoted_i_single] = STATE(2897), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_keywords] = STATE(3120), + [sym_pair] = STATE(2746), + [sym_keyword] = STATE(965), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_call_arguments_with_parentheses_immediate] = STATE(2348), + [sym_call_arguments_without_parentheses] = STATE(2541), + [sym_do_block] = STATE(3204), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3163), + [sym_semgrep_ellipsis] = STATE(3200), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(165), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), + [anon_sym_SLASH_SLASH] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(193), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_do] = ACTIONS(165), + [anon_sym_fn] = ACTIONS(666), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_LBRACK2] = ACTIONS(163), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(672), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_do] = ACTIONS(163), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(680), }, [67] = { - [sym_expression] = STATE(2843), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1719), - [sym_pair] = STATE(2974), - [sym_keyword] = STATE(997), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_call_arguments_with_parentheses_immediate] = STATE(1500), - [sym_call_arguments_without_parentheses] = STATE(1664), - [sym_do_block] = STATE(2195), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(414), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(280), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(205), - [anon_sym_end] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(207), - [anon_sym_LPAREN2] = ACTIONS(209), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(427), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(2976), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3372), + [sym_quoted_i_single] = STATE(3373), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_keywords] = STATE(3849), + [sym_pair] = STATE(3059), + [sym_keyword] = STATE(947), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_call_arguments_with_parentheses_immediate] = STATE(2514), + [sym_call_arguments_without_parentheses] = STATE(2961), + [sym_do_block] = STATE(3736), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3816), + [sym_semgrep_ellipsis] = STATE(3630), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(235), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(608), + [anon_sym_LPAREN2] = ACTIONS(610), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(614), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(616), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_do] = ACTIONS(233), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(624), }, [68] = { - [sym_expression] = STATE(2632), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(2911), - [sym_quoted_i_single] = STATE(2912), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [sym_string] = STATE(3148), - [sym_charlist] = STATE(3148), - [sym_sigil] = STATE(3148), - [sym_keywords] = STATE(3347), - [sym_pair] = STATE(2760), - [sym_keyword] = STATE(888), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3148), - [sym_tuple] = STATE(3148), - [sym_bitstring] = STATE(3148), - [sym_map] = STATE(3148), - [sym_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), + [sym_expression] = STATE(2824), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1820), + [sym_pair] = STATE(2954), + [sym_keyword] = STATE(1029), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_call_arguments_with_parentheses_immediate] = STATE(2407), - [sym_call_arguments_without_parentheses] = STATE(2554), - [sym_do_block] = STATE(3499), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3271), - [sym_semgrep_ellipsis] = STATE(3076), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_RPAREN] = ACTIONS(165), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(584), + [sym_double_call] = STATE(1718), + [sym_call_arguments_with_parentheses_immediate] = STATE(1471), + [sym_call_arguments_without_parentheses] = STATE(1569), + [sym_do_block] = STATE(2130), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(480), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_do] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(598), - [anon_sym_LPAREN2] = ACTIONS(600), + [anon_sym_do] = ACTIONS(271), + [anon_sym_end] = ACTIONS(165), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_LPAREN2] = ACTIONS(275), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_do] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(491), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(287), }, [69] = { - [sym_expression] = STATE(3077), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3462), - [sym_quoted_i_single] = STATE(3463), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_keywords] = STATE(3927), - [sym_pair] = STATE(3175), - [sym_keyword] = STATE(911), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_call_arguments_with_parentheses_immediate] = STATE(2569), - [sym_call_arguments_without_parentheses] = STATE(3030), - [sym_do_block] = STATE(4080), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3984), - [sym_semgrep_ellipsis] = STATE(3556), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [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(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(652), - [anon_sym_LPAREN2] = ACTIONS(654), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(658), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(275), - [sym_newline_before_do] = ACTIONS(273), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(2669), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(2896), + [sym_quoted_i_single] = STATE(2897), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_keywords] = STATE(3120), + [sym_pair] = STATE(2746), + [sym_keyword] = STATE(965), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_call_arguments_with_parentheses_immediate] = STATE(2349), + [sym_call_arguments_without_parentheses] = STATE(2543), + [sym_do_block] = STATE(3206), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3163), + [sym_semgrep_ellipsis] = STATE(3200), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(235), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(235), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(666), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(672), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_do] = ACTIONS(233), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(680), }, [70] = { - [sym_expression] = STATE(3077), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), + [sym_expression] = STATE(3201), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), [sym_quoted_i_double] = STATE(3462), [sym_quoted_i_single] = STATE(3463), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_keywords] = STATE(3927), - [sym_pair] = STATE(3175), - [sym_keyword] = STATE(911), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_call_arguments_with_parentheses_immediate] = STATE(2570), - [sym_call_arguments_without_parentheses] = STATE(3033), - [sym_do_block] = STATE(4085), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3984), - [sym_semgrep_ellipsis] = STATE(3556), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(638), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_keywords] = STATE(3583), + [sym_pair] = STATE(3274), + [sym_keyword] = STATE(974), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_call_arguments_with_parentheses_immediate] = STATE(2558), + [sym_call_arguments_without_parentheses] = STATE(3386), + [sym_do_block] = STATE(3950), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3802), + [sym_semgrep_ellipsis] = STATE(3677), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(518), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(540), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [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(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_DOT] = ACTIONS(165), [anon_sym_do] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(652), - [anon_sym_LPAREN2] = ACTIONS(654), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_LPAREN2] = ACTIONS(554), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(658), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(558), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(560), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(165), [sym_newline_before_do] = ACTIONS(163), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(566), }, [71] = { - [sym_expression] = STATE(1473), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5082), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(686), - [anon_sym_catch] = ACTIONS(686), - [anon_sym_else] = ACTIONS(686), - [anon_sym_end] = ACTIONS(686), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(686), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_expression] = STATE(2669), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(2896), + [sym_quoted_i_single] = STATE(2897), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_keywords] = STATE(3120), + [sym_pair] = STATE(2746), + [sym_keyword] = STATE(965), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_call_arguments_with_parentheses_immediate] = STATE(2397), + [sym_call_arguments_without_parentheses] = STATE(2670), + [sym_do_block] = STATE(4153), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3163), + [sym_semgrep_ellipsis] = STATE(3200), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(165), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_COMMA] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(691), + [anon_sym_DASH] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), + [anon_sym_SLASH_SLASH] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(193), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_do] = ACTIONS(664), + [anon_sym_fn] = ACTIONS(666), + [anon_sym_LPAREN2] = ACTIONS(668), + [anon_sym_LBRACK2] = ACTIONS(163), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(672), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(680), }, [72] = { - [sym_expression] = STATE(1496), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5075), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(688), - [anon_sym_catch] = ACTIONS(688), - [anon_sym_else] = ACTIONS(688), - [anon_sym_end] = ACTIONS(688), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(688), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [sym_expression] = STATE(1488), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5050), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(700), + [anon_sym_catch] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_end] = ACTIONS(700), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(700), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [73] = { - [sym_expression] = STATE(1489), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5081), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(690), - [anon_sym_catch] = ACTIONS(690), - [anon_sym_else] = ACTIONS(690), - [anon_sym_end] = ACTIONS(690), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(690), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [sym_expression] = STATE(1478), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5062), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(702), + [anon_sym_catch] = ACTIONS(702), + [anon_sym_else] = ACTIONS(702), + [anon_sym_end] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(702), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [74] = { - [sym_expression] = STATE(2632), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(2911), - [sym_quoted_i_single] = STATE(2912), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [sym_string] = STATE(3148), - [sym_charlist] = STATE(3148), - [sym_sigil] = STATE(3148), - [sym_keywords] = STATE(3347), - [sym_pair] = STATE(2760), - [sym_keyword] = STATE(888), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3148), - [sym_tuple] = STATE(3148), - [sym_bitstring] = STATE(3148), - [sym_map] = STATE(3148), - [sym_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_call_arguments_with_parentheses_immediate] = STATE(2431), - [sym_call_arguments_without_parentheses] = STATE(2635), - [sym_do_block] = STATE(4391), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3271), - [sym_semgrep_ellipsis] = STATE(3076), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_RPAREN] = ACTIONS(275), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(668), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(671), - [anon_sym_DASH] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(596), - [anon_sym_fn] = ACTIONS(598), - [anon_sym_LPAREN2] = ACTIONS(600), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(610), - }, - [75] = { - [sym_expression] = STATE(3077), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), + [sym_expression] = STATE(3201), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), [sym_quoted_i_double] = STATE(3462), [sym_quoted_i_single] = STATE(3463), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_keywords] = STATE(3927), - [sym_pair] = STATE(3175), - [sym_keyword] = STATE(911), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_call_arguments_with_parentheses_immediate] = STATE(2978), - [sym_call_arguments_without_parentheses] = STATE(3079), - [sym_do_block] = STATE(4543), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3984), - [sym_semgrep_ellipsis] = STATE(3556), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [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(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(650), - [anon_sym_fn] = ACTIONS(652), - [anon_sym_LPAREN2] = ACTIONS(654), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(658), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(275), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(666), - }, - [76] = { - [sym_expression] = STATE(3426), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2463), - [sym_pair] = STATE(3524), - [sym_keyword] = STATE(977), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_call_arguments_with_parentheses_immediate] = STATE(1894), - [sym_call_arguments_without_parentheses] = STATE(2189), - [sym_do_block] = STATE(2363), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(357), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_keywords] = STATE(3583), + [sym_pair] = STATE(3274), + [sym_keyword] = STATE(974), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_call_arguments_with_parentheses_immediate] = STATE(2749), + [sym_call_arguments_without_parentheses] = STATE(3202), + [sym_do_block] = STATE(4612), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3802), + [sym_semgrep_ellipsis] = STATE(3677), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(518), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(540), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(697), + [anon_sym_DASH] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_do] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(371), - [anon_sym_LPAREN2] = ACTIONS(373), + [anon_sym_do] = ACTIONS(626), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_LPAREN2] = ACTIONS(554), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_do] = ACTIONS(163), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(558), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(560), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(165), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(566), }, - [77] = { - [sym_expression] = STATE(3426), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2463), - [sym_pair] = STATE(3524), - [sym_keyword] = STATE(977), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_call_arguments_with_parentheses_immediate] = STATE(1893), - [sym_call_arguments_without_parentheses] = STATE(2310), - [sym_do_block] = STATE(2485), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(703), - [anon_sym_DASH] = ACTIONS(703), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(275), - [anon_sym_fn] = ACTIONS(371), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_do] = ACTIONS(273), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(385), + [75] = { + [sym_expression] = STATE(3419), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2408), + [sym_pair] = STATE(3514), + [sym_keyword] = STATE(1012), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_call_arguments_with_parentheses_immediate] = STATE(1997), + [sym_call_arguments_without_parentheses] = STATE(2277), + [sym_do_block] = STATE(2431), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(235), + [anon_sym_fn] = ACTIONS(375), + [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_do] = ACTIONS(233), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(391), }, - [78] = { - [sym_expression] = STATE(3162), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(3341), - [sym_quoted_i_single] = STATE(3342), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_keywords] = STATE(3693), - [sym_pair] = STATE(3333), - [sym_keyword] = STATE(865), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_call_arguments_with_parentheses_immediate] = STATE(2625), - [sym_call_arguments_without_parentheses] = STATE(3165), - [sym_do_block] = STATE(4682), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3725), - [sym_semgrep_ellipsis] = STATE(4042), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(510), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_GT_GT] = ACTIONS(275), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(674), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(544), - [anon_sym_fn] = ACTIONS(546), - [anon_sym_LPAREN2] = ACTIONS(548), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(552), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(560), + [76] = { + [sym_expression] = STATE(1454), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5055), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(712), + [anon_sym_catch] = ACTIONS(712), + [anon_sym_else] = ACTIONS(712), + [anon_sym_end] = ACTIONS(712), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(712), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, - [79] = { - [sym_expression] = STATE(1481), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5096), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_after] = ACTIONS(706), - [anon_sym_catch] = ACTIONS(706), - [anon_sym_else] = ACTIONS(706), - [anon_sym_end] = ACTIONS(706), - [anon_sym_fn] = ACTIONS(123), - [anon_sym_rescue] = ACTIONS(706), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [77] = { + [sym_expression] = STATE(1464), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5078), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_after] = ACTIONS(714), + [anon_sym_catch] = ACTIONS(714), + [anon_sym_else] = ACTIONS(714), + [anon_sym_end] = ACTIONS(714), + [anon_sym_fn] = ACTIONS(121), + [anon_sym_rescue] = ACTIONS(714), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, + [78] = { + [sym_expression] = STATE(3419), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2408), + [sym_pair] = STATE(3514), + [sym_keyword] = STATE(1012), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_call_arguments_with_parentheses_immediate] = STATE(1958), + [sym_call_arguments_without_parentheses] = STATE(2190), + [sym_do_block] = STATE(3483), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_PIPE] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_COMMA] = ACTIONS(235), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(235), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(235), + [anon_sym_BSLASH_BSLASH] = ACTIONS(235), + [anon_sym_when] = ACTIONS(235), + [anon_sym_COLON_COLON] = ACTIONS(235), + [anon_sym_EQ_GT] = ACTIONS(235), + [anon_sym_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE] = ACTIONS(235), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(235), + [anon_sym_or] = ACTIONS(235), + [anon_sym_AMP_AMP] = ACTIONS(235), + [anon_sym_AMP_AMP_AMP] = ACTIONS(235), + [anon_sym_and] = ACTIONS(235), + [anon_sym_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ] = ACTIONS(235), + [anon_sym_EQ_TILDE] = ACTIONS(235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_GT] = ACTIONS(235), + [anon_sym_LT_LT_LT] = ACTIONS(235), + [anon_sym_GT_GT_GT] = ACTIONS(235), + [anon_sym_LT_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT_GT] = ACTIONS(235), + [anon_sym_LT_TILDE] = ACTIONS(235), + [anon_sym_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_TILDE_GT] = ACTIONS(235), + [anon_sym_LT_PIPE_GT] = ACTIONS(235), + [anon_sym_in] = ACTIONS(235), + [anon_sym_CARET_CARET_CARET] = ACTIONS(235), + [anon_sym_SLASH_SLASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH] = ACTIONS(235), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(235), + [anon_sym_DASH_DASH_DASH] = ACTIONS(235), + [anon_sym_LT_GT] = ACTIONS(235), + [anon_sym_STAR] = ACTIONS(235), + [anon_sym_STAR_STAR] = ACTIONS(235), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(235), + [anon_sym_do] = ACTIONS(373), + [anon_sym_fn] = ACTIONS(375), + [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_LBRACK2] = ACTIONS(233), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_do] = ACTIONS(387), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(233), + [sym_quoted_atom_start] = ACTIONS(391), + }, + [79] = { + [sym_expression] = STATE(2976), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3372), + [sym_quoted_i_single] = STATE(3373), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_keywords] = STATE(3849), + [sym_pair] = STATE(3059), + [sym_keyword] = STATE(947), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_call_arguments_with_parentheses_immediate] = STATE(2613), + [sym_call_arguments_without_parentheses] = STATE(2980), + [sym_do_block] = STATE(4639), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3816), + [sym_semgrep_ellipsis] = STATE(3630), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_COMMA] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), + [anon_sym_SLASH_SLASH] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_do] = ACTIONS(606), + [anon_sym_fn] = ACTIONS(608), + [anon_sym_LPAREN2] = ACTIONS(610), + [anon_sym_LBRACK2] = ACTIONS(163), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(614), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(616), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(624), + }, [80] = { - [sym_expression] = STATE(3426), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2463), - [sym_pair] = STATE(3524), - [sym_keyword] = STATE(977), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_call_arguments_with_parentheses_immediate] = STATE(1974), - [sym_call_arguments_without_parentheses] = STATE(2225), - [sym_do_block] = STATE(2979), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_SLASH] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(357), + [sym_expression] = STATE(3419), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2408), + [sym_pair] = STATE(3514), + [sym_keyword] = STATE(1012), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_call_arguments_with_parentheses_immediate] = STATE(1996), + [sym_call_arguments_without_parentheses] = STATE(2275), + [sym_do_block] = STATE(2427), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(716), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(361), [anon_sym_COMMA] = ACTIONS(165), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(165), - [anon_sym_DASH] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(165), - [anon_sym_BSLASH_BSLASH] = ACTIONS(165), - [anon_sym_when] = ACTIONS(165), - [anon_sym_COLON_COLON] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), [anon_sym_EQ_GT] = ACTIONS(165), - [anon_sym_EQ] = ACTIONS(165), - [anon_sym_PIPE_PIPE] = ACTIONS(165), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(165), - [anon_sym_or] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(165), - [anon_sym_AMP_AMP_AMP] = ACTIONS(165), - [anon_sym_and] = ACTIONS(165), - [anon_sym_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ] = ACTIONS(165), - [anon_sym_EQ_TILDE] = ACTIONS(165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(165), - [anon_sym_PIPE_GT] = ACTIONS(165), - [anon_sym_LT_LT_LT] = ACTIONS(165), - [anon_sym_GT_GT_GT] = ACTIONS(165), - [anon_sym_LT_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT_GT] = ACTIONS(165), - [anon_sym_LT_TILDE] = ACTIONS(165), - [anon_sym_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_TILDE_GT] = ACTIONS(165), - [anon_sym_LT_PIPE_GT] = ACTIONS(165), - [anon_sym_in] = ACTIONS(165), - [anon_sym_CARET_CARET_CARET] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), [anon_sym_SLASH_SLASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(165), - [anon_sym_DASH_DASH_DASH] = ACTIONS(165), - [anon_sym_LT_GT] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_STAR_STAR] = ACTIONS(165), - [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_DOT] = ACTIONS(165), - [anon_sym_do] = ACTIONS(369), - [anon_sym_fn] = ACTIONS(371), - [anon_sym_LPAREN2] = ACTIONS(373), + [anon_sym_do] = ACTIONS(165), + [anon_sym_fn] = ACTIONS(375), + [anon_sym_LPAREN2] = ACTIONS(377), [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_do] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_do] = ACTIONS(163), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(163), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(391), }, [81] = { - [sym_terminator] = STATE(133), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5565), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_terminator] = STATE(140), + [sym_expression] = STATE(2204), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5694), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(726), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [82] = { - [sym_terminator] = STATE(144), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5637), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(768), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_terminator] = STATE(154), + [sym_expression] = STATE(2050), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5706), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(746), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [83] = { [sym_terminator] = STATE(130), - [sym_expression] = STATE(2265), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6321), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(774), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_expression] = STATE(2169), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5522), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(748), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [84] = { - [sym_terminator] = STATE(151), - [sym_expression] = STATE(2219), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5465), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(794), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(137), + [sym_expression] = STATE(2123), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5738), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(750), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [85] = { - [sym_terminator] = STATE(154), - [sym_expression] = STATE(2193), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5899), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(796), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_terminator] = STATE(136), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(6227), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(798), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [86] = { - [sym_terminator] = STATE(137), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(6269), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(798), - [anon_sym_fn] = ACTIONS(756), + [sym_expression] = STATE(3419), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2408), + [sym_pair] = STATE(3514), + [sym_keyword] = STATE(1012), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_call_arguments_with_parentheses_immediate] = STATE(1954), + [sym_call_arguments_without_parentheses] = STATE(2180), + [sym_do_block] = STATE(3481), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(716), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_COMMA] = ACTIONS(165), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), + [anon_sym_SLASH_SLASH] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_do] = ACTIONS(373), + [anon_sym_fn] = ACTIONS(375), + [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_LBRACK2] = ACTIONS(163), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(391), }, [87] = { - [sym_terminator] = STATE(154), - [sym_expression] = STATE(2192), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5899), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(796), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(137), + [sym_expression] = STATE(2254), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5738), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(750), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [88] = { - [sym_terminator] = STATE(151), - [sym_expression] = STATE(2037), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5465), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(794), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(150), + [sym_expression] = STATE(2150), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(6181), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(814), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [89] = { - [sym_terminator] = STATE(136), - [sym_expression] = STATE(2255), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6323), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(800), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(133), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5548), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(816), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), + }, + [90] = { + [sym_terminator] = STATE(150), + [sym_expression] = STATE(2024), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(6181), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(814), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, - [90] = { - [sym_terminator] = STATE(131), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(6336), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(802), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), - }, [91] = { - [sym_terminator] = STATE(136), - [sym_expression] = STATE(1892), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7086), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6323), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(804), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(129), + [sym_expression] = STATE(2078), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5560), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(818), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [92] = { - [sym_terminator] = STATE(136), - [sym_expression] = STATE(2238), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6323), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(800), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_terminator] = STATE(142), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5770), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(820), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [93] = { [sym_terminator] = STATE(129), - [sym_expression] = STATE(2050), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6037), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(806), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_expression] = STATE(2288), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5560), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(818), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [94] = { - [sym_terminator] = STATE(129), - [sym_expression] = STATE(2311), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6037), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(806), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(131), + [sym_expression] = STATE(2045), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(6333), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(822), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [95] = { - [sym_terminator] = STATE(153), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5566), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(808), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), - }, - [96] = { - [sym_terminator] = STATE(142), - [sym_expression] = STATE(2227), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6334), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(810), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(131), + [sym_expression] = STATE(2290), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(6333), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(822), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, + [96] = { + [sym_terminator] = STATE(151), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(6243), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(824), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), + }, [97] = { - [sym_terminator] = STATE(149), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5511), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(812), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_terminator] = STATE(140), + [sym_expression] = STATE(1964), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7014), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5694), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(826), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(828), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [98] = { - [sym_terminator] = STATE(145), - [sym_expression] = STATE(2075), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5432), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(814), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(140), + [sym_expression] = STATE(2116), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5694), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(726), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [99] = { - [sym_terminator] = STATE(145), - [sym_expression] = STATE(2044), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5432), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(814), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(134), + [sym_expression] = STATE(2059), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5418), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(830), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [100] = { - [sym_terminator] = STATE(135), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(6098), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(816), - [anon_sym_fn] = ACTIONS(756), + [sym_terminator] = STATE(128), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5718), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(832), + [anon_sym_fn] = ACTIONS(800), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [101] = { [sym_terminator] = STATE(132), - [sym_expression] = STATE(1986), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7086), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6257), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(818), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(6344), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(834), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [102] = { - [sym_terminator] = STATE(127), - [sym_expression] = STATE(2095), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5497), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(820), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(154), + [sym_expression] = STATE(2064), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5706), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(746), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [103] = { - [sym_terminator] = STATE(130), - [sym_expression] = STATE(2191), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6321), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(774), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(138), + [sym_expression] = STATE(2075), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5480), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(836), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [104] = { - [sym_terminator] = STATE(146), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5443), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(822), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_terminator] = STATE(130), + [sym_expression] = STATE(2054), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5522), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(748), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [105] = { - [sym_expression] = STATE(3426), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2463), - [sym_pair] = STATE(3524), - [sym_keyword] = STATE(977), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_call_arguments_with_parentheses_immediate] = STATE(1938), - [sym_call_arguments_without_parentheses] = STATE(2200), - [sym_do_block] = STATE(3481), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(275), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(703), - [anon_sym_DASH] = ACTIONS(703), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(369), - [anon_sym_fn] = ACTIONS(371), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_terminator] = STATE(127), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5428), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(838), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [106] = { - [sym_terminator] = STATE(134), - [sym_expression] = STATE(2121), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5554), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(824), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_terminator] = STATE(143), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(6012), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), + }, + [107] = { + [sym_terminator] = STATE(141), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5764), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(842), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, - [107] = { - [sym_terminator] = STATE(127), - [sym_expression] = STATE(2084), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5497), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(820), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [108] = { + [sym_terminator] = STATE(130), + [sym_expression] = STATE(1875), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7014), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5522), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(844), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(828), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, - [108] = { - [sym_terminator] = STATE(128), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5506), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(826), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), - }, [109] = { - [sym_terminator] = STATE(138), - [sym_expression] = STATE(2198), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5607), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(828), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(144), + [sym_expression] = STATE(2100), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5538), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(846), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [110] = { - [sym_terminator] = STATE(140), - [sym_expression] = STATE(2146), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5613), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(830), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(138), + [sym_expression] = STATE(2071), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5480), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(836), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [111] = { - [sym_terminator] = STATE(134), - [sym_expression] = STATE(2111), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5554), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(824), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_terminator] = STATE(139), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5491), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(848), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [112] = { - [sym_terminator] = STATE(139), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5606), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(832), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), + [sym_terminator] = STATE(146), + [sym_expression] = STATE(2125), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5596), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(850), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [113] = { - [sym_terminator] = STATE(138), - [sym_expression] = STATE(2171), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5607), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(828), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(144), + [sym_expression] = STATE(2090), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5538), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(846), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [114] = { - [sym_terminator] = STATE(143), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(6392), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(834), - [anon_sym_fn] = ACTIONS(756), + [sym_terminator] = STATE(145), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5549), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(852), + [anon_sym_fn] = ACTIONS(800), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [115] = { - [sym_terminator] = STATE(147), - [sym_expression] = STATE(2158), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5674), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(836), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(148), + [sym_expression] = STATE(2143), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5653), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(854), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [116] = { - [sym_terminator] = STATE(140), - [sym_expression] = STATE(2139), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5613), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(830), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(146), + [sym_expression] = STATE(2115), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5596), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(850), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [117] = { - [sym_terminator] = STATE(141), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5626), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(838), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_terminator] = STATE(147), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5605), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(856), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [118] = { - [sym_terminator] = STATE(150), - [sym_expression] = STATE(2170), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5733), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(840), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(152), + [sym_expression] = STATE(2160), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5709), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(858), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [119] = { - [sym_terminator] = STATE(147), - [sym_expression] = STATE(2153), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5674), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(836), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(148), + [sym_expression] = STATE(2136), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5653), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(854), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [120] = { - [sym_terminator] = STATE(148), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5683), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(842), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_terminator] = STATE(149), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5662), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(860), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [121] = { - [sym_terminator] = STATE(150), - [sym_expression] = STATE(2167), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5733), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(840), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(135), + [sym_expression] = STATE(2131), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(6094), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(862), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [122] = { [sym_terminator] = STATE(152), - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5742), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_repeat1] = STATE(1383), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(844), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), - }, - [123] = { - [sym_terminator] = STATE(132), - [sym_expression] = STATE(2230), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6257), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(846), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_expression] = STATE(2153), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5709), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(858), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, + [123] = { + [sym_terminator] = STATE(153), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5720), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_repeat1] = STATE(1369), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), + }, [124] = { - [sym_terminator] = STATE(142), - [sym_expression] = STATE(2220), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6334), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(810), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(135), + [sym_expression] = STATE(2040), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(6094), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(862), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [125] = { - [sym_terminator] = STATE(132), - [sym_expression] = STATE(2064), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6257), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_repeat1] = STATE(1384), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(846), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_terminator] = STATE(134), + [sym_expression] = STATE(2035), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5418), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_repeat1] = STATE(1371), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(830), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [126] = { - [sym_expression] = STATE(2462), - [sym_block] = STATE(2332), + [sym_expression] = STATE(2402), + [sym_block] = STATE(2444), [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2463), - [sym_pair] = STATE(2441), - [sym_keyword] = STATE(840), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2408), + [sym_pair] = STATE(2367), + [sym_keyword] = STATE(941), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_call_arguments_with_parentheses_immediate] = STATE(1938), - [sym_call_arguments_without_parentheses] = STATE(2200), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_call_arguments_with_parentheses_immediate] = STATE(1954), + [sym_call_arguments_without_parentheses] = STATE(2180), [sym_do_block] = STATE(3481), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_SLASH] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(357), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(277), - [anon_sym_BSLASH_BSLASH] = ACTIONS(277), - [anon_sym_when] = ACTIONS(277), - [anon_sym_COLON_COLON] = ACTIONS(277), - [anon_sym_EQ_GT] = ACTIONS(275), - [anon_sym_EQ] = ACTIONS(277), - [anon_sym_PIPE_PIPE] = ACTIONS(277), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(277), - [anon_sym_or] = ACTIONS(277), - [anon_sym_AMP_AMP] = ACTIONS(277), - [anon_sym_AMP_AMP_AMP] = ACTIONS(277), - [anon_sym_and] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_EQ_TILDE] = ACTIONS(277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ_EQ] = ACTIONS(277), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_PIPE_GT] = ACTIONS(277), - [anon_sym_LT_LT_LT] = ACTIONS(277), - [anon_sym_GT_GT_GT] = ACTIONS(277), - [anon_sym_LT_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT_GT] = ACTIONS(277), - [anon_sym_LT_TILDE] = ACTIONS(277), - [anon_sym_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_TILDE_GT] = ACTIONS(277), - [anon_sym_LT_PIPE_GT] = ACTIONS(277), - [anon_sym_in] = ACTIONS(277), - [anon_sym_CARET_CARET_CARET] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(275), - [anon_sym_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH] = ACTIONS(277), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(277), - [anon_sym_DASH_DASH_DASH] = ACTIONS(277), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(277), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_DOT] = ACTIONS(275), - [anon_sym_do] = ACTIONS(369), - [anon_sym_fn] = ACTIONS(371), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_LBRACK2] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(286), - [sym_quoted_atom_start] = ACTIONS(385), - }, - [127] = { - [sym_expression] = STATE(2092), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5507), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(850), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(193), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_SLASH] = ACTIONS(193), + [anon_sym_TILDE] = ACTIONS(361), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(193), + [anon_sym_BSLASH_BSLASH] = ACTIONS(193), + [anon_sym_when] = ACTIONS(193), + [anon_sym_COLON_COLON] = ACTIONS(193), + [anon_sym_EQ_GT] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE] = ACTIONS(193), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(193), + [anon_sym_or] = ACTIONS(193), + [anon_sym_AMP_AMP] = ACTIONS(193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(193), + [anon_sym_and] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ] = ACTIONS(193), + [anon_sym_EQ_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(193), + [anon_sym_BANG_EQ_EQ] = ACTIONS(193), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_GT_GT_GT] = ACTIONS(193), + [anon_sym_LT_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT_GT] = ACTIONS(193), + [anon_sym_LT_TILDE] = ACTIONS(193), + [anon_sym_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_TILDE_GT] = ACTIONS(193), + [anon_sym_LT_PIPE_GT] = ACTIONS(193), + [anon_sym_in] = ACTIONS(193), + [anon_sym_CARET_CARET_CARET] = ACTIONS(193), + [anon_sym_SLASH_SLASH] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH] = ACTIONS(193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(193), + [anon_sym_DASH_DASH_DASH] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_STAR] = ACTIONS(193), + [anon_sym_STAR_STAR] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_do] = ACTIONS(373), + [anon_sym_fn] = ACTIONS(375), + [anon_sym_LPAREN2] = ACTIONS(377), + [anon_sym_LBRACK2] = ACTIONS(163), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(228), + [sym_quoted_atom_start] = ACTIONS(391), + }, + [127] = { + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5439), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [128] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5520), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(852), - [anon_sym_fn] = ACTIONS(756), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5703), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(870), + [anon_sym_fn] = ACTIONS(800), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [129] = { - [sym_expression] = STATE(2048), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6126), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(854), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_expression] = STATE(2027), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5769), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(872), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [130] = { - [sym_expression] = STATE(2261), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6342), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(856), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_expression] = STATE(2165), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5565), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(874), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [131] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(6361), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(858), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), - }, - [132] = { - [sym_expression] = STATE(2228), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6271), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(860), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_expression] = STATE(2042), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(6346), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(876), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, + [132] = { + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(6366), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(878), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), + }, [133] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5577), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(862), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5606), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [134] = { - [sym_expression] = STATE(2118), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5567), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(864), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_expression] = STATE(2058), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5430), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(882), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [135] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(6232), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(866), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), - }, - [136] = { - [sym_expression] = STATE(2235), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5545), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(868), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_expression] = STATE(2129), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(6248), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(884), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, + [136] = { + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(6328), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(886), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), + }, [137] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(6279), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(870), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), + [sym_expression] = STATE(2248), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5786), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(888), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [138] = { - [sym_expression] = STATE(2197), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5656), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(872), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_expression] = STATE(2074), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5494), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(890), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [139] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5547), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(874), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5504), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(892), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [140] = { - [sym_expression] = STATE(2144), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5628), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(876), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_expression] = STATE(2112), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(6241), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [141] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5638), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(878), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(6264), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(896), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [142] = { - [sym_expression] = STATE(2213), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6174), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(880), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5876), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(898), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [143] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5888), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(882), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5566), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(900), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [144] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5686), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(884), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), - }, - [145] = { - [sym_expression] = STATE(2072), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5449), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(886), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_expression] = STATE(2097), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5553), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(902), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, - [146] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5463), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [145] = { + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5563), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(904), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, - [147] = { - [sym_expression] = STATE(2156), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5684), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(890), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [146] = { + [sym_expression] = STATE(2122), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5608), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(906), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, + [147] = { + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5615), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(908), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), + }, [148] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5693), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(892), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), + [sym_expression] = STATE(2141), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5664), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(910), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [149] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5605), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(894), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5673), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(912), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [150] = { - [sym_expression] = STATE(2169), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5744), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(896), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_expression] = STATE(2021), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(6247), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(914), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [151] = { - [sym_expression] = STATE(2036), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(5574), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(898), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(6266), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(916), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [152] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5757), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(900), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), + [sym_expression] = STATE(2157), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5725), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [153] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5671), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_end] = ACTIONS(902), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5736), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_end] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [154] = { - [sym_expression] = STATE(2164), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_stab_clause] = STATE(6302), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(904), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), + [sym_expression] = STATE(2049), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_stab_clause] = STATE(5473), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(922), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(129), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [155] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5135), - [sym_stab_clause_left] = STATE(7510), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(113), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5112), + [sym_stab_clause_left] = STATE(7461), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [156] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(7350), - [sym_stab_clause_left] = STATE(7521), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(752), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(5112), + [sym_stab_clause_left] = STATE(7510), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(740), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [157] = { - [sym_expression] = STATE(4247), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7291), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_stab_clause] = STATE(5135), - [sym_stab_clause_left] = STATE(7402), - [sym_stab_clause_arguments_with_parentheses] = STATE(7299), - [sym_stab_clause_arguments_without_parentheses] = STATE(7311), - [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7515), - [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7515), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(712), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4124), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7319), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_stab_clause] = STATE(7326), + [sym_stab_clause_left] = STATE(7452), + [sym_stab_clause_arguments_with_parentheses] = STATE(7298), + [sym_stab_clause_arguments_without_parentheses] = STATE(7270), + [sym_stab_clause_arguments_with_parentheses_with_guard] = STATE(7457), + [sym_stab_clause_arguments_without_parentheses_with_guard] = STATE(7457), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(756), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(796), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [158] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5032), - [sym_rescue_block] = STATE(5032), - [sym_catch_block] = STATE(5032), - [sym_else_block] = STATE(5032), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5032), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(944), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [159] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5009), - [sym_rescue_block] = STATE(5009), - [sym_catch_block] = STATE(5009), - [sym_else_block] = STATE(5009), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5009), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(956), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [160] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5010), - [sym_rescue_block] = STATE(5010), - [sym_catch_block] = STATE(5010), - [sym_else_block] = STATE(5010), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5010), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(958), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [161] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5058), - [sym_rescue_block] = STATE(5058), - [sym_catch_block] = STATE(5058), - [sym_else_block] = STATE(5058), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5058), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(4985), + [sym_rescue_block] = STATE(4985), + [sym_catch_block] = STATE(4985), + [sym_else_block] = STATE(4985), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(4985), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(960), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [162] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5015), - [sym_rescue_block] = STATE(5015), - [sym_catch_block] = STATE(5015), - [sym_else_block] = STATE(5015), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5015), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(962), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [163] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5044), - [sym_rescue_block] = STATE(5044), - [sym_catch_block] = STATE(5044), - [sym_else_block] = STATE(5044), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5044), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(964), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [164] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5046), - [sym_rescue_block] = STATE(5046), - [sym_catch_block] = STATE(5046), - [sym_else_block] = STATE(5046), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5046), + [159] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5048), + [sym_rescue_block] = STATE(5048), + [sym_catch_block] = STATE(5048), + [sym_else_block] = STATE(5048), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5048), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(966), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [165] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), + [160] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), [sym_after_block] = STATE(5047), [sym_rescue_block] = STATE(5047), [sym_catch_block] = STATE(5047), [sym_else_block] = STATE(5047), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), [aux_sym_do_block_repeat1] = STATE(5047), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(968), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [166] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5016), - [sym_rescue_block] = STATE(5016), - [sym_catch_block] = STATE(5016), - [sym_else_block] = STATE(5016), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5016), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(970), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [167] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5026), - [sym_rescue_block] = STATE(5026), - [sym_catch_block] = STATE(5026), - [sym_else_block] = STATE(5026), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5026), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(972), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [168] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5070), - [sym_rescue_block] = STATE(5070), - [sym_catch_block] = STATE(5070), - [sym_else_block] = STATE(5070), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5070), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(974), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [169] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5004), - [sym_rescue_block] = STATE(5004), - [sym_catch_block] = STATE(5004), - [sym_else_block] = STATE(5004), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5004), + [161] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5031), + [sym_rescue_block] = STATE(5031), + [sym_catch_block] = STATE(5031), + [sym_else_block] = STATE(5031), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5031), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(976), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [170] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5006), - [sym_rescue_block] = STATE(5006), - [sym_catch_block] = STATE(5006), - [sym_else_block] = STATE(5006), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5006), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [162] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(4981), + [sym_rescue_block] = STATE(4981), + [sym_catch_block] = STATE(4981), + [sym_else_block] = STATE(4981), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(4981), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(978), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [171] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5030), - [sym_rescue_block] = STATE(5030), - [sym_catch_block] = STATE(5030), - [sym_else_block] = STATE(5030), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5030), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [163] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(4989), + [sym_rescue_block] = STATE(4989), + [sym_catch_block] = STATE(4989), + [sym_else_block] = STATE(4989), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(4989), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(980), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [172] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5050), - [sym_rescue_block] = STATE(5050), - [sym_catch_block] = STATE(5050), - [sym_else_block] = STATE(5050), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5050), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [164] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(4995), + [sym_rescue_block] = STATE(4995), + [sym_catch_block] = STATE(4995), + [sym_else_block] = STATE(4995), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(4995), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(982), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [173] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5018), - [sym_rescue_block] = STATE(5018), - [sym_catch_block] = STATE(5018), - [sym_else_block] = STATE(5018), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5018), + [165] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5004), + [sym_rescue_block] = STATE(5004), + [sym_catch_block] = STATE(5004), + [sym_else_block] = STATE(5004), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5004), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(984), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [174] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5036), - [sym_rescue_block] = STATE(5036), - [sym_catch_block] = STATE(5036), - [sym_else_block] = STATE(5036), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5036), + [166] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5043), + [sym_rescue_block] = STATE(5043), + [sym_catch_block] = STATE(5043), + [sym_else_block] = STATE(5043), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5043), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(986), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [175] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5042), - [sym_rescue_block] = STATE(5042), - [sym_catch_block] = STATE(5042), - [sym_else_block] = STATE(5042), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5042), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [167] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5000), + [sym_rescue_block] = STATE(5000), + [sym_catch_block] = STATE(5000), + [sym_else_block] = STATE(5000), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5000), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(988), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [176] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5017), - [sym_rescue_block] = STATE(5017), - [sym_catch_block] = STATE(5017), - [sym_else_block] = STATE(5017), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5017), + [168] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5003), + [sym_rescue_block] = STATE(5003), + [sym_catch_block] = STATE(5003), + [sym_else_block] = STATE(5003), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5003), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(990), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [177] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5035), - [sym_rescue_block] = STATE(5035), - [sym_catch_block] = STATE(5035), - [sym_else_block] = STATE(5035), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5035), + [169] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5005), + [sym_rescue_block] = STATE(5005), + [sym_catch_block] = STATE(5005), + [sym_else_block] = STATE(5005), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5005), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(992), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [178] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5005), - [sym_rescue_block] = STATE(5005), - [sym_catch_block] = STATE(5005), - [sym_else_block] = STATE(5005), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5005), + [170] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5038), + [sym_rescue_block] = STATE(5038), + [sym_catch_block] = STATE(5038), + [sym_else_block] = STATE(5038), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5038), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [179] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5062), - [sym_rescue_block] = STATE(5062), - [sym_catch_block] = STATE(5062), - [sym_else_block] = STATE(5062), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5062), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [171] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5040), + [sym_rescue_block] = STATE(5040), + [sym_catch_block] = STATE(5040), + [sym_else_block] = STATE(5040), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5040), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(996), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [180] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5064), - [sym_rescue_block] = STATE(5064), - [sym_catch_block] = STATE(5064), - [sym_else_block] = STATE(5064), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5064), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [172] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5041), + [sym_rescue_block] = STATE(5041), + [sym_catch_block] = STATE(5041), + [sym_else_block] = STATE(5041), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5041), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(998), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [181] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5023), - [sym_rescue_block] = STATE(5023), - [sym_catch_block] = STATE(5023), - [sym_else_block] = STATE(5023), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5023), + [173] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5028), + [sym_rescue_block] = STATE(5028), + [sym_catch_block] = STATE(5028), + [sym_else_block] = STATE(5028), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5028), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1000), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [182] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5027), - [sym_rescue_block] = STATE(5027), - [sym_catch_block] = STATE(5027), - [sym_else_block] = STATE(5027), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5027), + [174] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5044), + [sym_rescue_block] = STATE(5044), + [sym_catch_block] = STATE(5044), + [sym_else_block] = STATE(5044), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5044), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1002), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [183] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5067), - [sym_rescue_block] = STATE(5067), - [sym_catch_block] = STATE(5067), - [sym_else_block] = STATE(5067), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5067), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [175] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(4999), + [sym_rescue_block] = STATE(4999), + [sym_catch_block] = STATE(4999), + [sym_else_block] = STATE(4999), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(4999), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1004), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [184] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5063), - [sym_rescue_block] = STATE(5063), - [sym_catch_block] = STATE(5063), - [sym_else_block] = STATE(5063), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5063), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [176] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5001), + [sym_rescue_block] = STATE(5001), + [sym_catch_block] = STATE(5001), + [sym_else_block] = STATE(5001), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5001), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1006), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [185] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5007), - [sym_rescue_block] = STATE(5007), - [sym_catch_block] = STATE(5007), - [sym_else_block] = STATE(5007), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5007), + [177] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5029), + [sym_rescue_block] = STATE(5029), + [sym_catch_block] = STATE(5029), + [sym_else_block] = STATE(5029), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5029), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1008), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [186] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5031), - [sym_rescue_block] = STATE(5031), - [sym_catch_block] = STATE(5031), - [sym_else_block] = STATE(5031), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5031), + [178] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5039), + [sym_rescue_block] = STATE(5039), + [sym_catch_block] = STATE(5039), + [sym_else_block] = STATE(5039), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5039), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1010), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [187] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5049), - [sym_rescue_block] = STATE(5049), - [sym_catch_block] = STATE(5049), - [sym_else_block] = STATE(5049), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5049), + [179] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5035), + [sym_rescue_block] = STATE(5035), + [sym_catch_block] = STATE(5035), + [sym_else_block] = STATE(5035), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5035), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1012), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [188] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5025), - [sym_rescue_block] = STATE(5025), - [sym_catch_block] = STATE(5025), - [sym_else_block] = STATE(5025), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5025), + [180] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5016), + [sym_rescue_block] = STATE(5016), + [sym_catch_block] = STATE(5016), + [sym_else_block] = STATE(5016), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5016), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1014), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [189] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5034), - [sym_rescue_block] = STATE(5034), - [sym_catch_block] = STATE(5034), - [sym_else_block] = STATE(5034), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5034), + [181] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5010), + [sym_rescue_block] = STATE(5010), + [sym_catch_block] = STATE(5010), + [sym_else_block] = STATE(5010), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5010), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1016), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [190] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5043), - [sym_rescue_block] = STATE(5043), - [sym_catch_block] = STATE(5043), - [sym_else_block] = STATE(5043), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5043), + [182] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5014), + [sym_rescue_block] = STATE(5014), + [sym_catch_block] = STATE(5014), + [sym_else_block] = STATE(5014), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5014), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1018), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [191] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5013), - [sym_rescue_block] = STATE(5013), - [sym_catch_block] = STATE(5013), - [sym_else_block] = STATE(5013), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5013), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [183] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(4986), + [sym_rescue_block] = STATE(4986), + [sym_catch_block] = STATE(4986), + [sym_else_block] = STATE(4986), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(4986), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [192] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5019), - [sym_rescue_block] = STATE(5019), - [sym_catch_block] = STATE(5019), - [sym_else_block] = STATE(5019), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5019), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [184] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(4991), + [sym_rescue_block] = STATE(4991), + [sym_catch_block] = STATE(4991), + [sym_else_block] = STATE(4991), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(4991), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1022), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [193] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5039), - [sym_rescue_block] = STATE(5039), - [sym_catch_block] = STATE(5039), - [sym_else_block] = STATE(5039), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5039), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [185] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5002), + [sym_rescue_block] = STATE(5002), + [sym_catch_block] = STATE(5002), + [sym_else_block] = STATE(5002), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5002), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1024), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [194] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5014), - [sym_rescue_block] = STATE(5014), - [sym_catch_block] = STATE(5014), - [sym_else_block] = STATE(5014), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5014), + [186] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5045), + [sym_rescue_block] = STATE(5045), + [sym_catch_block] = STATE(5045), + [sym_else_block] = STATE(5045), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5045), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1026), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [195] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5020), - [sym_rescue_block] = STATE(5020), - [sym_catch_block] = STATE(5020), - [sym_else_block] = STATE(5020), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5020), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [187] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(4990), + [sym_rescue_block] = STATE(4990), + [sym_catch_block] = STATE(4990), + [sym_else_block] = STATE(4990), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(4990), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1028), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [196] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5022), - [sym_rescue_block] = STATE(5022), - [sym_catch_block] = STATE(5022), - [sym_else_block] = STATE(5022), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5022), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [188] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(4992), + [sym_rescue_block] = STATE(4992), + [sym_catch_block] = STATE(4992), + [sym_else_block] = STATE(4992), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(4992), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1030), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [197] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5024), - [sym_rescue_block] = STATE(5024), - [sym_catch_block] = STATE(5024), - [sym_else_block] = STATE(5024), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5024), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [189] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(4993), + [sym_rescue_block] = STATE(4993), + [sym_catch_block] = STATE(4993), + [sym_else_block] = STATE(4993), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(4993), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1032), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [198] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5029), - [sym_rescue_block] = STATE(5029), - [sym_catch_block] = STATE(5029), - [sym_else_block] = STATE(5029), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5029), + [190] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5046), + [sym_rescue_block] = STATE(5046), + [sym_catch_block] = STATE(5046), + [sym_else_block] = STATE(5046), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5046), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [199] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_after_block] = STATE(5060), - [sym_rescue_block] = STATE(5060), - [sym_catch_block] = STATE(5060), - [sym_else_block] = STATE(5060), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_do_block_repeat1] = STATE(5060), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), + [191] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5018), + [sym_rescue_block] = STATE(5018), + [sym_catch_block] = STATE(5018), + [sym_else_block] = STATE(5018), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5018), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), [anon_sym_end] = ACTIONS(1036), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [192] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(4983), + [sym_rescue_block] = STATE(4983), + [sym_catch_block] = STATE(4983), + [sym_else_block] = STATE(4983), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(4983), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1038), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [193] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(4997), + [sym_rescue_block] = STATE(4997), + [sym_catch_block] = STATE(4997), + [sym_else_block] = STATE(4997), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(4997), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1040), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [194] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5008), + [sym_rescue_block] = STATE(5008), + [sym_catch_block] = STATE(5008), + [sym_else_block] = STATE(5008), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5008), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1042), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [195] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5020), + [sym_rescue_block] = STATE(5020), + [sym_catch_block] = STATE(5020), + [sym_else_block] = STATE(5020), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5020), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1044), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [196] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5009), + [sym_rescue_block] = STATE(5009), + [sym_catch_block] = STATE(5009), + [sym_else_block] = STATE(5009), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5009), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1046), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [197] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5011), + [sym_rescue_block] = STATE(5011), + [sym_catch_block] = STATE(5011), + [sym_else_block] = STATE(5011), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5011), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1048), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [198] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5049), + [sym_rescue_block] = STATE(5049), + [sym_catch_block] = STATE(5049), + [sym_else_block] = STATE(5049), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5049), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1050), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [199] = { + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_after_block] = STATE(5034), + [sym_rescue_block] = STATE(5034), + [sym_catch_block] = STATE(5034), + [sym_else_block] = STATE(5034), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_do_block_repeat1] = STATE(5034), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1052), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(123), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [200] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7481), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7470), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [201] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7426), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1086), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7513), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1104), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [202] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7397), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7482), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [203] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7514), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7435), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1108), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [204] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7409), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1122), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7485), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1140), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [205] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7523), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7399), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7480), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1166), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [206] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7493), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7484), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1148), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [207] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7519), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1150), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7371), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1170), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [208] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7415), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7399), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7419), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1172), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [209] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7453), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7374), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [210] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7464), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7494), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1156), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1176), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [211] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7485), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1158), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7498), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [212] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7427), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7455), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1180), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [213] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7443), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7477), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1162), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [214] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7440), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1164), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7505), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1184), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [215] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7540), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7399), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7381), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1186), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [216] = { - [sym_expression] = STATE(4001), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7178), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7389), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1168), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [217] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7463), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4007), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7198), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [218] = { - [sym_terminator] = STATE(385), - [sym_expression] = STATE(1859), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_body] = STATE(5134), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_repeat1] = STATE(1372), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1179), - [anon_sym_catch] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1179), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7506), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [219] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7389), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7508), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1194), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [220] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7390), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7445), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [221] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7411), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_terminator] = STATE(385), + [sym_expression] = STATE(2009), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_body] = STATE(5114), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_repeat1] = STATE(1358), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1205), + [anon_sym_catch] = ACTIONS(1205), + [anon_sym_else] = ACTIONS(1205), + [anon_sym_end] = ACTIONS(1205), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [222] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7456), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7386), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1187), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [223] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7370), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7524), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1189), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [224] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7509), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1191), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7434), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1211), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [225] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7496), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7399), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7451), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1213), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [226] = { - [sym_terminator] = STATE(385), - [sym_expression] = STATE(1859), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_body] = STATE(5133), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_repeat1] = STATE(1372), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1195), - [anon_sym_catch] = ACTIONS(1195), - [anon_sym_else] = ACTIONS(1195), - [anon_sym_end] = ACTIONS(1195), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1195), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7447), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [227] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7476), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_terminator] = STATE(385), + [sym_expression] = STATE(2009), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_body] = STATE(5111), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_repeat1] = STATE(1358), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1200), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1217), + [anon_sym_catch] = ACTIONS(1217), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1217), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [228] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7450), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7502), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1199), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [229] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7488), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7362), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [230] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7432), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7490), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [231] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7412), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7465), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1205), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [232] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7474), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1207), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7449), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1227), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [233] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7547), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7399), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7423), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1229), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [234] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7457), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7471), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1211), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [235] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7500), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7465), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1213), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [236] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7503), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [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(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7477), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [237] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7512), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1217), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7518), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [238] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7548), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1219), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7422), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [239] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7441), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7399), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7467), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1241), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [240] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7466), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1223), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7472), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1243), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [241] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7523), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7475), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1225), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [242] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7532), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7416), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [243] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7439), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7488), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [244] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7486), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7503), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [245] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7504), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7522), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [246] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7471), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7497), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1235), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [247] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7423), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1237), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7372), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1257), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [248] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7435), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1239), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7376), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1259), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [249] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7422), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7437), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [250] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7421), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7479), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [251] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7460), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7431), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [252] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7462), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7440), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [253] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7386), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7501), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [254] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7517), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7399), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7515), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1271), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [255] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7491), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7404), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1253), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [256] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7538), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4007), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7261), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [257] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7505), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7519), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [258] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7506), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7393), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [259] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7501), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7429), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [260] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7396), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7446), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1263), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [261] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7500), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7405), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1265), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [262] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7493), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7399), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1267), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7413), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1287), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [263] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), [sym_items_with_trailing_separator] = STATE(7478), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [264] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7482), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7459), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1271), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [265] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7416), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7460), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [266] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7468), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7387), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1295), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [267] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7511), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7410), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1277), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [268] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7483), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7399), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7453), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1299), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [269] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7469), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7377), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [270] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7495), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7380), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [271] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7507), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7394), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [272] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7530), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1287), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7360), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [273] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7404), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7491), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1289), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [274] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7443), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7399), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7484), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1311), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [275] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7529), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7410), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1293), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [276] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7537), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7367), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [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(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [277] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7385), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1297), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7382), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [278] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7461), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7462), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1319), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [279] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7417), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7433), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1301), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [280] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7438), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7399), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1303), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7516), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1323), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [281] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7489), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7420), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1305), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [282] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7534), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7448), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [283] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7536), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7364), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1309), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1329), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [284] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7546), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1311), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7369), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1331), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [285] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7398), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7418), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [286] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7535), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1315), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7524), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1335), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [287] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7494), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7428), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [288] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7446), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7368), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [289] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7392), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [290] = { - [sym_expression] = STATE(4273), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_items_with_trailing_separator] = STATE(7467), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1323), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7395), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [291] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7459), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4085), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_items_with_trailing_separator] = STATE(7406), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [292] = { - [sym_expression] = STATE(4336), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7399), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7375), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_call_arguments_with_trailing_separator] = STATE(7487), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1327), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [293] = { - [sym_expression] = STATE(3879), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(6647), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_items_with_trailing_separator] = STATE(7511), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4238), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7399), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_call_arguments_with_trailing_separator] = STATE(7388), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [294] = { - [sym_expression] = STATE(4001), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7174), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3959), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7038), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_items_with_trailing_separator] = STATE(7430), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_RBRACK] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [295] = { - [sym_expression] = STATE(4592), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(7174), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1331), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(4638), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7261), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [296] = { - [sym_expression] = STATE(4592), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords_with_trailing_separator] = STATE(7178), - [sym_pair] = STATE(7239), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_GT_GT] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(4638), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords_with_trailing_separator] = STATE(7198), + [sym_pair] = STATE(7226), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1158), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [297] = { - [sym_expression] = STATE(2344), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(1955), - [sym_quoted_i_single] = STATE(1956), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_keywords] = STATE(2194), - [sym_pair] = STATE(2251), - [sym_keyword] = STATE(1034), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2245), - [sym_semgrep_ellipsis] = STATE(2271), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(129), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [298] = { - [sym_expression] = STATE(4417), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(1955), - [sym_quoted_i_single] = STATE(1956), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_keywords] = STATE(2194), - [sym_pair] = STATE(4010), - [sym_keyword] = STATE(1029), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2245), - [sym_semgrep_ellipsis] = STATE(2271), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [299] = { - [sym_expression] = STATE(4419), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(1955), - [sym_quoted_i_single] = STATE(1956), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_keywords] = STATE(2309), - [sym_pair] = STATE(4010), - [sym_keyword] = STATE(1029), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2245), - [sym_semgrep_ellipsis] = STATE(2271), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [300] = { - [sym_expression] = STATE(2769), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(1955), - [sym_quoted_i_single] = STATE(1956), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_keywords] = STATE(2194), - [sym_pair] = STATE(2251), - [sym_keyword] = STATE(1034), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2245), - [sym_semgrep_ellipsis] = STATE(2271), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1351), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(129), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [301] = { - [sym_expression] = STATE(4330), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(4127), - [sym_pair] = STATE(4012), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(4129), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), - }, - [302] = { - [sym_expression] = STATE(3792), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3462), - [sym_quoted_i_single] = STATE(3463), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_keywords] = STATE(3968), - [sym_pair] = STATE(3175), - [sym_keyword] = STATE(911), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3984), - [sym_semgrep_ellipsis] = STATE(3556), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(658), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), - }, - [303] = { - [sym_expression] = STATE(3792), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3462), - [sym_quoted_i_single] = STATE(3463), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_keywords] = STATE(3979), - [sym_pair] = STATE(3175), - [sym_keyword] = STATE(911), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3984), - [sym_semgrep_ellipsis] = STATE(3556), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(658), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), - }, - [304] = { - [sym_expression] = STATE(3543), - [sym_block] = STATE(3138), + [sym_expression] = STATE(3381), + [sym_block] = STATE(3257), [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(2628), - [sym_quoted_i_single] = STATE(2629), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_keywords] = STATE(3337), - [sym_pair] = STATE(2908), - [sym_keyword] = STATE(797), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3155), - [sym_semgrep_ellipsis] = STATE(3354), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(445), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(485), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(2616), + [sym_quoted_i_single] = STATE(2617), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_keywords] = STATE(3322), + [sym_pair] = STATE(2893), + [sym_keyword] = STATE(911), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3260), + [sym_semgrep_ellipsis] = STATE(3378), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(422), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(464), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(466), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, - [305] = { - [sym_expression] = STATE(4338), - [sym_block] = STATE(4248), + [298] = { + [sym_expression] = STATE(4790), + [sym_block] = STATE(4579), [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7044), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), - }, - [306] = { - [sym_expression] = STATE(4786), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4118), - [sym_quoted_i_single] = STATE(4119), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_keywords] = STATE(4601), - [sym_pair] = STATE(4207), - [sym_keyword] = STATE(1016), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4493), - [sym_semgrep_ellipsis] = STATE(4612), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1363), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1403), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), - }, - [307] = { - [sym_expression] = STATE(2349), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(1955), - [sym_quoted_i_single] = STATE(1956), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_keywords] = STATE(2309), - [sym_pair] = STATE(2251), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4387), + [sym_quoted_i_single] = STATE(4388), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_keywords] = STATE(4685), + [sym_pair] = STATE(4395), [sym_keyword] = STATE(1034), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2245), - [sym_semgrep_ellipsis] = STATE(2271), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(129), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [308] = { - [sym_expression] = STATE(4802), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4118), - [sym_quoted_i_single] = STATE(4119), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_keywords] = STATE(4605), - [sym_pair] = STATE(4207), - [sym_keyword] = STATE(1016), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4493), - [sym_semgrep_ellipsis] = STATE(4612), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1363), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1403), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), - }, - [309] = { - [sym_expression] = STATE(1693), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1541), - [sym_pair] = STATE(1667), - [sym_keyword] = STATE(1028), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(171), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4582), + [sym_semgrep_ellipsis] = STATE(4608), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1359), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1401), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, - [310] = { - [sym_expression] = STATE(1695), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1542), - [sym_pair] = STATE(1667), - [sym_keyword] = STATE(1028), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), + [299] = { + [sym_expression] = STATE(2474), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(1985), + [sym_quoted_i_single] = STATE(1986), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_keywords] = STATE(2186), + [sym_pair] = STATE(2019), + [sym_keyword] = STATE(1046), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(171), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2088), + [sym_semgrep_ellipsis] = STATE(2072), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1415), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [311] = { - [sym_expression] = STATE(3406), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1707), - [sym_pair] = STATE(2913), - [sym_keyword] = STATE(933), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), + [300] = { + [sym_expression] = STATE(2615), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1553), + [sym_pair] = STATE(2453), + [sym_keyword] = STATE(929), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -66375,250 +65159,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [312] = { - [sym_expression] = STATE(3355), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(2628), - [sym_quoted_i_single] = STATE(2629), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_keywords] = STATE(3232), - [sym_pair] = STATE(2908), - [sym_keyword] = STATE(797), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3155), - [sym_semgrep_ellipsis] = STATE(3354), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(445), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(485), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [313] = { - [sym_expression] = STATE(3406), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1708), - [sym_pair] = STATE(2913), - [sym_keyword] = STATE(933), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), + [301] = { + [sym_expression] = STATE(2615), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1555), + [sym_pair] = STATE(2453), + [sym_keyword] = STATE(929), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -66633,2056 +65289,2332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [314] = { - [sym_expression] = STATE(3357), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(2628), - [sym_quoted_i_single] = STATE(2629), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_keywords] = STATE(3236), - [sym_pair] = STATE(2908), - [sym_keyword] = STATE(797), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3155), - [sym_semgrep_ellipsis] = STATE(3354), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(445), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(485), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [315] = { - [sym_expression] = STATE(4676), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7377), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [302] = { + [sym_expression] = STATE(4148), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(6902), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, - [316] = { - [sym_expression] = STATE(2758), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2430), - [sym_pair] = STATE(2441), - [sym_keyword] = STATE(840), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [303] = { + [sym_expression] = STATE(3403), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1831), + [sym_pair] = STATE(2898), + [sym_keyword] = STATE(989), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, - [317] = { - [sym_expression] = STATE(4596), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(1955), - [sym_quoted_i_single] = STATE(1956), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_keywords] = STATE(2194), - [sym_pair] = STATE(4010), - [sym_keyword] = STATE(1029), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2245), - [sym_semgrep_ellipsis] = STATE(2271), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [304] = { + [sym_expression] = STATE(3403), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1748), + [sym_pair] = STATE(2898), + [sym_keyword] = STATE(989), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, - [318] = { - [sym_expression] = STATE(2758), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2341), - [sym_pair] = STATE(2441), - [sym_keyword] = STATE(840), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [305] = { + [sym_expression] = STATE(3379), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(2616), + [sym_quoted_i_single] = STATE(2617), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_keywords] = STATE(3318), + [sym_pair] = STATE(2893), + [sym_keyword] = STATE(911), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3260), + [sym_semgrep_ellipsis] = STATE(3378), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(422), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(464), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(466), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, - [319] = { - [sym_expression] = STATE(4598), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(1955), - [sym_quoted_i_single] = STATE(1956), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_keywords] = STATE(2309), - [sym_pair] = STATE(4010), + [306] = { + [sym_expression] = STATE(3198), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1834), + [sym_pair] = STATE(2954), [sym_keyword] = STATE(1029), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2245), - [sym_semgrep_ellipsis] = STATE(2271), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [320] = { - [sym_expression] = STATE(4676), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(7289), - [sym_pair] = STATE(5640), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(491), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, - [321] = { - [sym_expression] = STATE(3956), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2430), - [sym_pair] = STATE(3524), - [sym_keyword] = STATE(977), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [307] = { + [sym_expression] = STATE(3930), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(1874), + [sym_pair] = STATE(3464), + [sym_keyword] = STATE(1001), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(1977), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1427), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, - [322] = { - [sym_expression] = STATE(3956), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2341), - [sym_pair] = STATE(3524), - [sym_keyword] = STATE(977), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [308] = { + [sym_expression] = STATE(3935), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(1876), + [sym_pair] = STATE(3464), + [sym_keyword] = STATE(1001), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(1977), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1427), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, - [323] = { - [sym_expression] = STATE(2952), - [sym_block] = STATE(1634), + [309] = { + [sym_expression] = STATE(4041), + [sym_block] = STATE(3449), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1541), - [sym_pair] = STATE(2382), - [sym_keyword] = STATE(816), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords] = STATE(3512), + [sym_pair] = STATE(3190), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(3191), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1429), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, - [324] = { - [sym_expression] = STATE(2957), - [sym_block] = STATE(1634), + [310] = { + [sym_expression] = STATE(4669), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7356), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), + }, + [311] = { + [sym_expression] = STATE(4047), + [sym_block] = STATE(3449), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1542), - [sym_pair] = STATE(2382), - [sym_keyword] = STATE(816), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords] = STATE(3513), + [sym_pair] = STATE(3190), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(3191), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1429), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), + }, + [312] = { + [sym_expression] = STATE(4634), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(1985), + [sym_quoted_i_single] = STATE(1986), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_keywords] = STATE(2186), + [sym_pair] = STATE(3960), + [sym_keyword] = STATE(1041), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), + [sym_anonymous_call] = STATE(1690), [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2088), + [sym_semgrep_ellipsis] = STATE(2072), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1441), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [325] = { - [sym_expression] = STATE(4139), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4086), - [sym_quoted_i_single] = STATE(3550), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_keywords] = STATE(4313), - [sym_pair] = STATE(3762), - [sym_keyword] = STATE(666), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4134), - [sym_semgrep_ellipsis] = STATE(4257), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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(99), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(1435), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [313] = { + [sym_expression] = STATE(4687), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords] = STATE(3512), + [sym_pair] = STATE(4452), + [sym_keyword] = STATE(1042), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(3191), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1429), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, - [326] = { - [sym_expression] = STATE(4141), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4086), - [sym_quoted_i_single] = STATE(3550), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_keywords] = STATE(4314), - [sym_pair] = STATE(3762), - [sym_keyword] = STATE(666), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4134), - [sym_semgrep_ellipsis] = STATE(4257), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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(99), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(1435), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [314] = { + [sym_expression] = STATE(4689), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords] = STATE(3513), + [sym_pair] = STATE(4452), + [sym_keyword] = STATE(1042), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(3191), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1429), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, - [327] = { - [sym_expression] = STATE(4565), - [sym_block] = STATE(4111), + [315] = { + [sym_expression] = STATE(4636), + [sym_block] = STATE(2124), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4086), - [sym_quoted_i_single] = STATE(3550), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_keywords] = STATE(4313), - [sym_pair] = STATE(3762), - [sym_keyword] = STATE(666), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4134), - [sym_semgrep_ellipsis] = STATE(4257), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1439), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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(99), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(1435), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(1985), + [sym_quoted_i_single] = STATE(1986), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_keywords] = STATE(2187), + [sym_pair] = STATE(3960), + [sym_keyword] = STATE(1041), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2088), + [sym_semgrep_ellipsis] = STATE(2072), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1441), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [328] = { - [sym_expression] = STATE(4570), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4086), - [sym_quoted_i_single] = STATE(3550), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_keywords] = STATE(4314), - [sym_pair] = STATE(3762), - [sym_keyword] = STATE(666), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4134), - [sym_semgrep_ellipsis] = STATE(4257), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1439), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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(99), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(1435), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [316] = { + [sym_expression] = STATE(3983), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2442), + [sym_pair] = STATE(3514), + [sym_keyword] = STATE(1012), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, - [329] = { - [sym_expression] = STATE(1903), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1785), - [sym_pair] = STATE(1848), - [sym_keyword] = STATE(1032), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), + [317] = { + [sym_expression] = STATE(3983), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2446), + [sym_pair] = STATE(3514), + [sym_keyword] = STATE(1012), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), + }, + [318] = { + [sym_expression] = STATE(4815), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords] = STATE(3512), + [sym_pair] = STATE(4452), + [sym_keyword] = STATE(1042), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(3191), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1463), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), + }, + [319] = { + [sym_expression] = STATE(2935), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1589), + [sym_pair] = STATE(2453), + [sym_keyword] = STATE(929), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(171), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -68697,508 +67629,382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [330] = { - [sym_expression] = STATE(2531), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2353), - [sym_pair] = STATE(2441), - [sym_keyword] = STATE(840), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [331] = { - [sym_expression] = STATE(4045), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords] = STATE(3519), - [sym_pair] = STATE(3384), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(3385), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [320] = { + [sym_expression] = STATE(3590), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3372), + [sym_quoted_i_single] = STATE(3373), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_keywords] = STATE(3966), + [sym_pair] = STATE(3059), + [sym_keyword] = STATE(947), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3816), + [sym_semgrep_ellipsis] = STATE(3630), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(614), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(616), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, - [332] = { - [sym_expression] = STATE(2533), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2356), - [sym_pair] = STATE(2441), - [sym_keyword] = STATE(840), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [321] = { + [sym_expression] = STATE(4817), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords] = STATE(3513), + [sym_pair] = STATE(4452), + [sym_keyword] = STATE(1042), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(3191), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1463), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, - [333] = { - [sym_expression] = STATE(3259), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1707), - [sym_pair] = STATE(2974), - [sym_keyword] = STATE(997), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), + [322] = { + [sym_expression] = STATE(2940), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1590), + [sym_pair] = STATE(2453), + [sym_keyword] = STATE(929), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(414), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -69213,121 +68019,2072 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(427), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [334] = { - [sym_expression] = STATE(3259), - [sym_block] = STATE(1730), + [323] = { + [sym_expression] = STATE(3590), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3372), + [sym_quoted_i_single] = STATE(3373), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_keywords] = STATE(3575), + [sym_pair] = STATE(3059), + [sym_keyword] = STATE(947), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3816), + [sym_semgrep_ellipsis] = STATE(3630), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(614), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(616), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), + }, + [324] = { + [sym_expression] = STATE(3335), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1831), + [sym_pair] = STATE(2954), + [sym_keyword] = STATE(1029), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(491), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), + }, + [325] = { + [sym_expression] = STATE(2515), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2463), + [sym_pair] = STATE(2367), + [sym_keyword] = STATE(941), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), + }, + [326] = { + [sym_expression] = STATE(3335), + [sym_block] = STATE(1705), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1708), - [sym_pair] = STATE(2974), - [sym_keyword] = STATE(997), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1748), + [sym_pair] = STATE(2954), + [sym_keyword] = STATE(1029), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(491), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), + }, + [327] = { + [sym_expression] = STATE(2517), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2467), + [sym_pair] = STATE(2367), + [sym_keyword] = STATE(941), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), + }, + [328] = { + [sym_expression] = STATE(4616), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(3974), + [sym_quoted_i_single] = STATE(3975), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_keywords] = STATE(4185), + [sym_pair] = STATE(3837), + [sym_keyword] = STATE(694), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4078), + [sym_semgrep_ellipsis] = STATE(4418), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1469), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(1471), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1473), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), + }, + [329] = { + [sym_expression] = STATE(4621), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(3974), + [sym_quoted_i_single] = STATE(3975), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_keywords] = STATE(4186), + [sym_pair] = STATE(3837), + [sym_keyword] = STATE(694), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4078), + [sym_semgrep_ellipsis] = STATE(4418), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1469), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(1471), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1473), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), + }, + [330] = { + [sym_expression] = STATE(4694), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4387), + [sym_quoted_i_single] = STATE(4388), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_keywords] = STATE(4682), + [sym_pair] = STATE(4395), + [sym_keyword] = STATE(1034), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4582), + [sym_semgrep_ellipsis] = STATE(4608), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1483), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), + }, + [331] = { + [sym_expression] = STATE(4696), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4387), + [sym_quoted_i_single] = STATE(4388), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_keywords] = STATE(4685), + [sym_pair] = STATE(4395), + [sym_keyword] = STATE(1034), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4582), + [sym_semgrep_ellipsis] = STATE(4608), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1483), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), + }, + [332] = { + [sym_expression] = STATE(3766), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2463), + [sym_pair] = STATE(3514), + [sym_keyword] = STATE(1012), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), + }, + [333] = { + [sym_expression] = STATE(3613), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3372), + [sym_quoted_i_single] = STATE(3373), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_keywords] = STATE(3696), + [sym_pair] = STATE(3059), + [sym_keyword] = STATE(947), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3816), + [sym_semgrep_ellipsis] = STATE(3630), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(614), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(616), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), + }, + [334] = { + [sym_expression] = STATE(3768), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2467), + [sym_pair] = STATE(3514), + [sym_keyword] = STATE(1012), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), + }, + [335] = { + [sym_expression] = STATE(3615), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3372), + [sym_quoted_i_single] = STATE(3373), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_keywords] = STATE(3713), + [sym_pair] = STATE(3059), + [sym_keyword] = STATE(947), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3816), + [sym_semgrep_ellipsis] = STATE(3630), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(572), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(614), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(616), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), + }, + [336] = { + [sym_expression] = STATE(4468), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords] = STATE(4469), + [sym_pair] = STATE(4256), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(4662), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1487), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), + }, + [337] = { + [sym_expression] = STATE(4207), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(1985), + [sym_quoted_i_single] = STATE(1986), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_keywords] = STATE(2186), + [sym_pair] = STATE(4061), + [sym_keyword] = STATE(1043), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2088), + [sym_semgrep_ellipsis] = STATE(2072), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1501), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1415), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), + }, + [338] = { + [sym_expression] = STATE(1675), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1553), + [sym_pair] = STATE(1641), + [sym_keyword] = STATE(1040), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(414), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(171), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -69342,246 +70099,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(427), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [335] = { - [sym_expression] = STATE(3634), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(3341), - [sym_quoted_i_single] = STATE(3342), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_keywords] = STATE(3650), - [sym_pair] = STATE(3333), - [sym_keyword] = STATE(865), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3725), - [sym_semgrep_ellipsis] = STATE(4042), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(510), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(552), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [339] = { + [sym_expression] = STATE(4007), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7463), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, - [336] = { - [sym_expression] = STATE(1906), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1786), - [sym_pair] = STATE(1848), - [sym_keyword] = STATE(1032), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), + [340] = { + [sym_expression] = STATE(1675), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1555), + [sym_pair] = STATE(1641), + [sym_keyword] = STATE(1040), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), [aux_sym_identifier_token1] = ACTIONS(169), @@ -69600,2181 +70359,2198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [337] = { - [sym_expression] = STATE(4052), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords] = STATE(3521), - [sym_pair] = STATE(3384), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(3385), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), - }, - [338] = { - [sym_expression] = STATE(3637), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(3341), - [sym_quoted_i_single] = STATE(3342), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_keywords] = STATE(3665), - [sym_pair] = STATE(3333), - [sym_keyword] = STATE(865), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3725), - [sym_semgrep_ellipsis] = STATE(4042), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(510), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(552), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), - }, - [339] = { - [sym_expression] = STATE(4001), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7392), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), - }, - [340] = { - [sym_expression] = STATE(3543), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(2628), - [sym_quoted_i_single] = STATE(2629), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_keywords] = STATE(3247), - [sym_pair] = STATE(2908), - [sym_keyword] = STATE(797), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3155), - [sym_semgrep_ellipsis] = STATE(3354), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(445), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(485), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [341] = { - [sym_expression] = STATE(2627), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1663), - [sym_pair] = STATE(2382), - [sym_keyword] = STATE(816), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), + [sym_expression] = STATE(2753), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(1985), + [sym_quoted_i_single] = STATE(1986), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_keywords] = STATE(2186), + [sym_pair] = STATE(2019), + [sym_keyword] = STATE(1046), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2088), + [sym_semgrep_ellipsis] = STATE(2072), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1441), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [342] = { - [sym_expression] = STATE(2627), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1628), - [sym_pair] = STATE(2382), - [sym_keyword] = STATE(816), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), + [sym_expression] = STATE(4480), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(1985), + [sym_quoted_i_single] = STATE(1986), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_keywords] = STATE(2187), + [sym_pair] = STATE(4061), + [sym_keyword] = STATE(1043), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2088), + [sym_semgrep_ellipsis] = STATE(2072), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1501), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1441), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [343] = { - [sym_expression] = STATE(1726), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1663), - [sym_pair] = STATE(1667), - [sym_keyword] = STATE(1028), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), + [sym_expression] = STATE(4209), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(1985), + [sym_quoted_i_single] = STATE(1986), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_keywords] = STATE(2187), + [sym_pair] = STATE(4061), + [sym_keyword] = STATE(1043), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(171), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2088), + [sym_semgrep_ellipsis] = STATE(2072), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1501), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1415), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [344] = { - [sym_expression] = STATE(2771), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(1955), - [sym_quoted_i_single] = STATE(1956), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_keywords] = STATE(2309), - [sym_pair] = STATE(2251), - [sym_keyword] = STATE(1034), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2245), - [sym_semgrep_ellipsis] = STATE(2271), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1351), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(129), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2440), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(1985), + [sym_quoted_i_single] = STATE(1986), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_keywords] = STATE(2187), + [sym_pair] = STATE(2019), + [sym_keyword] = STATE(1046), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2088), + [sym_semgrep_ellipsis] = STATE(2072), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1415), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [345] = { - [sym_expression] = STATE(1726), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1475), - [sym_quoted_i_single] = STATE(1476), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_keywords] = STATE(1628), - [sym_pair] = STATE(1667), - [sym_keyword] = STATE(1028), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1656), - [sym_semgrep_ellipsis] = STATE(1658), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(171), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4494), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4328), + [sym_quoted_i_single] = STATE(4329), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_keywords] = STATE(4496), + [sym_pair] = STATE(4256), + [sym_keyword] = STATE(884), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4509), + [sym_semgrep_ellipsis] = STATE(4662), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1114), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1156), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1487), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [346] = { - [sym_expression] = STATE(4560), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(1955), - [sym_quoted_i_single] = STATE(1956), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_keywords] = STATE(2309), - [sym_pair] = STATE(3992), - [sym_keyword] = STATE(1031), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), + [sym_expression] = STATE(3165), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(2616), + [sym_quoted_i_single] = STATE(2617), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_keywords] = STATE(3334), + [sym_pair] = STATE(2893), + [sym_keyword] = STATE(911), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2245), - [sym_semgrep_ellipsis] = STATE(2271), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1455), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3260), + [sym_semgrep_ellipsis] = STATE(3378), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(422), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(464), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(466), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [347] = { - [sym_expression] = STATE(4688), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords] = STATE(7492), - [sym_pair] = STATE(7039), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4486), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords] = STATE(7495), + [sym_pair] = STATE(7026), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [348] = { - [sym_expression] = STATE(3854), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(1925), - [sym_pair] = STATE(3464), - [sym_keyword] = STATE(956), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(1890), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(3345), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(2896), + [sym_quoted_i_single] = STATE(2897), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_keywords] = STATE(3194), + [sym_pair] = STATE(2746), + [sym_keyword] = STATE(965), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3163), + [sym_semgrep_ellipsis] = STATE(3200), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(672), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [349] = { - [sym_expression] = STATE(3954), - [sym_block] = STATE(3962), + [sym_expression] = STATE(2990), + [sym_block] = STATE(3160), [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(3341), - [sym_quoted_i_single] = STATE(3342), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_keywords] = STATE(4017), - [sym_pair] = STATE(3333), - [sym_keyword] = STATE(865), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3725), - [sym_semgrep_ellipsis] = STATE(4042), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(510), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(552), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(2896), + [sym_quoted_i_single] = STATE(2897), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_keywords] = STATE(3232), + [sym_pair] = STATE(2746), + [sym_keyword] = STATE(965), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3163), + [sym_semgrep_ellipsis] = STATE(3200), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(672), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [350] = { - [sym_expression] = STATE(3194), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(2911), - [sym_quoted_i_single] = STATE(2912), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [sym_string] = STATE(3148), - [sym_charlist] = STATE(3148), - [sym_sigil] = STATE(3148), - [sym_keywords] = STATE(3528), - [sym_pair] = STATE(2760), - [sym_keyword] = STATE(888), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3148), - [sym_tuple] = STATE(3148), - [sym_bitstring] = STATE(3148), - [sym_map] = STATE(3148), - [sym_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3271), - [sym_semgrep_ellipsis] = STATE(3076), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(3345), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(2896), + [sym_quoted_i_single] = STATE(2897), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_keywords] = STATE(3195), + [sym_pair] = STATE(2746), + [sym_keyword] = STATE(965), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3163), + [sym_semgrep_ellipsis] = STATE(3200), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(672), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [351] = { - [sym_expression] = STATE(3954), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(3341), - [sym_quoted_i_single] = STATE(3342), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_keywords] = STATE(4030), - [sym_pair] = STATE(3333), - [sym_keyword] = STATE(865), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3725), - [sym_semgrep_ellipsis] = STATE(4042), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(510), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(552), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(4664), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords] = STATE(3512), + [sym_pair] = STATE(3190), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(3191), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1463), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [352] = { - [sym_expression] = STATE(3196), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(2911), - [sym_quoted_i_single] = STATE(2912), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [sym_string] = STATE(3148), - [sym_charlist] = STATE(3148), - [sym_sigil] = STATE(3148), - [sym_keywords] = STATE(3532), - [sym_pair] = STATE(2760), - [sym_keyword] = STATE(888), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3148), - [sym_tuple] = STATE(3148), - [sym_bitstring] = STATE(3148), - [sym_map] = STATE(3148), - [sym_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3271), - [sym_semgrep_ellipsis] = STATE(3076), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(2992), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(2896), + [sym_quoted_i_single] = STATE(2897), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_keywords] = STATE(3233), + [sym_pair] = STATE(2746), + [sym_keyword] = STATE(965), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3163), + [sym_semgrep_ellipsis] = STATE(3200), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(672), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [353] = { - [sym_expression] = STATE(1875), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1707), - [sym_pair] = STATE(1848), - [sym_keyword] = STATE(1032), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), + [sym_expression] = STATE(1859), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1831), + [sym_pair] = STATE(1763), + [sym_keyword] = STATE(1044), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(171), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), + }, + [354] = { + [sym_expression] = STATE(1859), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1748), + [sym_pair] = STATE(1763), + [sym_keyword] = STATE(1044), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(171), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), + }, + [355] = { + [sym_expression] = STATE(3972), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3462), + [sym_quoted_i_single] = STATE(3463), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_keywords] = STATE(3996), + [sym_pair] = STATE(3274), + [sym_keyword] = STATE(974), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3802), + [sym_semgrep_ellipsis] = STATE(3677), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(518), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(558), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(560), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), + }, + [356] = { + [sym_expression] = STATE(2756), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(1985), + [sym_quoted_i_single] = STATE(1986), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_keywords] = STATE(2187), + [sym_pair] = STATE(2019), + [sym_keyword] = STATE(1046), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2088), + [sym_semgrep_ellipsis] = STATE(2072), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1505), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1441), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [357] = { + [sym_expression] = STATE(1803), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1589), + [sym_pair] = STATE(1641), + [sym_keyword] = STATE(1040), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), [aux_sym_identifier_token1] = ACTIONS(169), @@ -71793,117 +72569,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [354] = { - [sym_expression] = STATE(1875), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1708), - [sym_pair] = STATE(1848), - [sym_keyword] = STATE(1032), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), + [358] = { + [sym_expression] = STATE(4683), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords] = STATE(3513), + [sym_pair] = STATE(3190), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(3191), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1463), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), + }, + [359] = { + [sym_expression] = STATE(3981), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3462), + [sym_quoted_i_single] = STATE(3463), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_keywords] = STATE(4013), + [sym_pair] = STATE(3274), + [sym_keyword] = STATE(974), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3802), + [sym_semgrep_ellipsis] = STATE(3677), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(518), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(558), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(560), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), + }, + [360] = { + [sym_expression] = STATE(1807), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1489), + [sym_quoted_i_single] = STATE(1458), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_keywords] = STATE(1590), + [sym_pair] = STATE(1641), + [sym_keyword] = STATE(1040), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1545), + [sym_semgrep_ellipsis] = STATE(1573), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), [aux_sym_identifier_token1] = ACTIONS(169), @@ -71922,3627 +72959,3135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(213), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [355] = { - [sym_expression] = STATE(4025), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3462), - [sym_quoted_i_single] = STATE(3463), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_keywords] = STATE(3565), - [sym_pair] = STATE(3175), - [sym_keyword] = STATE(911), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3984), - [sym_semgrep_ellipsis] = STATE(3556), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(658), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), - }, - [356] = { - [sym_expression] = STATE(4027), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3462), - [sym_quoted_i_single] = STATE(3463), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_keywords] = STATE(3569), - [sym_pair] = STATE(3175), - [sym_keyword] = STATE(911), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3984), - [sym_semgrep_ellipsis] = STATE(3556), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(616), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(658), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), - }, - [357] = { - [sym_expression] = STATE(3861), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(1928), - [sym_pair] = STATE(3464), - [sym_keyword] = STATE(956), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(1890), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(778), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(790), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(222), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [358] = { - [sym_expression] = STATE(4692), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords] = STATE(3519), - [sym_pair] = STATE(4385), - [sym_keyword] = STATE(1030), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(3385), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [361] = { + [sym_expression] = STATE(1973), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1762), + [sym_pair] = STATE(1763), + [sym_keyword] = STATE(1044), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(171), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, - [359] = { - [sym_expression] = STATE(4651), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords] = STATE(4657), - [sym_pair] = STATE(4143), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(4640), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [362] = { + [sym_expression] = STATE(1998), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1834), + [sym_pair] = STATE(1763), + [sym_keyword] = STATE(1044), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(171), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(220), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, - [360] = { - [sym_expression] = STATE(2217), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(1925), - [sym_pair] = STATE(2031), - [sym_keyword] = STATE(1033), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(1890), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [363] = { + [sym_expression] = STATE(2170), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(1874), + [sym_pair] = STATE(2016), + [sym_keyword] = STATE(1045), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(1977), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1427), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, - [361] = { - [sym_expression] = STATE(4707), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords] = STATE(3521), - [sym_pair] = STATE(4385), - [sym_keyword] = STATE(1030), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(3385), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), - }, - [362] = { - [sym_expression] = STATE(4672), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4090), - [sym_quoted_i_single] = STATE(4389), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_keywords] = STATE(4681), - [sym_pair] = STATE(4143), - [sym_keyword] = STATE(749), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4586), - [sym_semgrep_ellipsis] = STATE(4640), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1096), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1138), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), - }, - [363] = { - [sym_expression] = STATE(2221), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(1712), - [sym_quoted_i_single] = STATE(1806), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [sym_string] = STATE(1959), - [sym_charlist] = STATE(1959), - [sym_sigil] = STATE(1959), - [sym_keywords] = STATE(1928), - [sym_pair] = STATE(2031), - [sym_keyword] = STATE(1033), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1959), - [sym_tuple] = STATE(1959), - [sym_bitstring] = STATE(1959), - [sym_map] = STATE(1959), - [sym_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1978), - [sym_semgrep_ellipsis] = STATE(1890), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(75), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(129), + [364] = { + [sym_expression] = STATE(2175), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(1691), + [sym_quoted_i_single] = STATE(1812), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_keywords] = STATE(1876), + [sym_pair] = STATE(2016), + [sym_keyword] = STATE(1045), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1892), + [sym_semgrep_ellipsis] = STATE(1977), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(73), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(127), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1427), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, - [364] = { - [sym_expression] = STATE(4842), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords] = STATE(3519), - [sym_pair] = STATE(4385), - [sym_keyword] = STATE(1030), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(3385), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), - }, [365] = { - [sym_expression] = STATE(2985), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1785), - [sym_pair] = STATE(2913), - [sym_keyword] = STATE(933), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), + [sym_expression] = STATE(4090), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(3974), + [sym_quoted_i_single] = STATE(3975), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_keywords] = STATE(4185), + [sym_pair] = STATE(3837), + [sym_keyword] = STATE(694), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4078), + [sym_semgrep_ellipsis] = STATE(4418), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1529), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(1471), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1537), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [366] = { - [sym_expression] = STATE(4844), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords] = STATE(3521), - [sym_pair] = STATE(4385), - [sym_keyword] = STATE(1030), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(3385), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4094), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(3974), + [sym_quoted_i_single] = STATE(3975), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_keywords] = STATE(4186), + [sym_pair] = STATE(3837), + [sym_keyword] = STATE(694), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4078), + [sym_semgrep_ellipsis] = STATE(4418), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1529), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(1471), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1537), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [367] = { - [sym_expression] = STATE(4489), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4118), - [sym_quoted_i_single] = STATE(4119), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_keywords] = STATE(4601), - [sym_pair] = STATE(4207), - [sym_keyword] = STATE(1016), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4493), - [sym_semgrep_ellipsis] = STATE(4612), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1403), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3868), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3462), + [sym_quoted_i_single] = STATE(3463), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_keywords] = STATE(3600), + [sym_pair] = STATE(3274), + [sym_keyword] = STATE(974), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3802), + [sym_semgrep_ellipsis] = STATE(3677), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(518), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(558), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(560), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [368] = { - [sym_expression] = STATE(3265), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(2911), - [sym_quoted_i_single] = STATE(2912), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [sym_string] = STATE(3148), - [sym_charlist] = STATE(3148), - [sym_sigil] = STATE(3148), - [sym_keywords] = STATE(3069), - [sym_pair] = STATE(2760), - [sym_keyword] = STATE(888), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3148), - [sym_tuple] = STATE(3148), - [sym_bitstring] = STATE(3148), - [sym_map] = STATE(3148), - [sym_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), + [sym_expression] = STATE(3130), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1762), + [sym_pair] = STATE(2898), + [sym_keyword] = STATE(989), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3271), - [sym_semgrep_ellipsis] = STATE(3076), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [369] = { - [sym_expression] = STATE(2990), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1786), - [sym_pair] = STATE(2913), - [sym_keyword] = STATE(933), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(405), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4168), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(4270), + [sym_pair] = STATE(3814), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(4390), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1541), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [370] = { - [sym_expression] = STATE(4495), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4118), - [sym_quoted_i_single] = STATE(4119), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_keywords] = STATE(4605), - [sym_pair] = STATE(4207), - [sym_keyword] = STATE(1016), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4493), - [sym_semgrep_ellipsis] = STATE(4612), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1403), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3135), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1834), + [sym_pair] = STATE(2898), + [sym_keyword] = STATE(989), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(414), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [371] = { - [sym_expression] = STATE(4001), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords_with_trailing_separator] = STATE(7403), - [sym_pair] = STATE(5743), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(5136), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3868), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3462), + [sym_quoted_i_single] = STATE(3463), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_keywords] = STATE(3628), + [sym_pair] = STATE(3274), + [sym_keyword] = STATE(974), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3802), + [sym_semgrep_ellipsis] = STATE(3677), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(518), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(558), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(560), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [372] = { - [sym_expression] = STATE(3265), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(2911), - [sym_quoted_i_single] = STATE(2912), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [sym_string] = STATE(3148), - [sym_charlist] = STATE(3148), - [sym_sigil] = STATE(3148), - [sym_keywords] = STATE(3070), - [sym_pair] = STATE(2760), - [sym_keyword] = STATE(888), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3148), - [sym_tuple] = STATE(3148), - [sym_bitstring] = STATE(3148), - [sym_map] = STATE(3148), - [sym_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3271), - [sym_semgrep_ellipsis] = STATE(3076), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4170), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(4278), + [sym_pair] = STATE(3814), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(4390), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1541), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [373] = { - [sym_expression] = STATE(4666), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords] = STATE(3519), - [sym_pair] = STATE(3384), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(3385), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4669), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(7283), + [sym_pair] = STATE(5459), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(806), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [374] = { - [sym_expression] = STATE(4785), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(4114), - [sym_pair] = STATE(4012), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(4129), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4007), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(2891), + [sym_quoted_i_single] = STATE(2892), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_keywords_with_trailing_separator] = STATE(7444), + [sym_pair] = STATE(5844), + [sym_keyword] = STATE(832), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3452), + [sym_semgrep_ellipsis] = STATE(5110), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1096), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [375] = { - [sym_expression] = STATE(4803), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(4127), - [sym_pair] = STATE(4012), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(4129), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4731), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(4270), + [sym_pair] = STATE(3814), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(4390), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1549), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [376] = { - [sym_expression] = STATE(4522), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(2906), - [sym_quoted_i_single] = STATE(2907), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_keywords] = STATE(3521), - [sym_pair] = STATE(3384), - [sym_keyword] = STATE(662), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(3450), - [sym_semgrep_ellipsis] = STATE(3385), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4822), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(3926), + [sym_quoted_i_single] = STATE(3928), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_keywords] = STATE(4278), + [sym_pair] = STATE(3814), + [sym_keyword] = STATE(617), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4119), + [sym_semgrep_ellipsis] = STATE(4390), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(804), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1549), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [377] = { - [sym_expression] = STATE(3682), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2353), - [sym_pair] = STATE(3524), - [sym_keyword] = STATE(977), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3165), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(2616), + [sym_quoted_i_single] = STATE(2617), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_keywords] = STATE(3067), + [sym_pair] = STATE(2893), + [sym_keyword] = STATE(911), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(3260), + [sym_semgrep_ellipsis] = STATE(3378), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(422), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(464), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(466), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [378] = { - [sym_expression] = STATE(3684), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2285), - [sym_quoted_i_single] = STATE(2286), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_keywords] = STATE(2356), - [sym_pair] = STATE(3524), - [sym_keyword] = STATE(977), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2336), - [sym_semgrep_ellipsis] = STATE(2442), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(335), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(377), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(2744), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2442), + [sym_pair] = STATE(2367), + [sym_keyword] = STATE(941), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [379] = { - [sym_expression] = STATE(4194), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(1955), - [sym_quoted_i_single] = STATE(1956), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_keywords] = STATE(2194), - [sym_pair] = STATE(3992), - [sym_keyword] = STATE(1031), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2245), - [sym_semgrep_ellipsis] = STATE(2271), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1455), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2744), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2159), + [sym_quoted_i_single] = STATE(2161), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_keywords] = STATE(2446), + [sym_pair] = STATE(2367), + [sym_keyword] = STATE(941), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2451), + [sym_semgrep_ellipsis] = STATE(2466), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(339), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(381), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(383), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [380] = { - [sym_expression] = STATE(3071), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1785), - [sym_pair] = STATE(2974), - [sym_keyword] = STATE(997), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(414), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(427), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4438), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(1985), + [sym_quoted_i_single] = STATE(1986), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_keywords] = STATE(2186), + [sym_pair] = STATE(3960), + [sym_keyword] = STATE(1041), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2088), + [sym_semgrep_ellipsis] = STATE(2072), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1415), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [381] = { - [sym_expression] = STATE(3073), - [sym_block] = STATE(1730), + [sym_expression] = STATE(4786), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4387), + [sym_quoted_i_single] = STATE(4388), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_keywords] = STATE(4682), + [sym_pair] = STATE(4395), + [sym_keyword] = STATE(1034), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(4582), + [sym_semgrep_ellipsis] = STATE(4608), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1359), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1401), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), + }, + [382] = { + [sym_expression] = STATE(4064), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(1985), + [sym_quoted_i_single] = STATE(1986), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_keywords] = STATE(2187), + [sym_pair] = STATE(3960), + [sym_keyword] = STATE(1041), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2088), + [sym_semgrep_ellipsis] = STATE(2072), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(730), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(742), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1415), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [383] = { + [sym_expression] = STATE(3196), + [sym_block] = STATE(1705), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1613), - [sym_quoted_i_single] = STATE(1614), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_keywords] = STATE(1786), - [sym_pair] = STATE(2974), - [sym_keyword] = STATE(997), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1556), + [sym_quoted_i_single] = STATE(1557), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_keywords] = STATE(1762), + [sym_pair] = STATE(2954), + [sym_keyword] = STATE(1029), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(1733), - [sym_semgrep_ellipsis] = STATE(1706), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(414), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(427), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(1708), + [sym_semgrep_ellipsis] = STATE(1682), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(491), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(279), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, - [382] = { - [sym_expression] = STATE(4196), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(1955), - [sym_quoted_i_single] = STATE(1956), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_keywords] = STATE(2309), - [sym_pair] = STATE(3992), - [sym_keyword] = STATE(1031), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2245), - [sym_semgrep_ellipsis] = STATE(2271), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), + [384] = { + [sym_expression] = STATE(4702), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(1985), + [sym_quoted_i_single] = STATE(1986), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_keywords] = STATE(2186), + [sym_pair] = STATE(4061), + [sym_keyword] = STATE(1043), + [sym_quoted_keyword] = STATE(1397), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_keyword] = STATE(1397), + [sym_metavariable_atom] = STATE(2088), + [sym_semgrep_ellipsis] = STATE(2072), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_keyword_] = ACTIONS(97), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), [anon_sym_AMP] = ACTIONS(1509), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), @@ -75551,15703 +76096,15198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), [anon_sym_not] = ACTIONS(1511), [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1455), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1501), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1441), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [383] = { - [sym_expression] = STATE(4325), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4009), - [sym_quoted_i_single] = STATE(4064), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_keywords] = STATE(4114), - [sym_pair] = STATE(4012), - [sym_keyword] = STATE(655), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(4251), - [sym_semgrep_ellipsis] = STATE(4129), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(716), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(760), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), - }, - [384] = { - [sym_expression] = STATE(4610), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(1955), - [sym_quoted_i_single] = STATE(1956), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_keywords] = STATE(2194), - [sym_pair] = STATE(3992), - [sym_keyword] = STATE(1031), - [sym_quoted_keyword] = STATE(1412), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_keyword] = STATE(1412), - [sym_metavariable_atom] = STATE(2245), - [sym_semgrep_ellipsis] = STATE(2271), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1445), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [sym_keyword_] = ACTIONS(99), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1455), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [385] = { - [sym_expression] = STATE(1861), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1519), - [anon_sym_catch] = ACTIONS(1519), - [anon_sym_else] = ACTIONS(1519), - [anon_sym_end] = ACTIONS(1519), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1519), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1931), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1563), + [anon_sym_catch] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_end] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1563), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [386] = { - [sym_expression] = STATE(2493), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1523), - [anon_sym_catch] = ACTIONS(1523), - [anon_sym_else] = ACTIONS(1523), - [anon_sym_end] = ACTIONS(1523), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1523), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2475), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1567), + [anon_sym_catch] = ACTIONS(1567), + [anon_sym_else] = ACTIONS(1567), + [anon_sym_end] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1567), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [387] = { - [sym_expression] = STATE(2493), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1527), - [anon_sym_catch] = ACTIONS(1527), - [anon_sym_else] = ACTIONS(1527), - [anon_sym_end] = ACTIONS(1527), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1527), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2475), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1571), + [anon_sym_catch] = ACTIONS(1571), + [anon_sym_else] = ACTIONS(1571), + [anon_sym_end] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1571), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [388] = { - [sym_expression] = STATE(2493), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1531), - [anon_sym_catch] = ACTIONS(1531), - [anon_sym_else] = ACTIONS(1531), - [anon_sym_end] = ACTIONS(1531), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1531), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2475), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1575), + [anon_sym_catch] = ACTIONS(1575), + [anon_sym_else] = ACTIONS(1575), + [anon_sym_end] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1575), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [389] = { - [sym_terminator] = STATE(409), - [sym_expression] = STATE(3212), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_body] = STATE(5134), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_repeat1] = STATE(1386), - [aux_sym_terminator_token1] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1577), + [anon_sym_catch] = ACTIONS(1577), + [anon_sym_else] = ACTIONS(1577), + [anon_sym_end] = ACTIONS(1577), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1577), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [390] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1539), - [anon_sym_catch] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_end] = ACTIONS(1539), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1539), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_end] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1579), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [391] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1541), - [anon_sym_catch] = ACTIONS(1541), - [anon_sym_else] = ACTIONS(1541), - [anon_sym_end] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1541), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_terminator] = STATE(406), + [sym_expression] = STATE(3375), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_body] = STATE(5114), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_repeat1] = STATE(1377), + [aux_sym_terminator_token1] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1205), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [392] = { - [sym_terminator] = STATE(409), - [sym_expression] = STATE(3212), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_body] = STATE(5133), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_repeat1] = STATE(1386), - [aux_sym_terminator_token1] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_end] = ACTIONS(1195), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_terminator] = STATE(406), + [sym_expression] = STATE(3375), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_body] = STATE(5111), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_repeat1] = STATE(1377), + [aux_sym_terminator_token1] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1217), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [393] = { - [sym_terminator] = STATE(406), - [sym_expression] = STATE(3348), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_body] = STATE(5134), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_repeat1] = STATE(1394), - [aux_sym_terminator_token1] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1179), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_terminator] = STATE(407), + [sym_expression] = STATE(3293), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_body] = STATE(5114), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_repeat1] = STATE(1378), + [aux_sym_terminator_token1] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_end] = ACTIONS(1205), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [394] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1549), - [anon_sym_catch] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_end] = ACTIONS(1549), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1549), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1589), + [anon_sym_catch] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_end] = ACTIONS(1589), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1589), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [395] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1551), - [anon_sym_catch] = ACTIONS(1551), - [anon_sym_else] = ACTIONS(1551), - [anon_sym_end] = ACTIONS(1551), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1551), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1591), + [anon_sym_catch] = ACTIONS(1591), + [anon_sym_else] = ACTIONS(1591), + [anon_sym_end] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1591), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [396] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1553), - [anon_sym_catch] = ACTIONS(1553), - [anon_sym_else] = ACTIONS(1553), - [anon_sym_end] = ACTIONS(1553), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1553), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_terminator] = STATE(407), + [sym_expression] = STATE(3293), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_body] = STATE(5111), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_repeat1] = STATE(1378), + [aux_sym_terminator_token1] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [397] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1555), - [anon_sym_catch] = ACTIONS(1555), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_end] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1555), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1593), + [anon_sym_catch] = ACTIONS(1593), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_end] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1593), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [398] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1557), - [anon_sym_catch] = ACTIONS(1557), - [anon_sym_else] = ACTIONS(1557), - [anon_sym_end] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1557), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1595), + [anon_sym_catch] = ACTIONS(1595), + [anon_sym_else] = ACTIONS(1595), + [anon_sym_end] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1595), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [399] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1559), - [anon_sym_catch] = ACTIONS(1559), - [anon_sym_else] = ACTIONS(1559), - [anon_sym_end] = ACTIONS(1559), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1597), + [anon_sym_catch] = ACTIONS(1597), + [anon_sym_else] = ACTIONS(1597), + [anon_sym_end] = ACTIONS(1597), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1597), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [400] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1561), - [anon_sym_catch] = ACTIONS(1561), - [anon_sym_else] = ACTIONS(1561), - [anon_sym_end] = ACTIONS(1561), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1561), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1599), + [anon_sym_catch] = ACTIONS(1599), + [anon_sym_else] = ACTIONS(1599), + [anon_sym_end] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1599), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [401] = { - [sym_terminator] = STATE(406), - [sym_expression] = STATE(3348), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_body] = STATE(5133), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_repeat1] = STATE(1394), - [aux_sym_terminator_token1] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1195), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1601), + [anon_sym_catch] = ACTIONS(1601), + [anon_sym_else] = ACTIONS(1601), + [anon_sym_end] = ACTIONS(1601), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1601), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [402] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1563), - [anon_sym_catch] = ACTIONS(1563), - [anon_sym_else] = ACTIONS(1563), - [anon_sym_end] = ACTIONS(1563), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1563), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1603), + [anon_sym_catch] = ACTIONS(1603), + [anon_sym_else] = ACTIONS(1603), + [anon_sym_end] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1603), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [403] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1565), - [anon_sym_catch] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_end] = ACTIONS(1565), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1565), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1605), + [anon_sym_catch] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_end] = ACTIONS(1605), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1605), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [404] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(1567), - [anon_sym_catch] = ACTIONS(1567), - [anon_sym_else] = ACTIONS(1567), - [anon_sym_end] = ACTIONS(1567), - [anon_sym_fn] = ACTIONS(946), - [anon_sym_rescue] = ACTIONS(1567), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_after] = ACTIONS(1607), + [anon_sym_catch] = ACTIONS(1607), + [anon_sym_else] = ACTIONS(1607), + [anon_sym_end] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_rescue] = ACTIONS(1607), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [405] = { - [sym_expression] = STATE(4571), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1531), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4674), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_end] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [406] = { - [sym_expression] = STATE(3456), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1519), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3459), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1563), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [407] = { - [sym_expression] = STATE(4644), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_end] = ACTIONS(1523), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3298), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_end] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [408] = { - [sym_expression] = STATE(4644), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_end] = ACTIONS(1527), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4622), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1567), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [409] = { - [sym_expression] = STATE(3218), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_end] = ACTIONS(1519), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4674), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_end] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [410] = { - [sym_expression] = STATE(4571), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1523), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4622), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1571), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [411] = { - [sym_expression] = STATE(4571), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1527), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4622), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1575), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [412] = { - [sym_expression] = STATE(4644), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_end] = ACTIONS(1531), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4674), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_end] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [413] = { - [sym_expression] = STATE(1877), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_capture_expression] = STATE(1776), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1569), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(1573), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(126), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7391), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [414] = { - [sym_expression] = STATE(4609), - [sym_block] = STATE(4111), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [ts_builtin_sym_end] = ACTIONS(1575), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1613), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [415] = { - [sym_expression] = STATE(4590), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_capture_expression] = STATE(4265), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4002), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_capture_expression] = STATE(3486), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1577), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(1579), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(1615), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1617), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [416] = { - [sym_expression] = STATE(4511), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_capture_expression] = STATE(2202), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(1583), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4698), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_capture_expression] = STATE(2298), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(1621), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [417] = { - [sym_expression] = STATE(4617), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_capture_expression] = STATE(3473), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1585), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1589), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4743), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_capture_expression] = STATE(4601), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1623), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1625), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [418] = { - [sym_expression] = STATE(4617), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_capture_expression] = STATE(3486), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1585), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1591), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4784), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [419] = { - [sym_expression] = STATE(3184), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_capture_expression] = STATE(3210), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1593), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(1597), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(3991), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_capture_expression] = STATE(2320), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(1631), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [420] = { - [sym_expression] = STATE(4780), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4729), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [421] = { - [sym_expression] = STATE(4515), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_capture_expression] = STATE(4668), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1601), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1605), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3991), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_capture_expression] = STATE(2435), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(1635), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [422] = { - [sym_expression] = STATE(3461), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_capture_expression] = STATE(3465), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1607), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(1611), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4698), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_capture_expression] = STATE(2145), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(1637), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [423] = { - [sym_expression] = STATE(4783), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4642), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [ts_builtin_sym_end] = ACTIONS(1639), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [424] = { - [sym_expression] = STATE(3973), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_capture_expression] = STATE(2411), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1615), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(1617), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(4745), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [425] = { - [sym_expression] = STATE(4845), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1643), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [426] = { - [sym_expression] = STATE(3973), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_capture_expression] = STATE(2360), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1615), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(1621), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1645), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [427] = { - [sym_expression] = STATE(4734), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_capture_expression] = STATE(2141), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(1623), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3184), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_capture_expression] = STATE(3185), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1647), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(1649), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [428] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1625), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2931), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_capture_expression] = STATE(2435), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(1635), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [429] = { - [sym_expression] = STATE(4811), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1627), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1651), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [430] = { - [sym_expression] = STATE(3461), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_capture_expression] = STATE(3503), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1607), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(1629), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4743), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_capture_expression] = STATE(4640), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1623), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1653), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [431] = { - [sym_expression] = STATE(3788), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_capture_expression] = STATE(2010), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1631), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(1633), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4642), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [ts_builtin_sym_end] = ACTIONS(1655), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [432] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1635), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4738), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [433] = { - [sym_expression] = STATE(4295), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_capture_expression] = STATE(4296), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1637), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(1639), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1659), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [434] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1641), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1661), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [435] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1643), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4002), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_capture_expression] = STATE(3476), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1615), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1663), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [436] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1645), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1665), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [437] = { - [sym_expression] = STATE(4037), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_capture_expression] = STATE(4038), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), + [sym_expression] = STATE(3184), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_capture_expression] = STATE(3209), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1647), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(1651), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(1667), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [438] = { - [sym_expression] = STATE(4801), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_capture_expression] = STATE(3473), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1585), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1589), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1669), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [439] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1653), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1671), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [440] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1655), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3853), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_capture_expression] = STATE(3854), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1673), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(1675), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [441] = { - [sym_expression] = STATE(4734), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_capture_expression] = STATE(2202), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(1583), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1677), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [442] = { - [sym_expression] = STATE(4831), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3285), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_capture_expression] = STATE(3286), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1679), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(1681), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [443] = { - [sym_expression] = STATE(4037), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_capture_expression] = STATE(3853), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1647), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(1659), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1683), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [444] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1661), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4259), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_capture_expression] = STATE(4260), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1685), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(1687), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [445] = { - [sym_expression] = STATE(4807), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1689), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [446] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1665), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4711), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_capture_expression] = STATE(4451), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1691), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(1693), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [447] = { - [sym_expression] = STATE(2249), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_capture_expression] = STATE(2010), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1631), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(1633), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(3853), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_capture_expression] = STATE(3954), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1673), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(1695), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [448] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1667), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1697), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [449] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1669), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3285), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_capture_expression] = STATE(3300), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1679), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(1699), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [450] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1671), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1701), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [451] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1673), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4735), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [452] = { - [sym_expression] = STATE(2914), - [sym_block] = STATE(1634), + [sym_expression] = STATE(4730), + [sym_block] = STATE(3449), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_capture_expression] = STATE(1518), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1675), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(1679), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [453] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1681), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1707), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [454] = { - [sym_expression] = STATE(4801), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_capture_expression] = STATE(3486), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1585), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1591), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1709), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [455] = { - [sym_expression] = STATE(3788), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_capture_expression] = STATE(1912), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1631), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(1683), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), + [sym_expression] = STATE(2138), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_capture_expression] = STATE(1956), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1711), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(1713), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [456] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1685), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1715), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [457] = { - [sym_expression] = STATE(2249), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_capture_expression] = STATE(1912), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1631), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(1683), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1717), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [458] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1687), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3520), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_capture_expression] = STATE(3574), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(1721), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [459] = { - [sym_expression] = STATE(4295), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_capture_expression] = STATE(4095), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1637), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(1689), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1723), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [460] = { - [sym_expression] = STATE(3186), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_capture_expression] = STATE(1752), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1569), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(1691), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(2138), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_capture_expression] = STATE(2015), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1711), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(1725), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [461] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1693), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [462] = { - [sym_expression] = STATE(2914), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_capture_expression] = STATE(1528), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), + [sym_expression] = STATE(4547), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_capture_expression] = STATE(2298), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), + [sym_anonymous_call] = STATE(1690), [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1675), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(1695), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(1621), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [462] = { + [sym_expression] = STATE(4781), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_capture_expression] = STATE(3476), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1615), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1663), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [463] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1697), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1727), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [464] = { - [sym_expression] = STATE(4839), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1729), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [465] = { - [sym_expression] = STATE(4773), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_capture_expression] = STATE(4532), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1701), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1705), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(4740), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [466] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1707), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2981), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_capture_expression] = STATE(1732), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1733), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(1735), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [467] = { - [sym_expression] = STATE(3186), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_capture_expression] = STATE(1776), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1569), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(1573), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [468] = { - [sym_expression] = STATE(2945), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_capture_expression] = STATE(2411), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), + [sym_expression] = STATE(4781), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_capture_expression] = STATE(3486), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1615), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), [sym_integer] = ACTIONS(1617), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, - [469] = { - [sym_expression] = STATE(4590), - [sym_block] = STATE(4111), + [468] = { + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_capture_expression] = STATE(4121), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1737), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [469] = { + [sym_expression] = STATE(3062), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [ts_builtin_sym_end] = ACTIONS(1739), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(1709), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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(1176), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [470] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1711), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4711), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_capture_expression] = STATE(4241), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1691), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(1741), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [471] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1713), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1743), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [472] = { - [sym_expression] = STATE(4829), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1745), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [473] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1717), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2981), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_capture_expression] = STATE(1753), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1733), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(1747), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [474] = { - [sym_expression] = STATE(3286), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_capture_expression] = STATE(1752), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1569), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(1691), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1749), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [475] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1721), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4259), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_capture_expression] = STATE(4237), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1685), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(1751), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [476] = { - [sym_expression] = STATE(4609), - [sym_block] = STATE(4111), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [ts_builtin_sym_end] = ACTIONS(1723), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1753), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [477] = { - [sym_expression] = STATE(3329), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), + [sym_expression] = STATE(4555), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_capture_expression] = STATE(4556), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [ts_builtin_sym_end] = ACTIONS(1725), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1755), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1757), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [478] = { - [sym_expression] = STATE(3286), - [sym_block] = STATE(1730), + [sym_expression] = STATE(3349), + [sym_block] = STATE(1705), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_capture_expression] = STATE(1776), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_capture_expression] = STATE(1732), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1569), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(1573), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1733), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(1735), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [479] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1727), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1759), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [480] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7542), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3864), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_capture_expression] = STATE(2015), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1711), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(1725), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [481] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1733), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1761), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [482] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1735), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4547), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_capture_expression] = STATE(2145), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(1637), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [483] = { - [sym_expression] = STATE(2945), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_capture_expression] = STATE(2360), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1615), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(1621), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1763), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [484] = { - [sym_expression] = STATE(2901), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_capture_expression] = STATE(2141), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(1623), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3349), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_capture_expression] = STATE(1753), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1733), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(1747), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [485] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1737), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2931), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_capture_expression] = STATE(2320), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1629), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(1631), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [486] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), + [sym_expression] = STATE(2899), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_capture_expression] = STATE(1563), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1739), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1765), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(1767), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [487] = { - [sym_expression] = STATE(3603), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_capture_expression] = STATE(3630), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1741), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(1745), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(3520), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_capture_expression] = STATE(3657), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(1769), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [488] = { - [sym_expression] = STATE(4773), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_capture_expression] = STATE(4554), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1701), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1747), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(2880), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_capture_expression] = STATE(2298), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(1621), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [489] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1749), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(126), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7487), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [490] = { - [sym_expression] = STATE(3986), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_capture_expression] = STATE(3473), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1585), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1589), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1773), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [491] = { - [sym_expression] = STATE(2901), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_capture_expression] = STATE(2202), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(1583), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4642), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [ts_builtin_sym_end] = ACTIONS(1775), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [492] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1751), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1777), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [493] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1753), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1779), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [494] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1755), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4758), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [495] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1757), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1783), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [496] = { - [sym_expression] = STATE(1711), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_capture_expression] = STATE(1518), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), + [sym_expression] = STATE(2880), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_capture_expression] = STATE(2145), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1675), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(1679), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(1637), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [497] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1759), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4736), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [498] = { - [sym_expression] = STATE(4776), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1787), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [499] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), + [sym_expression] = STATE(2899), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_capture_expression] = STATE(1576), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1763), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1765), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [500] = { - [sym_expression] = STATE(3603), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_capture_expression] = STATE(3590), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1741), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(1765), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(4555), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_capture_expression] = STATE(4684), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1755), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1791), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [501] = { - [sym_expression] = STATE(3986), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_capture_expression] = STATE(3486), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1585), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1591), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1793), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [502] = { - [sym_expression] = STATE(1711), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_capture_expression] = STATE(1528), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1675), + [sym_expression] = STATE(1678), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_capture_expression] = STATE(1563), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1765), [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(1695), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(1767), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [503] = { - [sym_expression] = STATE(4515), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_capture_expression] = STATE(4520), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1601), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1767), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(4644), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_capture_expression] = STATE(3476), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1615), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1663), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [504] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1769), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1795), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [505] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1771), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [506] = { - [sym_expression] = STATE(3184), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_capture_expression] = STATE(3185), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1593), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(1773), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), - }, - [507] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1775), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [508] = { - [sym_expression] = STATE(4609), - [sym_block] = STATE(4111), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [ts_builtin_sym_end] = ACTIONS(1777), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1797), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, - [509] = { - [sym_expression] = STATE(1877), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_capture_expression] = STATE(1752), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1569), + [506] = { + [sym_expression] = STATE(1678), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_capture_expression] = STATE(1576), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1765), [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(1691), + [sym_integer] = ACTIONS(1789), [sym_float] = ACTIONS(173), [sym_char] = ACTIONS(173), [anon_sym_true] = ACTIONS(175), @@ -91260,4295 +91300,7408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), + }, + [507] = { + [sym_expression] = STATE(4661), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_capture_expression] = STATE(4640), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1623), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1653), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), + }, + [508] = { + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1799), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [509] = { + [sym_expression] = STATE(4760), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [510] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1779), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1803), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [511] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1781), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1805), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [512] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1783), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1807), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [513] = { - [sym_expression] = STATE(4511), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_capture_expression] = STATE(2141), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(1623), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [anon_sym_RPAREN] = ACTIONS(1809), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [514] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(1785), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1861), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_capture_expression] = STATE(1732), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1733), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(1735), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [515] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7543), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4644), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_capture_expression] = STATE(3486), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1615), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1617), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [516] = { - [sym_expression] = STATE(4673), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_capture_expression] = STATE(3473), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(126), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7361), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1585), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1589), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [517] = { - [sym_expression] = STATE(4673), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_capture_expression] = STATE(3486), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4507), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_capture_expression] = STATE(3476), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1585), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1591), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1615), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1663), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [518] = { - [sym_expression] = STATE(4837), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_capture_expression] = STATE(4296), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1637), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(1639), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4507), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_capture_expression] = STATE(3486), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1615), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1617), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [519] = { - [sym_expression] = STATE(4837), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_capture_expression] = STATE(4095), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1637), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(1689), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4812), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_capture_expression] = STATE(4260), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1685), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(1687), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [520] = { - [sym_expression] = STATE(4260), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_capture_expression] = STATE(2141), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(1623), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4812), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_capture_expression] = STATE(4237), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1685), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(1751), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [521] = { - [sym_expression] = STATE(4260), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_capture_expression] = STATE(2202), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(1583), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4417), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_capture_expression] = STATE(2298), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(1621), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [522] = { - [sym_expression] = STATE(4269), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_capture_expression] = STATE(2141), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(1623), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4417), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_capture_expression] = STATE(2145), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(1637), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [523] = { - [sym_expression] = STATE(4269), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_capture_expression] = STATE(2202), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(1583), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4282), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_capture_expression] = STATE(2298), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(1621), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [524] = { - [sym_expression] = STATE(2451), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_capture_expression] = STATE(2141), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(1623), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4282), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_capture_expression] = STATE(2145), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(1637), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [525] = { - [sym_expression] = STATE(2451), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_capture_expression] = STATE(2202), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(1583), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2447), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_capture_expression] = STATE(2298), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(1621), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [526] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7528), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2447), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_capture_expression] = STATE(2145), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(1637), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [527] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7395), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7521), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [528] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7401), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7379), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [529] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7407), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7385), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [530] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7413), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(1861), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_capture_expression] = STATE(1753), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1733), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(1747), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [531] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7419), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7397), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [532] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7425), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7403), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [533] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7431), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7409), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [534] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7437), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7415), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [535] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7384), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7421), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [536] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7449), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7427), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [537] = { - [sym_expression] = STATE(4849), - [sym_block] = STATE(3447), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), [sym_identifier] = STATE(126), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(4778), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_struct] = STATE(7455), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(4778), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(4778), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(4820), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7433), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1729), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [538] = { - [sym_expression] = STATE(4334), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_capture_expression] = STATE(4121), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1577), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(1709), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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(1176), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(4825), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(126), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(4762), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_struct] = STATE(7439), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(4762), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(4762), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(4778), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [539] = { - [sym_expression] = STATE(4334), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_capture_expression] = STATE(4265), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1577), + [sym_expression] = STATE(4230), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_capture_expression] = STATE(4241), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1691), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(1579), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(1741), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [540] = { - [sym_expression] = STATE(4650), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_capture_expression] = STATE(4532), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1701), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1705), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(4230), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_capture_expression] = STATE(4451), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1691), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(1693), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [541] = { - [sym_expression] = STATE(4650), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_capture_expression] = STATE(4554), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4661), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_capture_expression] = STATE(4601), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1701), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1747), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1623), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1625), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [542] = { - [sym_expression] = STATE(4808), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3864), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_capture_expression] = STATE(1956), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1711), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(1713), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [543] = { - [sym_expression] = STATE(2402), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3865), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [544] = { - [sym_expression] = STATE(3474), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [sym_expression] = STATE(4726), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), + }, + [545] = { + [sym_expression] = STATE(4437), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [546] = { + [sym_expression] = STATE(2025), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [547] = { + [sym_expression] = STATE(4486), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), + }, + [548] = { + [sym_expression] = STATE(4069), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [549] = { + [sym_expression] = STATE(2146), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [550] = { + [sym_expression] = STATE(4564), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [551] = { + [sym_expression] = STATE(4565), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [552] = { + [sym_expression] = STATE(4566), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [553] = { + [sym_expression] = STATE(4567), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [554] = { + [sym_expression] = STATE(4568), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [555] = { + [sym_expression] = STATE(4635), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [556] = { + [sym_expression] = STATE(4637), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [557] = { + [sym_expression] = STATE(4570), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [558] = { + [sym_expression] = STATE(4571), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [559] = { + [sym_expression] = STATE(4572), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [560] = { + [sym_expression] = STATE(4573), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [561] = { + [sym_expression] = STATE(4574), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [562] = { + [sym_expression] = STATE(4575), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [563] = { + [sym_expression] = STATE(4576), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [564] = { + [sym_expression] = STATE(4577), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [565] = { + [sym_expression] = STATE(4084), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [566] = { + [sym_expression] = STATE(2900), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -95563,114 +98716,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [545] = { - [sym_expression] = STATE(1753), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [567] = { + [sym_expression] = STATE(1564), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -95685,358 +98839,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [546] = { - [sym_expression] = STATE(4609), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [568] = { + [sym_expression] = STATE(4367), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), - }, - [547] = { - [sym_expression] = STATE(4840), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, - [548] = { - [sym_expression] = STATE(3475), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [569] = { + [sym_expression] = STATE(2901), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -96051,114 +99085,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [549] = { - [sym_expression] = STATE(1777), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [570] = { + [sym_expression] = STATE(1577), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -96173,114 +99208,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [550] = { - [sym_expression] = STATE(2983), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [571] = { + [sym_expression] = STATE(2904), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -96295,114 +99331,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [551] = { - [sym_expression] = STATE(2984), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [572] = { + [sym_expression] = STATE(2905), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -96417,236 +99454,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [552] = { - [sym_expression] = STATE(4716), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [553] = { - [sym_expression] = STATE(2986), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [573] = { + [sym_expression] = STATE(2906), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -96661,114 +99577,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [554] = { - [sym_expression] = STATE(2987), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [574] = { + [sym_expression] = STATE(2907), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -96783,114 +99700,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [555] = { - [sym_expression] = STATE(2988), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [575] = { + [sym_expression] = STATE(2908), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -96905,114 +99823,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [556] = { - [sym_expression] = STATE(3072), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [576] = { + [sym_expression] = STATE(2939), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -97027,236 +99946,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [557] = { - [sym_expression] = STATE(4720), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [558] = { - [sym_expression] = STATE(3074), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [577] = { + [sym_expression] = STATE(2941), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -97271,114 +100069,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [559] = { - [sym_expression] = STATE(2992), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [578] = { + [sym_expression] = STATE(2909), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -97393,114 +100192,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [560] = { - [sym_expression] = STATE(2993), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [579] = { + [sym_expression] = STATE(2910), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -97515,114 +100315,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [561] = { - [sym_expression] = STATE(2994), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [580] = { + [sym_expression] = STATE(2911), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -97637,114 +100438,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [562] = { - [sym_expression] = STATE(2995), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [581] = { + [sym_expression] = STATE(2912), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -97759,114 +100561,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [563] = { - [sym_expression] = STATE(2996), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [582] = { + [sym_expression] = STATE(2913), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -97881,114 +100684,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [564] = { - [sym_expression] = STATE(2997), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [583] = { + [sym_expression] = STATE(2914), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -98003,114 +100807,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [565] = { - [sym_expression] = STATE(2998), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [584] = { + [sym_expression] = STATE(2915), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -98125,114 +100930,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [566] = { - [sym_expression] = STATE(2999), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [585] = { + [sym_expression] = STATE(2916), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -98247,114 +101053,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, - [567] = { - [sym_expression] = STATE(3476), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [586] = { + [sym_expression] = STATE(2917), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -98369,43424 +101176,40828 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), - }, - [568] = { - [sym_expression] = STATE(3789), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), - }, - [569] = { - [sym_expression] = STATE(2400), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [570] = { - [sym_expression] = STATE(2172), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [571] = { - [sym_expression] = STATE(1851), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), - }, - [572] = { - [sym_expression] = STATE(4244), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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(1176), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), - }, - [573] = { - [sym_expression] = STATE(4732), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), - }, - [574] = { - [sym_expression] = STATE(2401), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [575] = { - [sym_expression] = STATE(2203), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [576] = { - [sym_expression] = STATE(2745), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [577] = { - [sym_expression] = STATE(2746), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [578] = { - [sym_expression] = STATE(4736), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), - }, - [579] = { - [sym_expression] = STATE(2747), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [580] = { - [sym_expression] = STATE(2748), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [581] = { - [sym_expression] = STATE(2749), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [582] = { - [sym_expression] = STATE(2770), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [583] = { - [sym_expression] = STATE(2772), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [584] = { - [sym_expression] = STATE(2750), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [585] = { - [sym_expression] = STATE(2751), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [586] = { - [sym_expression] = STATE(2752), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [587] = { - [sym_expression] = STATE(2753), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2321), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [588] = { - [sym_expression] = STATE(2754), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2327), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [589] = { - [sym_expression] = STATE(2755), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2436), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [590] = { - [sym_expression] = STATE(2756), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2437), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [591] = { - [sym_expression] = STATE(2757), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2933), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [592] = { - [sym_expression] = STATE(2402), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2934), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [593] = { - [sym_expression] = STATE(4645), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(2936), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [594] = { - [sym_expression] = STATE(1760), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(2937), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [595] = { - [sym_expression] = STATE(1520), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(2938), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [596] = { - [sym_expression] = STATE(4646), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(2516), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [597] = { - [sym_expression] = STATE(4551), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(2518), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [598] = { - [sym_expression] = STATE(4658), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(2942), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [599] = { - [sym_expression] = STATE(1761), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(2943), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [600] = { - [sym_expression] = STATE(1529), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(2944), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [601] = { - [sym_expression] = STATE(1705), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(2945), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [602] = { - [sym_expression] = STATE(1716), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(2946), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [603] = { - [sym_expression] = STATE(4662), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(2947), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [604] = { - [sym_expression] = STATE(1685), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(2948), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [605] = { - [sym_expression] = STATE(1709), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(2949), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [606] = { - [sym_expression] = STATE(1713), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(2443), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [607] = { - [sym_expression] = STATE(1694), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(3579), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [608] = { - [sym_expression] = STATE(4669), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3584), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [609] = { - [sym_expression] = STATE(1672), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(3703), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [610] = { - [sym_expression] = STATE(1714), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(3706), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [611] = { - [sym_expression] = STATE(1717), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(3692), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [612] = { - [sym_expression] = STATE(1718), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(3693), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [613] = { - [sym_expression] = STATE(1727), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(3698), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [614] = { - [sym_expression] = STATE(1684), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(3699), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [615] = { - [sym_expression] = STATE(1697), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(3700), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [616] = { - [sym_expression] = STATE(1701), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(3614), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [617] = { - [sym_expression] = STATE(1704), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4079), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [618] = { - [sym_expression] = STATE(1762), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(3616), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [619] = { - [sym_expression] = STATE(4670), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3716), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [620] = { - [sym_expression] = STATE(1995), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(3720), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [621] = { - [sym_expression] = STATE(1753), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(3721), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [622] = { - [sym_expression] = STATE(4557), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(3722), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [623] = { - [sym_expression] = STATE(4685), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3723), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [624] = { - [sym_expression] = STATE(4689), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3724), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [625] = { - [sym_expression] = STATE(1996), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(3725), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [626] = { - [sym_expression] = STATE(1777), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(3726), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [627] = { - [sym_expression] = STATE(1858), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(3727), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [628] = { - [sym_expression] = STATE(1860), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4779), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [629] = { - [sym_expression] = STATE(4709), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(4063), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [630] = { - [sym_expression] = STATE(1862), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(2025), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [631] = { - [sym_expression] = STATE(1863), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(1957), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [632] = { - [sym_expression] = STATE(1864), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4780), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [633] = { - [sym_expression] = STATE(1905), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4294), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [634] = { - [sym_expression] = STATE(4710), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(2146), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [635] = { - [sym_expression] = STATE(1907), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4460), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [636] = { - [sym_expression] = STATE(1865), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4471), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [637] = { - [sym_expression] = STATE(1866), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4490), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [638] = { - [sym_expression] = STATE(1867), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4495), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [639] = { - [sym_expression] = STATE(1868), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4505), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [640] = { - [sym_expression] = STATE(1869), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4479), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [641] = { - [sym_expression] = STATE(1870), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4481), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [642] = { - [sym_expression] = STATE(1871), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4527), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [643] = { - [sym_expression] = STATE(1872), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4545), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [644] = { - [sym_expression] = STATE(1997), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4546), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [645] = { - [sym_expression] = STATE(4711), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(4548), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [646] = { - [sym_expression] = STATE(4712), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(4549), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [647] = { - [sym_expression] = STATE(4718), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(4550), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [648] = { - [sym_expression] = STATE(4719), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(4551), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [649] = { - [sym_expression] = STATE(4723), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(4552), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [650] = { - [sym_expression] = STATE(4724), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), - }, - [651] = { - [sym_expression] = STATE(3843), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), + [sym_expression] = STATE(4308), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [651] = { + [sym_expression] = STATE(3186), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [652] = { - [sym_expression] = STATE(4297), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3187), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [653] = { - [sym_expression] = STATE(4302), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4382), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [654] = { - [sym_expression] = STATE(1913), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(3210), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [655] = { - [sym_expression] = STATE(4272), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3211), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [656] = { - [sym_expression] = STATE(4566), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(3468), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [657] = { - [sym_expression] = STATE(4096), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3469), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [658] = { - [sym_expression] = STATE(4097), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3484), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [659] = { - [sym_expression] = STATE(4109), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3489), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [660] = { - [sym_expression] = STATE(4112), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3490), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [661] = { - [sym_expression] = STATE(4115), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(2991), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [662] = { - [sym_expression] = STATE(3845), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2993), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [663] = { - [sym_expression] = STATE(4116), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3491), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [664] = { - [sym_expression] = STATE(4117), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3492), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [665] = { - [sym_expression] = STATE(4326), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3493), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [666] = { - [sym_expression] = STATE(4429), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(3494), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [667] = { - [sym_expression] = STATE(4331), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3495), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [668] = { - [sym_expression] = STATE(4156), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3497), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [669] = { - [sym_expression] = STATE(4157), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3498), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [670] = { - [sym_expression] = STATE(4158), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3499), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [671] = { - [sym_expression] = STATE(4159), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3234), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [672] = { - [sym_expression] = STATE(4160), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3919), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [673] = { - [sym_expression] = STATE(4161), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), + [sym_expression] = STATE(3855), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [674] = { - [sym_expression] = STATE(4162), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), + [sym_expression] = STATE(3869), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [675] = { - [sym_expression] = STATE(4163), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(1930), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [676] = { - [sym_expression] = STATE(4164), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), + [sym_expression] = STATE(3955), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [677] = { - [sym_expression] = STATE(4567), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(3956), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [678] = { - [sym_expression] = STATE(4533), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3632), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [679] = { - [sym_expression] = STATE(2836), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3644), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [680] = { - [sym_expression] = STATE(4592), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3649), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [681] = { - [sym_expression] = STATE(4534), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3650), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [682] = { - [sym_expression] = STATE(3852), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(3653), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [683] = { - [sym_expression] = STATE(4089), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(3980), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [684] = { - [sym_expression] = STATE(4821), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), + [sym_expression] = STATE(3982), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [685] = { - [sym_expression] = STATE(3477), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3659), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [686] = { - [sym_expression] = STATE(3478), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3661), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [687] = { - [sym_expression] = STATE(4555), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3662), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [688] = { - [sym_expression] = STATE(3487), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3664), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [689] = { - [sym_expression] = STATE(3488), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3666), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [690] = { - [sym_expression] = STATE(4815), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3678), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [691] = { - [sym_expression] = STATE(4816), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3679), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [692] = { - [sym_expression] = STATE(4556), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3680), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [693] = { - [sym_expression] = STATE(4817), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4020), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [694] = { - [sym_expression] = STATE(4818), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4371), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [695] = { - [sym_expression] = STATE(4819), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2172), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [696] = { - [sym_expression] = STATE(4485), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(1957), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [697] = { - [sym_expression] = STATE(4483), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2173), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [698] = { - [sym_expression] = STATE(4823), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(1930), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [699] = { - [sym_expression] = STATE(4824), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2091), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [700] = { - [sym_expression] = STATE(4825), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2093), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [701] = { - [sym_expression] = STATE(4826), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2094), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [702] = { - [sym_expression] = STATE(4830), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2095), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [703] = { - [sym_expression] = STATE(4833), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2096), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [704] = { - [sym_expression] = STATE(4834), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2171), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [705] = { - [sym_expression] = STATE(4835), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2176), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [706] = { - [sym_expression] = STATE(3522), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2098), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [707] = { - [sym_expression] = STATE(2493), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(940), - [anon_sym_not] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(952), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2099), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [708] = { - [sym_expression] = STATE(4799), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(2101), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [709] = { - [sym_expression] = STATE(4758), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(2102), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [710] = { - [sym_expression] = STATE(4805), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(2103), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [711] = { - [sym_expression] = STATE(4759), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(2104), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [712] = { - [sym_expression] = STATE(3855), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), + [sym_expression] = STATE(2018), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [713] = { - [sym_expression] = STATE(4418), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2106), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [714] = { - [sym_expression] = STATE(4420), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2174), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [715] = { - [sym_expression] = STATE(4760), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(2983), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [716] = { - [sym_expression] = STATE(2413), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(1733), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [717] = { - [sym_expression] = STATE(2414), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(2986), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [718] = { - [sym_expression] = STATE(4761), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(1754), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [719] = { - [sym_expression] = STATE(2366), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3069), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [720] = { - [sym_expression] = STATE(2376), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3070), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [721] = { - [sym_expression] = STATE(3666), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3071), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [722] = { - [sym_expression] = STATE(3667), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3072), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [723] = { - [sym_expression] = STATE(3668), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3073), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [724] = { - [sym_expression] = STATE(3669), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3134), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [725] = { - [sym_expression] = STATE(3670), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3136), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [726] = { - [sym_expression] = STATE(3683), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3075), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [727] = { - [sym_expression] = STATE(3685), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3076), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [728] = { - [sym_expression] = STATE(3671), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3077), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [729] = { - [sym_expression] = STATE(3672), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3078), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [730] = { - [sym_expression] = STATE(3673), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3079), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [731] = { - [sym_expression] = STATE(3674), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3080), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [732] = { - [sym_expression] = STATE(3675), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3081), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [733] = { - [sym_expression] = STATE(3676), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3082), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [734] = { - [sym_expression] = STATE(3677), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(2994), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [735] = { - [sym_expression] = STATE(3678), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3465), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [736] = { - [sym_expression] = STATE(2359), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(1733), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [737] = { - [sym_expression] = STATE(4762), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3927), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [738] = { - [sym_expression] = STATE(4800), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), - }, - [739] = { - [sym_expression] = STATE(3856), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), + [sym_expression] = STATE(3929), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, + [739] = { + [sym_expression] = STATE(3466), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), + }, [740] = { - [sym_expression] = STATE(4804), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(1754), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [741] = { - [sym_expression] = STATE(2348), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3128), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [742] = { - [sym_expression] = STATE(2350), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3129), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [743] = { - [sym_expression] = STATE(4764), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(4453), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [744] = { - [sym_expression] = STATE(4765), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3131), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [745] = { - [sym_expression] = STATE(4766), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3132), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [746] = { - [sym_expression] = STATE(4767), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3133), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [747] = { - [sym_expression] = STATE(4753), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3197), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [748] = { - [sym_expression] = STATE(4769), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3931), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [749] = { - [sym_expression] = STATE(4713), - [sym_block] = STATE(4737), - [sym_identifier] = STATE(78), - [sym_boolean] = STATE(4737), - [sym_nil] = STATE(4737), - [sym_atom] = STATE(4737), - [sym_quoted_atom] = STATE(4586), - [sym_quoted_i_double] = STATE(4661), - [sym_quoted_i_single] = STATE(4683), - [sym_quoted_i_heredoc_single] = STATE(4683), - [sym_quoted_i_heredoc_double] = STATE(4661), - [sym_string] = STATE(4737), - [sym_charlist] = STATE(4737), - [sym_sigil] = STATE(4737), - [sym_list] = STATE(4737), - [sym_tuple] = STATE(4737), - [sym_bitstring] = STATE(4737), - [sym_map] = STATE(4737), - [sym_nullary_operator] = STATE(4737), - [sym_unary_operator] = STATE(4737), - [sym_binary_operator] = STATE(4737), - [sym_operator_identifier] = STATE(7394), - [sym_dot] = STATE(4737), - [sym_call] = STATE(4737), - [sym_call_without_parentheses] = STATE(4687), - [sym_call_with_parentheses] = STATE(4687), - [sym_local_call_without_parentheses] = STATE(4552), - [sym_local_call_with_parentheses] = STATE(3964), - [sym_local_call_just_do_block] = STATE(4552), - [sym_remote_call_without_parentheses] = STATE(4552), - [sym_remote_call_with_parentheses] = STATE(3964), - [sym_remote_dot] = STATE(58), - [sym_anonymous_call] = STATE(3964), - [sym_anonymous_dot] = STATE(7376), - [sym_double_call] = STATE(4739), - [sym_access_call] = STATE(4737), - [sym_anonymous_function] = STATE(4737), - [sym_metavariable_atom] = STATE(4586), - [sym_deep_ellipsis] = STATE(4737), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1092), - [aux_sym_identifier_token1] = ACTIONS(1094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), - [sym_alias] = ACTIONS(1098), - [sym_integer] = ACTIONS(1098), - [sym_float] = ACTIONS(1098), - [sym_char] = ACTIONS(1098), - [anon_sym_true] = ACTIONS(1100), - [anon_sym_false] = ACTIONS(1100), - [anon_sym_nil] = ACTIONS(1102), - [sym_atom_] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1110), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1118), - [anon_sym_LT_LT] = ACTIONS(1120), - [anon_sym_PERCENT] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1130), - [anon_sym_not] = ACTIONS(1130), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1134), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1136), - [sym_semgrep_metavariable] = ACTIONS(1603), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1140), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1142), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1144), + [sym_expression] = STATE(3199), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [750] = { - [sym_expression] = STATE(4770), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3137), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [751] = { - [sym_expression] = STATE(4771), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3138), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [752] = { - [sym_expression] = STATE(4606), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3139), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [753] = { - [sym_expression] = STATE(3858), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(3140), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [754] = { - [sym_expression] = STATE(3198), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(3141), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [755] = { - [sym_expression] = STATE(3199), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(3142), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [756] = { - [sym_expression] = STATE(3860), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(3143), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [757] = { - [sym_expression] = STATE(4822), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3144), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [758] = { - [sym_expression] = STATE(3862), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), + [sym_expression] = STATE(3467), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), + }, + [759] = { + [sym_expression] = STATE(3932), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, - [759] = { - [sym_expression] = STATE(3211), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), - }, [760] = { - [sym_expression] = STATE(3213), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(2386), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [761] = { - [sym_expression] = STATE(3230), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(2025), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [762] = { - [sym_expression] = STATE(3231), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), + [sym_expression] = STATE(3933), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [763] = { - [sym_expression] = STATE(3863), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), + [sym_expression] = STATE(3934), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, [764] = { - [sym_expression] = STATE(3543), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(2387), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [765] = { - [sym_expression] = STATE(3233), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(2146), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [766] = { - [sym_expression] = STATE(3234), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(2731), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [767] = { - [sym_expression] = STATE(3235), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(2732), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [768] = { - [sym_expression] = STATE(3356), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), + [sym_expression] = STATE(3936), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), - }, - [769] = { - [sym_expression] = STATE(3864), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, + [769] = { + [sym_expression] = STATE(2733), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, [770] = { - [sym_expression] = STATE(3477), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2734), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [771] = { - [sym_expression] = STATE(3478), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2735), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [772] = { - [sym_expression] = STATE(3358), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(2755), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [773] = { - [sym_expression] = STATE(3487), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3937), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [774] = { - [sym_expression] = STATE(3488), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2757), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [775] = { - [sym_expression] = STATE(4693), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2736), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [776] = { - [sym_expression] = STATE(4694), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2737), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [777] = { - [sym_expression] = STATE(4695), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2738), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [778] = { - [sym_expression] = STATE(4696), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2739), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [779] = { - [sym_expression] = STATE(4697), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2740), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [780] = { - [sym_expression] = STATE(4843), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2741), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [781] = { - [sym_expression] = STATE(4846), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1475), - [anon_sym_not] = ACTIONS(1475), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1479), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2742), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [782] = { - [sym_expression] = STATE(4698), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2955), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [783] = { - [sym_expression] = STATE(4699), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2388), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [784] = { - [sym_expression] = STATE(4700), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3938), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [785] = { - [sym_expression] = STATE(4701), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(1813), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [786] = { - [sym_expression] = STATE(4702), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(1564), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [787] = { - [sym_expression] = STATE(4703), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3939), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [788] = { - [sym_expression] = STATE(4704), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3940), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [789] = { - [sym_expression] = STATE(4705), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3941), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [790] = { - [sym_expression] = STATE(3522), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(1814), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [791] = { - [sym_expression] = STATE(3237), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(1577), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [792] = { - [sym_expression] = STATE(3238), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(1821), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [793] = { - [sym_expression] = STATE(3239), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(1822), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [794] = { - [sym_expression] = STATE(3240), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), + [sym_expression] = STATE(3942), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [795] = { - [sym_expression] = STATE(3241), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(1823), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [796] = { - [sym_expression] = STATE(3242), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(1824), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [797] = { - [sym_expression] = STATE(3188), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(1825), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [798] = { - [sym_expression] = STATE(3243), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), + [sym_expression] = STATE(1804), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [799] = { - [sym_expression] = STATE(3244), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), + [sym_expression] = STATE(3943), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), - }, - [800] = { - [sym_expression] = STATE(3245), - [sym_block] = STATE(3138), - [sym_identifier] = STATE(52), - [sym_boolean] = STATE(3138), - [sym_nil] = STATE(3138), - [sym_atom] = STATE(3138), - [sym_quoted_atom] = STATE(3155), - [sym_quoted_i_double] = STATE(3157), - [sym_quoted_i_single] = STATE(3158), - [sym_quoted_i_heredoc_single] = STATE(3158), - [sym_quoted_i_heredoc_double] = STATE(3157), - [sym_string] = STATE(3138), - [sym_charlist] = STATE(3138), - [sym_sigil] = STATE(3138), - [sym_list] = STATE(3138), - [sym_tuple] = STATE(3138), - [sym_bitstring] = STATE(3138), - [sym_map] = STATE(3138), - [sym_nullary_operator] = STATE(3138), - [sym_unary_operator] = STATE(3138), - [sym_binary_operator] = STATE(3138), - [sym_operator_identifier] = STATE(7412), - [sym_dot] = STATE(3138), - [sym_call] = STATE(3138), - [sym_call_without_parentheses] = STATE(3159), - [sym_call_with_parentheses] = STATE(3159), - [sym_local_call_without_parentheses] = STATE(3160), - [sym_local_call_with_parentheses] = STATE(2447), - [sym_local_call_just_do_block] = STATE(3160), - [sym_remote_call_without_parentheses] = STATE(3160), - [sym_remote_call_with_parentheses] = STATE(2447), - [sym_remote_dot] = STATE(51), - [sym_anonymous_call] = STATE(2447), - [sym_anonymous_dot] = STATE(7328), - [sym_double_call] = STATE(3161), - [sym_access_call] = STATE(3138), - [sym_anonymous_function] = STATE(3138), - [sym_metavariable_atom] = STATE(3155), - [sym_deep_ellipsis] = STATE(3138), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(441), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(447), - [sym_integer] = ACTIONS(447), - [sym_float] = ACTIONS(447), - [sym_char] = ACTIONS(447), - [anon_sym_true] = ACTIONS(449), - [anon_sym_false] = ACTIONS(449), - [anon_sym_nil] = ACTIONS(451), - [sym_atom_] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(459), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(461), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_LT_LT] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(471), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(475), - [anon_sym_CARET] = ACTIONS(475), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(475), - [anon_sym_not] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(479), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(483), - [sym_semgrep_metavariable] = ACTIONS(1595), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(487), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(491), - }, - [801] = { - [sym_expression] = STATE(3865), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, + [800] = { + [sym_expression] = STATE(1810), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), + }, + [801] = { + [sym_expression] = STATE(1826), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), + }, [802] = { - [sym_expression] = STATE(4261), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1827), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [803] = { - [sym_expression] = STATE(2172), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1828), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [804] = { - [sym_expression] = STATE(2627), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(1829), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [805] = { - [sym_expression] = STATE(3866), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(1830), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [806] = { - [sym_expression] = STATE(3867), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(1832), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [807] = { - [sym_expression] = STATE(3868), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(1833), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [808] = { - [sym_expression] = STATE(4706), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(1658), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [809] = { - [sym_expression] = STATE(4708), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(1815), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [810] = { - [sym_expression] = STATE(4270), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3944), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [811] = { - [sym_expression] = STATE(2203), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1989), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [812] = { - [sym_expression] = STATE(4496), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1733), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [813] = { - [sym_expression] = STATE(4497), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [814] = { - [sym_expression] = STATE(3869), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), + [sym_expression] = STATE(3945), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), [sym_quoted_atom_start] = ACTIONS(135), }, + [814] = { + [sym_expression] = STATE(1990), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), + }, [815] = { - [sym_expression] = STATE(4499), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1754), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [816] = { - [sym_expression] = STATE(2686), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(1844), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [817] = { - [sym_expression] = STATE(4500), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1845), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [818] = { - [sym_expression] = STATE(4501), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1847), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [819] = { - [sym_expression] = STATE(4597), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1848), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [820] = { - [sym_expression] = STATE(3870), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(1849), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [821] = { - [sym_expression] = STATE(4599), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1974), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [822] = { - [sym_expression] = STATE(4503), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1999), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [823] = { - [sym_expression] = STATE(4504), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1850), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [824] = { - [sym_expression] = STATE(4505), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1852), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [825] = { - [sym_expression] = STATE(4506), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1853), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [826] = { - [sym_expression] = STATE(4507), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1854), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [827] = { - [sym_expression] = STATE(4508), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1865), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [828] = { - [sym_expression] = STATE(4509), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1866), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [829] = { - [sym_expression] = STATE(4510), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1871), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [830] = { - [sym_expression] = STATE(4275), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(1872), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [831] = { - [sym_expression] = STATE(2758), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(1991), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [832] = { - [sym_expression] = STATE(3871), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(3921), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [833] = { - [sym_expression] = STATE(2915), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), + [sym_expression] = STATE(2820), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [834] = { - [sym_expression] = STATE(1520), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4638), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [835] = { - [sym_expression] = STATE(4568), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(3477), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [836] = { - [sym_expression] = STATE(4679), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3478), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [837] = { - [sym_expression] = STATE(4676), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(750), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(764), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3487), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [838] = { - [sym_expression] = STATE(2916), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(3488), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [839] = { - [sym_expression] = STATE(1529), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4795), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [840] = { - [sym_expression] = STATE(2766), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(4796), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [841] = { - [sym_expression] = STATE(2920), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4797), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [842] = { - [sym_expression] = STATE(2921), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4798), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [843] = { - [sym_expression] = STATE(4001), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4799), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [844] = { - [sym_expression] = STATE(2922), - [sym_block] = STATE(1634), + [sym_expression] = STATE(4675), + [sym_block] = STATE(3449), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [845] = { - [sym_expression] = STATE(2923), - [sym_block] = STATE(1634), + [sym_expression] = STATE(4700), + [sym_block] = STATE(3449), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [846] = { - [sym_expression] = STATE(2924), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4801), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [847] = { - [sym_expression] = STATE(2956), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4802), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [848] = { - [sym_expression] = STATE(4569), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(4803), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [849] = { - [sym_expression] = STATE(2958), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4804), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [850] = { - [sym_expression] = STATE(2925), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4805), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [851] = { - [sym_expression] = STATE(2926), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4806), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [852] = { - [sym_expression] = STATE(2927), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4807), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [853] = { - [sym_expression] = STATE(2928), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4808), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [854] = { - [sym_expression] = STATE(2929), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(3516), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [855] = { - [sym_expression] = STATE(3954), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(2475), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(956), + [anon_sym_not] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(968), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [856] = { - [sym_expression] = STATE(2930), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4733), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [857] = { - [sym_expression] = STATE(2931), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4823), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [858] = { - [sym_expression] = STATE(2932), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), + [sym_expression] = STATE(4448), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), + [sym_anonymous_call] = STATE(1690), [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [859] = { - [sym_expression] = STATE(2933), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), + [sym_expression] = STATE(4065), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), [sym_remote_dot] = STATE(54), - [sym_anonymous_call] = STATE(1461), + [sym_anonymous_call] = STATE(1690), [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(435), - [anon_sym_not] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(439), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [860] = { - [sym_expression] = STATE(4266), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(2321), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [861] = { - [sym_expression] = STATE(2413), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(2327), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [862] = { - [sym_expression] = STATE(2414), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(2436), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [863] = { - [sym_expression] = STATE(4571), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1421), - [anon_sym_not] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1425), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2437), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [864] = { - [sym_expression] = STATE(4572), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(3751), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [865] = { - [sym_expression] = STATE(3598), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(3752), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [866] = { - [sym_expression] = STATE(4573), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(3753), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [867] = { - [sym_expression] = STATE(2366), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3754), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [868] = { - [sym_expression] = STATE(2376), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3755), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [869] = { - [sym_expression] = STATE(2950), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3767), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [870] = { - [sym_expression] = STATE(2951), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3769), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [871] = { - [sym_expression] = STATE(4574), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(3756), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [872] = { - [sym_expression] = STATE(2953), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3757), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [873] = { - [sym_expression] = STATE(2954), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3758), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [874] = { - [sym_expression] = STATE(2955), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3759), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [875] = { - [sym_expression] = STATE(2532), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3760), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [876] = { - [sym_expression] = STATE(3477), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3761), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [877] = { - [sym_expression] = STATE(2534), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3762), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [878] = { - [sym_expression] = STATE(3265), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(3763), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [879] = { - [sym_expression] = STATE(2959), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(4692), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [880] = { - [sym_expression] = STATE(2960), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(4283), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [881] = { - [sym_expression] = STATE(2961), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(2439), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [882] = { - [sym_expression] = STATE(2962), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(2330), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [883] = { - [sym_expression] = STATE(2963), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(4622), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [884] = { - [sym_expression] = STATE(2964), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(4691), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [885] = { - [sym_expression] = STATE(2965), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(4609), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [886] = { - [sym_expression] = STATE(2966), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3165), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [887] = { - [sym_expression] = STATE(2359), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(43), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(44), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(365), - [anon_sym_not] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(367), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(383), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(4613), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [888] = { - [sym_expression] = STATE(3352), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(3477), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [889] = { [sym_expression] = STATE(3478), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [890] = { - [sym_expression] = STATE(3631), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(3487), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [891] = { - [sym_expression] = STATE(3647), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(3488), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [892] = { - [sym_expression] = STATE(4575), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(4514), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [893] = { - [sym_expression] = STATE(4688), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4515), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [894] = { - [sym_expression] = STATE(4576), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(4516), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [895] = { - [sym_expression] = STATE(3594), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(4517), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [896] = { - [sym_expression] = STATE(3596), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(4518), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [897] = { - [sym_expression] = STATE(3640), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(4816), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [898] = { - [sym_expression] = STATE(3645), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(4818), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1461), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1465), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [899] = { - [sym_expression] = STATE(3487), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4519), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [900] = { - [sym_expression] = STATE(3652), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(4520), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [901] = { - [sym_expression] = STATE(3792), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4521), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [902] = { - [sym_expression] = STATE(3653), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(4522), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [903] = { - [sym_expression] = STATE(3654), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(4523), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [904] = { - [sym_expression] = STATE(3636), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(4524), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [905] = { - [sym_expression] = STATE(3488), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4525), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [906] = { - [sym_expression] = STATE(3639), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(4526), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [907] = { - [sym_expression] = STATE(3700), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(3516), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [908] = { - [sym_expression] = STATE(3701), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(4820), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [909] = { - [sym_expression] = STATE(3704), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(3477), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [910] = { - [sym_expression] = STATE(3705), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(3478), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [911] = { - [sym_expression] = STATE(3875), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(2985), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [912] = { - [sym_expression] = STATE(3706), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), - }, - [913] = { - [sym_expression] = STATE(3707), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), - }, - [914] = { - [sym_expression] = STATE(3708), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), - }, - [915] = { - [sym_expression] = STATE(3709), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), - }, - [916] = { - [sym_expression] = STATE(4124), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4617), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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(1176), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, - [917] = { - [sym_expression] = STATE(4578), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [913] = { + [sym_expression] = STATE(4618), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, - [918] = { - [sym_expression] = STATE(4363), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [914] = { + [sym_expression] = STATE(3487), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, - [919] = { - [sym_expression] = STATE(2172), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [915] = { + [sym_expression] = STATE(3488), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, - [920] = { - [sym_expression] = STATE(4579), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [916] = { + [sym_expression] = STATE(4619), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, - [921] = { - [sym_expression] = STATE(4043), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), - }, - [922] = { - [sym_expression] = STATE(4044), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [917] = { + [sym_expression] = STATE(4039), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, - [923] = { - [sym_expression] = STATE(3406), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [918] = { + [sym_expression] = STATE(2615), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -141801,1212 +142012,1345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), + }, + [919] = { + [sym_expression] = STATE(4040), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), + }, + [920] = { + [sym_expression] = STATE(4620), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), + }, + [921] = { + [sym_expression] = STATE(4043), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), + }, + [922] = { + [sym_expression] = STATE(4688), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), + }, + [923] = { + [sym_expression] = STATE(4690), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [924] = { - [sym_expression] = STATE(4370), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4044), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [925] = { - [sym_expression] = STATE(2203), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4045), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [926] = { - [sym_expression] = STATE(4524), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4046), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [927] = { - [sym_expression] = STATE(4538), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4048), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [928] = { - [sym_expression] = STATE(4580), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(4049), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [929] = { - [sym_expression] = STATE(4539), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [930] = { - [sym_expression] = STATE(4548), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [931] = { - [sym_expression] = STATE(4549), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [932] = { - [sym_expression] = STATE(4559), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), - }, - [933] = { - [sym_expression] = STATE(3494), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [sym_expression] = STATE(2675), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(56), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -143021,13290 +143365,13645 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PLUS] = ACTIONS(499), + [anon_sym_DASH] = ACTIONS(499), + [anon_sym_BANG] = ACTIONS(499), + [anon_sym_CARET] = ACTIONS(499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(499), + [anon_sym_not] = ACTIONS(499), + [anon_sym_AT] = ACTIONS(501), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(503), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), + }, + [930] = { + [sym_expression] = STATE(4050), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), + }, + [931] = { + [sym_expression] = STATE(4051), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), + }, + [932] = { + [sym_expression] = STATE(4052), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), + }, + [933] = { + [sym_expression] = STATE(3519), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [934] = { - [sym_expression] = STATE(4047), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4053), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [935] = { - [sym_expression] = STATE(4561), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4054), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [936] = { - [sym_expression] = STATE(4642), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4055), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [937] = { - [sym_expression] = STATE(4643), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3516), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [938] = { - [sym_expression] = STATE(4725), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2744), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [939] = { - [sym_expression] = STATE(4726), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4623), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [940] = { - [sym_expression] = STATE(4728), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4624), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [941] = { - [sym_expression] = STATE(4729), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2758), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(44), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(371), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(389), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [942] = { - [sym_expression] = STATE(4730), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4625), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [943] = { - [sym_expression] = STATE(4731), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4674), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1515), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [944] = { - [sym_expression] = STATE(4384), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3590), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [945] = { - [sym_expression] = STATE(4049), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4642), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [946] = { - [sym_expression] = STATE(3472), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4626), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [947] = { - [sym_expression] = STATE(3956), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(3702), + [sym_block] = STATE(3797), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_atom] = STATE(3797), + [sym_quoted_atom] = STATE(3816), + [sym_quoted_i_double] = STATE(3985), + [sym_quoted_i_single] = STATE(3861), + [sym_quoted_i_heredoc_single] = STATE(3861), + [sym_quoted_i_heredoc_double] = STATE(3985), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_nullary_operator] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(7420), + [sym_dot] = STATE(3797), + [sym_call] = STATE(3797), + [sym_call_without_parentheses] = STATE(3694), + [sym_call_with_parentheses] = STATE(3694), + [sym_local_call_without_parentheses] = STATE(3701), + [sym_local_call_with_parentheses] = STATE(2496), + [sym_local_call_just_do_block] = STATE(3701), + [sym_remote_call_without_parentheses] = STATE(3701), + [sym_remote_call_with_parentheses] = STATE(2496), + [sym_remote_dot] = STATE(67), + [sym_anonymous_call] = STATE(2496), + [sym_anonymous_dot] = STATE(7349), + [sym_double_call] = STATE(3963), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [sym_metavariable_atom] = STATE(3816), + [sym_deep_ellipsis] = STATE(3797), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(568), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom_] = ACTIONS(580), + [anon_sym_DQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(586), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(602), + [anon_sym_not] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(608), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(612), + [sym_semgrep_metavariable] = ACTIONS(570), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(574), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(618), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(622), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(624), }, [948] = { - [sym_expression] = STATE(3482), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4557), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [949] = { - [sym_expression] = STATE(4050), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4558), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [950] = { - [sym_expression] = STATE(4051), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4627), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [951] = { - [sym_expression] = STATE(4583), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4628), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [952] = { - [sym_expression] = STATE(3504), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4686), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [953] = { - [sym_expression] = STATE(3505), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4699), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [954] = { - [sym_expression] = STATE(3041), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4466), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [955] = { - [sym_expression] = STATE(3042), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4467), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [956] = { - [sym_expression] = STATE(3606), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(62), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(49), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(784), - [anon_sym_BANG] = ACTIONS(784), - [anon_sym_CARET] = ACTIONS(784), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(784), - [anon_sym_not] = ACTIONS(784), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(792), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(3345), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [957] = { - [sym_expression] = STATE(4054), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4470), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [958] = { - [sym_expression] = STATE(3043), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4472), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [959] = { - [sym_expression] = STATE(3044), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4473), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [960] = { - [sym_expression] = STATE(3045), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4728), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [961] = { - [sym_expression] = STATE(3195), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4629), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [962] = { - [sym_expression] = STATE(4055), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4502), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [963] = { - [sym_expression] = STATE(3197), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4503), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [964] = { - [sym_expression] = STATE(3046), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4504), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [965] = { - [sym_expression] = STATE(3047), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(3377), + [sym_block] = STATE(3160), + [sym_identifier] = STATE(66), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym_atom] = STATE(3160), + [sym_quoted_atom] = STATE(3163), + [sym_quoted_i_double] = STATE(3169), + [sym_quoted_i_single] = STATE(3170), + [sym_quoted_i_heredoc_single] = STATE(3170), + [sym_quoted_i_heredoc_double] = STATE(3169), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_nullary_operator] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(7426), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym_call_without_parentheses] = STATE(3171), + [sym_call_with_parentheses] = STATE(3171), + [sym_local_call_without_parentheses] = STATE(3172), + [sym_local_call_with_parentheses] = STATE(2454), + [sym_local_call_just_do_block] = STATE(3172), + [sym_remote_call_without_parentheses] = STATE(3172), + [sym_remote_call_with_parentheses] = STATE(2454), + [sym_remote_dot] = STATE(69), + [sym_anonymous_call] = STATE(2454), + [sym_anonymous_dot] = STATE(7350), + [sym_double_call] = STATE(3173), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [sym_metavariable_atom] = STATE(3163), + [sym_deep_ellipsis] = STATE(3160), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(630), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(632), + [sym_integer] = ACTIONS(632), + [sym_float] = ACTIONS(632), + [sym_char] = ACTIONS(632), + [anon_sym_true] = ACTIONS(634), + [anon_sym_false] = ACTIONS(634), + [anon_sym_nil] = ACTIONS(636), + [sym_atom_] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(642), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(656), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(660), + [anon_sym_not] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(666), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(670), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(632), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(674), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(678), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(680), }, [966] = { - [sym_expression] = STATE(3048), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4508), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [967] = { - [sym_expression] = STATE(3049), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4512), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [968] = { - [sym_expression] = STATE(3050), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4531), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [969] = { - [sym_expression] = STATE(3259), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4532), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [970] = { - [sym_expression] = STATE(3051), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4534), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [971] = { - [sym_expression] = STATE(3053), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4535), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [972] = { - [sym_expression] = STATE(3054), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(4538), + [sym_block] = STATE(4611), + [sym_identifier] = STATE(79), + [sym_boolean] = STATE(4611), + [sym_nil] = STATE(4611), + [sym_atom] = STATE(4611), + [sym_quoted_atom] = STATE(4509), + [sym_quoted_i_double] = STATE(4562), + [sym_quoted_i_single] = STATE(4563), + [sym_quoted_i_heredoc_single] = STATE(4563), + [sym_quoted_i_heredoc_double] = STATE(4562), + [sym_string] = STATE(4611), + [sym_charlist] = STATE(4611), + [sym_sigil] = STATE(4611), + [sym_list] = STATE(4611), + [sym_tuple] = STATE(4611), + [sym_bitstring] = STATE(4611), + [sym_map] = STATE(4611), + [sym_nullary_operator] = STATE(4611), + [sym_unary_operator] = STATE(4611), + [sym_binary_operator] = STATE(4611), + [sym_operator_identifier] = STATE(7378), + [sym_dot] = STATE(4611), + [sym_call] = STATE(4611), + [sym_call_without_parentheses] = STATE(4594), + [sym_call_with_parentheses] = STATE(4594), + [sym_local_call_without_parentheses] = STATE(4610), + [sym_local_call_with_parentheses] = STATE(3813), + [sym_local_call_just_do_block] = STATE(4610), + [sym_remote_call_without_parentheses] = STATE(4610), + [sym_remote_call_with_parentheses] = STATE(3813), + [sym_remote_dot] = STATE(60), + [sym_anonymous_call] = STATE(3813), + [sym_anonymous_dot] = STATE(7306), + [sym_double_call] = STATE(4506), + [sym_access_call] = STATE(4611), + [sym_anonymous_function] = STATE(4611), + [sym_metavariable_atom] = STATE(4509), + [sym_deep_ellipsis] = STATE(4611), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1110), + [aux_sym_identifier_token1] = ACTIONS(1112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1112), + [sym_alias] = ACTIONS(1116), + [sym_integer] = ACTIONS(1116), + [sym_float] = ACTIONS(1116), + [sym_char] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_nil] = ACTIONS(1120), + [sym_atom_] = ACTIONS(1122), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1128), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1138), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1144), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_PLUS] = ACTIONS(1148), + [anon_sym_DASH] = ACTIONS(1148), + [anon_sym_BANG] = ACTIONS(1148), + [anon_sym_CARET] = ACTIONS(1148), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1148), + [anon_sym_not] = ACTIONS(1148), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1152), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1154), + [sym_semgrep_metavariable] = ACTIONS(1112), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1116), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1160), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1162), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1164), }, [973] = { - [sym_expression] = STATE(3534), - [sym_block] = STATE(3148), - [sym_identifier] = STATE(65), - [sym_boolean] = STATE(3148), - [sym_nil] = STATE(3148), - [sym_atom] = STATE(3148), - [sym_quoted_atom] = STATE(3271), - [sym_quoted_i_double] = STATE(3350), - [sym_quoted_i_single] = STATE(3351), - [sym_quoted_i_heredoc_single] = STATE(3351), - [sym_quoted_i_heredoc_double] = STATE(3350), - [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_nullary_operator] = STATE(3148), - [sym_unary_operator] = STATE(3148), - [sym_binary_operator] = STATE(3148), - [sym_operator_identifier] = STATE(7442), - [sym_dot] = STATE(3148), - [sym_call] = STATE(3148), - [sym_call_without_parentheses] = STATE(3360), - [sym_call_with_parentheses] = STATE(3360), - [sym_local_call_without_parentheses] = STATE(3366), - [sym_local_call_with_parentheses] = STATE(2328), - [sym_local_call_just_do_block] = STATE(3366), - [sym_remote_call_without_parentheses] = STATE(3366), - [sym_remote_call_with_parentheses] = STATE(2328), - [sym_remote_dot] = STATE(68), - [sym_anonymous_call] = STATE(2328), - [sym_anonymous_dot] = STATE(7292), - [sym_double_call] = STATE(3383), - [sym_access_call] = STATE(3148), - [sym_anonymous_function] = STATE(3148), - [sym_metavariable_atom] = STATE(3271), - [sym_deep_ellipsis] = STATE(3148), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(562), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(564), - [sym_integer] = ACTIONS(564), - [sym_float] = ACTIONS(564), - [sym_char] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [anon_sym_nil] = ACTIONS(568), - [sym_atom_] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(576), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(592), - [anon_sym_not] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(598), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(602), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(604), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(608), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(610), + [sym_expression] = STATE(3868), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [974] = { - [sym_expression] = STATE(4056), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3947), + [sym_block] = STATE(3798), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3798), + [sym_nil] = STATE(3798), + [sym_atom] = STATE(3798), + [sym_quoted_atom] = STATE(3802), + [sym_quoted_i_double] = STATE(3804), + [sym_quoted_i_single] = STATE(3805), + [sym_quoted_i_heredoc_single] = STATE(3805), + [sym_quoted_i_heredoc_double] = STATE(3804), + [sym_string] = STATE(3798), + [sym_charlist] = STATE(3798), + [sym_sigil] = STATE(3798), + [sym_list] = STATE(3798), + [sym_tuple] = STATE(3798), + [sym_bitstring] = STATE(3798), + [sym_map] = STATE(3798), + [sym_nullary_operator] = STATE(3798), + [sym_unary_operator] = STATE(3798), + [sym_binary_operator] = STATE(3798), + [sym_operator_identifier] = STATE(7432), + [sym_dot] = STATE(3798), + [sym_call] = STATE(3798), + [sym_call_without_parentheses] = STATE(3806), + [sym_call_with_parentheses] = STATE(3806), + [sym_local_call_without_parentheses] = STATE(3807), + [sym_local_call_with_parentheses] = STATE(2555), + [sym_local_call_just_do_block] = STATE(3807), + [sym_remote_call_without_parentheses] = STATE(3807), + [sym_remote_call_with_parentheses] = STATE(2555), + [sym_remote_dot] = STATE(59), + [sym_anonymous_call] = STATE(2555), + [sym_anonymous_dot] = STATE(7277), + [sym_double_call] = STATE(3810), + [sym_access_call] = STATE(3798), + [sym_anonymous_function] = STATE(3798), + [sym_metavariable_atom] = STATE(3802), + [sym_deep_ellipsis] = STATE(3798), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(514), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(520), + [sym_integer] = ACTIONS(520), + [sym_float] = ACTIONS(520), + [sym_char] = ACTIONS(520), + [anon_sym_true] = ACTIONS(522), + [anon_sym_false] = ACTIONS(522), + [anon_sym_nil] = ACTIONS(524), + [sym_atom_] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_SQUOTE] = ACTIONS(530), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(542), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(548), + [anon_sym_not] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(550), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(552), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(556), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(520), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(562), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(564), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(566), }, [975] = { - [sym_expression] = STATE(4039), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4352), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [976] = { - [sym_expression] = STATE(4040), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4353), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [977] = { - [sym_expression] = STATE(3957), - [sym_block] = STATE(2332), - [sym_identifier] = STATE(77), - [sym_boolean] = STATE(2332), - [sym_nil] = STATE(2332), - [sym_atom] = STATE(2332), - [sym_quoted_atom] = STATE(2336), - [sym_quoted_i_double] = STATE(2345), - [sym_quoted_i_single] = STATE(2346), - [sym_quoted_i_heredoc_single] = STATE(2346), - [sym_quoted_i_heredoc_double] = STATE(2345), - [sym_string] = STATE(2332), - [sym_charlist] = STATE(2332), - [sym_sigil] = STATE(2332), - [sym_list] = STATE(2332), - [sym_tuple] = STATE(2332), - [sym_bitstring] = STATE(2332), - [sym_map] = STATE(2332), - [sym_nullary_operator] = STATE(2332), - [sym_unary_operator] = STATE(2332), - [sym_binary_operator] = STATE(2332), - [sym_operator_identifier] = STATE(7430), - [sym_dot] = STATE(2332), - [sym_call] = STATE(2332), - [sym_call_without_parentheses] = STATE(2347), - [sym_call_with_parentheses] = STATE(2347), - [sym_local_call_without_parentheses] = STATE(2352), - [sym_local_call_with_parentheses] = STATE(1889), - [sym_local_call_just_do_block] = STATE(2352), - [sym_remote_call_without_parentheses] = STATE(2352), - [sym_remote_call_with_parentheses] = STATE(1889), - [sym_remote_dot] = STATE(76), - [sym_anonymous_call] = STATE(1889), - [sym_anonymous_dot] = STATE(7382), - [sym_double_call] = STATE(2358), - [sym_access_call] = STATE(2332), - [sym_anonymous_function] = STATE(2332), - [sym_metavariable_atom] = STATE(2336), - [sym_deep_ellipsis] = STATE(2332), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(331), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(339), - [anon_sym_false] = ACTIONS(339), - [anon_sym_nil] = ACTIONS(341), - [sym_atom_] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_PERCENT] = ACTIONS(361), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(371), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(375), - [sym_semgrep_metavariable] = ACTIONS(1609), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(379), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(698), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(385), + [sym_expression] = STATE(4630), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [978] = { - [sym_expression] = STATE(4057), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4632), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [979] = { - [sym_expression] = STATE(4058), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4240), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [980] = { - [sym_expression] = STATE(4059), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4242), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [981] = { - [sym_expression] = STATE(3546), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(3403), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [982] = { - [sym_expression] = STATE(3547), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4268), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [983] = { - [sym_expression] = STATE(3716), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4269), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [984] = { - [sym_expression] = STATE(3721), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4191), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = 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(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [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_quoted_atom_start] = ACTIONS(63), }, [985] = { - [sym_expression] = STATE(4060), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4272), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [986] = { - [sym_expression] = STATE(3726), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4273), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [987] = { - [sym_expression] = STATE(1726), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4276), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [988] = { - [sym_expression] = STATE(3727), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4169), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [989] = { - [sym_expression] = STATE(3728), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(2964), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(50), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_CARET] = ACTIONS(410), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(410), + [anon_sym_not] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(416), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [990] = { - [sym_expression] = STATE(4026), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4171), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [991] = { - [sym_expression] = STATE(4061), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4281), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [992] = { - [sym_expression] = STATE(4028), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4288), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [993] = { - [sym_expression] = STATE(3732), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4289), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [994] = { - [sym_expression] = STATE(3733), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4290), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [995] = { - [sym_expression] = STATE(3734), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4291), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [996] = { - [sym_expression] = STATE(3735), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4292), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [997] = { - [sym_expression] = STATE(3283), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(48), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(423), - [anon_sym_not] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1719), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(429), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4312), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [998] = { - [sym_expression] = STATE(3736), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4315), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [999] = { - [sym_expression] = STATE(3737), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4316), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1000] = { - [sym_expression] = STATE(3738), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(3983), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [1001] = { - [sym_expression] = STATE(3739), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(3589), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(51), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(736), + [anon_sym_not] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(738), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(744), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [1002] = { - [sym_expression] = STATE(3578), - [sym_block] = STATE(3971), - [sym_identifier] = STATE(69), - [sym_boolean] = STATE(3971), - [sym_nil] = STATE(3971), - [sym_atom] = STATE(3971), - [sym_quoted_atom] = STATE(3984), - [sym_quoted_i_double] = STATE(3987), - [sym_quoted_i_single] = STATE(3988), - [sym_quoted_i_heredoc_single] = STATE(3988), - [sym_quoted_i_heredoc_double] = STATE(3987), - [sym_string] = STATE(3971), - [sym_charlist] = STATE(3971), - [sym_sigil] = STATE(3971), - [sym_list] = STATE(3971), - [sym_tuple] = STATE(3971), - [sym_bitstring] = STATE(3971), - [sym_map] = STATE(3971), - [sym_nullary_operator] = STATE(3971), - [sym_unary_operator] = STATE(3971), - [sym_binary_operator] = STATE(3971), - [sym_operator_identifier] = STATE(7448), - [sym_dot] = STATE(3971), - [sym_call] = STATE(3971), - [sym_call_without_parentheses] = STATE(3998), - [sym_call_with_parentheses] = STATE(3998), - [sym_local_call_without_parentheses] = STATE(4002), - [sym_local_call_with_parentheses] = STATE(2566), - [sym_local_call_just_do_block] = STATE(4002), - [sym_remote_call_without_parentheses] = STATE(4002), - [sym_remote_call_with_parentheses] = STATE(2566), - [sym_remote_dot] = STATE(70), - [sym_anonymous_call] = STATE(2566), - [sym_anonymous_dot] = STATE(7363), - [sym_double_call] = STATE(4006), - [sym_access_call] = STATE(3971), - [sym_anonymous_function] = STATE(3971), - [sym_metavariable_atom] = STATE(3984), - [sym_deep_ellipsis] = STATE(3971), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(612), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(618), - [sym_integer] = ACTIONS(618), - [sym_float] = ACTIONS(618), - [sym_char] = ACTIONS(618), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_nil] = ACTIONS(622), - [sym_atom_] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(628), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(630), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(644), - [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_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(656), - [sym_semgrep_metavariable] = ACTIONS(1649), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(660), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(664), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(666), + [sym_expression] = STATE(4759), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1003] = { - [sym_expression] = STATE(4062), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4602), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1004] = { - [sym_expression] = STATE(2179), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4603), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1005] = { - [sym_expression] = STATE(1851), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4678), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1443), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1006] = { - [sym_expression] = STATE(3522), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_PLUS] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1072), - [anon_sym_not] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1074), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1082), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4669), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(792), + [anon_sym_DASH] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_CARET] = ACTIONS(792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(792), + [anon_sym_not] = ACTIONS(792), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(810), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1007] = { - [sym_expression] = STATE(4317), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(3335), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [1008] = { - [sym_expression] = STATE(1875), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4641), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1009] = { - [sym_expression] = STATE(4772), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4658), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1010] = { - [sym_expression] = STATE(2180), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4782), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1011] = { - [sym_expression] = STATE(1913), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4783), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1012] = { - [sym_expression] = STATE(2290), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(3984), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [1013] = { - [sym_expression] = STATE(2294), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4007), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_CARET] = ACTIONS(1088), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1088), + [anon_sym_not] = ACTIONS(1088), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1100), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1014] = { - [sym_expression] = STATE(2295), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4785), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1015] = { - [sym_expression] = STATE(2296), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4787), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1016] = { - [sym_expression] = STATE(4733), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4788), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1017] = { - [sym_expression] = STATE(2297), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4789), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1018] = { - [sym_expression] = STATE(2218), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4791), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1019] = { - [sym_expression] = STATE(2222), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4792), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1020] = { - [sym_expression] = STATE(2298), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4793), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1021] = { - [sym_expression] = STATE(2299), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4794), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1022] = { - [sym_expression] = STATE(2300), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(1675), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(167), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(175), + [anon_sym_false] = ACTIONS(175), + [anon_sym_nil] = ACTIONS(177), + [sym_atom_] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(181), + [anon_sym_SQUOTE] = ACTIONS(183), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), }, [1023] = { - [sym_expression] = STATE(2301), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4809), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1024] = { - [sym_expression] = STATE(2302), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4810), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1025] = { - [sym_expression] = STATE(2303), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4811), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1026] = { - [sym_expression] = STATE(2304), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4813), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1027] = { - [sym_expression] = STATE(2305), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(4814), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1028] = { - [sym_expression] = STATE(1698), - [sym_block] = STATE(1634), - [sym_identifier] = STATE(21), - [sym_boolean] = STATE(1634), - [sym_nil] = STATE(1634), - [sym_atom] = STATE(1634), - [sym_quoted_atom] = STATE(1656), - [sym_quoted_i_double] = STATE(1659), - [sym_quoted_i_single] = STATE(1660), - [sym_quoted_i_heredoc_single] = STATE(1660), - [sym_quoted_i_heredoc_double] = STATE(1659), - [sym_string] = STATE(1634), - [sym_charlist] = STATE(1634), - [sym_sigil] = STATE(1634), - [sym_list] = STATE(1634), - [sym_tuple] = STATE(1634), - [sym_bitstring] = STATE(1634), - [sym_map] = STATE(1634), - [sym_nullary_operator] = STATE(1634), - [sym_unary_operator] = STATE(1634), - [sym_binary_operator] = STATE(1634), - [sym_operator_identifier] = STATE(7424), - [sym_dot] = STATE(1634), - [sym_call] = STATE(1634), - [sym_call_without_parentheses] = STATE(1661), - [sym_call_with_parentheses] = STATE(1661), - [sym_local_call_without_parentheses] = STATE(1662), - [sym_local_call_with_parentheses] = STATE(1461), - [sym_local_call_just_do_block] = STATE(1662), - [sym_remote_call_without_parentheses] = STATE(1662), - [sym_remote_call_with_parentheses] = STATE(1461), - [sym_remote_dot] = STATE(18), - [sym_anonymous_call] = STATE(1461), - [sym_anonymous_dot] = STATE(7305), - [sym_double_call] = STATE(1665), - [sym_access_call] = STATE(1634), - [sym_anonymous_function] = STATE(1634), - [sym_metavariable_atom] = STATE(1656), - [sym_deep_ellipsis] = STATE(1634), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(223), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(225), - [sym_integer] = ACTIONS(225), - [sym_float] = ACTIONS(225), - [sym_char] = ACTIONS(225), - [anon_sym_true] = ACTIONS(227), - [anon_sym_false] = ACTIONS(227), - [anon_sym_nil] = ACTIONS(229), - [sym_atom_] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(237), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(245), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_PERCENT] = ACTIONS(249), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(253), - [anon_sym_DASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(253), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(253), - [anon_sym_not] = ACTIONS(253), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(263), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(265), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(269), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(271), + [sym_expression] = STATE(4692), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1029] = { - [sym_expression] = STATE(4439), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3347), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(48), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(487), + [anon_sym_CARET] = ACTIONS(487), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(487), + [anon_sym_not] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(489), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(493), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [1030] = { - [sym_expression] = STATE(4611), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(105), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(80), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1465), - [anon_sym_not] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1467), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1469), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(1859), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [1031] = { - [sym_expression] = STATE(4192), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), + [sym_expression] = STATE(3287), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1032] = { - [sym_expression] = STATE(1876), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(19), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(20), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(201), - [anon_sym_not] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1571), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(219), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(3288), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1033] = { - [sym_expression] = STATE(2215), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(3301), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1034] = { - [sym_expression] = STATE(2419), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4607), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1035] = { - [sym_expression] = STATE(2181), - [sym_block] = STATE(1959), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(1959), - [sym_nil] = STATE(1959), - [sym_atom] = STATE(1959), - [sym_quoted_atom] = STATE(1978), - [sym_quoted_i_double] = STATE(2014), - [sym_quoted_i_single] = STATE(1873), - [sym_quoted_i_heredoc_single] = STATE(1873), - [sym_quoted_i_heredoc_double] = STATE(2014), - [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_nullary_operator] = STATE(1959), - [sym_unary_operator] = STATE(1959), - [sym_binary_operator] = STATE(1959), - [sym_operator_identifier] = STATE(7516), - [sym_dot] = STATE(1959), - [sym_call] = STATE(1959), - [sym_call_without_parentheses] = STATE(1874), - [sym_call_with_parentheses] = STATE(1874), - [sym_local_call_without_parentheses] = STATE(1878), - [sym_local_call_with_parentheses] = STATE(1620), - [sym_local_call_just_do_block] = STATE(1878), - [sym_remote_call_without_parentheses] = STATE(1878), - [sym_remote_call_with_parentheses] = STATE(1620), - [sym_remote_dot] = STATE(17), - [sym_anonymous_call] = STATE(1620), - [sym_anonymous_dot] = STATE(7357), - [sym_double_call] = STATE(1881), - [sym_access_call] = STATE(1959), - [sym_anonymous_function] = STATE(1959), - [sym_metavariable_atom] = STATE(1978), - [sym_deep_ellipsis] = STATE(1959), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1459), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(77), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(77), - [sym_char] = ACTIONS(77), - [anon_sym_true] = ACTIONS(79), - [anon_sym_false] = ACTIONS(79), - [anon_sym_nil] = ACTIONS(81), - [sym_atom_] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LBRACK] = ACTIONS(95), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_LT_LT] = ACTIONS(101), - [anon_sym_PERCENT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(109), - [anon_sym_DASH] = ACTIONS(109), - [anon_sym_BANG] = ACTIONS(109), - [anon_sym_CARET] = ACTIONS(109), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(109), - [anon_sym_not] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(123), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(127), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(133), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(135), + [sym_expression] = STATE(3302), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1036] = { - [sym_expression] = STATE(4809), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(3316), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1037] = { - [sym_expression] = STATE(4140), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(3317), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1038] = { - [sym_expression] = STATE(4142), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(3319), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1039] = { - [sym_expression] = STATE(4755), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3320), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1040] = { - [sym_expression] = STATE(3477), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), - }, - [1041] = { - [sym_expression] = STATE(3478), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), - }, - [1042] = { - [sym_expression] = STATE(3187), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [sym_expression] = STATE(1677), + [sym_block] = STATE(1542), + [sym_identifier] = STATE(16), + [sym_boolean] = STATE(1542), + [sym_nil] = STATE(1542), + [sym_atom] = STATE(1542), + [sym_quoted_atom] = STATE(1545), + [sym_quoted_i_double] = STATE(1547), + [sym_quoted_i_single] = STATE(1548), + [sym_quoted_i_heredoc_single] = STATE(1548), + [sym_quoted_i_heredoc_double] = STATE(1547), + [sym_string] = STATE(1542), + [sym_charlist] = STATE(1542), + [sym_sigil] = STATE(1542), + [sym_list] = STATE(1542), + [sym_tuple] = STATE(1542), + [sym_bitstring] = STATE(1542), + [sym_map] = STATE(1542), + [sym_nullary_operator] = STATE(1542), + [sym_unary_operator] = STATE(1542), + [sym_binary_operator] = STATE(1542), + [sym_operator_identifier] = STATE(7408), + [sym_dot] = STATE(1542), + [sym_call] = STATE(1542), + [sym_call_without_parentheses] = STATE(1549), + [sym_call_with_parentheses] = STATE(1549), + [sym_local_call_without_parentheses] = STATE(1550), + [sym_local_call_with_parentheses] = STATE(1447), + [sym_local_call_just_do_block] = STATE(1550), + [sym_remote_call_without_parentheses] = STATE(1550), + [sym_remote_call_with_parentheses] = STATE(1447), + [sym_remote_dot] = STATE(21), + [sym_anonymous_call] = STATE(1447), + [sym_anonymous_dot] = STATE(7312), + [sym_double_call] = STATE(1551), + [sym_access_call] = STATE(1542), + [sym_anonymous_function] = STATE(1542), + [sym_metavariable_atom] = STATE(1545), + [sym_deep_ellipsis] = STATE(1542), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), [sym_alias] = ACTIONS(173), [sym_integer] = ACTIONS(173), [sym_float] = ACTIONS(173), @@ -156319,21962 +157018,21697 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_LT_LT] = ACTIONS(198), + [anon_sym_PERCENT] = ACTIONS(200), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(210), + [anon_sym_CARET] = ACTIONS(210), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(210), + [anon_sym_not] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(214), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(218), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(173), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(224), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(226), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(231), + }, + [1041] = { + [sym_expression] = STATE(4149), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), + }, + [1042] = { + [sym_expression] = STATE(4643), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(86), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(78), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1451), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1043] = { - [sym_expression] = STATE(3487), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4243), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1044] = { - [sym_expression] = STATE(3488), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(1860), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym_atom] = STATE(1705), + [sym_quoted_atom] = STATE(1708), + [sym_quoted_i_double] = STATE(1713), + [sym_quoted_i_single] = STATE(1714), + [sym_quoted_i_heredoc_single] = STATE(1714), + [sym_quoted_i_heredoc_double] = STATE(1713), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_nullary_operator] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(7438), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym_call_without_parentheses] = STATE(1715), + [sym_call_with_parentheses] = STATE(1715), + [sym_local_call_without_parentheses] = STATE(1716), + [sym_local_call_with_parentheses] = STATE(1460), + [sym_local_call_just_do_block] = STATE(1716), + [sym_remote_call_without_parentheses] = STATE(1716), + [sym_remote_call_with_parentheses] = STATE(1460), + [sym_remote_dot] = STATE(19), + [sym_anonymous_call] = STATE(1460), + [sym_anonymous_dot] = STATE(7292), + [sym_double_call] = STATE(1718), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [sym_metavariable_atom] = STATE(1708), + [sym_deep_ellipsis] = STATE(1705), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(239), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym_char] = ACTIONS(239), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom_] = ACTIONS(245), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(251), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LBRACK] = ACTIONS(257), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(273), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(277), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(239), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(281), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(285), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(287), }, [1045] = { - [sym_expression] = STATE(4626), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2167), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(34), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym_atom] = STATE(1885), + [sym_quoted_atom] = STATE(1892), + [sym_quoted_i_double] = STATE(2002), + [sym_quoted_i_single] = STATE(1846), + [sym_quoted_i_heredoc_single] = STATE(1846), + [sym_quoted_i_heredoc_double] = STATE(2002), + [sym_string] = STATE(1885), + [sym_charlist] = STATE(1885), + [sym_sigil] = STATE(1885), + [sym_list] = STATE(1885), + [sym_tuple] = STATE(1885), + [sym_bitstring] = STATE(1885), + [sym_map] = STATE(1885), + [sym_nullary_operator] = STATE(1885), + [sym_unary_operator] = STATE(1885), + [sym_binary_operator] = STATE(1885), + [sym_operator_identifier] = STATE(7509), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym_call_without_parentheses] = STATE(1851), + [sym_call_with_parentheses] = STATE(1851), + [sym_local_call_without_parentheses] = STATE(1862), + [sym_local_call_with_parentheses] = STATE(1567), + [sym_local_call_just_do_block] = STATE(1862), + [sym_remote_call_without_parentheses] = STATE(1862), + [sym_remote_call_with_parentheses] = STATE(1567), + [sym_remote_dot] = STATE(20), + [sym_anonymous_call] = STATE(1567), + [sym_anonymous_dot] = STATE(7282), + [sym_double_call] = STATE(1867), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [sym_metavariable_atom] = STATE(1892), + [sym_deep_ellipsis] = STATE(1885), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1425), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(75), + [sym_integer] = ACTIONS(75), + [sym_float] = ACTIONS(75), + [sym_char] = ACTIONS(75), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_nil] = ACTIONS(79), + [sym_atom_] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(87), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LBRACK] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(99), + [anon_sym_PERCENT] = ACTIONS(101), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_AMP] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_BANG] = ACTIONS(107), + [anon_sym_CARET] = ACTIONS(107), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(107), + [anon_sym_not] = ACTIONS(107), + [anon_sym_AT] = ACTIONS(109), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(121), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(125), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(75), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(131), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(133), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(135), }, [1046] = { - [sym_expression] = STATE(4627), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2462), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1047] = { - [sym_expression] = STATE(4628), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3321), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1048] = { - [sym_expression] = STATE(4629), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4757), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1049] = { - [sym_expression] = STATE(4630), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4093), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1050] = { - [sym_expression] = STATE(4752), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4095), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1051] = { - [sym_expression] = STATE(4632), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4763), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1052] = { - [sym_expression] = STATE(4633), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(3380), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1053] = { - [sym_expression] = STATE(4634), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3477), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1054] = { - [sym_expression] = STATE(4635), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3478), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1055] = { - [sym_expression] = STATE(4636), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3487), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1056] = { - [sym_expression] = STATE(4637), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(3488), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1057] = { - [sym_expression] = STATE(4638), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4645), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1058] = { - [sym_expression] = STATE(3522), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4646), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1059] = { - [sym_expression] = STATE(1753), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4647), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1060] = { - [sym_expression] = STATE(4297), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4648), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1061] = { - [sym_expression] = STATE(4302), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4649), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1062] = { - [sym_expression] = STATE(4096), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4650), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1063] = { - [sym_expression] = STATE(4097), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4651), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1064] = { - [sym_expression] = STATE(4787), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4652), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1065] = { - [sym_expression] = STATE(4788), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4653), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1066] = { - [sym_expression] = STATE(4789), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4654), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1067] = { - [sym_expression] = STATE(4790), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4655), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1068] = { - [sym_expression] = STATE(4791), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4656), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1069] = { - [sym_expression] = STATE(4792), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4657), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1070] = { - [sym_expression] = STATE(4793), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3516), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1071] = { - [sym_expression] = STATE(4794), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3382), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1072] = { - [sym_expression] = STATE(4795), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4352), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1073] = { - [sym_expression] = STATE(4848), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4353), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1074] = { - [sym_expression] = STATE(4796), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(3323), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1075] = { - [sym_expression] = STATE(4797), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4240), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1076] = { - [sym_expression] = STATE(4798), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4242), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1077] = { - [sym_expression] = STATE(4164), - [sym_block] = STATE(4248), - [sym_identifier] = STATE(74), - [sym_boolean] = STATE(4248), - [sym_nil] = STATE(4248), - [sym_atom] = STATE(4248), - [sym_quoted_atom] = STATE(4251), - [sym_quoted_i_double] = STATE(4254), - [sym_quoted_i_single] = STATE(4255), - [sym_quoted_i_heredoc_single] = STATE(4255), - [sym_quoted_i_heredoc_double] = STATE(4254), - [sym_string] = STATE(4248), - [sym_charlist] = STATE(4248), - [sym_sigil] = STATE(4248), - [sym_list] = STATE(4248), - [sym_tuple] = STATE(4248), - [sym_bitstring] = STATE(4248), - [sym_map] = STATE(4248), - [sym_nullary_operator] = STATE(4248), - [sym_unary_operator] = STATE(4248), - [sym_binary_operator] = STATE(4248), - [sym_operator_identifier] = STATE(7400), - [sym_dot] = STATE(4248), - [sym_call] = STATE(4248), - [sym_call_without_parentheses] = STATE(4256), - [sym_call_with_parentheses] = STATE(4256), - [sym_local_call_without_parentheses] = STATE(4258), - [sym_local_call_with_parentheses] = STATE(3328), - [sym_local_call_just_do_block] = STATE(4258), - [sym_remote_call_without_parentheses] = STATE(4258), - [sym_remote_call_with_parentheses] = STATE(3328), - [sym_remote_dot] = STATE(59), - [sym_anonymous_call] = STATE(3328), - [sym_anonymous_dot] = STATE(7295), - [sym_double_call] = STATE(4262), - [sym_access_call] = STATE(4248), - [sym_anonymous_function] = STATE(4248), - [sym_metavariable_atom] = STATE(4251), - [sym_deep_ellipsis] = STATE(4248), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1353), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(718), - [sym_integer] = ACTIONS(718), - [sym_float] = ACTIONS(718), - [sym_char] = ACTIONS(718), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [anon_sym_nil] = ACTIONS(722), - [sym_atom_] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(730), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(742), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_CARET] = ACTIONS(1501), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1501), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(756), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(758), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(762), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1505), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(766), + [sym_expression] = STATE(4764), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1078] = { - [sym_expression] = STATE(4492), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(4765), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1079] = { - [sym_expression] = STATE(4498), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(4766), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1080] = { - [sym_expression] = STATE(4261), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4767), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1081] = { - [sym_expression] = STATE(2172), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4768), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1082] = { - [sym_expression] = STATE(4270), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4769), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1083] = { - [sym_expression] = STATE(2203), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4770), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1084] = { - [sym_expression] = STATE(4371), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4771), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1085] = { - [sym_expression] = STATE(4372), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4772), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1086] = { - [sym_expression] = STATE(4373), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4773), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1087] = { - [sym_expression] = STATE(4374), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4774), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1088] = { - [sym_expression] = STATE(4375), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4775), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1089] = { - [sym_expression] = STATE(4376), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4776), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1090] = { - [sym_expression] = STATE(4377), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4316), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym_atom] = STATE(4070), + [sym_quoted_atom] = STATE(4119), + [sym_quoted_i_double] = STATE(4140), + [sym_quoted_i_single] = STATE(4141), + [sym_quoted_i_heredoc_single] = STATE(4141), + [sym_quoted_i_heredoc_double] = STATE(4140), + [sym_string] = STATE(4070), + [sym_charlist] = STATE(4070), + [sym_sigil] = STATE(4070), + [sym_list] = STATE(4070), + [sym_tuple] = STATE(4070), + [sym_bitstring] = STATE(4070), + [sym_map] = STATE(4070), + [sym_nullary_operator] = STATE(4070), + [sym_unary_operator] = STATE(4070), + [sym_binary_operator] = STATE(4070), + [sym_operator_identifier] = STATE(7384), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym_call_without_parentheses] = STATE(4143), + [sym_call_with_parentheses] = STATE(4143), + [sym_local_call_without_parentheses] = STATE(4146), + [sym_local_call_with_parentheses] = STATE(3055), + [sym_local_call_just_do_block] = STATE(4146), + [sym_remote_call_without_parentheses] = STATE(4146), + [sym_remote_call_with_parentheses] = STATE(3055), + [sym_remote_dot] = STATE(62), + [sym_anonymous_call] = STATE(3055), + [sym_anonymous_dot] = STATE(7279), + [sym_double_call] = STATE(4150), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [sym_metavariable_atom] = STATE(4119), + [sym_deep_ellipsis] = STATE(4070), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(764), + [anon_sym_false] = ACTIONS(764), + [anon_sym_nil] = ACTIONS(766), + [sym_atom_] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(774), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(780), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_LT_LT] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1545), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(800), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(802), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(762), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(808), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1551), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(812), }, [1091] = { - [sym_expression] = STATE(4378), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4695), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1092] = { - [sym_expression] = STATE(4379), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4697), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1093] = { - [sym_expression] = STATE(4380), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3324), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1094] = { - [sym_expression] = STATE(4381), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4437), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1095] = { - [sym_expression] = STATE(4382), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2025), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1096] = { - [sym_expression] = STATE(4383), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3325), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1097] = { - [sym_expression] = STATE(4275), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(56), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(776), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1345), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1345), - [anon_sym_not] = ACTIONS(1345), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1547), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1349), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4069), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1098] = { - [sym_expression] = STATE(3189), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(2146), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1099] = { - [sym_expression] = STATE(4363), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4295), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1100] = { - [sym_expression] = STATE(2172), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4296), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1101] = { - [sym_expression] = STATE(1777), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4297), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1102] = { - [sym_expression] = STATE(4370), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4298), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1103] = { - [sym_expression] = STATE(2203), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4299), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1104] = { - [sym_expression] = STATE(4397), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4300), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1105] = { - [sym_expression] = STATE(4398), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4301), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1106] = { - [sym_expression] = STATE(4399), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4302), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1107] = { - [sym_expression] = STATE(4400), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4303), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1108] = { - [sym_expression] = STATE(4401), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4304), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1109] = { - [sym_expression] = STATE(4195), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4305), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1110] = { - [sym_expression] = STATE(4197), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4306), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1111] = { - [sym_expression] = STATE(4402), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4307), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1112] = { - [sym_expression] = STATE(4403), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4084), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(54), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(728), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_CARET] = ACTIONS(1555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1557), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(728), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1559), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1113] = { - [sym_expression] = STATE(4404), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), + [sym_expression] = STATE(3326), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1114] = { - [sym_expression] = STATE(4405), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4063), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1115] = { - [sym_expression] = STATE(4406), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2025), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1116] = { - [sym_expression] = STATE(4407), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), + [sym_expression] = STATE(3327), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1117] = { - [sym_expression] = STATE(4408), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4294), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1118] = { - [sym_expression] = STATE(4409), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2146), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1119] = { - [sym_expression] = STATE(4384), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1511), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1515), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4330), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1120] = { - [sym_expression] = STATE(3353), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4331), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1121] = { - [sym_expression] = STATE(2400), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4332), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1122] = { - [sym_expression] = STATE(2172), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4333), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1123] = { - [sym_expression] = STATE(3359), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4334), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1124] = { - [sym_expression] = STATE(2401), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4208), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1125] = { - [sym_expression] = STATE(2203), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4211), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1126] = { - [sym_expression] = STATE(2383), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4335), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1127] = { - [sym_expression] = STATE(2384), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4336), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1128] = { - [sym_expression] = STATE(2385), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4337), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1129] = { - [sym_expression] = STATE(2386), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4338), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1130] = { - [sym_expression] = STATE(2387), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4339), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1131] = { - [sym_expression] = STATE(2388), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4340), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1132] = { - [sym_expression] = STATE(2389), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4341), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1133] = { - [sym_expression] = STATE(2390), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4342), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1134] = { - [sym_expression] = STATE(2391), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(4308), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(49), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1493), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1497), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(1489), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [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_quoted_atom_start] = ACTIONS(970), }, [1135] = { - [sym_expression] = STATE(2392), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3328), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1136] = { - [sym_expression] = STATE(2393), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2386), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1137] = { - [sym_expression] = STATE(2394), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(2025), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1138] = { - [sym_expression] = STATE(2395), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(27), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), - [sym_remote_dot] = STATE(16), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), - [anon_sym_not] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(908), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1339), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_expression] = STATE(3329), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1139] = { - [sym_expression] = STATE(4606), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(2387), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1140] = { - [sym_expression] = STATE(4267), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(51), - [anon_sym_not] = ACTIONS(51), - [anon_sym_AT] = ACTIONS(53), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(61), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(2146), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1141] = { - [sym_expression] = STATE(4774), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(2369), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1142] = { - [sym_expression] = STATE(4782), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2370), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1143] = { - [sym_expression] = STATE(3363), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(2371), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1144] = { - [sym_expression] = STATE(4827), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(2372), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1145] = { - [sym_expression] = STATE(4832), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2373), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1146] = { - [sym_expression] = STATE(3364), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(2374), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1147] = { - [sym_expression] = STATE(4841), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(2375), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1148] = { - [sym_expression] = STATE(4847), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2376), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1149] = { - [sym_expression] = STATE(3365), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(2377), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1150] = { - [sym_expression] = STATE(4779), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(2378), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1151] = { - [sym_expression] = STATE(4814), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2379), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1152] = { - [sym_expression] = STATE(2989), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(2380), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1153] = { - [sym_expression] = STATE(4806), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(2381), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1154] = { - [sym_expression] = STATE(4812), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(2388), + [sym_block] = STATE(2124), + [sym_identifier] = STATE(28), + [sym_boolean] = STATE(2124), + [sym_nil] = STATE(2124), + [sym_atom] = STATE(2124), + [sym_quoted_atom] = STATE(2088), + [sym_quoted_i_double] = STATE(2033), + [sym_quoted_i_single] = STATE(2041), + [sym_quoted_i_heredoc_single] = STATE(2041), + [sym_quoted_i_heredoc_double] = STATE(2033), + [sym_string] = STATE(2124), + [sym_charlist] = STATE(2124), + [sym_sigil] = STATE(2124), + [sym_list] = STATE(2124), + [sym_tuple] = STATE(2124), + [sym_bitstring] = STATE(2124), + [sym_map] = STATE(2124), + [sym_nullary_operator] = STATE(2124), + [sym_unary_operator] = STATE(2124), + [sym_binary_operator] = STATE(2124), + [sym_operator_identifier] = STATE(7402), + [sym_dot] = STATE(2124), + [sym_call] = STATE(2124), + [sym_call_without_parentheses] = STATE(2051), + [sym_call_with_parentheses] = STATE(2051), + [sym_local_call_without_parentheses] = STATE(2052), + [sym_local_call_with_parentheses] = STATE(1690), + [sym_local_call_just_do_block] = STATE(2052), + [sym_remote_call_without_parentheses] = STATE(2052), + [sym_remote_call_with_parentheses] = STATE(1690), + [sym_remote_dot] = STATE(17), + [sym_anonymous_call] = STATE(1690), + [sym_anonymous_dot] = STATE(7305), + [sym_double_call] = STATE(2080), + [sym_access_call] = STATE(2124), + [sym_anonymous_function] = STATE(2124), + [sym_metavariable_atom] = STATE(2088), + [sym_deep_ellipsis] = STATE(2124), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(924), + [aux_sym_identifier_token1] = ACTIONS(71), + [anon_sym_DOT_DOT_DOT] = ACTIONS(71), + [sym_alias] = ACTIONS(926), + [sym_integer] = ACTIONS(926), + [sym_float] = ACTIONS(926), + [sym_char] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_nil] = ACTIONS(930), + [sym_atom_] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_CARET] = ACTIONS(1411), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1413), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(962), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(964), + [sym_semgrep_metavariable] = ACTIONS(71), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(926), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1417), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(970), }, [1155] = { - [sym_expression] = STATE(4644), - [sym_block] = STATE(2241), - [sym_identifier] = STATE(67), - [sym_boolean] = STATE(2241), - [sym_nil] = STATE(2241), - [sym_atom] = STATE(2241), - [sym_quoted_atom] = STATE(2245), - [sym_quoted_i_double] = STATE(2247), - [sym_quoted_i_single] = STATE(2248), - [sym_quoted_i_heredoc_single] = STATE(2248), - [sym_quoted_i_heredoc_double] = STATE(2247), - [sym_string] = STATE(2241), - [sym_charlist] = STATE(2241), - [sym_sigil] = STATE(2241), - [sym_list] = STATE(2241), - [sym_tuple] = STATE(2241), - [sym_bitstring] = STATE(2241), - [sym_map] = STATE(2241), - [sym_nullary_operator] = STATE(2241), - [sym_unary_operator] = STATE(2241), - [sym_binary_operator] = STATE(2241), - [sym_operator_identifier] = STATE(7418), - [sym_dot] = STATE(2241), - [sym_call] = STATE(2241), - [sym_call_without_parentheses] = STATE(2250), - [sym_call_with_parentheses] = STATE(2250), - [sym_local_call_without_parentheses] = STATE(2254), - [sym_local_call_with_parentheses] = STATE(1836), - [sym_local_call_just_do_block] = STATE(2254), - [sym_remote_call_without_parentheses] = STATE(2254), - [sym_remote_call_with_parentheses] = STATE(1836), + [sym_expression] = STATE(3330), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), [sym_remote_dot] = STATE(57), - [sym_anonymous_call] = STATE(1836), - [sym_anonymous_dot] = STATE(7325), - [sym_double_call] = STATE(2266), - [sym_access_call] = STATE(2241), - [sym_anonymous_function] = STATE(2241), - [sym_metavariable_atom] = STATE(2245), - [sym_deep_ellipsis] = STATE(2241), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(906), - [aux_sym_identifier_token1] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [sym_alias] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(910), - [sym_char] = ACTIONS(910), - [anon_sym_true] = ACTIONS(912), - [anon_sym_false] = ACTIONS(912), - [anon_sym_nil] = ACTIONS(914), - [sym_atom_] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(920), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1451), - [anon_sym_not] = ACTIONS(1451), - [anon_sym_AT] = ACTIONS(1453), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(946), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(948), - [sym_semgrep_metavariable] = ACTIONS(1537), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(950), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1457), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(954), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1156] = { - [sym_expression] = STATE(4838), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4819), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1157] = { [sym_expression] = STATE(4754), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1158] = { - [sym_expression] = STATE(2991), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(3331), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym_atom] = STATE(3257), + [sym_quoted_atom] = STATE(3260), + [sym_quoted_i_double] = STATE(3262), + [sym_quoted_i_single] = STATE(3263), + [sym_quoted_i_heredoc_single] = STATE(3263), + [sym_quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym_nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(7396), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym_call_without_parentheses] = STATE(3264), + [sym_call_with_parentheses] = STATE(3264), + [sym_local_call_without_parentheses] = STATE(3265), + [sym_local_call_with_parentheses] = STATE(2337), + [sym_local_call_just_do_block] = STATE(3265), + [sym_remote_call_without_parentheses] = STATE(3265), + [sym_remote_call_with_parentheses] = STATE(2337), + [sym_remote_dot] = STATE(57), + [sym_anonymous_call] = STATE(2337), + [sym_anonymous_dot] = STATE(7278), + [sym_double_call] = STATE(3266), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), + [sym_metavariable_atom] = STATE(3260), + [sym_deep_ellipsis] = STATE(3257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(418), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(424), + [sym_integer] = ACTIONS(424), + [sym_float] = ACTIONS(424), + [sym_char] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [anon_sym_nil] = ACTIONS(428), + [sym_atom_] = ACTIONS(430), + [anon_sym_DQUOTE] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(436), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(1353), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(452), + [anon_sym_not] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(458), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(462), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(424), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(468), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(472), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(474), }, [1159] = { - [sym_expression] = STATE(4775), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4732), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1160] = { - [sym_expression] = STATE(4777), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4742), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1161] = { - [sym_expression] = STATE(3367), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4753), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1162] = { - [sym_expression] = STATE(4781), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(4761), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1163] = { - [sym_expression] = STATE(4784), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4777), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1164] = { - [sym_expression] = STATE(3368), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4800), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1165] = { - [sym_expression] = STATE(4810), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4821), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1166] = { - [sym_expression] = STATE(4813), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4824), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1167] = { - [sym_expression] = STATE(3369), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4734), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1168] = { - [sym_expression] = STATE(4828), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(4737), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1169] = { - [sym_expression] = STATE(4836), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4739), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1170] = { - [sym_expression] = STATE(3372), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4741), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1171] = { - [sym_expression] = STATE(4756), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4744), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1172] = { - [sym_expression] = STATE(4757), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), + [sym_expression] = STATE(4746), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1173] = { - [sym_expression] = STATE(3373), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4747), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1174] = { - [sym_expression] = STATE(4763), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1395), - [anon_sym_not] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1397), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(4748), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1175] = { - [sym_expression] = STATE(4768), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(50), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym_atom] = STATE(3447), - [sym_quoted_atom] = STATE(3450), - [sym_quoted_i_double] = STATE(3452), - [sym_quoted_i_single] = STATE(3453), - [sym_quoted_i_heredoc_single] = STATE(3453), - [sym_quoted_i_heredoc_double] = STATE(3452), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym_nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), - [sym_operator_identifier] = STATE(7526), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym_call_without_parentheses] = STATE(3454), - [sym_call_with_parentheses] = STATE(3454), - [sym_local_call_without_parentheses] = STATE(3455), - [sym_local_call_with_parentheses] = STATE(2331), - [sym_local_call_just_do_block] = STATE(3455), - [sym_remote_call_without_parentheses] = STATE(3455), - [sym_remote_call_with_parentheses] = STATE(2331), - [sym_remote_dot] = STATE(42), - [sym_anonymous_call] = STATE(2331), - [sym_anonymous_dot] = STATE(7304), - [sym_double_call] = STATE(3457), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), - [sym_metavariable_atom] = STATE(3450), - [sym_deep_ellipsis] = STATE(3447), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1038), - [aux_sym_identifier_token1] = ACTIONS(714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [sym_alias] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1040), - [sym_char] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_nil] = ACTIONS(1044), - [sym_atom_] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1052), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1062), - [anon_sym_LT_LT] = ACTIONS(1064), - [anon_sym_PERCENT] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1493), - [anon_sym_not] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1076), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1078), - [sym_semgrep_metavariable] = ACTIONS(1587), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1080), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1497), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1084), + [sym_expression] = STATE(4749), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1176] = { - [sym_expression] = STATE(3374), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4750), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1177] = { - [sym_expression] = STATE(4124), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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(1176), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(4751), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1178] = { - [sym_expression] = STATE(4244), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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(1176), - [anon_sym_TILDE] = ACTIONS(41), - [anon_sym_LT_LT] = ACTIONS(43), - [anon_sym_PERCENT] = ACTIONS(45), - [anon_sym_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(4752), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1179] = { - [sym_expression] = STATE(3375), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4755), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), + [anon_sym_not] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1405), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1180] = { - [sym_expression] = STATE(4266), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [sym_expression] = STATE(4756), + [sym_block] = STATE(3449), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3449), + [sym_nil] = STATE(3449), + [sym_atom] = STATE(3449), + [sym_quoted_atom] = STATE(3452), + [sym_quoted_i_double] = STATE(3454), + [sym_quoted_i_single] = STATE(3455), + [sym_quoted_i_heredoc_single] = STATE(3455), + [sym_quoted_i_heredoc_double] = STATE(3454), + [sym_string] = STATE(3449), + [sym_charlist] = STATE(3449), + [sym_sigil] = STATE(3449), + [sym_list] = STATE(3449), + [sym_tuple] = STATE(3449), + [sym_bitstring] = STATE(3449), + [sym_map] = STATE(3449), + [sym_nullary_operator] = STATE(3449), + [sym_unary_operator] = STATE(3449), + [sym_binary_operator] = STATE(3449), + [sym_operator_identifier] = STATE(7520), + [sym_dot] = STATE(3449), + [sym_call] = STATE(3449), + [sym_call_without_parentheses] = STATE(3456), + [sym_call_with_parentheses] = STATE(3456), + [sym_local_call_without_parentheses] = STATE(3457), + [sym_local_call_with_parentheses] = STATE(2404), + [sym_local_call_just_do_block] = STATE(3457), + [sym_remote_call_without_parentheses] = STATE(3457), + [sym_remote_call_with_parentheses] = STATE(2404), + [sym_remote_dot] = STATE(42), + [sym_anonymous_call] = STATE(2404), + [sym_anonymous_dot] = STATE(7269), + [sym_double_call] = STATE(3458), + [sym_access_call] = STATE(3449), + [sym_anonymous_function] = STATE(3449), + [sym_metavariable_atom] = STATE(3452), + [sym_deep_ellipsis] = STATE(3449), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1054), + [aux_sym_identifier_token1] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(758), + [sym_alias] = ACTIONS(1056), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym_char] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_nil] = ACTIONS(1060), + [sym_atom_] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(1066), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1068), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1078), + [anon_sym_LT_LT] = ACTIONS(1080), + [anon_sym_PERCENT] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1521), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1092), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1094), + [sym_semgrep_metavariable] = ACTIONS(758), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1056), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1098), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1525), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1102), }, [1181] = { - [sym_expression] = STATE(4267), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4367), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1182] = { - [sym_expression] = STATE(4456), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4382), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1183] = { - [sym_expression] = STATE(4457), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4453), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1184] = { - [sym_expression] = STATE(4458), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4283), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1185] = { - [sym_expression] = STATE(4459), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4420), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1186] = { - [sym_expression] = STATE(4460), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4421), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1187] = { - [sym_expression] = STATE(4461), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4422), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1188] = { - [sym_expression] = STATE(4462), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4423), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1189] = { - [sym_expression] = STATE(4463), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4424), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1190] = { - [sym_expression] = STATE(4464), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4425), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1191] = { - [sym_expression] = STATE(4465), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4426), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1192] = { - [sym_expression] = STATE(4466), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4427), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1193] = { - [sym_expression] = STATE(4467), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4428), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1194] = { - [sym_expression] = STATE(4468), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4429), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1195] = { - [sym_expression] = STATE(4317), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym_atom] = STATE(4111), - [sym_quoted_atom] = STATE(4134), - [sym_quoted_i_double] = STATE(4364), - [sym_quoted_i_single] = STATE(4368), - [sym_quoted_i_heredoc_single] = STATE(4368), - [sym_quoted_i_heredoc_double] = STATE(4364), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym_nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(7479), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym_call_without_parentheses] = STATE(4246), - [sym_call_with_parentheses] = STATE(4246), - [sym_local_call_without_parentheses] = STATE(4482), - [sym_local_call_with_parentheses] = STATE(3338), - [sym_local_call_just_do_block] = STATE(4482), - [sym_remote_call_without_parentheses] = STATE(4482), - [sym_remote_call_with_parentheses] = STATE(3338), - [sym_remote_dot] = STATE(55), - [sym_anonymous_call] = STATE(3338), - [sym_anonymous_dot] = STATE(7306), - [sym_double_call] = STATE(4093), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), - [sym_metavariable_atom] = STATE(4134), - [sym_deep_ellipsis] = STATE(4111), + [sym_expression] = STATE(4430), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(17), - [sym_alias] = ACTIONS(19), - [sym_integer] = ACTIONS(19), - [sym_float] = ACTIONS(19), - [sym_char] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_nil] = ACTIONS(23), - [sym_atom_] = ACTIONS(25), - [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_DOT_DOT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1431), - [anon_sym_not] = ACTIONS(1431), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(55), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(57), - [sym_semgrep_metavariable] = ACTIONS(17), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1437), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1196] = { - [sym_expression] = STATE(3377), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), + [sym_expression] = STATE(4431), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1197] = { - [sym_expression] = STATE(4533), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(4432), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1198] = { - [sym_expression] = STATE(4534), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), - [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_expression] = STATE(4191), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(58), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym_atom] = STATE(4370), + [sym_quoted_atom] = STATE(4078), + [sym_quoted_i_double] = STATE(4066), + [sym_quoted_i_single] = STATE(4310), + [sym_quoted_i_heredoc_single] = STATE(4310), + [sym_quoted_i_heredoc_double] = STATE(4066), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym_nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(7441), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym_call_without_parentheses] = STATE(4368), + [sym_call_with_parentheses] = STATE(4368), + [sym_local_call_without_parentheses] = STATE(4123), + [sym_local_call_with_parentheses] = STATE(3063), + [sym_local_call_just_do_block] = STATE(4123), + [sym_remote_call_without_parentheses] = STATE(4123), + [sym_remote_call_with_parentheses] = STATE(3063), + [sym_remote_dot] = STATE(46), + [sym_anonymous_call] = STATE(3063), + [sym_anonymous_dot] = STATE(7284), + [sym_double_call] = STATE(4216), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), + [sym_metavariable_atom] = STATE(4078), + [sym_deep_ellipsis] = STATE(4370), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom_] = ACTIONS(23), + [anon_sym_DQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(29), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(39), + [anon_sym_LT_LT] = ACTIONS(41), + [anon_sym_PERCENT] = ACTIONS(43), + [anon_sym_DOT_DOT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1533), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(55), + [sym_semgrep_metavariable] = ACTIONS(15), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(17), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(57), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1539), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(63), }, [1199] = { - [sym_expression] = STATE(3202), - [sym_block] = STATE(1730), - [sym_identifier] = STATE(46), - [sym_boolean] = STATE(1730), - [sym_nil] = STATE(1730), - [sym_atom] = STATE(1730), - [sym_quoted_atom] = STATE(1733), - [sym_quoted_i_double] = STATE(1736), - [sym_quoted_i_single] = STATE(1737), - [sym_quoted_i_heredoc_single] = STATE(1737), - [sym_quoted_i_heredoc_double] = STATE(1736), - [sym_string] = STATE(1730), - [sym_charlist] = STATE(1730), - [sym_sigil] = STATE(1730), - [sym_list] = STATE(1730), - [sym_tuple] = STATE(1730), - [sym_bitstring] = STATE(1730), - [sym_map] = STATE(1730), - [sym_nullary_operator] = STATE(1730), - [sym_unary_operator] = STATE(1730), - [sym_binary_operator] = STATE(1730), - [sym_operator_identifier] = STATE(7454), - [sym_dot] = STATE(1730), - [sym_call] = STATE(1730), - [sym_call_without_parentheses] = STATE(1738), - [sym_call_with_parentheses] = STATE(1738), - [sym_local_call_without_parentheses] = STATE(1739), - [sym_local_call_with_parentheses] = STATE(1474), - [sym_local_call_just_do_block] = STATE(1739), - [sym_remote_call_without_parentheses] = STATE(1739), - [sym_remote_call_with_parentheses] = STATE(1474), - [sym_remote_dot] = STATE(45), - [sym_anonymous_call] = STATE(1474), - [sym_anonymous_dot] = STATE(7314), - [sym_double_call] = STATE(1741), - [sym_access_call] = STATE(1730), - [sym_anonymous_function] = STATE(1730), - [sym_metavariable_atom] = STATE(1733), - [sym_deep_ellipsis] = STATE(1730), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(167), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(175), - [anon_sym_false] = ACTIONS(175), - [anon_sym_nil] = ACTIONS(177), - [sym_atom_] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(181), - [anon_sym_SQUOTE] = ACTIONS(183), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(185), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(187), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_PERCENT] = ACTIONS(197), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(401), - [anon_sym_not] = ACTIONS(401), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(207), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(211), - [sym_semgrep_metavariable] = ACTIONS(1677), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(215), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(407), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(221), + [sym_expression] = STATE(4602), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), + [sym_remote_dot] = STATE(61), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1200] = { - [sym_expression] = STATE(4555), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4603), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1201] = { - [sym_expression] = STATE(4556), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4641), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1202] = { - [sym_expression] = STATE(4740), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4658), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1203] = { - [sym_expression] = STATE(4741), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4714), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1204] = { - [sym_expression] = STATE(4742), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4715), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1205] = { - [sym_expression] = STATE(4743), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4716), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1206] = { - [sym_expression] = STATE(4744), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4717), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1207] = { - [sym_expression] = STATE(4745), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4718), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1208] = { - [sym_expression] = STATE(4746), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4456), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1209] = { - [sym_expression] = STATE(4747), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4720), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1210] = { - [sym_expression] = STATE(4748), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4721), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1211] = { - [sym_expression] = STATE(4749), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4722), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1212] = { - [sym_expression] = STATE(4750), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4723), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1213] = { - [sym_expression] = STATE(4751), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4724), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1214] = { - [sym_expression] = STATE(4631), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(75), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym_atom] = STATE(4486), - [sym_quoted_atom] = STATE(4493), - [sym_quoted_i_double] = STATE(4502), - [sym_quoted_i_single] = STATE(4516), - [sym_quoted_i_heredoc_single] = STATE(4516), - [sym_quoted_i_heredoc_double] = STATE(4502), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym_nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(7406), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym_call_without_parentheses] = STATE(4517), - [sym_call_with_parentheses] = STATE(4517), - [sym_local_call_without_parentheses] = STATE(4518), - [sym_local_call_with_parentheses] = STATE(3916), - [sym_local_call_just_do_block] = STATE(4518), - [sym_remote_call_without_parentheses] = STATE(4518), - [sym_remote_call_with_parentheses] = STATE(3916), + [sym_expression] = STATE(4725), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(74), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym_atom] = STATE(4579), + [sym_quoted_atom] = STATE(4582), + [sym_quoted_i_double] = STATE(4584), + [sym_quoted_i_single] = STATE(4585), + [sym_quoted_i_heredoc_single] = STATE(4585), + [sym_quoted_i_heredoc_double] = STATE(4584), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4579), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(7390), + [sym_dot] = STATE(4579), + [sym_call] = STATE(4579), + [sym_call_without_parentheses] = STATE(4586), + [sym_call_with_parentheses] = STATE(4586), + [sym_local_call_without_parentheses] = STATE(4587), + [sym_local_call_with_parentheses] = STATE(3570), + [sym_local_call_just_do_block] = STATE(4587), + [sym_remote_call_without_parentheses] = STATE(4587), + [sym_remote_call_with_parentheses] = STATE(3570), [sym_remote_dot] = STATE(61), - [sym_anonymous_call] = STATE(3916), - [sym_anonymous_dot] = STATE(7303), - [sym_double_call] = STATE(4519), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), - [sym_metavariable_atom] = STATE(4493), - [sym_deep_ellipsis] = STATE(4486), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1359), - [aux_sym_identifier_token1] = ACTIONS(1361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), - [anon_sym_nil] = ACTIONS(1369), - [sym_atom_] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1377), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_LT] = ACTIONS(1387), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), - [anon_sym_not] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1401), - [sym_semgrep_metavariable] = ACTIONS(1703), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1405), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1489), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(1409), + [sym_anonymous_call] = STATE(3570), + [sym_anonymous_dot] = STATE(7273), + [sym_double_call] = STATE(4589), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), + [sym_metavariable_atom] = STATE(4582), + [sym_deep_ellipsis] = STATE(4579), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1355), + [aux_sym_identifier_token1] = ACTIONS(1357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_nil] = ACTIONS(1365), + [sym_atom_] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1481), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(1395), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1397), + [sym_semgrep_metavariable] = ACTIONS(1357), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1361), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1403), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1485), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(1407), }, [1215] = { - [sym_expression] = STATE(3712), - [sym_block] = STATE(3962), - [sym_identifier] = STATE(66), - [sym_boolean] = STATE(3962), - [sym_nil] = STATE(3962), - [sym_atom] = STATE(3962), - [sym_quoted_atom] = STATE(3725), - [sym_quoted_i_double] = STATE(4083), - [sym_quoted_i_single] = STATE(3551), - [sym_quoted_i_heredoc_single] = STATE(3551), - [sym_quoted_i_heredoc_double] = STATE(4083), - [sym_string] = STATE(3962), - [sym_charlist] = STATE(3962), - [sym_sigil] = STATE(3962), - [sym_list] = STATE(3962), - [sym_tuple] = STATE(3962), - [sym_bitstring] = STATE(3962), - [sym_map] = STATE(3962), - [sym_nullary_operator] = STATE(3962), - [sym_unary_operator] = STATE(3962), - [sym_binary_operator] = STATE(3962), - [sym_operator_identifier] = STATE(7436), - [sym_dot] = STATE(3962), - [sym_call] = STATE(3962), - [sym_call_without_parentheses] = STATE(3553), - [sym_call_with_parentheses] = STATE(3553), - [sym_local_call_without_parentheses] = STATE(3699), - [sym_local_call_with_parentheses] = STATE(2509), - [sym_local_call_just_do_block] = STATE(3699), - [sym_remote_call_without_parentheses] = STATE(3699), - [sym_remote_call_with_parentheses] = STATE(2509), - [sym_remote_dot] = STATE(64), - [sym_anonymous_call] = STATE(2509), - [sym_anonymous_dot] = STATE(7374), - [sym_double_call] = STATE(3937), - [sym_access_call] = STATE(3962), - [sym_anonymous_function] = STATE(3962), - [sym_metavariable_atom] = STATE(3725), - [sym_deep_ellipsis] = STATE(3962), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(506), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(512), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(512), - [sym_char] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_nil] = ACTIONS(516), - [sym_atom_] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(524), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(39), - [anon_sym_GT] = ACTIONS(39), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_SLASH] = ACTIONS(39), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(540), - [anon_sym_not] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_LT_DASH] = ACTIONS(39), - [anon_sym_BSLASH_BSLASH] = ACTIONS(39), - [anon_sym_when] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_CARET_CARET_CARET] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_STAR] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_fn] = ACTIONS(546), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(550), - [sym_semgrep_metavariable] = ACTIONS(1743), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(554), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(558), - [sym_not_in] = ACTIONS(63), - [sym_quoted_atom_start] = ACTIONS(560), + [sym_expression] = STATE(2443), + [sym_block] = STATE(2444), + [sym_identifier] = STATE(80), + [sym_boolean] = STATE(2444), + [sym_nil] = STATE(2444), + [sym_atom] = STATE(2444), + [sym_quoted_atom] = STATE(2451), + [sym_quoted_i_double] = STATE(2461), + [sym_quoted_i_single] = STATE(2471), + [sym_quoted_i_heredoc_single] = STATE(2471), + [sym_quoted_i_heredoc_double] = STATE(2461), + [sym_string] = STATE(2444), + [sym_charlist] = STATE(2444), + [sym_sigil] = STATE(2444), + [sym_list] = STATE(2444), + [sym_tuple] = STATE(2444), + [sym_bitstring] = STATE(2444), + [sym_map] = STATE(2444), + [sym_nullary_operator] = STATE(2444), + [sym_unary_operator] = STATE(2444), + [sym_binary_operator] = STATE(2444), + [sym_operator_identifier] = STATE(7414), + [sym_dot] = STATE(2444), + [sym_call] = STATE(2444), + [sym_call_without_parentheses] = STATE(2473), + [sym_call_with_parentheses] = STATE(2473), + [sym_local_call_without_parentheses] = STATE(2392), + [sym_local_call_with_parentheses] = STATE(1975), + [sym_local_call_just_do_block] = STATE(2392), + [sym_remote_call_without_parentheses] = STATE(2392), + [sym_remote_call_with_parentheses] = STATE(1975), + [sym_remote_dot] = STATE(75), + [sym_anonymous_call] = STATE(1975), + [sym_anonymous_dot] = STATE(7315), + [sym_double_call] = STATE(2303), + [sym_access_call] = STATE(2444), + [sym_anonymous_function] = STATE(2444), + [sym_metavariable_atom] = STATE(2451), + [sym_deep_ellipsis] = STATE(2444), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(335), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [anon_sym_nil] = ACTIONS(345), + [sym_atom_] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(349), + [anon_sym_SQUOTE] = ACTIONS(351), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(353), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_PIPE] = ACTIONS(37), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(363), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(706), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(706), + [anon_sym_not] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_LT_DASH] = ACTIONS(37), + [anon_sym_BSLASH_BSLASH] = ACTIONS(37), + [anon_sym_when] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(37), + [anon_sym_EQ] = ACTIONS(37), + [anon_sym_PIPE_PIPE] = ACTIONS(37), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(37), + [anon_sym_or] = ACTIONS(37), + [anon_sym_AMP_AMP] = ACTIONS(37), + [anon_sym_AMP_AMP_AMP] = ACTIONS(37), + [anon_sym_and] = ACTIONS(37), + [anon_sym_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ] = ACTIONS(37), + [anon_sym_EQ_TILDE] = ACTIONS(37), + [anon_sym_EQ_EQ_EQ] = ACTIONS(37), + [anon_sym_BANG_EQ_EQ] = ACTIONS(37), + [anon_sym_LT_EQ] = ACTIONS(37), + [anon_sym_GT_EQ] = ACTIONS(37), + [anon_sym_PIPE_GT] = ACTIONS(37), + [anon_sym_LT_LT_LT] = ACTIONS(37), + [anon_sym_GT_GT_GT] = ACTIONS(37), + [anon_sym_LT_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT_GT] = ACTIONS(37), + [anon_sym_LT_TILDE] = ACTIONS(37), + [anon_sym_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_TILDE_GT] = ACTIONS(37), + [anon_sym_LT_PIPE_GT] = ACTIONS(37), + [anon_sym_in] = ACTIONS(37), + [anon_sym_CARET_CARET_CARET] = ACTIONS(37), + [anon_sym_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH] = ACTIONS(37), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(37), + [anon_sym_DASH_DASH_DASH] = ACTIONS(37), + [anon_sym_LT_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_STAR_STAR] = ACTIONS(37), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(375), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(379), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(341), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(385), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(710), + [sym_not_in] = ACTIONS(61), + [sym_quoted_atom_start] = ACTIONS(391), }, [1216] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_after] = ACTIONS(1817), - [anon_sym_catch] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_else] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_rescue] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_after] = ACTIONS(1837), + [anon_sym_catch] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_rescue] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, [1217] = { - [aux_sym_terminator_token1] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_after] = ACTIONS(1823), - [anon_sym_catch] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_end] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_rescue] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1218] = { - [aux_sym_terminator_token1] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1827), - [aux_sym_identifier_token1] = ACTIONS(1827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1827), - [sym_alias] = ACTIONS(1827), - [sym_integer] = ACTIONS(1827), - [sym_float] = ACTIONS(1827), - [sym_char] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1827), - [anon_sym_false] = ACTIONS(1827), - [anon_sym_nil] = ACTIONS(1827), - [sym_atom_] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1827), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_COMMA] = ACTIONS(1827), - [sym_keyword_] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_PERCENT] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1827), - [anon_sym_not] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1827), - [anon_sym_LT_DASH] = ACTIONS(1827), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1827), - [anon_sym_when] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1827), - [anon_sym_EQ_GT] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_or] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1827), - [anon_sym_and] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_EQ_TILDE] = ACTIONS(1827), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), - [anon_sym_LT_EQ] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(1827), - [anon_sym_PIPE_GT] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_GT_GT] = ACTIONS(1827), - [anon_sym_LT_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_PIPE_GT] = ACTIONS(1827), - [anon_sym_in] = ACTIONS(1827), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1827), - [anon_sym_SLASH_SLASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1827), - [anon_sym_LT_GT] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_STAR_STAR] = ACTIONS(1827), - [anon_sym_DASH_GT] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(1827), - [anon_sym_after] = ACTIONS(1827), - [anon_sym_catch] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_else] = ACTIONS(1827), - [anon_sym_end] = ACTIONS(1827), - [anon_sym_fn] = ACTIONS(1827), - [anon_sym_rescue] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_LBRACK2] = ACTIONS(1825), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1827), - [sym_semgrep_metavariable] = ACTIONS(1827), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1827), - [sym_newline_before_do] = ACTIONS(1825), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1825), - [sym_not_in] = ACTIONS(1825), - [sym_quoted_atom_start] = ACTIONS(1825), - }, - [1219] = { - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_after] = ACTIONS(1831), - [anon_sym_catch] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_else] = ACTIONS(1831), - [anon_sym_end] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_rescue] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1220] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_after] = ACTIONS(1817), - [anon_sym_catch] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_else] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_rescue] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1221] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_after] = ACTIONS(1817), - [anon_sym_catch] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_else] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_rescue] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1222] = { - [aux_sym_terminator_token1] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1835), - [aux_sym_identifier_token1] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1835), - [sym_alias] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_char] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1835), - [anon_sym_false] = ACTIONS(1835), - [anon_sym_nil] = ACTIONS(1835), - [sym_atom_] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1835), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [sym_keyword_] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(1835), - [anon_sym_PERCENT] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1835), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_LT_DASH] = ACTIONS(1835), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1835), - [anon_sym_when] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1835), - [anon_sym_EQ_GT] = ACTIONS(1835), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_or] = ACTIONS(1835), - [anon_sym_AMP_AMP] = ACTIONS(1835), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1835), - [anon_sym_and] = ACTIONS(1835), - [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_EQ_TILDE] = ACTIONS(1835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1835), - [anon_sym_LT_EQ] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(1835), - [anon_sym_PIPE_GT] = ACTIONS(1835), - [anon_sym_LT_LT_LT] = ACTIONS(1835), - [anon_sym_GT_GT_GT] = ACTIONS(1835), - [anon_sym_LT_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_PIPE_GT] = ACTIONS(1835), - [anon_sym_in] = ACTIONS(1835), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1835), - [anon_sym_SLASH_SLASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1835), - [anon_sym_LT_GT] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_STAR_STAR] = ACTIONS(1835), - [anon_sym_DASH_GT] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(1835), - [anon_sym_after] = ACTIONS(1835), - [anon_sym_catch] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_end] = ACTIONS(1835), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_rescue] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_LBRACK2] = ACTIONS(1833), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1835), - [sym_semgrep_metavariable] = ACTIONS(1835), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1835), - [sym_newline_before_do] = ACTIONS(1833), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1833), - [sym_not_in] = ACTIONS(1833), - [sym_quoted_atom_start] = ACTIONS(1833), - }, - [1223] = { - [aux_sym_terminator_token1] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1839), - [aux_sym_identifier_token1] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1839), - [sym_alias] = ACTIONS(1839), - [sym_integer] = ACTIONS(1839), - [sym_float] = ACTIONS(1839), - [sym_char] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [anon_sym_nil] = ACTIONS(1839), - [sym_atom_] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1839), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_SLASH] = ACTIONS(1839), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [sym_keyword_] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1839), - [anon_sym_PERCENT] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1839), - [anon_sym_not] = ACTIONS(1839), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_LT_DASH] = ACTIONS(1839), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1839), - [anon_sym_when] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_or] = ACTIONS(1839), - [anon_sym_AMP_AMP] = ACTIONS(1839), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1839), - [anon_sym_and] = ACTIONS(1839), - [anon_sym_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1839), - [anon_sym_EQ_TILDE] = ACTIONS(1839), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), - [anon_sym_LT_EQ] = ACTIONS(1839), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_PIPE_GT] = ACTIONS(1839), - [anon_sym_LT_LT_LT] = ACTIONS(1839), - [anon_sym_GT_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_PIPE_GT] = ACTIONS(1839), - [anon_sym_in] = ACTIONS(1839), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1839), - [anon_sym_SLASH_SLASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1839), - [anon_sym_LT_GT] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_STAR_STAR] = ACTIONS(1839), - [anon_sym_DASH_GT] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1839), - [anon_sym_after] = ACTIONS(1839), - [anon_sym_catch] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_else] = ACTIONS(1839), - [anon_sym_end] = ACTIONS(1839), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_rescue] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_LBRACK2] = ACTIONS(1837), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1839), - [sym_semgrep_metavariable] = ACTIONS(1839), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1839), - [sym_newline_before_do] = ACTIONS(1837), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1837), - [sym_not_in] = ACTIONS(1837), - [sym_quoted_atom_start] = ACTIONS(1837), - }, - [1224] = { [aux_sym_terminator_token1] = ACTIONS(1841), [anon_sym_SEMI] = ACTIONS(1843), [anon_sym_LPAREN] = ACTIONS(1843), @@ -178364,6 +178798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1843), [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), [sym_newline_before_do] = ACTIONS(1841), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -178372,7 +178807,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1841), [sym_quoted_atom_start] = ACTIONS(1841), }, - [1225] = { + [1218] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_after] = ACTIONS(1837), + [anon_sym_catch] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_rescue] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1219] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_after] = ACTIONS(1837), + [anon_sym_catch] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_rescue] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1220] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_after] = ACTIONS(1837), + [anon_sym_catch] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_rescue] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1221] = { [aux_sym_terminator_token1] = ACTIONS(1845), [anon_sym_SEMI] = ACTIONS(1847), [anon_sym_LPAREN] = ACTIONS(1847), @@ -178462,6 +179194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1847), [sym_semgrep_metavariable] = ACTIONS(1847), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1847), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1847), [sym_newline_before_do] = ACTIONS(1845), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -178470,7 +179203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1845), [sym_quoted_atom_start] = ACTIONS(1845), }, - [1226] = { + [1222] = { [aux_sym_terminator_token1] = ACTIONS(1849), [anon_sym_SEMI] = ACTIONS(1851), [anon_sym_LPAREN] = ACTIONS(1851), @@ -178560,6 +179293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1851), [sym_semgrep_metavariable] = ACTIONS(1851), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1851), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1851), [sym_newline_before_do] = ACTIONS(1849), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -178568,595 +179302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1849), [sym_quoted_atom_start] = ACTIONS(1849), }, - [1227] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_after] = ACTIONS(1817), - [anon_sym_catch] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_else] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_rescue] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1228] = { - [aux_sym_terminator_token1] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_after] = ACTIONS(1823), - [anon_sym_catch] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_end] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_rescue] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1229] = { - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_after] = ACTIONS(1831), - [anon_sym_catch] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_else] = ACTIONS(1831), - [anon_sym_end] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_rescue] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1230] = { - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_after] = ACTIONS(1831), - [anon_sym_catch] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_else] = ACTIONS(1831), - [anon_sym_end] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_rescue] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1231] = { - [aux_sym_terminator_token1] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_after] = ACTIONS(1823), - [anon_sym_catch] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_end] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_rescue] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1232] = { - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_after] = ACTIONS(1831), - [anon_sym_catch] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_else] = ACTIONS(1831), - [anon_sym_end] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_rescue] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1233] = { + [1223] = { [aux_sym_terminator_token1] = ACTIONS(1853), [anon_sym_SEMI] = ACTIONS(1855), [anon_sym_LPAREN] = ACTIONS(1855), @@ -179246,6 +179392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1855), [sym_semgrep_metavariable] = ACTIONS(1855), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1855), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), [sym_newline_before_do] = ACTIONS(1853), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -179254,2204 +179401,406 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1853), [sym_quoted_atom_start] = ACTIONS(1853), }, - [1234] = { - [aux_sym_terminator_token1] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1855), - [aux_sym_identifier_token1] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), - [sym_alias] = ACTIONS(1855), - [sym_integer] = ACTIONS(1855), - [sym_float] = ACTIONS(1855), - [sym_char] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_nil] = ACTIONS(1855), - [sym_atom_] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [sym_keyword_] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), - [anon_sym_not] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_LT_DASH] = ACTIONS(1855), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), - [anon_sym_when] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_or] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), - [anon_sym_and] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_EQ_TILDE] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_PIPE_GT] = ACTIONS(1855), - [anon_sym_LT_LT_LT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_PIPE_GT] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), - [anon_sym_SLASH_SLASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), - [anon_sym_LT_GT] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_after] = ACTIONS(1855), - [anon_sym_catch] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_end] = ACTIONS(1855), - [anon_sym_fn] = ACTIONS(1855), - [anon_sym_rescue] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1855), - [sym_semgrep_metavariable] = ACTIONS(1855), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1853), - [sym_not_in] = ACTIONS(1853), - [sym_quoted_atom_start] = ACTIONS(1853), - }, - [1235] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_after] = ACTIONS(1817), - [anon_sym_catch] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_else] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_rescue] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1236] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1857), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_after] = ACTIONS(1817), - [anon_sym_catch] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_else] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_rescue] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1237] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_after] = ACTIONS(1817), - [anon_sym_catch] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_else] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_rescue] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1238] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_RBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1239] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_RPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_RBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1240] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_RBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1241] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1242] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_RPAREN] = ACTIONS(1855), - [aux_sym_identifier_token1] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), - [sym_alias] = ACTIONS(1855), - [sym_integer] = ACTIONS(1855), - [sym_float] = ACTIONS(1855), - [sym_char] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_nil] = ACTIONS(1855), - [sym_atom_] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_RBRACK] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [sym_keyword_] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), - [anon_sym_not] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_LT_DASH] = ACTIONS(1855), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), - [anon_sym_when] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_or] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), - [anon_sym_and] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_EQ_TILDE] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_PIPE_GT] = ACTIONS(1855), - [anon_sym_LT_LT_LT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_PIPE_GT] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), - [anon_sym_SLASH_SLASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), - [anon_sym_LT_GT] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_fn] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1855), - [sym_semgrep_metavariable] = ACTIONS(1855), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), - [sym_newline_before_do] = ACTIONS(1853), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1853), - [sym_not_in] = ACTIONS(1853), - [sym_quoted_atom_start] = ACTIONS(1853), - }, - [1243] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_RPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_RBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1244] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1245] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_RBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1246] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_RPAREN] = ACTIONS(1835), - [aux_sym_identifier_token1] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1835), - [sym_alias] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_char] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1835), - [anon_sym_false] = ACTIONS(1835), - [anon_sym_nil] = ACTIONS(1835), - [sym_atom_] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1835), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_RBRACK] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [sym_keyword_] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(1835), - [anon_sym_PERCENT] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1835), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_LT_DASH] = ACTIONS(1835), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1835), - [anon_sym_when] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1835), - [anon_sym_EQ_GT] = ACTIONS(1835), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_or] = ACTIONS(1835), - [anon_sym_AMP_AMP] = ACTIONS(1835), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1835), - [anon_sym_and] = ACTIONS(1835), - [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_EQ_TILDE] = ACTIONS(1835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1835), - [anon_sym_LT_EQ] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(1835), - [anon_sym_PIPE_GT] = ACTIONS(1835), - [anon_sym_LT_LT_LT] = ACTIONS(1835), - [anon_sym_GT_GT_GT] = ACTIONS(1835), - [anon_sym_LT_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_PIPE_GT] = ACTIONS(1835), - [anon_sym_in] = ACTIONS(1835), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1835), - [anon_sym_SLASH_SLASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1835), - [anon_sym_LT_GT] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_STAR_STAR] = ACTIONS(1835), - [anon_sym_DASH_GT] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_LBRACK2] = ACTIONS(1833), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1835), - [sym_semgrep_metavariable] = ACTIONS(1835), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1835), - [sym_newline_before_do] = ACTIONS(1833), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1833), - [sym_not_in] = ACTIONS(1833), - [sym_quoted_atom_start] = ACTIONS(1833), - }, - [1247] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_RBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1248] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_RBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1249] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_RPAREN] = ACTIONS(1851), - [aux_sym_identifier_token1] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1851), - [sym_alias] = ACTIONS(1851), - [sym_integer] = ACTIONS(1851), - [sym_float] = ACTIONS(1851), - [sym_char] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1851), - [anon_sym_false] = ACTIONS(1851), - [anon_sym_nil] = ACTIONS(1851), - [sym_atom_] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [anon_sym_SQUOTE] = ACTIONS(1851), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1851), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_RBRACK] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [sym_keyword_] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1851), - [anon_sym_not] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(1851), - [anon_sym_LT_DASH] = ACTIONS(1851), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1851), - [anon_sym_when] = ACTIONS(1851), - [anon_sym_COLON_COLON] = ACTIONS(1851), - [anon_sym_EQ_GT] = ACTIONS(1851), - [anon_sym_EQ] = ACTIONS(1851), - [anon_sym_PIPE_PIPE] = ACTIONS(1851), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1851), - [anon_sym_or] = ACTIONS(1851), - [anon_sym_AMP_AMP] = ACTIONS(1851), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1851), - [anon_sym_and] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1851), - [anon_sym_EQ_TILDE] = ACTIONS(1851), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_PIPE_GT] = ACTIONS(1851), - [anon_sym_LT_LT_LT] = ACTIONS(1851), - [anon_sym_GT_GT_GT] = ACTIONS(1851), - [anon_sym_LT_LT_TILDE] = ACTIONS(1851), - [anon_sym_TILDE_GT_GT] = ACTIONS(1851), - [anon_sym_LT_TILDE] = ACTIONS(1851), - [anon_sym_TILDE_GT] = ACTIONS(1851), - [anon_sym_LT_TILDE_GT] = ACTIONS(1851), - [anon_sym_LT_PIPE_GT] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1851), - [anon_sym_SLASH_SLASH] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1851), - [anon_sym_LT_GT] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_STAR_STAR] = ACTIONS(1851), - [anon_sym_DASH_GT] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(1849), - [anon_sym_LBRACK2] = ACTIONS(1849), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1851), - [sym_semgrep_metavariable] = ACTIONS(1851), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1851), - [sym_newline_before_do] = ACTIONS(1849), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1849), - [sym_not_in] = ACTIONS(1849), - [sym_quoted_atom_start] = ACTIONS(1849), - }, - [1250] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_RPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_RBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1251] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_RPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_RBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1252] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_RPAREN] = ACTIONS(1827), - [aux_sym_identifier_token1] = ACTIONS(1827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1827), - [sym_alias] = ACTIONS(1827), - [sym_integer] = ACTIONS(1827), - [sym_float] = ACTIONS(1827), - [sym_char] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1827), - [anon_sym_false] = ACTIONS(1827), - [anon_sym_nil] = ACTIONS(1827), - [sym_atom_] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1827), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_RBRACE] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_RBRACK] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_COMMA] = ACTIONS(1827), - [sym_keyword_] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_PERCENT] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1827), - [anon_sym_not] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1827), - [anon_sym_LT_DASH] = ACTIONS(1827), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1827), - [anon_sym_when] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1827), - [anon_sym_EQ_GT] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_or] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1827), - [anon_sym_and] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_EQ_TILDE] = ACTIONS(1827), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), - [anon_sym_LT_EQ] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(1827), - [anon_sym_PIPE_GT] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_GT_GT] = ACTIONS(1827), - [anon_sym_LT_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_PIPE_GT] = ACTIONS(1827), - [anon_sym_in] = ACTIONS(1827), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1827), - [anon_sym_SLASH_SLASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1827), - [anon_sym_LT_GT] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_STAR_STAR] = ACTIONS(1827), - [anon_sym_DASH_GT] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_fn] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_LBRACK2] = ACTIONS(1825), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1827), - [sym_semgrep_metavariable] = ACTIONS(1827), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1827), - [sym_newline_before_do] = ACTIONS(1825), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1825), - [sym_not_in] = ACTIONS(1825), - [sym_quoted_atom_start] = ACTIONS(1825), - }, - [1253] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [1224] = { + [aux_sym_terminator_token1] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [aux_sym_identifier_token1] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1859), + [sym_alias] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1859), + [sym_char] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [anon_sym_nil] = ACTIONS(1859), + [sym_atom_] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1859), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [sym_keyword_] = ACTIONS(1859), + [anon_sym_LT_LT] = ACTIONS(1859), + [anon_sym_PERCENT] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1859), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_LT_DASH] = ACTIONS(1859), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1859), + [anon_sym_when] = ACTIONS(1859), + [anon_sym_COLON_COLON] = ACTIONS(1859), + [anon_sym_EQ_GT] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_or] = ACTIONS(1859), + [anon_sym_AMP_AMP] = ACTIONS(1859), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1859), + [anon_sym_and] = ACTIONS(1859), + [anon_sym_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ] = ACTIONS(1859), + [anon_sym_EQ_TILDE] = ACTIONS(1859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1859), + [anon_sym_GT_EQ] = ACTIONS(1859), + [anon_sym_PIPE_GT] = ACTIONS(1859), + [anon_sym_LT_LT_LT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1859), + [anon_sym_LT_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_PIPE_GT] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1859), + [anon_sym_SLASH_SLASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1859), + [anon_sym_LT_GT] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_STAR_STAR] = ACTIONS(1859), + [anon_sym_DASH_GT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_after] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_end] = ACTIONS(1859), + [anon_sym_fn] = ACTIONS(1859), + [anon_sym_rescue] = ACTIONS(1859), + [anon_sym_LPAREN2] = ACTIONS(1857), + [anon_sym_LBRACK2] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1859), + [sym_semgrep_metavariable] = ACTIONS(1859), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1859), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1859), + [sym_newline_before_do] = ACTIONS(1857), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1857), + [sym_not_in] = ACTIONS(1857), + [sym_quoted_atom_start] = ACTIONS(1857), }, - [1254] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_RBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), + [1225] = { + [aux_sym_terminator_token1] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [aux_sym_identifier_token1] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [sym_alias] = ACTIONS(1863), + [sym_integer] = ACTIONS(1863), + [sym_float] = ACTIONS(1863), + [sym_char] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [anon_sym_nil] = ACTIONS(1863), + [sym_atom_] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1863), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_GT] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [sym_keyword_] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(1863), + [anon_sym_PERCENT] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1863), + [anon_sym_not] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1863), + [anon_sym_LT_DASH] = ACTIONS(1863), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1863), + [anon_sym_when] = ACTIONS(1863), + [anon_sym_COLON_COLON] = ACTIONS(1863), + [anon_sym_EQ_GT] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_or] = ACTIONS(1863), + [anon_sym_AMP_AMP] = ACTIONS(1863), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1863), + [anon_sym_and] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ] = ACTIONS(1863), + [anon_sym_EQ_TILDE] = ACTIONS(1863), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1863), + [anon_sym_GT_EQ] = ACTIONS(1863), + [anon_sym_PIPE_GT] = ACTIONS(1863), + [anon_sym_LT_LT_LT] = ACTIONS(1863), + [anon_sym_GT_GT_GT] = ACTIONS(1863), + [anon_sym_LT_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_PIPE_GT] = ACTIONS(1863), + [anon_sym_in] = ACTIONS(1863), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1863), + [anon_sym_SLASH_SLASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1863), + [anon_sym_LT_GT] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_STAR_STAR] = ACTIONS(1863), + [anon_sym_DASH_GT] = ACTIONS(1863), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_after] = ACTIONS(1863), + [anon_sym_catch] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_end] = ACTIONS(1863), + [anon_sym_fn] = ACTIONS(1863), + [anon_sym_rescue] = ACTIONS(1863), + [anon_sym_LPAREN2] = ACTIONS(1861), + [anon_sym_LBRACK2] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1863), + [sym_semgrep_metavariable] = ACTIONS(1863), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1863), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1863), + [sym_newline_before_do] = ACTIONS(1861), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1861), + [sym_not_in] = ACTIONS(1861), + [sym_quoted_atom_start] = ACTIONS(1861), }, - [1255] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_RBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [1226] = { + [aux_sym_terminator_token1] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [aux_sym_identifier_token1] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1867), + [sym_alias] = ACTIONS(1867), + [sym_integer] = ACTIONS(1867), + [sym_float] = ACTIONS(1867), + [sym_char] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [anon_sym_nil] = ACTIONS(1867), + [sym_atom_] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1867), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_GT] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [sym_keyword_] = ACTIONS(1867), + [anon_sym_LT_LT] = ACTIONS(1867), + [anon_sym_PERCENT] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(1867), + [anon_sym_AT] = ACTIONS(1867), + [anon_sym_LT_DASH] = ACTIONS(1867), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1867), + [anon_sym_when] = ACTIONS(1867), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_EQ_GT] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_or] = ACTIONS(1867), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1867), + [anon_sym_and] = ACTIONS(1867), + [anon_sym_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ] = ACTIONS(1867), + [anon_sym_EQ_TILDE] = ACTIONS(1867), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1867), + [anon_sym_LT_EQ] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1867), + [anon_sym_PIPE_GT] = ACTIONS(1867), + [anon_sym_LT_LT_LT] = ACTIONS(1867), + [anon_sym_GT_GT_GT] = ACTIONS(1867), + [anon_sym_LT_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_PIPE_GT] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1867), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1867), + [anon_sym_SLASH_SLASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1867), + [anon_sym_LT_GT] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_STAR_STAR] = ACTIONS(1867), + [anon_sym_DASH_GT] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(1867), + [anon_sym_after] = ACTIONS(1867), + [anon_sym_catch] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_end] = ACTIONS(1867), + [anon_sym_fn] = ACTIONS(1867), + [anon_sym_rescue] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(1865), + [anon_sym_LBRACK2] = ACTIONS(1865), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1867), + [sym_semgrep_metavariable] = ACTIONS(1867), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1867), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1867), + [sym_newline_before_do] = ACTIONS(1865), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1865), + [sym_not_in] = ACTIONS(1865), + [sym_quoted_atom_start] = ACTIONS(1865), }, - [1256] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_RPAREN] = ACTIONS(1839), - [aux_sym_identifier_token1] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1839), - [sym_alias] = ACTIONS(1839), - [sym_integer] = ACTIONS(1839), - [sym_float] = ACTIONS(1839), - [sym_char] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [anon_sym_nil] = ACTIONS(1839), - [sym_atom_] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1839), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_RBRACK] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_SLASH] = ACTIONS(1839), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [sym_keyword_] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1839), - [anon_sym_PERCENT] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1839), - [anon_sym_not] = ACTIONS(1839), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_LT_DASH] = ACTIONS(1839), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1839), - [anon_sym_when] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_or] = ACTIONS(1839), - [anon_sym_AMP_AMP] = ACTIONS(1839), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1839), - [anon_sym_and] = ACTIONS(1839), - [anon_sym_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1839), - [anon_sym_EQ_TILDE] = ACTIONS(1839), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), - [anon_sym_LT_EQ] = ACTIONS(1839), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_PIPE_GT] = ACTIONS(1839), - [anon_sym_LT_LT_LT] = ACTIONS(1839), - [anon_sym_GT_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_PIPE_GT] = ACTIONS(1839), - [anon_sym_in] = ACTIONS(1839), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1839), - [anon_sym_SLASH_SLASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1839), - [anon_sym_LT_GT] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_STAR_STAR] = ACTIONS(1839), - [anon_sym_DASH_GT] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_LBRACK2] = ACTIONS(1837), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1839), - [sym_semgrep_metavariable] = ACTIONS(1839), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1839), - [sym_newline_before_do] = ACTIONS(1837), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1837), - [sym_not_in] = ACTIONS(1837), - [sym_quoted_atom_start] = ACTIONS(1837), + [1227] = { + [aux_sym_terminator_token1] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_after] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_end] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_rescue] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), }, - [1257] = { - [aux_sym_terminator_token1] = ACTIONS(3), + [1228] = { + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_RPAREN] = ACTIONS(1843), [aux_sym_identifier_token1] = ACTIONS(1843), [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), [sym_alias] = ACTIONS(1843), @@ -181467,9 +179816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_RBRACK] = ACTIONS(1843), [anon_sym_LT] = ACTIONS(1843), [anon_sym_GT] = ACTIONS(1843), [anon_sym_PIPE] = ACTIONS(1843), @@ -181528,13 +179875,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(1843), [anon_sym_DASH_GT] = ACTIONS(1843), [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_after] = ACTIONS(1843), + [anon_sym_catch] = ACTIONS(1843), [anon_sym_do] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_end] = ACTIONS(1843), [anon_sym_fn] = ACTIONS(1843), + [anon_sym_rescue] = ACTIONS(1843), [anon_sym_LPAREN2] = ACTIONS(1841), [anon_sym_LBRACK2] = ACTIONS(1841), [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1843), [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), [sym_newline_before_do] = ACTIONS(1841), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -181543,197 +179896,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1841), [sym_quoted_atom_start] = ACTIONS(1841), }, - [1258] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_RPAREN] = ACTIONS(1847), - [aux_sym_identifier_token1] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1847), - [sym_alias] = ACTIONS(1847), - [sym_integer] = ACTIONS(1847), - [sym_float] = ACTIONS(1847), - [sym_char] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_nil] = ACTIONS(1847), - [sym_atom_] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [anon_sym_SQUOTE] = ACTIONS(1847), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1847), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_RBRACK] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1847), - [anon_sym_GT] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1847), - [sym_keyword_] = ACTIONS(1847), - [anon_sym_LT_LT] = ACTIONS(1847), - [anon_sym_PERCENT] = ACTIONS(1847), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1847), - [anon_sym_not] = ACTIONS(1847), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_LT_DASH] = ACTIONS(1847), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1847), - [anon_sym_when] = ACTIONS(1847), - [anon_sym_COLON_COLON] = ACTIONS(1847), - [anon_sym_EQ_GT] = ACTIONS(1847), - [anon_sym_EQ] = ACTIONS(1847), - [anon_sym_PIPE_PIPE] = ACTIONS(1847), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1847), - [anon_sym_or] = ACTIONS(1847), - [anon_sym_AMP_AMP] = ACTIONS(1847), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1847), - [anon_sym_and] = ACTIONS(1847), - [anon_sym_EQ_EQ] = ACTIONS(1847), - [anon_sym_BANG_EQ] = ACTIONS(1847), - [anon_sym_EQ_TILDE] = ACTIONS(1847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1847), - [anon_sym_LT_EQ] = ACTIONS(1847), - [anon_sym_GT_EQ] = ACTIONS(1847), - [anon_sym_PIPE_GT] = ACTIONS(1847), - [anon_sym_LT_LT_LT] = ACTIONS(1847), - [anon_sym_GT_GT_GT] = ACTIONS(1847), - [anon_sym_LT_LT_TILDE] = ACTIONS(1847), - [anon_sym_TILDE_GT_GT] = ACTIONS(1847), - [anon_sym_LT_TILDE] = ACTIONS(1847), - [anon_sym_TILDE_GT] = ACTIONS(1847), - [anon_sym_LT_TILDE_GT] = ACTIONS(1847), - [anon_sym_LT_PIPE_GT] = ACTIONS(1847), - [anon_sym_in] = ACTIONS(1847), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1847), - [anon_sym_SLASH_SLASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1847), - [anon_sym_LT_GT] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_STAR_STAR] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_fn] = ACTIONS(1847), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_LBRACK2] = ACTIONS(1845), + [1229] = { + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_after] = ACTIONS(1843), + [anon_sym_catch] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_end] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_rescue] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1847), - [sym_semgrep_metavariable] = ACTIONS(1847), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1847), - [sym_newline_before_do] = ACTIONS(1845), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1845), - [sym_not_in] = ACTIONS(1845), - [sym_quoted_atom_start] = ACTIONS(1845), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), }, - [1259] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_RBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [1230] = { + [aux_sym_terminator_token1] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_after] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_end] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_rescue] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), }, - [1260] = { - [ts_builtin_sym_end] = ACTIONS(1841), + [1231] = { [aux_sym_terminator_token1] = ACTIONS(1841), [anon_sym_SEMI] = ACTIONS(1843), [anon_sym_LPAREN] = ACTIONS(1843), @@ -181811,13 +180172,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(1843), [anon_sym_DASH_GT] = ACTIONS(1843), [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_after] = ACTIONS(1843), + [anon_sym_catch] = ACTIONS(1843), [anon_sym_do] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_end] = ACTIONS(1843), [anon_sym_fn] = ACTIONS(1843), + [anon_sym_rescue] = ACTIONS(1843), [anon_sym_LPAREN2] = ACTIONS(1841), [anon_sym_LBRACK2] = ACTIONS(1841), [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1843), [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), [sym_newline_before_do] = ACTIONS(1841), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -181826,855 +180193,690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1841), [sym_quoted_atom_start] = ACTIONS(1841), }, - [1261] = { - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_RPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), + [1232] = { + [aux_sym_terminator_token1] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_after] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_end] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_rescue] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), }, - [1262] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_RPAREN] = ACTIONS(1855), - [aux_sym_identifier_token1] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), - [sym_alias] = ACTIONS(1855), - [sym_integer] = ACTIONS(1855), - [sym_float] = ACTIONS(1855), - [sym_char] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_nil] = ACTIONS(1855), - [sym_atom_] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_RBRACK] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [sym_keyword_] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), - [anon_sym_not] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_LT_DASH] = ACTIONS(1855), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), - [anon_sym_when] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_or] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), - [anon_sym_and] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_EQ_TILDE] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_PIPE_GT] = ACTIONS(1855), - [anon_sym_LT_LT_LT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_PIPE_GT] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), - [anon_sym_SLASH_SLASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), - [anon_sym_LT_GT] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_fn] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1855), - [sym_semgrep_metavariable] = ACTIONS(1855), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1853), - [sym_not_in] = ACTIONS(1853), - [sym_quoted_atom_start] = ACTIONS(1853), + [1233] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1873), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_after] = ACTIONS(1837), + [anon_sym_catch] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_rescue] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, - [1263] = { + [1234] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_after] = ACTIONS(1837), + [anon_sym_catch] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_rescue] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1235] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_after] = ACTIONS(1837), + [anon_sym_catch] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_rescue] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1236] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_RBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, - [1264] = { - [ts_builtin_sym_end] = ACTIONS(1849), - [aux_sym_terminator_token1] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [aux_sym_identifier_token1] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1851), - [sym_alias] = ACTIONS(1851), - [sym_integer] = ACTIONS(1851), - [sym_float] = ACTIONS(1851), - [sym_char] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1851), - [anon_sym_false] = ACTIONS(1851), - [anon_sym_nil] = ACTIONS(1851), - [sym_atom_] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [anon_sym_SQUOTE] = ACTIONS(1851), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1851), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [anon_sym_PIPE] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [sym_keyword_] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1851), - [anon_sym_not] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(1851), - [anon_sym_LT_DASH] = ACTIONS(1851), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1851), - [anon_sym_when] = ACTIONS(1851), - [anon_sym_COLON_COLON] = ACTIONS(1851), - [anon_sym_EQ_GT] = ACTIONS(1851), - [anon_sym_EQ] = ACTIONS(1851), - [anon_sym_PIPE_PIPE] = ACTIONS(1851), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1851), - [anon_sym_or] = ACTIONS(1851), - [anon_sym_AMP_AMP] = ACTIONS(1851), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1851), - [anon_sym_and] = ACTIONS(1851), - [anon_sym_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1851), - [anon_sym_EQ_TILDE] = ACTIONS(1851), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), - [anon_sym_LT_EQ] = ACTIONS(1851), - [anon_sym_GT_EQ] = ACTIONS(1851), - [anon_sym_PIPE_GT] = ACTIONS(1851), - [anon_sym_LT_LT_LT] = ACTIONS(1851), - [anon_sym_GT_GT_GT] = ACTIONS(1851), - [anon_sym_LT_LT_TILDE] = ACTIONS(1851), - [anon_sym_TILDE_GT_GT] = ACTIONS(1851), - [anon_sym_LT_TILDE] = ACTIONS(1851), - [anon_sym_TILDE_GT] = ACTIONS(1851), - [anon_sym_LT_TILDE_GT] = ACTIONS(1851), - [anon_sym_LT_PIPE_GT] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1851), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1851), - [anon_sym_SLASH_SLASH] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1851), - [anon_sym_LT_GT] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_STAR_STAR] = ACTIONS(1851), - [anon_sym_DASH_GT] = ACTIONS(1851), - [anon_sym_DOT] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(1851), - [anon_sym_LPAREN2] = ACTIONS(1849), - [anon_sym_LBRACK2] = ACTIONS(1849), + [1237] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_RPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_RBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1851), - [sym_semgrep_metavariable] = ACTIONS(1851), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1851), - [sym_newline_before_do] = ACTIONS(1849), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1849), - [sym_not_in] = ACTIONS(1849), - [sym_quoted_atom_start] = ACTIONS(1849), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), }, - [1265] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [1238] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, - [1266] = { + [1239] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1267] = { - [aux_sym_terminator_token1] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_RPAREN] = ACTIONS(1827), - [aux_sym_identifier_token1] = ACTIONS(1827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1827), - [sym_alias] = ACTIONS(1827), - [sym_integer] = ACTIONS(1827), - [sym_float] = ACTIONS(1827), - [sym_char] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1827), - [anon_sym_false] = ACTIONS(1827), - [anon_sym_nil] = ACTIONS(1827), - [sym_atom_] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1827), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_COMMA] = ACTIONS(1827), - [sym_keyword_] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_PERCENT] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1827), - [anon_sym_not] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1827), - [anon_sym_LT_DASH] = ACTIONS(1827), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1827), - [anon_sym_when] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1827), - [anon_sym_EQ_GT] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_or] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1827), - [anon_sym_and] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_EQ_TILDE] = ACTIONS(1827), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), - [anon_sym_LT_EQ] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(1827), - [anon_sym_PIPE_GT] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_GT_GT] = ACTIONS(1827), - [anon_sym_LT_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_PIPE_GT] = ACTIONS(1827), - [anon_sym_in] = ACTIONS(1827), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1827), - [anon_sym_SLASH_SLASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1827), - [anon_sym_LT_GT] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_STAR_STAR] = ACTIONS(1827), - [anon_sym_DASH_GT] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_fn] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_LBRACK2] = ACTIONS(1825), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1827), - [sym_semgrep_metavariable] = ACTIONS(1827), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1827), - [sym_newline_before_do] = ACTIONS(1825), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1825), - [sym_not_in] = ACTIONS(1825), - [sym_quoted_atom_start] = ACTIONS(1825), - }, - [1268] = { - [aux_sym_terminator_token1] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_RPAREN] = ACTIONS(1835), - [aux_sym_identifier_token1] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1835), - [sym_alias] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_char] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1835), - [anon_sym_false] = ACTIONS(1835), - [anon_sym_nil] = ACTIONS(1835), - [sym_atom_] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1835), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [sym_keyword_] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(1835), - [anon_sym_PERCENT] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1835), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_LT_DASH] = ACTIONS(1835), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1835), - [anon_sym_when] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1835), - [anon_sym_EQ_GT] = ACTIONS(1835), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_or] = ACTIONS(1835), - [anon_sym_AMP_AMP] = ACTIONS(1835), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1835), - [anon_sym_and] = ACTIONS(1835), - [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_EQ_TILDE] = ACTIONS(1835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1835), - [anon_sym_LT_EQ] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(1835), - [anon_sym_PIPE_GT] = ACTIONS(1835), - [anon_sym_LT_LT_LT] = ACTIONS(1835), - [anon_sym_GT_GT_GT] = ACTIONS(1835), - [anon_sym_LT_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_PIPE_GT] = ACTIONS(1835), - [anon_sym_in] = ACTIONS(1835), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1835), - [anon_sym_SLASH_SLASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1835), - [anon_sym_LT_GT] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_STAR_STAR] = ACTIONS(1835), - [anon_sym_DASH_GT] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_LBRACK2] = ACTIONS(1833), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1835), - [sym_semgrep_metavariable] = ACTIONS(1835), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1835), - [sym_newline_before_do] = ACTIONS(1833), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1833), - [sym_not_in] = ACTIONS(1833), - [sym_quoted_atom_start] = ACTIONS(1833), - }, - [1269] = { - [aux_sym_terminator_token1] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_RPAREN] = ACTIONS(1839), - [aux_sym_identifier_token1] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1839), - [sym_alias] = ACTIONS(1839), - [sym_integer] = ACTIONS(1839), - [sym_float] = ACTIONS(1839), - [sym_char] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [anon_sym_nil] = ACTIONS(1839), - [sym_atom_] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1839), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_SLASH] = ACTIONS(1839), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [sym_keyword_] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1839), - [anon_sym_PERCENT] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1839), - [anon_sym_not] = ACTIONS(1839), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_LT_DASH] = ACTIONS(1839), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1839), - [anon_sym_when] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_or] = ACTIONS(1839), - [anon_sym_AMP_AMP] = ACTIONS(1839), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1839), - [anon_sym_and] = ACTIONS(1839), - [anon_sym_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1839), - [anon_sym_EQ_TILDE] = ACTIONS(1839), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), - [anon_sym_LT_EQ] = ACTIONS(1839), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_PIPE_GT] = ACTIONS(1839), - [anon_sym_LT_LT_LT] = ACTIONS(1839), - [anon_sym_GT_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_PIPE_GT] = ACTIONS(1839), - [anon_sym_in] = ACTIONS(1839), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1839), - [anon_sym_SLASH_SLASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1839), - [anon_sym_LT_GT] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_STAR_STAR] = ACTIONS(1839), - [anon_sym_DASH_GT] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_LBRACK2] = ACTIONS(1837), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1839), - [sym_semgrep_metavariable] = ACTIONS(1839), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1839), - [sym_newline_before_do] = ACTIONS(1837), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1837), - [sym_not_in] = ACTIONS(1837), - [sym_quoted_atom_start] = ACTIONS(1837), - }, - [1270] = { - [aux_sym_terminator_token1] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1843), [anon_sym_LPAREN] = ACTIONS(1843), [anon_sym_RPAREN] = ACTIONS(1843), [aux_sym_identifier_token1] = ACTIONS(1843), @@ -182692,7 +180894,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_RBRACK] = ACTIONS(1843), [anon_sym_LT] = ACTIONS(1843), [anon_sym_GT] = ACTIONS(1843), [anon_sym_PIPE] = ACTIONS(1843), @@ -182758,6 +180962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1843), [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), [sym_newline_before_do] = ACTIONS(1841), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -182766,9 +180971,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1841), [sym_quoted_atom_start] = ACTIONS(1841), }, - [1271] = { - [aux_sym_terminator_token1] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1847), + [1240] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1241] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1242] = { + [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1847), [anon_sym_RPAREN] = ACTIONS(1847), [aux_sym_identifier_token1] = ACTIONS(1847), @@ -182786,7 +181182,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1847), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1847), [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_RBRACK] = ACTIONS(1847), [anon_sym_LT] = ACTIONS(1847), [anon_sym_GT] = ACTIONS(1847), [anon_sym_PIPE] = ACTIONS(1847), @@ -182852,6 +181250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1847), [sym_semgrep_metavariable] = ACTIONS(1847), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1847), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1847), [sym_newline_before_do] = ACTIONS(1845), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -182860,9 +181259,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1845), [sym_quoted_atom_start] = ACTIONS(1845), }, - [1272] = { - [aux_sym_terminator_token1] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1851), + [1243] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_RPAREN] = ACTIONS(1855), + [aux_sym_identifier_token1] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), + [sym_alias] = ACTIONS(1855), + [sym_integer] = ACTIONS(1855), + [sym_float] = ACTIONS(1855), + [sym_char] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [anon_sym_nil] = ACTIONS(1855), + [sym_atom_] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1855), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_RBRACK] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_GT] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_SLASH] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1855), + [anon_sym_COMMA] = ACTIONS(1855), + [sym_keyword_] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1855), + [anon_sym_PERCENT] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1855), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), + [anon_sym_not] = ACTIONS(1855), + [anon_sym_AT] = ACTIONS(1855), + [anon_sym_LT_DASH] = ACTIONS(1855), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), + [anon_sym_when] = ACTIONS(1855), + [anon_sym_COLON_COLON] = ACTIONS(1855), + [anon_sym_EQ_GT] = ACTIONS(1855), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_PIPE_PIPE] = ACTIONS(1855), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), + [anon_sym_or] = ACTIONS(1855), + [anon_sym_AMP_AMP] = ACTIONS(1855), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), + [anon_sym_and] = ACTIONS(1855), + [anon_sym_EQ_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ] = ACTIONS(1855), + [anon_sym_EQ_TILDE] = ACTIONS(1855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), + [anon_sym_LT_EQ] = ACTIONS(1855), + [anon_sym_GT_EQ] = ACTIONS(1855), + [anon_sym_PIPE_GT] = ACTIONS(1855), + [anon_sym_LT_LT_LT] = ACTIONS(1855), + [anon_sym_GT_GT_GT] = ACTIONS(1855), + [anon_sym_LT_LT_TILDE] = ACTIONS(1855), + [anon_sym_TILDE_GT_GT] = ACTIONS(1855), + [anon_sym_LT_TILDE] = ACTIONS(1855), + [anon_sym_TILDE_GT] = ACTIONS(1855), + [anon_sym_LT_TILDE_GT] = ACTIONS(1855), + [anon_sym_LT_PIPE_GT] = ACTIONS(1855), + [anon_sym_in] = ACTIONS(1855), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), + [anon_sym_SLASH_SLASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), + [anon_sym_LT_GT] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_STAR_STAR] = ACTIONS(1855), + [anon_sym_DASH_GT] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_fn] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1853), + [anon_sym_LBRACK2] = ACTIONS(1853), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1855), + [sym_semgrep_metavariable] = ACTIONS(1855), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1855), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), + [sym_newline_before_do] = ACTIONS(1853), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1853), + [sym_not_in] = ACTIONS(1853), + [sym_quoted_atom_start] = ACTIONS(1853), + }, + [1244] = { + [ts_builtin_sym_end] = ACTIONS(1835), + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1245] = { + [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1851), [anon_sym_RPAREN] = ACTIONS(1851), [aux_sym_identifier_token1] = ACTIONS(1851), @@ -182880,7 +181470,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1851), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1851), [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_RBRACK] = ACTIONS(1851), [anon_sym_LT] = ACTIONS(1851), [anon_sym_GT] = ACTIONS(1851), [anon_sym_PIPE] = ACTIONS(1851), @@ -182946,6 +181538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1851), [sym_semgrep_metavariable] = ACTIONS(1851), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1851), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1851), [sym_newline_before_do] = ACTIONS(1849), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -182954,386 +181547,490 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1849), [sym_quoted_atom_start] = ACTIONS(1849), }, - [1273] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [1246] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_RPAREN] = ACTIONS(1859), + [aux_sym_identifier_token1] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1859), + [sym_alias] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1859), + [sym_char] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [anon_sym_nil] = ACTIONS(1859), + [sym_atom_] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1859), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_RBRACK] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [sym_keyword_] = ACTIONS(1859), + [anon_sym_LT_LT] = ACTIONS(1859), + [anon_sym_PERCENT] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1859), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_LT_DASH] = ACTIONS(1859), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1859), + [anon_sym_when] = ACTIONS(1859), + [anon_sym_COLON_COLON] = ACTIONS(1859), + [anon_sym_EQ_GT] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_or] = ACTIONS(1859), + [anon_sym_AMP_AMP] = ACTIONS(1859), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1859), + [anon_sym_and] = ACTIONS(1859), + [anon_sym_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ] = ACTIONS(1859), + [anon_sym_EQ_TILDE] = ACTIONS(1859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1859), + [anon_sym_GT_EQ] = ACTIONS(1859), + [anon_sym_PIPE_GT] = ACTIONS(1859), + [anon_sym_LT_LT_LT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1859), + [anon_sym_LT_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_PIPE_GT] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1859), + [anon_sym_SLASH_SLASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1859), + [anon_sym_LT_GT] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_STAR_STAR] = ACTIONS(1859), + [anon_sym_DASH_GT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_fn] = ACTIONS(1859), + [anon_sym_LPAREN2] = ACTIONS(1857), + [anon_sym_LBRACK2] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1859), + [sym_semgrep_metavariable] = ACTIONS(1859), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1859), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1859), + [sym_newline_before_do] = ACTIONS(1857), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1857), + [sym_not_in] = ACTIONS(1857), + [sym_quoted_atom_start] = ACTIONS(1857), }, - [1274] = { - [aux_sym_terminator_token1] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1827), - [aux_sym_identifier_token1] = ACTIONS(1827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1827), - [sym_alias] = ACTIONS(1827), - [sym_integer] = ACTIONS(1827), - [sym_float] = ACTIONS(1827), - [sym_char] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1827), - [anon_sym_false] = ACTIONS(1827), - [anon_sym_nil] = ACTIONS(1827), - [sym_atom_] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1827), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_COMMA] = ACTIONS(1827), - [sym_keyword_] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_PERCENT] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1827), - [anon_sym_not] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1827), - [anon_sym_LT_DASH] = ACTIONS(1827), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1827), - [anon_sym_when] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1827), - [anon_sym_EQ_GT] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_or] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1827), - [anon_sym_and] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_EQ_TILDE] = ACTIONS(1827), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), - [anon_sym_LT_EQ] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(1827), - [anon_sym_PIPE_GT] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_GT_GT] = ACTIONS(1827), - [anon_sym_LT_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_PIPE_GT] = ACTIONS(1827), - [anon_sym_in] = ACTIONS(1827), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1827), - [anon_sym_SLASH_SLASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1827), - [anon_sym_LT_GT] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_STAR_STAR] = ACTIONS(1827), - [anon_sym_DASH_GT] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_end] = ACTIONS(1827), - [anon_sym_fn] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_LBRACK2] = ACTIONS(1825), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1827), - [sym_semgrep_metavariable] = ACTIONS(1827), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1827), - [sym_newline_before_do] = ACTIONS(1825), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1825), - [sym_not_in] = ACTIONS(1825), - [sym_quoted_atom_start] = ACTIONS(1825), + [1247] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(1863), + [aux_sym_identifier_token1] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [sym_alias] = ACTIONS(1863), + [sym_integer] = ACTIONS(1863), + [sym_float] = ACTIONS(1863), + [sym_char] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [anon_sym_nil] = ACTIONS(1863), + [sym_atom_] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1863), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_RBRACK] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_GT] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [sym_keyword_] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(1863), + [anon_sym_PERCENT] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1863), + [anon_sym_not] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1863), + [anon_sym_LT_DASH] = ACTIONS(1863), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1863), + [anon_sym_when] = ACTIONS(1863), + [anon_sym_COLON_COLON] = ACTIONS(1863), + [anon_sym_EQ_GT] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_or] = ACTIONS(1863), + [anon_sym_AMP_AMP] = ACTIONS(1863), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1863), + [anon_sym_and] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ] = ACTIONS(1863), + [anon_sym_EQ_TILDE] = ACTIONS(1863), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1863), + [anon_sym_GT_EQ] = ACTIONS(1863), + [anon_sym_PIPE_GT] = ACTIONS(1863), + [anon_sym_LT_LT_LT] = ACTIONS(1863), + [anon_sym_GT_GT_GT] = ACTIONS(1863), + [anon_sym_LT_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_PIPE_GT] = ACTIONS(1863), + [anon_sym_in] = ACTIONS(1863), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1863), + [anon_sym_SLASH_SLASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1863), + [anon_sym_LT_GT] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_STAR_STAR] = ACTIONS(1863), + [anon_sym_DASH_GT] = ACTIONS(1863), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_fn] = ACTIONS(1863), + [anon_sym_LPAREN2] = ACTIONS(1861), + [anon_sym_LBRACK2] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1863), + [sym_semgrep_metavariable] = ACTIONS(1863), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1863), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1863), + [sym_newline_before_do] = ACTIONS(1861), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1861), + [sym_not_in] = ACTIONS(1861), + [sym_quoted_atom_start] = ACTIONS(1861), }, - [1275] = { - [aux_sym_terminator_token1] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1835), - [aux_sym_identifier_token1] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1835), - [sym_alias] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_char] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1835), - [anon_sym_false] = ACTIONS(1835), - [anon_sym_nil] = ACTIONS(1835), - [sym_atom_] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1835), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [sym_keyword_] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(1835), - [anon_sym_PERCENT] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1835), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_LT_DASH] = ACTIONS(1835), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1835), - [anon_sym_when] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1835), - [anon_sym_EQ_GT] = ACTIONS(1835), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_or] = ACTIONS(1835), - [anon_sym_AMP_AMP] = ACTIONS(1835), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1835), - [anon_sym_and] = ACTIONS(1835), - [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_EQ_TILDE] = ACTIONS(1835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1835), - [anon_sym_LT_EQ] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(1835), - [anon_sym_PIPE_GT] = ACTIONS(1835), - [anon_sym_LT_LT_LT] = ACTIONS(1835), - [anon_sym_GT_GT_GT] = ACTIONS(1835), - [anon_sym_LT_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_PIPE_GT] = ACTIONS(1835), - [anon_sym_in] = ACTIONS(1835), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1835), - [anon_sym_SLASH_SLASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1835), - [anon_sym_LT_GT] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_STAR_STAR] = ACTIONS(1835), - [anon_sym_DASH_GT] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_end] = ACTIONS(1835), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_LBRACK2] = ACTIONS(1833), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1835), - [sym_semgrep_metavariable] = ACTIONS(1835), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1835), - [sym_newline_before_do] = ACTIONS(1833), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1833), - [sym_not_in] = ACTIONS(1833), - [sym_quoted_atom_start] = ACTIONS(1833), + [1248] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [aux_sym_identifier_token1] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1867), + [sym_alias] = ACTIONS(1867), + [sym_integer] = ACTIONS(1867), + [sym_float] = ACTIONS(1867), + [sym_char] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [anon_sym_nil] = ACTIONS(1867), + [sym_atom_] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1867), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_GT] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [sym_keyword_] = ACTIONS(1867), + [anon_sym_LT_LT] = ACTIONS(1867), + [anon_sym_PERCENT] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(1867), + [anon_sym_AT] = ACTIONS(1867), + [anon_sym_LT_DASH] = ACTIONS(1867), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1867), + [anon_sym_when] = ACTIONS(1867), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_EQ_GT] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_or] = ACTIONS(1867), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1867), + [anon_sym_and] = ACTIONS(1867), + [anon_sym_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ] = ACTIONS(1867), + [anon_sym_EQ_TILDE] = ACTIONS(1867), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1867), + [anon_sym_LT_EQ] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1867), + [anon_sym_PIPE_GT] = ACTIONS(1867), + [anon_sym_LT_LT_LT] = ACTIONS(1867), + [anon_sym_GT_GT_GT] = ACTIONS(1867), + [anon_sym_LT_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_PIPE_GT] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1867), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1867), + [anon_sym_SLASH_SLASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1867), + [anon_sym_LT_GT] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_STAR_STAR] = ACTIONS(1867), + [anon_sym_DASH_GT] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_fn] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(1865), + [anon_sym_LBRACK2] = ACTIONS(1865), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1867), + [sym_semgrep_metavariable] = ACTIONS(1867), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1867), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1867), + [sym_newline_before_do] = ACTIONS(1865), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1865), + [sym_not_in] = ACTIONS(1865), + [sym_quoted_atom_start] = ACTIONS(1865), }, - [1276] = { - [aux_sym_terminator_token1] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1839), - [aux_sym_identifier_token1] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1839), - [sym_alias] = ACTIONS(1839), - [sym_integer] = ACTIONS(1839), - [sym_float] = ACTIONS(1839), - [sym_char] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [anon_sym_nil] = ACTIONS(1839), - [sym_atom_] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1839), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_SLASH] = ACTIONS(1839), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [sym_keyword_] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1839), - [anon_sym_PERCENT] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1839), - [anon_sym_not] = ACTIONS(1839), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_LT_DASH] = ACTIONS(1839), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1839), - [anon_sym_when] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_or] = ACTIONS(1839), - [anon_sym_AMP_AMP] = ACTIONS(1839), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1839), - [anon_sym_and] = ACTIONS(1839), - [anon_sym_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1839), - [anon_sym_EQ_TILDE] = ACTIONS(1839), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), - [anon_sym_LT_EQ] = ACTIONS(1839), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_PIPE_GT] = ACTIONS(1839), - [anon_sym_LT_LT_LT] = ACTIONS(1839), - [anon_sym_GT_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_PIPE_GT] = ACTIONS(1839), - [anon_sym_in] = ACTIONS(1839), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1839), - [anon_sym_SLASH_SLASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1839), - [anon_sym_LT_GT] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_STAR_STAR] = ACTIONS(1839), - [anon_sym_DASH_GT] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_end] = ACTIONS(1839), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_LBRACK2] = ACTIONS(1837), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1839), - [sym_semgrep_metavariable] = ACTIONS(1839), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1839), - [sym_newline_before_do] = ACTIONS(1837), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1837), - [sym_not_in] = ACTIONS(1837), - [sym_quoted_atom_start] = ACTIONS(1837), + [1249] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_RBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), }, - [1277] = { - [aux_sym_terminator_token1] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1843), + [1250] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1251] = { + [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_RPAREN] = ACTIONS(1843), [aux_sym_identifier_token1] = ACTIONS(1843), [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), [sym_alias] = ACTIONS(1843), @@ -183349,7 +182046,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_RBRACK] = ACTIONS(1843), [anon_sym_LT] = ACTIONS(1843), [anon_sym_GT] = ACTIONS(1843), [anon_sym_PIPE] = ACTIONS(1843), @@ -183409,13 +182108,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1843), [anon_sym_DOT] = ACTIONS(1843), [anon_sym_do] = ACTIONS(1843), - [anon_sym_end] = ACTIONS(1843), [anon_sym_fn] = ACTIONS(1843), [anon_sym_LPAREN2] = ACTIONS(1841), [anon_sym_LBRACK2] = ACTIONS(1841), [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1843), [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), [sym_newline_before_do] = ACTIONS(1841), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -183424,43 +182123,3087 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1841), [sym_quoted_atom_start] = ACTIONS(1841), }, - [1278] = { - [aux_sym_terminator_token1] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1847), - [aux_sym_identifier_token1] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1847), - [sym_alias] = ACTIONS(1847), - [sym_integer] = ACTIONS(1847), - [sym_float] = ACTIONS(1847), - [sym_char] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_nil] = ACTIONS(1847), - [sym_atom_] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [anon_sym_SQUOTE] = ACTIONS(1847), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1847), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1847), - [anon_sym_GT] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1847), - [sym_keyword_] = ACTIONS(1847), - [anon_sym_LT_LT] = ACTIONS(1847), - [anon_sym_PERCENT] = ACTIONS(1847), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1847), - [anon_sym_not] = ACTIONS(1847), + [1252] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_RBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), + }, + [1253] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_RPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_RBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1254] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_RBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), + }, + [1255] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1256] = { + [ts_builtin_sym_end] = ACTIONS(1869), + [aux_sym_terminator_token1] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), + }, + [1257] = { + [aux_sym_terminator_token1] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_end] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), + }, + [1258] = { + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_end] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1259] = { + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_end] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1260] = { + [aux_sym_terminator_token1] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_end] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), + }, + [1261] = { + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_end] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1262] = { + [aux_sym_terminator_token1] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_end] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), + }, + [1263] = { + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_end] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1264] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1265] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1266] = { + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_RPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1267] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1268] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1269] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1270] = { + [ts_builtin_sym_end] = ACTIONS(1841), + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1271] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1272] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1273] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1274] = { + [ts_builtin_sym_end] = ACTIONS(1835), + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1275] = { + [ts_builtin_sym_end] = ACTIONS(1849), + [aux_sym_terminator_token1] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1851), + [aux_sym_identifier_token1] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1851), + [sym_alias] = ACTIONS(1851), + [sym_integer] = ACTIONS(1851), + [sym_float] = ACTIONS(1851), + [sym_char] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(1851), + [anon_sym_false] = ACTIONS(1851), + [anon_sym_nil] = ACTIONS(1851), + [sym_atom_] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1851), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_GT] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1851), + [anon_sym_SLASH] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_COMMA] = ACTIONS(1851), + [sym_keyword_] = ACTIONS(1851), + [anon_sym_LT_LT] = ACTIONS(1851), + [anon_sym_PERCENT] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1851), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1851), + [anon_sym_not] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_LT_DASH] = ACTIONS(1851), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1851), + [anon_sym_when] = ACTIONS(1851), + [anon_sym_COLON_COLON] = ACTIONS(1851), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_EQ] = ACTIONS(1851), + [anon_sym_PIPE_PIPE] = ACTIONS(1851), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1851), + [anon_sym_or] = ACTIONS(1851), + [anon_sym_AMP_AMP] = ACTIONS(1851), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1851), + [anon_sym_and] = ACTIONS(1851), + [anon_sym_EQ_EQ] = ACTIONS(1851), + [anon_sym_BANG_EQ] = ACTIONS(1851), + [anon_sym_EQ_TILDE] = ACTIONS(1851), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), + [anon_sym_LT_EQ] = ACTIONS(1851), + [anon_sym_GT_EQ] = ACTIONS(1851), + [anon_sym_PIPE_GT] = ACTIONS(1851), + [anon_sym_LT_LT_LT] = ACTIONS(1851), + [anon_sym_GT_GT_GT] = ACTIONS(1851), + [anon_sym_LT_LT_TILDE] = ACTIONS(1851), + [anon_sym_TILDE_GT_GT] = ACTIONS(1851), + [anon_sym_LT_TILDE] = ACTIONS(1851), + [anon_sym_TILDE_GT] = ACTIONS(1851), + [anon_sym_LT_TILDE_GT] = ACTIONS(1851), + [anon_sym_LT_PIPE_GT] = ACTIONS(1851), + [anon_sym_in] = ACTIONS(1851), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1851), + [anon_sym_SLASH_SLASH] = ACTIONS(1851), + [anon_sym_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1851), + [anon_sym_LT_GT] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_STAR_STAR] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), + [anon_sym_DOT] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_fn] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(1849), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1851), + [sym_semgrep_metavariable] = ACTIONS(1851), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1851), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1851), + [sym_newline_before_do] = ACTIONS(1849), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1849), + [sym_not_in] = ACTIONS(1849), + [sym_quoted_atom_start] = ACTIONS(1849), + }, + [1276] = { + [aux_sym_terminator_token1] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_RPAREN] = ACTIONS(1851), + [aux_sym_identifier_token1] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1851), + [sym_alias] = ACTIONS(1851), + [sym_integer] = ACTIONS(1851), + [sym_float] = ACTIONS(1851), + [sym_char] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(1851), + [anon_sym_false] = ACTIONS(1851), + [anon_sym_nil] = ACTIONS(1851), + [sym_atom_] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1851), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_GT] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1851), + [anon_sym_SLASH] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_COMMA] = ACTIONS(1851), + [sym_keyword_] = ACTIONS(1851), + [anon_sym_LT_LT] = ACTIONS(1851), + [anon_sym_PERCENT] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1851), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1851), + [anon_sym_not] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_LT_DASH] = ACTIONS(1851), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1851), + [anon_sym_when] = ACTIONS(1851), + [anon_sym_COLON_COLON] = ACTIONS(1851), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_EQ] = ACTIONS(1851), + [anon_sym_PIPE_PIPE] = ACTIONS(1851), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1851), + [anon_sym_or] = ACTIONS(1851), + [anon_sym_AMP_AMP] = ACTIONS(1851), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1851), + [anon_sym_and] = ACTIONS(1851), + [anon_sym_EQ_EQ] = ACTIONS(1851), + [anon_sym_BANG_EQ] = ACTIONS(1851), + [anon_sym_EQ_TILDE] = ACTIONS(1851), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), + [anon_sym_LT_EQ] = ACTIONS(1851), + [anon_sym_GT_EQ] = ACTIONS(1851), + [anon_sym_PIPE_GT] = ACTIONS(1851), + [anon_sym_LT_LT_LT] = ACTIONS(1851), + [anon_sym_GT_GT_GT] = ACTIONS(1851), + [anon_sym_LT_LT_TILDE] = ACTIONS(1851), + [anon_sym_TILDE_GT_GT] = ACTIONS(1851), + [anon_sym_LT_TILDE] = ACTIONS(1851), + [anon_sym_TILDE_GT] = ACTIONS(1851), + [anon_sym_LT_TILDE_GT] = ACTIONS(1851), + [anon_sym_LT_PIPE_GT] = ACTIONS(1851), + [anon_sym_in] = ACTIONS(1851), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1851), + [anon_sym_SLASH_SLASH] = ACTIONS(1851), + [anon_sym_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1851), + [anon_sym_LT_GT] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_STAR_STAR] = ACTIONS(1851), + [anon_sym_DASH_GT] = ACTIONS(1851), + [anon_sym_DOT] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_fn] = ACTIONS(1851), + [anon_sym_LPAREN2] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(1849), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1851), + [sym_semgrep_metavariable] = ACTIONS(1851), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1851), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1851), + [sym_newline_before_do] = ACTIONS(1849), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1849), + [sym_not_in] = ACTIONS(1849), + [sym_quoted_atom_start] = ACTIONS(1849), + }, + [1277] = { + [aux_sym_terminator_token1] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_RPAREN] = ACTIONS(1859), + [aux_sym_identifier_token1] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1859), + [sym_alias] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1859), + [sym_char] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [anon_sym_nil] = ACTIONS(1859), + [sym_atom_] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1859), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [sym_keyword_] = ACTIONS(1859), + [anon_sym_LT_LT] = ACTIONS(1859), + [anon_sym_PERCENT] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1859), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_LT_DASH] = ACTIONS(1859), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1859), + [anon_sym_when] = ACTIONS(1859), + [anon_sym_COLON_COLON] = ACTIONS(1859), + [anon_sym_EQ_GT] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_or] = ACTIONS(1859), + [anon_sym_AMP_AMP] = ACTIONS(1859), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1859), + [anon_sym_and] = ACTIONS(1859), + [anon_sym_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ] = ACTIONS(1859), + [anon_sym_EQ_TILDE] = ACTIONS(1859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1859), + [anon_sym_GT_EQ] = ACTIONS(1859), + [anon_sym_PIPE_GT] = ACTIONS(1859), + [anon_sym_LT_LT_LT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1859), + [anon_sym_LT_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_PIPE_GT] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1859), + [anon_sym_SLASH_SLASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1859), + [anon_sym_LT_GT] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_STAR_STAR] = ACTIONS(1859), + [anon_sym_DASH_GT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_fn] = ACTIONS(1859), + [anon_sym_LPAREN2] = ACTIONS(1857), + [anon_sym_LBRACK2] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1859), + [sym_semgrep_metavariable] = ACTIONS(1859), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1859), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1859), + [sym_newline_before_do] = ACTIONS(1857), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1857), + [sym_not_in] = ACTIONS(1857), + [sym_quoted_atom_start] = ACTIONS(1857), + }, + [1278] = { + [ts_builtin_sym_end] = ACTIONS(1841), + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1279] = { + [aux_sym_terminator_token1] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(1863), + [aux_sym_identifier_token1] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [sym_alias] = ACTIONS(1863), + [sym_integer] = ACTIONS(1863), + [sym_float] = ACTIONS(1863), + [sym_char] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [anon_sym_nil] = ACTIONS(1863), + [sym_atom_] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1863), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_GT] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [sym_keyword_] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(1863), + [anon_sym_PERCENT] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1863), + [anon_sym_not] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1863), + [anon_sym_LT_DASH] = ACTIONS(1863), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1863), + [anon_sym_when] = ACTIONS(1863), + [anon_sym_COLON_COLON] = ACTIONS(1863), + [anon_sym_EQ_GT] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_or] = ACTIONS(1863), + [anon_sym_AMP_AMP] = ACTIONS(1863), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1863), + [anon_sym_and] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ] = ACTIONS(1863), + [anon_sym_EQ_TILDE] = ACTIONS(1863), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1863), + [anon_sym_GT_EQ] = ACTIONS(1863), + [anon_sym_PIPE_GT] = ACTIONS(1863), + [anon_sym_LT_LT_LT] = ACTIONS(1863), + [anon_sym_GT_GT_GT] = ACTIONS(1863), + [anon_sym_LT_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_PIPE_GT] = ACTIONS(1863), + [anon_sym_in] = ACTIONS(1863), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1863), + [anon_sym_SLASH_SLASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1863), + [anon_sym_LT_GT] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_STAR_STAR] = ACTIONS(1863), + [anon_sym_DASH_GT] = ACTIONS(1863), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_fn] = ACTIONS(1863), + [anon_sym_LPAREN2] = ACTIONS(1861), + [anon_sym_LBRACK2] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1863), + [sym_semgrep_metavariable] = ACTIONS(1863), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1863), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1863), + [sym_newline_before_do] = ACTIONS(1861), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1861), + [sym_not_in] = ACTIONS(1861), + [sym_quoted_atom_start] = ACTIONS(1861), + }, + [1280] = { + [ts_builtin_sym_end] = ACTIONS(1869), + [aux_sym_terminator_token1] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), + }, + [1281] = { + [ts_builtin_sym_end] = ACTIONS(1857), + [aux_sym_terminator_token1] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [aux_sym_identifier_token1] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1859), + [sym_alias] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1859), + [sym_char] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [anon_sym_nil] = ACTIONS(1859), + [sym_atom_] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1859), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [sym_keyword_] = ACTIONS(1859), + [anon_sym_LT_LT] = ACTIONS(1859), + [anon_sym_PERCENT] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1859), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_LT_DASH] = ACTIONS(1859), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1859), + [anon_sym_when] = ACTIONS(1859), + [anon_sym_COLON_COLON] = ACTIONS(1859), + [anon_sym_EQ_GT] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_or] = ACTIONS(1859), + [anon_sym_AMP_AMP] = ACTIONS(1859), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1859), + [anon_sym_and] = ACTIONS(1859), + [anon_sym_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ] = ACTIONS(1859), + [anon_sym_EQ_TILDE] = ACTIONS(1859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1859), + [anon_sym_GT_EQ] = ACTIONS(1859), + [anon_sym_PIPE_GT] = ACTIONS(1859), + [anon_sym_LT_LT_LT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1859), + [anon_sym_LT_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_PIPE_GT] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1859), + [anon_sym_SLASH_SLASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1859), + [anon_sym_LT_GT] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_STAR_STAR] = ACTIONS(1859), + [anon_sym_DASH_GT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_fn] = ACTIONS(1859), + [anon_sym_LPAREN2] = ACTIONS(1857), + [anon_sym_LBRACK2] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1859), + [sym_semgrep_metavariable] = ACTIONS(1859), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1859), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1859), + [sym_newline_before_do] = ACTIONS(1857), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1857), + [sym_not_in] = ACTIONS(1857), + [sym_quoted_atom_start] = ACTIONS(1857), + }, + [1282] = { + [ts_builtin_sym_end] = ACTIONS(1861), + [aux_sym_terminator_token1] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [aux_sym_identifier_token1] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [sym_alias] = ACTIONS(1863), + [sym_integer] = ACTIONS(1863), + [sym_float] = ACTIONS(1863), + [sym_char] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [anon_sym_nil] = ACTIONS(1863), + [sym_atom_] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1863), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_GT] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [sym_keyword_] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(1863), + [anon_sym_PERCENT] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1863), + [anon_sym_not] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1863), + [anon_sym_LT_DASH] = ACTIONS(1863), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1863), + [anon_sym_when] = ACTIONS(1863), + [anon_sym_COLON_COLON] = ACTIONS(1863), + [anon_sym_EQ_GT] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_or] = ACTIONS(1863), + [anon_sym_AMP_AMP] = ACTIONS(1863), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1863), + [anon_sym_and] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ] = ACTIONS(1863), + [anon_sym_EQ_TILDE] = ACTIONS(1863), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1863), + [anon_sym_GT_EQ] = ACTIONS(1863), + [anon_sym_PIPE_GT] = ACTIONS(1863), + [anon_sym_LT_LT_LT] = ACTIONS(1863), + [anon_sym_GT_GT_GT] = ACTIONS(1863), + [anon_sym_LT_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_PIPE_GT] = ACTIONS(1863), + [anon_sym_in] = ACTIONS(1863), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1863), + [anon_sym_SLASH_SLASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1863), + [anon_sym_LT_GT] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_STAR_STAR] = ACTIONS(1863), + [anon_sym_DASH_GT] = ACTIONS(1863), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_fn] = ACTIONS(1863), + [anon_sym_LPAREN2] = ACTIONS(1861), + [anon_sym_LBRACK2] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1863), + [sym_semgrep_metavariable] = ACTIONS(1863), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1863), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1863), + [sym_newline_before_do] = ACTIONS(1861), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1861), + [sym_not_in] = ACTIONS(1861), + [sym_quoted_atom_start] = ACTIONS(1861), + }, + [1283] = { + [ts_builtin_sym_end] = ACTIONS(1865), + [aux_sym_terminator_token1] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [aux_sym_identifier_token1] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1867), + [sym_alias] = ACTIONS(1867), + [sym_integer] = ACTIONS(1867), + [sym_float] = ACTIONS(1867), + [sym_char] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [anon_sym_nil] = ACTIONS(1867), + [sym_atom_] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1867), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_GT] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [sym_keyword_] = ACTIONS(1867), + [anon_sym_LT_LT] = ACTIONS(1867), + [anon_sym_PERCENT] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(1867), + [anon_sym_AT] = ACTIONS(1867), + [anon_sym_LT_DASH] = ACTIONS(1867), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1867), + [anon_sym_when] = ACTIONS(1867), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_EQ_GT] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_or] = ACTIONS(1867), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1867), + [anon_sym_and] = ACTIONS(1867), + [anon_sym_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ] = ACTIONS(1867), + [anon_sym_EQ_TILDE] = ACTIONS(1867), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1867), + [anon_sym_LT_EQ] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1867), + [anon_sym_PIPE_GT] = ACTIONS(1867), + [anon_sym_LT_LT_LT] = ACTIONS(1867), + [anon_sym_GT_GT_GT] = ACTIONS(1867), + [anon_sym_LT_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_PIPE_GT] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1867), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1867), + [anon_sym_SLASH_SLASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1867), + [anon_sym_LT_GT] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_STAR_STAR] = ACTIONS(1867), + [anon_sym_DASH_GT] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_fn] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(1865), + [anon_sym_LBRACK2] = ACTIONS(1865), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1867), + [sym_semgrep_metavariable] = ACTIONS(1867), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1867), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1867), + [sym_newline_before_do] = ACTIONS(1865), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1865), + [sym_not_in] = ACTIONS(1865), + [sym_quoted_atom_start] = ACTIONS(1865), + }, + [1284] = { + [aux_sym_terminator_token1] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [aux_sym_identifier_token1] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1847), + [sym_alias] = ACTIONS(1847), + [sym_integer] = ACTIONS(1847), + [sym_float] = ACTIONS(1847), + [sym_char] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1847), + [anon_sym_false] = ACTIONS(1847), + [anon_sym_nil] = ACTIONS(1847), + [sym_atom_] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [anon_sym_SQUOTE] = ACTIONS(1847), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1847), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_GT] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_SLASH] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1847), + [sym_keyword_] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_PERCENT] = ACTIONS(1847), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1847), + [anon_sym_not] = ACTIONS(1847), [anon_sym_AT] = ACTIONS(1847), [anon_sym_LT_DASH] = ACTIONS(1847), [anon_sym_BSLASH_BSLASH] = ACTIONS(1847), @@ -183510,6 +185253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1847), [sym_semgrep_metavariable] = ACTIONS(1847), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1847), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1847), [sym_newline_before_do] = ACTIONS(1845), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -183518,7 +185262,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1845), [sym_quoted_atom_start] = ACTIONS(1845), }, - [1279] = { + [1285] = { + [aux_sym_terminator_token1] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1855), + [aux_sym_identifier_token1] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), + [sym_alias] = ACTIONS(1855), + [sym_integer] = ACTIONS(1855), + [sym_float] = ACTIONS(1855), + [sym_char] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [anon_sym_nil] = ACTIONS(1855), + [sym_atom_] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1855), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_GT] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_SLASH] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1855), + [anon_sym_COMMA] = ACTIONS(1855), + [sym_keyword_] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1855), + [anon_sym_PERCENT] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1855), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), + [anon_sym_not] = ACTIONS(1855), + [anon_sym_AT] = ACTIONS(1855), + [anon_sym_LT_DASH] = ACTIONS(1855), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), + [anon_sym_when] = ACTIONS(1855), + [anon_sym_COLON_COLON] = ACTIONS(1855), + [anon_sym_EQ_GT] = ACTIONS(1855), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_PIPE_PIPE] = ACTIONS(1855), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), + [anon_sym_or] = ACTIONS(1855), + [anon_sym_AMP_AMP] = ACTIONS(1855), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), + [anon_sym_and] = ACTIONS(1855), + [anon_sym_EQ_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ] = ACTIONS(1855), + [anon_sym_EQ_TILDE] = ACTIONS(1855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), + [anon_sym_LT_EQ] = ACTIONS(1855), + [anon_sym_GT_EQ] = ACTIONS(1855), + [anon_sym_PIPE_GT] = ACTIONS(1855), + [anon_sym_LT_LT_LT] = ACTIONS(1855), + [anon_sym_GT_GT_GT] = ACTIONS(1855), + [anon_sym_LT_LT_TILDE] = ACTIONS(1855), + [anon_sym_TILDE_GT_GT] = ACTIONS(1855), + [anon_sym_LT_TILDE] = ACTIONS(1855), + [anon_sym_TILDE_GT] = ACTIONS(1855), + [anon_sym_LT_TILDE_GT] = ACTIONS(1855), + [anon_sym_LT_PIPE_GT] = ACTIONS(1855), + [anon_sym_in] = ACTIONS(1855), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), + [anon_sym_SLASH_SLASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), + [anon_sym_LT_GT] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_STAR_STAR] = ACTIONS(1855), + [anon_sym_DASH_GT] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_end] = ACTIONS(1855), + [anon_sym_fn] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1853), + [anon_sym_LBRACK2] = ACTIONS(1853), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1855), + [sym_semgrep_metavariable] = ACTIONS(1855), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1855), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), + [sym_newline_before_do] = ACTIONS(1853), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1853), + [sym_not_in] = ACTIONS(1853), + [sym_quoted_atom_start] = ACTIONS(1853), + }, + [1286] = { [aux_sym_terminator_token1] = ACTIONS(1849), [anon_sym_SEMI] = ACTIONS(1851), [anon_sym_LPAREN] = ACTIONS(1851), @@ -183602,960 +185441,1447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(1849), [anon_sym_LBRACK2] = ACTIONS(1849), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1851), - [sym_semgrep_metavariable] = ACTIONS(1851), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1851), - [sym_newline_before_do] = ACTIONS(1849), + [anon_sym_COLON] = ACTIONS(1851), + [sym_semgrep_metavariable] = ACTIONS(1851), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1851), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1851), + [sym_newline_before_do] = ACTIONS(1849), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1849), + [sym_not_in] = ACTIONS(1849), + [sym_quoted_atom_start] = ACTIONS(1849), + }, + [1287] = { + [aux_sym_terminator_token1] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [aux_sym_identifier_token1] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1859), + [sym_alias] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1859), + [sym_char] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [anon_sym_nil] = ACTIONS(1859), + [sym_atom_] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1859), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [sym_keyword_] = ACTIONS(1859), + [anon_sym_LT_LT] = ACTIONS(1859), + [anon_sym_PERCENT] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1859), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_LT_DASH] = ACTIONS(1859), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1859), + [anon_sym_when] = ACTIONS(1859), + [anon_sym_COLON_COLON] = ACTIONS(1859), + [anon_sym_EQ_GT] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_or] = ACTIONS(1859), + [anon_sym_AMP_AMP] = ACTIONS(1859), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1859), + [anon_sym_and] = ACTIONS(1859), + [anon_sym_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ] = ACTIONS(1859), + [anon_sym_EQ_TILDE] = ACTIONS(1859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1859), + [anon_sym_GT_EQ] = ACTIONS(1859), + [anon_sym_PIPE_GT] = ACTIONS(1859), + [anon_sym_LT_LT_LT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1859), + [anon_sym_LT_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_PIPE_GT] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1859), + [anon_sym_SLASH_SLASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1859), + [anon_sym_LT_GT] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_STAR_STAR] = ACTIONS(1859), + [anon_sym_DASH_GT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_end] = ACTIONS(1859), + [anon_sym_fn] = ACTIONS(1859), + [anon_sym_LPAREN2] = ACTIONS(1857), + [anon_sym_LBRACK2] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1859), + [sym_semgrep_metavariable] = ACTIONS(1859), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1859), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1859), + [sym_newline_before_do] = ACTIONS(1857), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1857), + [sym_not_in] = ACTIONS(1857), + [sym_quoted_atom_start] = ACTIONS(1857), + }, + [1288] = { + [aux_sym_terminator_token1] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [aux_sym_identifier_token1] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [sym_alias] = ACTIONS(1863), + [sym_integer] = ACTIONS(1863), + [sym_float] = ACTIONS(1863), + [sym_char] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [anon_sym_nil] = ACTIONS(1863), + [sym_atom_] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1863), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_GT] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [sym_keyword_] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(1863), + [anon_sym_PERCENT] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1863), + [anon_sym_not] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1863), + [anon_sym_LT_DASH] = ACTIONS(1863), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1863), + [anon_sym_when] = ACTIONS(1863), + [anon_sym_COLON_COLON] = ACTIONS(1863), + [anon_sym_EQ_GT] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_or] = ACTIONS(1863), + [anon_sym_AMP_AMP] = ACTIONS(1863), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1863), + [anon_sym_and] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ] = ACTIONS(1863), + [anon_sym_EQ_TILDE] = ACTIONS(1863), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1863), + [anon_sym_GT_EQ] = ACTIONS(1863), + [anon_sym_PIPE_GT] = ACTIONS(1863), + [anon_sym_LT_LT_LT] = ACTIONS(1863), + [anon_sym_GT_GT_GT] = ACTIONS(1863), + [anon_sym_LT_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_PIPE_GT] = ACTIONS(1863), + [anon_sym_in] = ACTIONS(1863), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1863), + [anon_sym_SLASH_SLASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1863), + [anon_sym_LT_GT] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_STAR_STAR] = ACTIONS(1863), + [anon_sym_DASH_GT] = ACTIONS(1863), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_end] = ACTIONS(1863), + [anon_sym_fn] = ACTIONS(1863), + [anon_sym_LPAREN2] = ACTIONS(1861), + [anon_sym_LBRACK2] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1863), + [sym_semgrep_metavariable] = ACTIONS(1863), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1863), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1863), + [sym_newline_before_do] = ACTIONS(1861), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1861), + [sym_not_in] = ACTIONS(1861), + [sym_quoted_atom_start] = ACTIONS(1861), + }, + [1289] = { + [aux_sym_terminator_token1] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [aux_sym_identifier_token1] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1867), + [sym_alias] = ACTIONS(1867), + [sym_integer] = ACTIONS(1867), + [sym_float] = ACTIONS(1867), + [sym_char] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [anon_sym_nil] = ACTIONS(1867), + [sym_atom_] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1867), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_GT] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [sym_keyword_] = ACTIONS(1867), + [anon_sym_LT_LT] = ACTIONS(1867), + [anon_sym_PERCENT] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(1867), + [anon_sym_AT] = ACTIONS(1867), + [anon_sym_LT_DASH] = ACTIONS(1867), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1867), + [anon_sym_when] = ACTIONS(1867), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_EQ_GT] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_or] = ACTIONS(1867), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1867), + [anon_sym_and] = ACTIONS(1867), + [anon_sym_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ] = ACTIONS(1867), + [anon_sym_EQ_TILDE] = ACTIONS(1867), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1867), + [anon_sym_LT_EQ] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1867), + [anon_sym_PIPE_GT] = ACTIONS(1867), + [anon_sym_LT_LT_LT] = ACTIONS(1867), + [anon_sym_GT_GT_GT] = ACTIONS(1867), + [anon_sym_LT_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_PIPE_GT] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1867), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1867), + [anon_sym_SLASH_SLASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1867), + [anon_sym_LT_GT] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_STAR_STAR] = ACTIONS(1867), + [anon_sym_DASH_GT] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_end] = ACTIONS(1867), + [anon_sym_fn] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(1865), + [anon_sym_LBRACK2] = ACTIONS(1865), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1867), + [sym_semgrep_metavariable] = ACTIONS(1867), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1867), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1867), + [sym_newline_before_do] = ACTIONS(1865), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1865), + [sym_not_in] = ACTIONS(1865), + [sym_quoted_atom_start] = ACTIONS(1865), + }, + [1290] = { + [ts_builtin_sym_end] = ACTIONS(1835), + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1291] = { + [ts_builtin_sym_end] = ACTIONS(1841), + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1292] = { + [ts_builtin_sym_end] = ACTIONS(1869), + [aux_sym_terminator_token1] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), + }, + [1293] = { + [ts_builtin_sym_end] = ACTIONS(1841), + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1294] = { + [aux_sym_terminator_token1] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), + }, + [1295] = { + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_RPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1296] = { + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_RPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1297] = { + [aux_sym_terminator_token1] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), + }, + [1298] = { + [aux_sym_terminator_token1] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_RPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1299] = { + [aux_sym_terminator_token1] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), + }, + [1300] = { + [ts_builtin_sym_end] = ACTIONS(1845), + [aux_sym_terminator_token1] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [aux_sym_identifier_token1] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1847), + [sym_alias] = ACTIONS(1847), + [sym_integer] = ACTIONS(1847), + [sym_float] = ACTIONS(1847), + [sym_char] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1847), + [anon_sym_false] = ACTIONS(1847), + [anon_sym_nil] = ACTIONS(1847), + [sym_atom_] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [anon_sym_SQUOTE] = ACTIONS(1847), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1847), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_GT] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_SLASH] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1847), + [sym_keyword_] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_PERCENT] = ACTIONS(1847), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1847), + [anon_sym_not] = ACTIONS(1847), + [anon_sym_AT] = ACTIONS(1847), + [anon_sym_LT_DASH] = ACTIONS(1847), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1847), + [anon_sym_when] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1847), + [anon_sym_EQ_GT] = ACTIONS(1847), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_or] = ACTIONS(1847), + [anon_sym_AMP_AMP] = ACTIONS(1847), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1847), + [anon_sym_and] = ACTIONS(1847), + [anon_sym_EQ_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ] = ACTIONS(1847), + [anon_sym_EQ_TILDE] = ACTIONS(1847), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1847), + [anon_sym_LT_EQ] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1847), + [anon_sym_PIPE_GT] = ACTIONS(1847), + [anon_sym_LT_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT_GT] = ACTIONS(1847), + [anon_sym_LT_LT_TILDE] = ACTIONS(1847), + [anon_sym_TILDE_GT_GT] = ACTIONS(1847), + [anon_sym_LT_TILDE] = ACTIONS(1847), + [anon_sym_TILDE_GT] = ACTIONS(1847), + [anon_sym_LT_TILDE_GT] = ACTIONS(1847), + [anon_sym_LT_PIPE_GT] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(1847), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1847), + [anon_sym_SLASH_SLASH] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1847), + [anon_sym_LT_GT] = ACTIONS(1847), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_STAR_STAR] = ACTIONS(1847), + [anon_sym_DASH_GT] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_fn] = ACTIONS(1847), + [anon_sym_LPAREN2] = ACTIONS(1845), + [anon_sym_LBRACK2] = ACTIONS(1845), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1847), + [sym_semgrep_metavariable] = ACTIONS(1847), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1847), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1847), + [sym_newline_before_do] = ACTIONS(1845), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1845), + [sym_not_in] = ACTIONS(1845), + [sym_quoted_atom_start] = ACTIONS(1845), + }, + [1301] = { + [aux_sym_terminator_token1] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_RPAREN] = ACTIONS(1847), + [aux_sym_identifier_token1] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1847), + [sym_alias] = ACTIONS(1847), + [sym_integer] = ACTIONS(1847), + [sym_float] = ACTIONS(1847), + [sym_char] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1847), + [anon_sym_false] = ACTIONS(1847), + [anon_sym_nil] = ACTIONS(1847), + [sym_atom_] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [anon_sym_SQUOTE] = ACTIONS(1847), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1847), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_GT] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_SLASH] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1847), + [sym_keyword_] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_PERCENT] = ACTIONS(1847), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1847), + [anon_sym_not] = ACTIONS(1847), + [anon_sym_AT] = ACTIONS(1847), + [anon_sym_LT_DASH] = ACTIONS(1847), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1847), + [anon_sym_when] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1847), + [anon_sym_EQ_GT] = ACTIONS(1847), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_or] = ACTIONS(1847), + [anon_sym_AMP_AMP] = ACTIONS(1847), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1847), + [anon_sym_and] = ACTIONS(1847), + [anon_sym_EQ_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ] = ACTIONS(1847), + [anon_sym_EQ_TILDE] = ACTIONS(1847), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1847), + [anon_sym_LT_EQ] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1847), + [anon_sym_PIPE_GT] = ACTIONS(1847), + [anon_sym_LT_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT_GT] = ACTIONS(1847), + [anon_sym_LT_LT_TILDE] = ACTIONS(1847), + [anon_sym_TILDE_GT_GT] = ACTIONS(1847), + [anon_sym_LT_TILDE] = ACTIONS(1847), + [anon_sym_TILDE_GT] = ACTIONS(1847), + [anon_sym_LT_TILDE_GT] = ACTIONS(1847), + [anon_sym_LT_PIPE_GT] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(1847), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1847), + [anon_sym_SLASH_SLASH] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1847), + [anon_sym_LT_GT] = ACTIONS(1847), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_STAR_STAR] = ACTIONS(1847), + [anon_sym_DASH_GT] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_fn] = ACTIONS(1847), + [anon_sym_LPAREN2] = ACTIONS(1845), + [anon_sym_LBRACK2] = ACTIONS(1845), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1847), + [sym_semgrep_metavariable] = ACTIONS(1847), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1847), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1847), + [sym_newline_before_do] = ACTIONS(1845), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1849), - [sym_not_in] = ACTIONS(1849), - [sym_quoted_atom_start] = ACTIONS(1849), - }, - [1280] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1281] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [aux_sym_terminator_token1] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1282] = { - [ts_builtin_sym_end] = ACTIONS(1829), - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1283] = { - [ts_builtin_sym_end] = ACTIONS(1829), - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1284] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [aux_sym_terminator_token1] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1285] = { - [ts_builtin_sym_end] = ACTIONS(1829), - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1286] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [aux_sym_terminator_token1] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1287] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1288] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1289] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [sym_before_unary_op] = ACTIONS(1845), + [sym_not_in] = ACTIONS(1845), + [sym_quoted_atom_start] = ACTIONS(1845), }, - [1290] = { + [1302] = { [aux_sym_terminator_token1] = ACTIONS(1853), [anon_sym_SEMI] = ACTIONS(1855), [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_RPAREN] = ACTIONS(1855), [aux_sym_identifier_token1] = ACTIONS(1855), [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), [sym_alias] = ACTIONS(1855), @@ -184631,13 +186957,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1855), [anon_sym_DOT] = ACTIONS(1855), [anon_sym_do] = ACTIONS(1855), - [anon_sym_end] = ACTIONS(1855), [anon_sym_fn] = ACTIONS(1855), [anon_sym_LPAREN2] = ACTIONS(1853), [anon_sym_LBRACK2] = ACTIONS(1853), [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1855), [sym_semgrep_metavariable] = ACTIONS(1855), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1855), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), [sym_newline_before_do] = ACTIONS(1853), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -184646,383 +186972,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1853), [sym_quoted_atom_start] = ACTIONS(1853), }, - [1291] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1292] = { - [aux_sym_terminator_token1] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1293] = { - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_RPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1294] = { - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_RPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), + [1303] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, - [1295] = { + [1304] = { [ts_builtin_sym_end] = ACTIONS(1853), [aux_sym_terminator_token1] = ACTIONS(1853), [anon_sym_SEMI] = ACTIONS(1855), @@ -185108,6 +187153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1855), [sym_semgrep_metavariable] = ACTIONS(1855), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1855), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), [sym_newline_before_do] = ACTIONS(1853), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -185116,1702 +187162,951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1853), [sym_quoted_atom_start] = ACTIONS(1853), }, - [1296] = { - [aux_sym_terminator_token1] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1297] = { - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_RPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1298] = { - [aux_sym_terminator_token1] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1299] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1300] = { - [aux_sym_terminator_token1] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_end] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1301] = { - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_end] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1302] = { - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_end] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1303] = { - [aux_sym_terminator_token1] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_end] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1304] = { - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_end] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, [1305] = { - [aux_sym_terminator_token1] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_end] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), + [ts_builtin_sym_end] = ACTIONS(1835), + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, [1306] = { - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_end] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, [1307] = { - [ts_builtin_sym_end] = ACTIONS(1825), - [aux_sym_terminator_token1] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1827), - [aux_sym_identifier_token1] = ACTIONS(1827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1827), - [sym_alias] = ACTIONS(1827), - [sym_integer] = ACTIONS(1827), - [sym_float] = ACTIONS(1827), - [sym_char] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1827), - [anon_sym_false] = ACTIONS(1827), - [anon_sym_nil] = ACTIONS(1827), - [sym_atom_] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1827), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_COMMA] = ACTIONS(1827), - [sym_keyword_] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_PERCENT] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1827), - [anon_sym_not] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1827), - [anon_sym_LT_DASH] = ACTIONS(1827), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1827), - [anon_sym_when] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1827), - [anon_sym_EQ_GT] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_or] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1827), - [anon_sym_and] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_EQ_TILDE] = ACTIONS(1827), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), - [anon_sym_LT_EQ] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(1827), - [anon_sym_PIPE_GT] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_GT_GT] = ACTIONS(1827), - [anon_sym_LT_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_PIPE_GT] = ACTIONS(1827), - [anon_sym_in] = ACTIONS(1827), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1827), - [anon_sym_SLASH_SLASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1827), - [anon_sym_LT_GT] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_STAR_STAR] = ACTIONS(1827), - [anon_sym_DASH_GT] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_fn] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_LBRACK2] = ACTIONS(1825), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1827), - [sym_semgrep_metavariable] = ACTIONS(1827), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1827), - [sym_newline_before_do] = ACTIONS(1825), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1825), - [sym_not_in] = ACTIONS(1825), - [sym_quoted_atom_start] = ACTIONS(1825), + [aux_sym_terminator_token1] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [aux_sym_identifier_token1] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1867), + [sym_alias] = ACTIONS(1867), + [sym_integer] = ACTIONS(1867), + [sym_float] = ACTIONS(1867), + [sym_char] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [anon_sym_nil] = ACTIONS(1867), + [sym_atom_] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1867), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_GT] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [sym_keyword_] = ACTIONS(1867), + [anon_sym_LT_LT] = ACTIONS(1867), + [anon_sym_PERCENT] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(1867), + [anon_sym_AT] = ACTIONS(1867), + [anon_sym_LT_DASH] = ACTIONS(1867), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1867), + [anon_sym_when] = ACTIONS(1867), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_EQ_GT] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_or] = ACTIONS(1867), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1867), + [anon_sym_and] = ACTIONS(1867), + [anon_sym_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ] = ACTIONS(1867), + [anon_sym_EQ_TILDE] = ACTIONS(1867), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1867), + [anon_sym_LT_EQ] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1867), + [anon_sym_PIPE_GT] = ACTIONS(1867), + [anon_sym_LT_LT_LT] = ACTIONS(1867), + [anon_sym_GT_GT_GT] = ACTIONS(1867), + [anon_sym_LT_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_PIPE_GT] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1867), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1867), + [anon_sym_SLASH_SLASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1867), + [anon_sym_LT_GT] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_STAR_STAR] = ACTIONS(1867), + [anon_sym_DASH_GT] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_fn] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(1865), + [anon_sym_LBRACK2] = ACTIONS(1865), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1867), + [sym_semgrep_metavariable] = ACTIONS(1867), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1867), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1867), + [sym_newline_before_do] = ACTIONS(1865), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1865), + [sym_not_in] = ACTIONS(1865), + [sym_quoted_atom_start] = ACTIONS(1865), }, [1308] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [aux_sym_terminator_token1] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1835), - [aux_sym_identifier_token1] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1835), - [sym_alias] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_char] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1835), - [anon_sym_false] = ACTIONS(1835), - [anon_sym_nil] = ACTIONS(1835), - [sym_atom_] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1835), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [sym_keyword_] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(1835), - [anon_sym_PERCENT] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1835), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_LT_DASH] = ACTIONS(1835), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1835), - [anon_sym_when] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1835), - [anon_sym_EQ_GT] = ACTIONS(1835), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_or] = ACTIONS(1835), - [anon_sym_AMP_AMP] = ACTIONS(1835), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1835), - [anon_sym_and] = ACTIONS(1835), - [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_EQ_TILDE] = ACTIONS(1835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1835), - [anon_sym_LT_EQ] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(1835), - [anon_sym_PIPE_GT] = ACTIONS(1835), - [anon_sym_LT_LT_LT] = ACTIONS(1835), - [anon_sym_GT_GT_GT] = ACTIONS(1835), - [anon_sym_LT_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_PIPE_GT] = ACTIONS(1835), - [anon_sym_in] = ACTIONS(1835), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1835), - [anon_sym_SLASH_SLASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1835), - [anon_sym_LT_GT] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_STAR_STAR] = ACTIONS(1835), - [anon_sym_DASH_GT] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_LBRACK2] = ACTIONS(1833), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1835), - [sym_semgrep_metavariable] = ACTIONS(1835), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1835), - [sym_newline_before_do] = ACTIONS(1833), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1833), - [sym_not_in] = ACTIONS(1833), - [sym_quoted_atom_start] = ACTIONS(1833), - }, - [1309] = { - [aux_sym_terminator_token1] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_RPAREN] = ACTIONS(1855), - [aux_sym_identifier_token1] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), - [sym_alias] = ACTIONS(1855), - [sym_integer] = ACTIONS(1855), - [sym_float] = ACTIONS(1855), - [sym_char] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_nil] = ACTIONS(1855), - [sym_atom_] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [sym_keyword_] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), - [anon_sym_not] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_LT_DASH] = ACTIONS(1855), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), - [anon_sym_when] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_or] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), - [anon_sym_and] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_EQ_TILDE] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_PIPE_GT] = ACTIONS(1855), - [anon_sym_LT_LT_LT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_PIPE_GT] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), - [anon_sym_SLASH_SLASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), - [anon_sym_LT_GT] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_fn] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(1853), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1855), - [sym_semgrep_metavariable] = ACTIONS(1855), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), - [sym_newline_before_do] = ACTIONS(1853), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1853), - [sym_not_in] = ACTIONS(1853), - [sym_quoted_atom_start] = ACTIONS(1853), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), + }, + [1309] = { + [ts_builtin_sym_end] = ACTIONS(1835), + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, [1310] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, [1311] = { - [ts_builtin_sym_end] = ACTIONS(1829), - [aux_sym_terminator_token1] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, [1312] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [aux_sym_metavariable_keyword_token1] = ACTIONS(1839), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, [1313] = { - [ts_builtin_sym_end] = ACTIONS(1837), - [aux_sym_terminator_token1] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1839), - [aux_sym_identifier_token1] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1839), - [sym_alias] = ACTIONS(1839), - [sym_integer] = ACTIONS(1839), - [sym_float] = ACTIONS(1839), - [sym_char] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [anon_sym_nil] = ACTIONS(1839), - [sym_atom_] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1839), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_SLASH] = ACTIONS(1839), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [sym_keyword_] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1839), - [anon_sym_PERCENT] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1839), - [anon_sym_not] = ACTIONS(1839), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_LT_DASH] = ACTIONS(1839), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1839), - [anon_sym_when] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_or] = ACTIONS(1839), - [anon_sym_AMP_AMP] = ACTIONS(1839), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1839), - [anon_sym_and] = ACTIONS(1839), - [anon_sym_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1839), - [anon_sym_EQ_TILDE] = ACTIONS(1839), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), - [anon_sym_LT_EQ] = ACTIONS(1839), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_PIPE_GT] = ACTIONS(1839), - [anon_sym_LT_LT_LT] = ACTIONS(1839), - [anon_sym_GT_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_PIPE_GT] = ACTIONS(1839), - [anon_sym_in] = ACTIONS(1839), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1839), - [anon_sym_SLASH_SLASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1839), - [anon_sym_LT_GT] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_STAR_STAR] = ACTIONS(1839), - [anon_sym_DASH_GT] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_LBRACK2] = ACTIONS(1837), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1839), - [sym_semgrep_metavariable] = ACTIONS(1839), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1839), - [sym_newline_before_do] = ACTIONS(1837), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1837), - [sym_not_in] = ACTIONS(1837), - [sym_quoted_atom_start] = ACTIONS(1837), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, [1314] = { - [ts_builtin_sym_end] = ACTIONS(1845), - [aux_sym_terminator_token1] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1847), + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1315] = { + [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1847), [aux_sym_identifier_token1] = ACTIONS(1847), [anon_sym_DOT_DOT_DOT] = ACTIONS(1847), @@ -186837,6 +188132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1847), [sym_keyword_] = ACTIONS(1847), [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1847), [anon_sym_PERCENT] = ACTIONS(1847), [anon_sym_DOT_DOT] = ACTIONS(1847), [anon_sym_AMP] = ACTIONS(1847), @@ -186894,6 +188190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1847), [sym_semgrep_metavariable] = ACTIONS(1847), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1847), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1847), [sym_newline_before_do] = ACTIONS(1845), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -186902,937 +188199,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1845), [sym_quoted_atom_start] = ACTIONS(1845), }, - [1315] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, [1316] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1855), + [aux_sym_identifier_token1] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), + [sym_alias] = ACTIONS(1855), + [sym_integer] = ACTIONS(1855), + [sym_float] = ACTIONS(1855), + [sym_char] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [anon_sym_nil] = ACTIONS(1855), + [sym_atom_] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1855), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_GT] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_SLASH] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1855), + [anon_sym_COMMA] = ACTIONS(1855), + [sym_keyword_] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1855), + [anon_sym_GT_GT] = ACTIONS(1855), + [anon_sym_PERCENT] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1855), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), + [anon_sym_not] = ACTIONS(1855), + [anon_sym_AT] = ACTIONS(1855), + [anon_sym_LT_DASH] = ACTIONS(1855), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), + [anon_sym_when] = ACTIONS(1855), + [anon_sym_COLON_COLON] = ACTIONS(1855), + [anon_sym_EQ_GT] = ACTIONS(1855), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_PIPE_PIPE] = ACTIONS(1855), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), + [anon_sym_or] = ACTIONS(1855), + [anon_sym_AMP_AMP] = ACTIONS(1855), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), + [anon_sym_and] = ACTIONS(1855), + [anon_sym_EQ_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ] = ACTIONS(1855), + [anon_sym_EQ_TILDE] = ACTIONS(1855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), + [anon_sym_LT_EQ] = ACTIONS(1855), + [anon_sym_GT_EQ] = ACTIONS(1855), + [anon_sym_PIPE_GT] = ACTIONS(1855), + [anon_sym_LT_LT_LT] = ACTIONS(1855), + [anon_sym_GT_GT_GT] = ACTIONS(1855), + [anon_sym_LT_LT_TILDE] = ACTIONS(1855), + [anon_sym_TILDE_GT_GT] = ACTIONS(1855), + [anon_sym_LT_TILDE] = ACTIONS(1855), + [anon_sym_TILDE_GT] = ACTIONS(1855), + [anon_sym_LT_TILDE_GT] = ACTIONS(1855), + [anon_sym_LT_PIPE_GT] = ACTIONS(1855), + [anon_sym_in] = ACTIONS(1855), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), + [anon_sym_SLASH_SLASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), + [anon_sym_LT_GT] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_STAR_STAR] = ACTIONS(1855), + [anon_sym_DASH_GT] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_fn] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1853), + [anon_sym_LBRACK2] = ACTIONS(1853), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1855), + [sym_semgrep_metavariable] = ACTIONS(1855), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1855), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), + [sym_newline_before_do] = ACTIONS(1853), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1853), + [sym_not_in] = ACTIONS(1853), + [sym_quoted_atom_start] = ACTIONS(1853), }, [1317] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_RBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1857), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1318] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1319] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1320] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1321] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1322] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1323] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1324] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1325] = { [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1851), [aux_sym_identifier_token1] = ACTIONS(1851), @@ -187917,6 +188378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1851), [sym_semgrep_metavariable] = ACTIONS(1851), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1851), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1851), [sym_newline_before_do] = ACTIONS(1849), [sym_newline_before_binary_operator] = ACTIONS(3), @@ -187925,565 +188387,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1849), [sym_quoted_atom_start] = ACTIONS(1849), }, - [1326] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1327] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1827), - [aux_sym_identifier_token1] = ACTIONS(1827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1827), - [sym_alias] = ACTIONS(1827), - [sym_integer] = ACTIONS(1827), - [sym_float] = ACTIONS(1827), - [sym_char] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1827), - [anon_sym_false] = ACTIONS(1827), - [anon_sym_nil] = ACTIONS(1827), - [sym_atom_] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1827), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_COMMA] = ACTIONS(1827), - [sym_keyword_] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_PERCENT] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1827), - [anon_sym_not] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1827), - [anon_sym_LT_DASH] = ACTIONS(1827), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1827), - [anon_sym_when] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1827), - [anon_sym_EQ_GT] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_or] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1827), - [anon_sym_and] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_EQ_TILDE] = ACTIONS(1827), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), - [anon_sym_LT_EQ] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(1827), - [anon_sym_PIPE_GT] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_GT_GT] = ACTIONS(1827), - [anon_sym_LT_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_PIPE_GT] = ACTIONS(1827), - [anon_sym_in] = ACTIONS(1827), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1827), - [anon_sym_SLASH_SLASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1827), - [anon_sym_LT_GT] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_STAR_STAR] = ACTIONS(1827), - [anon_sym_DASH_GT] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_fn] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_LBRACK2] = ACTIONS(1825), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1827), - [sym_semgrep_metavariable] = ACTIONS(1827), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1827), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1827), - [sym_newline_before_do] = ACTIONS(1825), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1825), - [sym_not_in] = ACTIONS(1825), - [sym_quoted_atom_start] = ACTIONS(1825), - }, - [1328] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1329] = { + [1318] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1835), - [aux_sym_identifier_token1] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1835), - [sym_alias] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_char] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1835), - [anon_sym_false] = ACTIONS(1835), - [anon_sym_nil] = ACTIONS(1835), - [sym_atom_] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1835), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [sym_keyword_] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(1835), - [anon_sym_PERCENT] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1835), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_LT_DASH] = ACTIONS(1835), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1835), - [anon_sym_when] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1835), - [anon_sym_EQ_GT] = ACTIONS(1835), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_or] = ACTIONS(1835), - [anon_sym_AMP_AMP] = ACTIONS(1835), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1835), - [anon_sym_and] = ACTIONS(1835), - [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_EQ_TILDE] = ACTIONS(1835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1835), - [anon_sym_LT_EQ] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(1835), - [anon_sym_PIPE_GT] = ACTIONS(1835), - [anon_sym_LT_LT_LT] = ACTIONS(1835), - [anon_sym_GT_GT_GT] = ACTIONS(1835), - [anon_sym_LT_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_PIPE_GT] = ACTIONS(1835), - [anon_sym_in] = ACTIONS(1835), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1835), - [anon_sym_SLASH_SLASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1835), - [anon_sym_LT_GT] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_STAR_STAR] = ACTIONS(1835), - [anon_sym_DASH_GT] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_LBRACK2] = ACTIONS(1833), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1835), - [sym_semgrep_metavariable] = ACTIONS(1835), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1835), - [sym_newline_before_do] = ACTIONS(1833), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1833), - [sym_not_in] = ACTIONS(1833), - [sym_quoted_atom_start] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1859), + [aux_sym_identifier_token1] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1859), + [sym_alias] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1859), + [sym_char] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [anon_sym_nil] = ACTIONS(1859), + [sym_atom_] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1859), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [sym_keyword_] = ACTIONS(1859), + [anon_sym_LT_LT] = ACTIONS(1859), + [anon_sym_GT_GT] = ACTIONS(1859), + [anon_sym_PERCENT] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1859), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_LT_DASH] = ACTIONS(1859), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1859), + [anon_sym_when] = ACTIONS(1859), + [anon_sym_COLON_COLON] = ACTIONS(1859), + [anon_sym_EQ_GT] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_or] = ACTIONS(1859), + [anon_sym_AMP_AMP] = ACTIONS(1859), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1859), + [anon_sym_and] = ACTIONS(1859), + [anon_sym_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ] = ACTIONS(1859), + [anon_sym_EQ_TILDE] = ACTIONS(1859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1859), + [anon_sym_GT_EQ] = ACTIONS(1859), + [anon_sym_PIPE_GT] = ACTIONS(1859), + [anon_sym_LT_LT_LT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1859), + [anon_sym_LT_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_PIPE_GT] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1859), + [anon_sym_SLASH_SLASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1859), + [anon_sym_LT_GT] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_STAR_STAR] = ACTIONS(1859), + [anon_sym_DASH_GT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_fn] = ACTIONS(1859), + [anon_sym_LPAREN2] = ACTIONS(1857), + [anon_sym_LBRACK2] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1859), + [sym_semgrep_metavariable] = ACTIONS(1859), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1859), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1859), + [sym_newline_before_do] = ACTIONS(1857), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1857), + [sym_not_in] = ACTIONS(1857), + [sym_quoted_atom_start] = ACTIONS(1857), }, - [1330] = { + [1319] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1839), - [aux_sym_identifier_token1] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1839), - [sym_alias] = ACTIONS(1839), - [sym_integer] = ACTIONS(1839), - [sym_float] = ACTIONS(1839), - [sym_char] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [anon_sym_nil] = ACTIONS(1839), - [sym_atom_] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1839), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_SLASH] = ACTIONS(1839), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [sym_keyword_] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1839), - [anon_sym_PERCENT] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1839), - [anon_sym_not] = ACTIONS(1839), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_LT_DASH] = ACTIONS(1839), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1839), - [anon_sym_when] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_or] = ACTIONS(1839), - [anon_sym_AMP_AMP] = ACTIONS(1839), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1839), - [anon_sym_and] = ACTIONS(1839), - [anon_sym_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1839), - [anon_sym_EQ_TILDE] = ACTIONS(1839), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), - [anon_sym_LT_EQ] = ACTIONS(1839), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_PIPE_GT] = ACTIONS(1839), - [anon_sym_LT_LT_LT] = ACTIONS(1839), - [anon_sym_GT_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_PIPE_GT] = ACTIONS(1839), - [anon_sym_in] = ACTIONS(1839), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1839), - [anon_sym_SLASH_SLASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1839), - [anon_sym_LT_GT] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_STAR_STAR] = ACTIONS(1839), - [anon_sym_DASH_GT] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_LBRACK2] = ACTIONS(1837), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1839), - [sym_semgrep_metavariable] = ACTIONS(1839), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1839), - [sym_newline_before_do] = ACTIONS(1837), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1837), - [sym_not_in] = ACTIONS(1837), - [sym_quoted_atom_start] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1863), + [aux_sym_identifier_token1] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [sym_alias] = ACTIONS(1863), + [sym_integer] = ACTIONS(1863), + [sym_float] = ACTIONS(1863), + [sym_char] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [anon_sym_nil] = ACTIONS(1863), + [sym_atom_] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1863), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_GT] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [sym_keyword_] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(1863), + [anon_sym_GT_GT] = ACTIONS(1863), + [anon_sym_PERCENT] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1863), + [anon_sym_not] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1863), + [anon_sym_LT_DASH] = ACTIONS(1863), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1863), + [anon_sym_when] = ACTIONS(1863), + [anon_sym_COLON_COLON] = ACTIONS(1863), + [anon_sym_EQ_GT] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_or] = ACTIONS(1863), + [anon_sym_AMP_AMP] = ACTIONS(1863), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1863), + [anon_sym_and] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ] = ACTIONS(1863), + [anon_sym_EQ_TILDE] = ACTIONS(1863), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1863), + [anon_sym_GT_EQ] = ACTIONS(1863), + [anon_sym_PIPE_GT] = ACTIONS(1863), + [anon_sym_LT_LT_LT] = ACTIONS(1863), + [anon_sym_GT_GT_GT] = ACTIONS(1863), + [anon_sym_LT_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_PIPE_GT] = ACTIONS(1863), + [anon_sym_in] = ACTIONS(1863), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1863), + [anon_sym_SLASH_SLASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1863), + [anon_sym_LT_GT] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_STAR_STAR] = ACTIONS(1863), + [anon_sym_DASH_GT] = ACTIONS(1863), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_fn] = ACTIONS(1863), + [anon_sym_LPAREN2] = ACTIONS(1861), + [anon_sym_LBRACK2] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1863), + [sym_semgrep_metavariable] = ACTIONS(1863), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1863), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1863), + [sym_newline_before_do] = ACTIONS(1861), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1861), + [sym_not_in] = ACTIONS(1861), + [sym_quoted_atom_start] = ACTIONS(1861), }, - [1331] = { + [1320] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1843), - [aux_sym_identifier_token1] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), - [sym_alias] = ACTIONS(1843), - [sym_integer] = ACTIONS(1843), - [sym_float] = ACTIONS(1843), - [sym_char] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1843), - [anon_sym_false] = ACTIONS(1843), - [anon_sym_nil] = ACTIONS(1843), - [sym_atom_] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1843), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_SLASH] = ACTIONS(1843), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [sym_keyword_] = ACTIONS(1843), - [anon_sym_LT_LT] = ACTIONS(1843), - [anon_sym_PERCENT] = ACTIONS(1843), - [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_CARET] = ACTIONS(1843), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), - [anon_sym_not] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_LT_DASH] = ACTIONS(1843), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), - [anon_sym_when] = ACTIONS(1843), - [anon_sym_COLON_COLON] = ACTIONS(1843), - [anon_sym_EQ_GT] = ACTIONS(1843), - [anon_sym_EQ] = ACTIONS(1843), - [anon_sym_PIPE_PIPE] = ACTIONS(1843), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), - [anon_sym_or] = ACTIONS(1843), - [anon_sym_AMP_AMP] = ACTIONS(1843), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), - [anon_sym_and] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ] = ACTIONS(1843), - [anon_sym_EQ_TILDE] = ACTIONS(1843), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), - [anon_sym_LT_EQ] = ACTIONS(1843), - [anon_sym_GT_EQ] = ACTIONS(1843), - [anon_sym_PIPE_GT] = ACTIONS(1843), - [anon_sym_LT_LT_LT] = ACTIONS(1843), - [anon_sym_GT_GT_GT] = ACTIONS(1843), - [anon_sym_LT_LT_TILDE] = ACTIONS(1843), - [anon_sym_TILDE_GT_GT] = ACTIONS(1843), - [anon_sym_LT_TILDE] = ACTIONS(1843), - [anon_sym_TILDE_GT] = ACTIONS(1843), - [anon_sym_LT_TILDE_GT] = ACTIONS(1843), - [anon_sym_LT_PIPE_GT] = ACTIONS(1843), - [anon_sym_in] = ACTIONS(1843), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), - [anon_sym_SLASH_SLASH] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), - [anon_sym_LT_GT] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_STAR_STAR] = ACTIONS(1843), - [anon_sym_DASH_GT] = ACTIONS(1843), - [anon_sym_DOT] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_fn] = ACTIONS(1843), - [anon_sym_LPAREN2] = ACTIONS(1841), - [anon_sym_LBRACK2] = ACTIONS(1841), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1843), - [sym_semgrep_metavariable] = ACTIONS(1843), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1843), - [sym_newline_before_do] = ACTIONS(1841), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1841), - [sym_not_in] = ACTIONS(1841), - [sym_quoted_atom_start] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1867), + [aux_sym_identifier_token1] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1867), + [sym_alias] = ACTIONS(1867), + [sym_integer] = ACTIONS(1867), + [sym_float] = ACTIONS(1867), + [sym_char] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [anon_sym_nil] = ACTIONS(1867), + [sym_atom_] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1867), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_GT] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [sym_keyword_] = ACTIONS(1867), + [anon_sym_LT_LT] = ACTIONS(1867), + [anon_sym_GT_GT] = ACTIONS(1867), + [anon_sym_PERCENT] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(1867), + [anon_sym_AT] = ACTIONS(1867), + [anon_sym_LT_DASH] = ACTIONS(1867), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1867), + [anon_sym_when] = ACTIONS(1867), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_EQ_GT] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_or] = ACTIONS(1867), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1867), + [anon_sym_and] = ACTIONS(1867), + [anon_sym_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ] = ACTIONS(1867), + [anon_sym_EQ_TILDE] = ACTIONS(1867), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1867), + [anon_sym_LT_EQ] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1867), + [anon_sym_PIPE_GT] = ACTIONS(1867), + [anon_sym_LT_LT_LT] = ACTIONS(1867), + [anon_sym_GT_GT_GT] = ACTIONS(1867), + [anon_sym_LT_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_PIPE_GT] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1867), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1867), + [anon_sym_SLASH_SLASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1867), + [anon_sym_LT_GT] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_STAR_STAR] = ACTIONS(1867), + [anon_sym_DASH_GT] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_fn] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(1865), + [anon_sym_LBRACK2] = ACTIONS(1865), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1867), + [sym_semgrep_metavariable] = ACTIONS(1867), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1867), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1867), + [sym_newline_before_do] = ACTIONS(1865), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1865), + [sym_not_in] = ACTIONS(1865), + [sym_quoted_atom_start] = ACTIONS(1865), }, - [1332] = { + [1321] = { [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1847), [aux_sym_identifier_token1] = ACTIONS(1847), @@ -188567,6 +188753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1847), [sym_semgrep_metavariable] = ACTIONS(1847), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1847), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1847), [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1847), [sym_newline_before_do] = ACTIONS(1845), @@ -188576,7 +188763,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1845), [sym_quoted_atom_start] = ACTIONS(1845), }, - [1333] = { + [1322] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1855), + [aux_sym_identifier_token1] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), + [sym_alias] = ACTIONS(1855), + [sym_integer] = ACTIONS(1855), + [sym_float] = ACTIONS(1855), + [sym_char] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [anon_sym_nil] = ACTIONS(1855), + [sym_atom_] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1855), + [anon_sym_SQUOTE] = ACTIONS(1855), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_GT] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_SLASH] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1855), + [anon_sym_COMMA] = ACTIONS(1855), + [sym_keyword_] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1855), + [anon_sym_PERCENT] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1855), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), + [anon_sym_not] = ACTIONS(1855), + [anon_sym_AT] = ACTIONS(1855), + [anon_sym_LT_DASH] = ACTIONS(1855), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), + [anon_sym_when] = ACTIONS(1855), + [anon_sym_COLON_COLON] = ACTIONS(1855), + [anon_sym_EQ_GT] = ACTIONS(1855), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_PIPE_PIPE] = ACTIONS(1855), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), + [anon_sym_or] = ACTIONS(1855), + [anon_sym_AMP_AMP] = ACTIONS(1855), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), + [anon_sym_and] = ACTIONS(1855), + [anon_sym_EQ_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ] = ACTIONS(1855), + [anon_sym_EQ_TILDE] = ACTIONS(1855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), + [anon_sym_LT_EQ] = ACTIONS(1855), + [anon_sym_GT_EQ] = ACTIONS(1855), + [anon_sym_PIPE_GT] = ACTIONS(1855), + [anon_sym_LT_LT_LT] = ACTIONS(1855), + [anon_sym_GT_GT_GT] = ACTIONS(1855), + [anon_sym_LT_LT_TILDE] = ACTIONS(1855), + [anon_sym_TILDE_GT_GT] = ACTIONS(1855), + [anon_sym_LT_TILDE] = ACTIONS(1855), + [anon_sym_TILDE_GT] = ACTIONS(1855), + [anon_sym_LT_TILDE_GT] = ACTIONS(1855), + [anon_sym_LT_PIPE_GT] = ACTIONS(1855), + [anon_sym_in] = ACTIONS(1855), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), + [anon_sym_SLASH_SLASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), + [anon_sym_LT_GT] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_STAR_STAR] = ACTIONS(1855), + [anon_sym_DASH_GT] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_fn] = ACTIONS(1855), + [anon_sym_LPAREN2] = ACTIONS(1853), + [anon_sym_LBRACK2] = ACTIONS(1853), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1855), + [sym_semgrep_metavariable] = ACTIONS(1855), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1855), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1855), + [sym_newline_before_do] = ACTIONS(1853), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1853), + [sym_not_in] = ACTIONS(1853), + [sym_quoted_atom_start] = ACTIONS(1853), + }, + [1323] = { [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1851), [aux_sym_identifier_token1] = ACTIONS(1851), @@ -188660,6 +188941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1851), [sym_semgrep_metavariable] = ACTIONS(1851), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1851), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1851), [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1851), [sym_newline_before_do] = ACTIONS(1849), @@ -188669,2332 +188951,2357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1849), [sym_quoted_atom_start] = ACTIONS(1849), }, - [1334] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), - }, - [1335] = { + [1324] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1859), + [aux_sym_identifier_token1] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1859), + [sym_alias] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1859), + [sym_char] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [anon_sym_nil] = ACTIONS(1859), + [sym_atom_] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1859), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [sym_keyword_] = ACTIONS(1859), + [anon_sym_LT_LT] = ACTIONS(1859), + [anon_sym_PERCENT] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1859), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_LT_DASH] = ACTIONS(1859), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1859), + [anon_sym_when] = ACTIONS(1859), + [anon_sym_COLON_COLON] = ACTIONS(1859), + [anon_sym_EQ_GT] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1859), + [anon_sym_or] = ACTIONS(1859), + [anon_sym_AMP_AMP] = ACTIONS(1859), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1859), + [anon_sym_and] = ACTIONS(1859), + [anon_sym_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ] = ACTIONS(1859), + [anon_sym_EQ_TILDE] = ACTIONS(1859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1859), + [anon_sym_GT_EQ] = ACTIONS(1859), + [anon_sym_PIPE_GT] = ACTIONS(1859), + [anon_sym_LT_LT_LT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1859), + [anon_sym_LT_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE] = ACTIONS(1859), + [anon_sym_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_TILDE_GT] = ACTIONS(1859), + [anon_sym_LT_PIPE_GT] = ACTIONS(1859), + [anon_sym_in] = ACTIONS(1859), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1859), + [anon_sym_SLASH_SLASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1859), + [anon_sym_LT_GT] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_STAR_STAR] = ACTIONS(1859), + [anon_sym_DASH_GT] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_fn] = ACTIONS(1859), + [anon_sym_LPAREN2] = ACTIONS(1857), + [anon_sym_LBRACK2] = ACTIONS(1857), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1859), + [sym_semgrep_metavariable] = ACTIONS(1859), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1859), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1859), + [sym_newline_before_do] = ACTIONS(1857), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1857), + [sym_not_in] = ACTIONS(1857), + [sym_quoted_atom_start] = ACTIONS(1857), }, - [1336] = { + [1325] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), }, - [1337] = { + [1326] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1823), - [aux_sym_identifier_token1] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [sym_alias] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1823), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_nil] = ACTIONS(1823), - [sym_atom_] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1823), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1823), - [sym_keyword_] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1823), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1823), - [anon_sym_when] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_EQ_GT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_or] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1823), - [anon_sym_and] = ACTIONS(1823), - [anon_sym_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_EQ_TILDE] = ACTIONS(1823), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1823), - [anon_sym_GT_EQ] = ACTIONS(1823), - [anon_sym_PIPE_GT] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [anon_sym_GT_GT_GT] = ACTIONS(1823), - [anon_sym_LT_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE] = ACTIONS(1823), - [anon_sym_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_TILDE_GT] = ACTIONS(1823), - [anon_sym_LT_PIPE_GT] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1823), - [anon_sym_LT_GT] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_STAR_STAR] = ACTIONS(1823), - [anon_sym_DASH_GT] = ACTIONS(1823), - [anon_sym_DOT] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_LPAREN2] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1823), - [sym_semgrep_metavariable] = ACTIONS(1823), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1823), - [sym_newline_before_do] = ACTIONS(1821), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1821), - [sym_not_in] = ACTIONS(1821), - [sym_quoted_atom_start] = ACTIONS(1821), + [anon_sym_LPAREN] = ACTIONS(1863), + [aux_sym_identifier_token1] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [sym_alias] = ACTIONS(1863), + [sym_integer] = ACTIONS(1863), + [sym_float] = ACTIONS(1863), + [sym_char] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [anon_sym_nil] = ACTIONS(1863), + [sym_atom_] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE] = ACTIONS(1863), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1863), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_GT] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [sym_keyword_] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(1863), + [anon_sym_PERCENT] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1863), + [anon_sym_not] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1863), + [anon_sym_LT_DASH] = ACTIONS(1863), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1863), + [anon_sym_when] = ACTIONS(1863), + [anon_sym_COLON_COLON] = ACTIONS(1863), + [anon_sym_EQ_GT] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_or] = ACTIONS(1863), + [anon_sym_AMP_AMP] = ACTIONS(1863), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1863), + [anon_sym_and] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ] = ACTIONS(1863), + [anon_sym_EQ_TILDE] = ACTIONS(1863), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1863), + [anon_sym_GT_EQ] = ACTIONS(1863), + [anon_sym_PIPE_GT] = ACTIONS(1863), + [anon_sym_LT_LT_LT] = ACTIONS(1863), + [anon_sym_GT_GT_GT] = ACTIONS(1863), + [anon_sym_LT_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE] = ACTIONS(1863), + [anon_sym_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_TILDE_GT] = ACTIONS(1863), + [anon_sym_LT_PIPE_GT] = ACTIONS(1863), + [anon_sym_in] = ACTIONS(1863), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1863), + [anon_sym_SLASH_SLASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1863), + [anon_sym_LT_GT] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_STAR_STAR] = ACTIONS(1863), + [anon_sym_DASH_GT] = ACTIONS(1863), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_fn] = ACTIONS(1863), + [anon_sym_LPAREN2] = ACTIONS(1861), + [anon_sym_LBRACK2] = ACTIONS(1861), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1863), + [sym_semgrep_metavariable] = ACTIONS(1863), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1863), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1863), + [sym_newline_before_do] = ACTIONS(1861), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1861), + [sym_not_in] = ACTIONS(1861), + [sym_quoted_atom_start] = ACTIONS(1861), }, - [1338] = { + [1327] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1339] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1857), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1867), + [aux_sym_identifier_token1] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1867), + [sym_alias] = ACTIONS(1867), + [sym_integer] = ACTIONS(1867), + [sym_float] = ACTIONS(1867), + [sym_char] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [anon_sym_nil] = ACTIONS(1867), + [sym_atom_] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE] = ACTIONS(1867), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1867), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_GT] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [sym_keyword_] = ACTIONS(1867), + [anon_sym_LT_LT] = ACTIONS(1867), + [anon_sym_PERCENT] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(1867), + [anon_sym_AT] = ACTIONS(1867), + [anon_sym_LT_DASH] = ACTIONS(1867), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1867), + [anon_sym_when] = ACTIONS(1867), + [anon_sym_COLON_COLON] = ACTIONS(1867), + [anon_sym_EQ_GT] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_or] = ACTIONS(1867), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1867), + [anon_sym_and] = ACTIONS(1867), + [anon_sym_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ] = ACTIONS(1867), + [anon_sym_EQ_TILDE] = ACTIONS(1867), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1867), + [anon_sym_LT_EQ] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1867), + [anon_sym_PIPE_GT] = ACTIONS(1867), + [anon_sym_LT_LT_LT] = ACTIONS(1867), + [anon_sym_GT_GT_GT] = ACTIONS(1867), + [anon_sym_LT_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE] = ACTIONS(1867), + [anon_sym_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_TILDE_GT] = ACTIONS(1867), + [anon_sym_LT_PIPE_GT] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1867), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1867), + [anon_sym_SLASH_SLASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1867), + [anon_sym_LT_GT] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_STAR_STAR] = ACTIONS(1867), + [anon_sym_DASH_GT] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_fn] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(1865), + [anon_sym_LBRACK2] = ACTIONS(1865), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1867), + [sym_semgrep_metavariable] = ACTIONS(1867), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1867), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1867), + [sym_newline_before_do] = ACTIONS(1865), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1865), + [sym_not_in] = ACTIONS(1865), + [sym_quoted_atom_start] = ACTIONS(1865), }, - [1340] = { + [1328] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1831), - [aux_sym_identifier_token1] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [sym_alias] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1831), - [sym_char] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_nil] = ACTIONS(1831), - [sym_atom_] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1831), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [sym_keyword_] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_LT_DASH] = ACTIONS(1831), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_or] = ACTIONS(1831), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1831), - [anon_sym_and] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_EQ_TILDE] = ACTIONS(1831), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_PIPE_GT] = ACTIONS(1831), - [anon_sym_LT_LT_LT] = ACTIONS(1831), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE] = ACTIONS(1831), - [anon_sym_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_TILDE_GT] = ACTIONS(1831), - [anon_sym_LT_PIPE_GT] = ACTIONS(1831), - [anon_sym_in] = ACTIONS(1831), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1831), - [anon_sym_LT_GT] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_DASH_GT] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1831), - [anon_sym_do] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(1829), - [anon_sym_LBRACK2] = ACTIONS(1829), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1831), - [sym_semgrep_metavariable] = ACTIONS(1831), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1831), - [sym_newline_before_do] = ACTIONS(1829), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1829), - [sym_not_in] = ACTIONS(1829), - [sym_quoted_atom_start] = ACTIONS(1829), - }, - [1341] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, - [1342] = { + [1329] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [aux_sym_metavariable_keyword_token1] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), }, - [1343] = { + [1330] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), - }, - [1344] = { - [aux_sym_terminator_token1] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_RPAREN] = ACTIONS(1855), - [aux_sym_identifier_token1] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), - [sym_alias] = ACTIONS(1855), - [sym_integer] = ACTIONS(1855), - [sym_float] = ACTIONS(1855), - [sym_char] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_nil] = ACTIONS(1855), - [sym_atom_] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [sym_keyword_] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), - [anon_sym_not] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_LT_DASH] = ACTIONS(1855), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), - [anon_sym_when] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_or] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), - [anon_sym_and] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_EQ_TILDE] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_PIPE_GT] = ACTIONS(1855), - [anon_sym_LT_LT_LT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_PIPE_GT] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), - [anon_sym_SLASH_SLASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), - [anon_sym_LT_GT] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_fn] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1855), - [sym_semgrep_metavariable] = ACTIONS(1855), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1853), - [sym_not_in] = ACTIONS(1853), - [sym_quoted_atom_start] = ACTIONS(1853), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), }, - [1345] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [1331] = { + [ts_builtin_sym_end] = ACTIONS(1835), + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, - [1346] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [1332] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, - [1347] = { + [1333] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1855), - [aux_sym_identifier_token1] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), - [sym_alias] = ACTIONS(1855), - [sym_integer] = ACTIONS(1855), - [sym_float] = ACTIONS(1855), - [sym_char] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_nil] = ACTIONS(1855), - [sym_atom_] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [sym_keyword_] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_GT_GT] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), - [anon_sym_not] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_LT_DASH] = ACTIONS(1855), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), - [anon_sym_when] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_or] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), - [anon_sym_and] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_EQ_TILDE] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_PIPE_GT] = ACTIONS(1855), - [anon_sym_LT_LT_LT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_PIPE_GT] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), - [anon_sym_SLASH_SLASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), - [anon_sym_LT_GT] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_fn] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1334] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1335] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), + }, + [1336] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1855), - [sym_semgrep_metavariable] = ACTIONS(1855), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), - [sym_newline_before_do] = ACTIONS(1853), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1853), - [sym_not_in] = ACTIONS(1853), - [sym_quoted_atom_start] = ACTIONS(1853), - }, - [1348] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1857), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), }, - [1349] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [aux_sym_terminator_token1] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1855), - [aux_sym_identifier_token1] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), - [sym_alias] = ACTIONS(1855), - [sym_integer] = ACTIONS(1855), - [sym_float] = ACTIONS(1855), - [sym_char] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_nil] = ACTIONS(1855), - [sym_atom_] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [sym_keyword_] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), - [anon_sym_not] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_LT_DASH] = ACTIONS(1855), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), - [anon_sym_when] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_or] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), - [anon_sym_and] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_EQ_TILDE] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_PIPE_GT] = ACTIONS(1855), - [anon_sym_LT_LT_LT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_PIPE_GT] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), - [anon_sym_SLASH_SLASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), - [anon_sym_LT_GT] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_fn] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(1853), + [1337] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1855), - [sym_semgrep_metavariable] = ACTIONS(1855), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1853), - [sym_not_in] = ACTIONS(1853), - [sym_quoted_atom_start] = ACTIONS(1853), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), }, - [1350] = { - [aux_sym_terminator_token1] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1855), - [aux_sym_identifier_token1] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), - [sym_alias] = ACTIONS(1855), - [sym_integer] = ACTIONS(1855), - [sym_float] = ACTIONS(1855), - [sym_char] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_nil] = ACTIONS(1855), - [sym_atom_] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [sym_keyword_] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), - [anon_sym_not] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_LT_DASH] = ACTIONS(1855), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), - [anon_sym_when] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_or] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), - [anon_sym_and] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_EQ_TILDE] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_PIPE_GT] = ACTIONS(1855), - [anon_sym_LT_LT_LT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_PIPE_GT] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), - [anon_sym_SLASH_SLASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), - [anon_sym_LT_GT] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_end] = ACTIONS(1855), - [anon_sym_fn] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(1853), + [1338] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), + }, + [1339] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1855), - [sym_semgrep_metavariable] = ACTIONS(1855), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1853), - [sym_not_in] = ACTIONS(1853), - [sym_quoted_atom_start] = ACTIONS(1853), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), }, - [1351] = { + [1340] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), }, - [1352] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1857), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [1341] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), }, - [1353] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [1342] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1873), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_end] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, - [1354] = { - [aux_sym_terminator_token1] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_end] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [1343] = { + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1873), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, - [1355] = { + [1344] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1827), - [aux_sym_identifier_token1] = ACTIONS(1827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1827), - [sym_alias] = ACTIONS(1827), - [sym_integer] = ACTIONS(1827), - [sym_float] = ACTIONS(1827), - [sym_char] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1827), - [anon_sym_false] = ACTIONS(1827), - [anon_sym_nil] = ACTIONS(1827), - [sym_atom_] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE] = ACTIONS(1827), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1827), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_COMMA] = ACTIONS(1827), - [sym_keyword_] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1827), - [anon_sym_PERCENT] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1827), - [anon_sym_not] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1827), - [anon_sym_LT_DASH] = ACTIONS(1827), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1827), - [anon_sym_when] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1827), - [anon_sym_EQ_GT] = ACTIONS(1827), - [anon_sym_EQ] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_or] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1827), - [anon_sym_and] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_EQ_TILDE] = ACTIONS(1827), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), - [anon_sym_LT_EQ] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(1827), - [anon_sym_PIPE_GT] = ACTIONS(1827), - [anon_sym_LT_LT_LT] = ACTIONS(1827), - [anon_sym_GT_GT_GT] = ACTIONS(1827), - [anon_sym_LT_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE] = ACTIONS(1827), - [anon_sym_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_TILDE_GT] = ACTIONS(1827), - [anon_sym_LT_PIPE_GT] = ACTIONS(1827), - [anon_sym_in] = ACTIONS(1827), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1827), - [anon_sym_SLASH_SLASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1827), - [anon_sym_LT_GT] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_STAR_STAR] = ACTIONS(1827), - [anon_sym_DASH_GT] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_fn] = ACTIONS(1827), - [anon_sym_LPAREN2] = ACTIONS(1825), - [anon_sym_LBRACK2] = ACTIONS(1825), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1827), - [sym_semgrep_metavariable] = ACTIONS(1827), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1827), - [sym_newline_before_do] = ACTIONS(1825), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1825), - [sym_not_in] = ACTIONS(1825), - [sym_quoted_atom_start] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1873), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, - [1356] = { + [1345] = { + [ts_builtin_sym_end] = ACTIONS(1835), + [aux_sym_terminator_token1] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1873), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1346] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1835), - [aux_sym_identifier_token1] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1835), - [sym_alias] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1835), - [sym_char] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1835), - [anon_sym_false] = ACTIONS(1835), - [anon_sym_nil] = ACTIONS(1835), - [sym_atom_] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1835), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [sym_keyword_] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(1835), - [anon_sym_GT_GT] = ACTIONS(1835), - [anon_sym_PERCENT] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1835), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_LT_DASH] = ACTIONS(1835), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1835), - [anon_sym_when] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1835), - [anon_sym_EQ_GT] = ACTIONS(1835), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_or] = ACTIONS(1835), - [anon_sym_AMP_AMP] = ACTIONS(1835), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1835), - [anon_sym_and] = ACTIONS(1835), - [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_EQ_TILDE] = ACTIONS(1835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1835), - [anon_sym_LT_EQ] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(1835), - [anon_sym_PIPE_GT] = ACTIONS(1835), - [anon_sym_LT_LT_LT] = ACTIONS(1835), - [anon_sym_GT_GT_GT] = ACTIONS(1835), - [anon_sym_LT_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE] = ACTIONS(1835), - [anon_sym_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_TILDE_GT] = ACTIONS(1835), - [anon_sym_LT_PIPE_GT] = ACTIONS(1835), - [anon_sym_in] = ACTIONS(1835), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1835), - [anon_sym_SLASH_SLASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1835), - [anon_sym_LT_GT] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_STAR_STAR] = ACTIONS(1835), - [anon_sym_DASH_GT] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_LPAREN2] = ACTIONS(1833), - [anon_sym_LBRACK2] = ACTIONS(1833), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1835), - [sym_semgrep_metavariable] = ACTIONS(1835), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1835), - [sym_newline_before_do] = ACTIONS(1833), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1833), - [sym_not_in] = ACTIONS(1833), - [sym_quoted_atom_start] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1843), + [aux_sym_identifier_token1] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_nil] = ACTIONS(1843), + [sym_atom_] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1843), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [sym_keyword_] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_LT_DASH] = ACTIONS(1843), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1843), + [anon_sym_when] = ACTIONS(1843), + [anon_sym_COLON_COLON] = ACTIONS(1843), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_EQ] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_or] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1843), + [anon_sym_and] = ACTIONS(1843), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_EQ_TILDE] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PIPE_GT] = ACTIONS(1843), + [anon_sym_LT_LT_LT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE] = ACTIONS(1843), + [anon_sym_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_TILDE_GT] = ACTIONS(1843), + [anon_sym_LT_PIPE_GT] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1843), + [anon_sym_LT_GT] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_DASH_GT] = ACTIONS(1843), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_LBRACK2] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1843), + [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1843), + [sym_newline_before_do] = ACTIONS(1841), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1841), + [sym_not_in] = ACTIONS(1841), + [sym_quoted_atom_start] = ACTIONS(1841), }, - [1357] = { + [1347] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_do] = ACTIONS(1815), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1837), + [sym_newline_before_do] = ACTIONS(1835), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), }, - [1358] = { + [1348] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1839), - [aux_sym_identifier_token1] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1839), - [sym_alias] = ACTIONS(1839), - [sym_integer] = ACTIONS(1839), - [sym_float] = ACTIONS(1839), - [sym_char] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [anon_sym_nil] = ACTIONS(1839), - [sym_atom_] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1839), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_SLASH] = ACTIONS(1839), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [sym_keyword_] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1839), - [anon_sym_GT_GT] = ACTIONS(1839), - [anon_sym_PERCENT] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1839), - [anon_sym_not] = ACTIONS(1839), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_LT_DASH] = ACTIONS(1839), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1839), - [anon_sym_when] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1839), - [anon_sym_EQ_GT] = ACTIONS(1839), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_or] = ACTIONS(1839), - [anon_sym_AMP_AMP] = ACTIONS(1839), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1839), - [anon_sym_and] = ACTIONS(1839), - [anon_sym_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1839), - [anon_sym_EQ_TILDE] = ACTIONS(1839), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), - [anon_sym_LT_EQ] = ACTIONS(1839), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_PIPE_GT] = ACTIONS(1839), - [anon_sym_LT_LT_LT] = ACTIONS(1839), - [anon_sym_GT_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE] = ACTIONS(1839), - [anon_sym_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_TILDE_GT] = ACTIONS(1839), - [anon_sym_LT_PIPE_GT] = ACTIONS(1839), - [anon_sym_in] = ACTIONS(1839), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1839), - [anon_sym_SLASH_SLASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1839), - [anon_sym_LT_GT] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_STAR_STAR] = ACTIONS(1839), - [anon_sym_DASH_GT] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(1837), - [anon_sym_LBRACK2] = ACTIONS(1837), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1839), - [sym_semgrep_metavariable] = ACTIONS(1839), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1839), - [sym_newline_before_do] = ACTIONS(1837), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1837), - [sym_not_in] = ACTIONS(1837), - [sym_quoted_atom_start] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1871), + [aux_sym_identifier_token1] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_nil] = ACTIONS(1871), + [sym_atom_] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1871), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [sym_keyword_] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1871), + [anon_sym_when] = ACTIONS(1871), + [anon_sym_COLON_COLON] = ACTIONS(1871), + [anon_sym_EQ_GT] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1871), + [anon_sym_or] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1871), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1871), + [anon_sym_and] = ACTIONS(1871), + [anon_sym_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_EQ_TILDE] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PIPE_GT] = ACTIONS(1871), + [anon_sym_LT_LT_LT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1871), + [anon_sym_LT_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE] = ACTIONS(1871), + [anon_sym_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_TILDE_GT] = ACTIONS(1871), + [anon_sym_LT_PIPE_GT] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1871), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1871), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1871), + [anon_sym_LT_GT] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_STAR_STAR] = ACTIONS(1871), + [anon_sym_DASH_GT] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_LPAREN2] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1871), + [sym_semgrep_metavariable] = ACTIONS(1871), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1871), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1871), + [sym_newline_before_do] = ACTIONS(1869), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1869), + [sym_not_in] = ACTIONS(1869), + [sym_quoted_atom_start] = ACTIONS(1869), }, - [1359] = { + [1349] = { [aux_sym_terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1843), [aux_sym_identifier_token1] = ACTIONS(1843), @@ -191021,7 +191328,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1843), [sym_keyword_] = ACTIONS(1843), [anon_sym_LT_LT] = ACTIONS(1843), - [anon_sym_GT_GT] = ACTIONS(1843), [anon_sym_PERCENT] = ACTIONS(1843), [anon_sym_DOT_DOT] = ACTIONS(1843), [anon_sym_AMP] = ACTIONS(1843), @@ -191079,7 +191385,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [anon_sym_COLON] = ACTIONS(1843), [sym_semgrep_metavariable] = ACTIONS(1843), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1843), [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1843), [sym_newline_before_do] = ACTIONS(1841), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), @@ -191087,1728 +191395,2602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_not_in] = ACTIONS(1841), [sym_quoted_atom_start] = ACTIONS(1841), }, - [1360] = { + [1350] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1847), - [aux_sym_identifier_token1] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1847), - [sym_alias] = ACTIONS(1847), - [sym_integer] = ACTIONS(1847), - [sym_float] = ACTIONS(1847), - [sym_char] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_nil] = ACTIONS(1847), - [sym_atom_] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [anon_sym_SQUOTE] = ACTIONS(1847), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1847), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1847), - [anon_sym_GT] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1847), - [sym_keyword_] = ACTIONS(1847), - [anon_sym_LT_LT] = ACTIONS(1847), - [anon_sym_GT_GT] = ACTIONS(1847), - [anon_sym_PERCENT] = ACTIONS(1847), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1847), - [anon_sym_not] = ACTIONS(1847), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_LT_DASH] = ACTIONS(1847), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1847), - [anon_sym_when] = ACTIONS(1847), - [anon_sym_COLON_COLON] = ACTIONS(1847), - [anon_sym_EQ_GT] = ACTIONS(1847), - [anon_sym_EQ] = ACTIONS(1847), - [anon_sym_PIPE_PIPE] = ACTIONS(1847), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1847), - [anon_sym_or] = ACTIONS(1847), - [anon_sym_AMP_AMP] = ACTIONS(1847), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1847), - [anon_sym_and] = ACTIONS(1847), - [anon_sym_EQ_EQ] = ACTIONS(1847), - [anon_sym_BANG_EQ] = ACTIONS(1847), - [anon_sym_EQ_TILDE] = ACTIONS(1847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1847), - [anon_sym_LT_EQ] = ACTIONS(1847), - [anon_sym_GT_EQ] = ACTIONS(1847), - [anon_sym_PIPE_GT] = ACTIONS(1847), - [anon_sym_LT_LT_LT] = ACTIONS(1847), - [anon_sym_GT_GT_GT] = ACTIONS(1847), - [anon_sym_LT_LT_TILDE] = ACTIONS(1847), - [anon_sym_TILDE_GT_GT] = ACTIONS(1847), - [anon_sym_LT_TILDE] = ACTIONS(1847), - [anon_sym_TILDE_GT] = ACTIONS(1847), - [anon_sym_LT_TILDE_GT] = ACTIONS(1847), - [anon_sym_LT_PIPE_GT] = ACTIONS(1847), - [anon_sym_in] = ACTIONS(1847), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1847), - [anon_sym_SLASH_SLASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1847), - [anon_sym_LT_GT] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_STAR_STAR] = ACTIONS(1847), - [anon_sym_DASH_GT] = ACTIONS(1847), - [anon_sym_DOT] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_fn] = ACTIONS(1847), - [anon_sym_LPAREN2] = ACTIONS(1845), - [anon_sym_LBRACK2] = ACTIONS(1845), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1847), - [sym_semgrep_metavariable] = ACTIONS(1847), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1847), - [sym_newline_before_do] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1873), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1351] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1352] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1353] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1354] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1837), + [aux_sym_identifier_token1] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_nil] = ACTIONS(1837), + [sym_atom_] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1837), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [sym_keyword_] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_LT_DASH] = ACTIONS(1837), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1837), + [anon_sym_when] = ACTIONS(1837), + [anon_sym_COLON_COLON] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_or] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1837), + [anon_sym_and] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1837), + [anon_sym_EQ_TILDE] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_PIPE_GT] = ACTIONS(1837), + [anon_sym_LT_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE] = ACTIONS(1837), + [anon_sym_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_TILDE_GT] = ACTIONS(1837), + [anon_sym_LT_PIPE_GT] = ACTIONS(1837), + [anon_sym_in] = ACTIONS(1837), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1837), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_GT] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_DASH_GT] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1837), + [sym_semgrep_metavariable] = ACTIONS(1837), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1837), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1837), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1835), + [sym_not_in] = ACTIONS(1835), + [sym_quoted_atom_start] = ACTIONS(1835), + }, + [1355] = { + [aux_sym_terminator_repeat1] = STATE(1356), + [aux_sym_terminator_token1] = ACTIONS(65), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [sym_keyword_] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_after] = ACTIONS(1877), + [anon_sym_catch] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_end] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_rescue] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1845), - [sym_not_in] = ACTIONS(1845), - [sym_quoted_atom_start] = ACTIONS(1845), + [sym_before_unary_op] = ACTIONS(1879), + [sym_not_in] = ACTIONS(1879), + [sym_quoted_atom_start] = ACTIONS(1879), }, - [1361] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1855), - [aux_sym_identifier_token1] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), - [sym_alias] = ACTIONS(1855), - [sym_integer] = ACTIONS(1855), - [sym_float] = ACTIONS(1855), - [sym_char] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_nil] = ACTIONS(1855), - [sym_atom_] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [sym_keyword_] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), - [anon_sym_not] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_LT_DASH] = ACTIONS(1855), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), - [anon_sym_when] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_or] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), - [anon_sym_and] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_EQ_TILDE] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_PIPE_GT] = ACTIONS(1855), - [anon_sym_LT_LT_LT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_PIPE_GT] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), - [anon_sym_SLASH_SLASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), - [anon_sym_LT_GT] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_fn] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1855), - [sym_semgrep_metavariable] = ACTIONS(1855), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1855), - [sym_newline_before_do] = ACTIONS(1853), + [1356] = { + [aux_sym_terminator_repeat1] = STATE(1356), + [aux_sym_terminator_token1] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [aux_sym_identifier_token1] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1884), + [sym_alias] = ACTIONS(1884), + [sym_integer] = ACTIONS(1884), + [sym_float] = ACTIONS(1884), + [sym_char] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [anon_sym_nil] = ACTIONS(1884), + [sym_atom_] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1884), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [sym_keyword_] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1884), + [anon_sym_not] = ACTIONS(1884), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_LT_DASH] = ACTIONS(1884), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1884), + [anon_sym_when] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_or] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1884), + [anon_sym_and] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1884), + [anon_sym_EQ_TILDE] = ACTIONS(1884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1884), + [anon_sym_LT_EQ] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1884), + [anon_sym_PIPE_GT] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT_GT] = ACTIONS(1884), + [anon_sym_LT_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_PIPE_GT] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1884), + [anon_sym_LT_GT] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_STAR_STAR] = ACTIONS(1884), + [anon_sym_DASH_GT] = ACTIONS(1884), + [anon_sym_after] = ACTIONS(1884), + [anon_sym_catch] = ACTIONS(1884), + [anon_sym_else] = ACTIONS(1884), + [anon_sym_end] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1884), + [anon_sym_rescue] = ACTIONS(1884), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1884), + [sym_semgrep_metavariable] = ACTIONS(1884), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1884), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1884), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1886), + [sym_not_in] = ACTIONS(1886), + [sym_quoted_atom_start] = ACTIONS(1886), + }, + [1357] = { + [aux_sym_terminator_repeat1] = STATE(1357), + [aux_sym_terminator_token1] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [aux_sym_identifier_token1] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1884), + [sym_alias] = ACTIONS(1884), + [sym_integer] = ACTIONS(1884), + [sym_float] = ACTIONS(1884), + [sym_char] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [anon_sym_nil] = ACTIONS(1884), + [sym_atom_] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1884), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1884), + [anon_sym_not] = ACTIONS(1884), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_LT_DASH] = ACTIONS(1884), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1884), + [anon_sym_when] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_or] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1884), + [anon_sym_and] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1884), + [anon_sym_EQ_TILDE] = ACTIONS(1884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1884), + [anon_sym_LT_EQ] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1884), + [anon_sym_PIPE_GT] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT_GT] = ACTIONS(1884), + [anon_sym_LT_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_PIPE_GT] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1884), + [anon_sym_LT_GT] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_STAR_STAR] = ACTIONS(1884), + [anon_sym_DASH_GT] = ACTIONS(1884), + [anon_sym_after] = ACTIONS(1884), + [anon_sym_catch] = ACTIONS(1884), + [anon_sym_else] = ACTIONS(1884), + [anon_sym_end] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1884), + [anon_sym_rescue] = ACTIONS(1884), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1884), + [sym_semgrep_metavariable] = ACTIONS(1884), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1884), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1884), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1886), + [sym_not_in] = ACTIONS(1886), + [sym_quoted_atom_start] = ACTIONS(1886), + }, + [1358] = { + [aux_sym_terminator_repeat1] = STATE(1357), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_after] = ACTIONS(1877), + [anon_sym_catch] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_end] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_rescue] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1853), - [sym_not_in] = ACTIONS(1853), - [sym_quoted_atom_start] = ACTIONS(1853), + [sym_before_unary_op] = ACTIONS(1879), + [sym_not_in] = ACTIONS(1879), + [sym_quoted_atom_start] = ACTIONS(1879), }, - [1362] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1855), - [aux_sym_identifier_token1] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), - [sym_alias] = ACTIONS(1855), - [sym_integer] = ACTIONS(1855), - [sym_float] = ACTIONS(1855), - [sym_char] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_nil] = ACTIONS(1855), - [sym_atom_] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [sym_keyword_] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_GT_GT] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), - [anon_sym_not] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_LT_DASH] = ACTIONS(1855), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), - [anon_sym_when] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_or] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), - [anon_sym_and] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_EQ_TILDE] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_PIPE_GT] = ACTIONS(1855), - [anon_sym_LT_LT_LT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_PIPE_GT] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), - [anon_sym_SLASH_SLASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), - [anon_sym_LT_GT] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_fn] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1855), - [sym_semgrep_metavariable] = ACTIONS(1855), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), + [1359] = { + [aux_sym_terminator_repeat1] = STATE(1357), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_after] = ACTIONS(1877), + [anon_sym_catch] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_end] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_rescue] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1853), - [sym_not_in] = ACTIONS(1853), - [sym_quoted_atom_start] = ACTIONS(1853), + [sym_before_unary_op] = ACTIONS(1879), + [sym_not_in] = ACTIONS(1879), + [sym_quoted_atom_start] = ACTIONS(1879), }, - [1363] = { + [1360] = { + [aux_sym_terminator_token1] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [aux_sym_identifier_token1] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [sym_alias] = ACTIONS(1897), + [sym_integer] = ACTIONS(1897), + [sym_float] = ACTIONS(1897), + [sym_char] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_nil] = ACTIONS(1897), + [sym_atom_] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1897), + [sym_keyword_] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_PERCENT] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_CARET] = ACTIONS(1897), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1897), + [anon_sym_not] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1897), + [anon_sym_LT_DASH] = ACTIONS(1897), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1897), + [anon_sym_when] = ACTIONS(1897), + [anon_sym_COLON_COLON] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_or] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1897), + [anon_sym_and] = ACTIONS(1897), + [anon_sym_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ] = ACTIONS(1897), + [anon_sym_EQ_TILDE] = ACTIONS(1897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1897), + [anon_sym_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_EQ] = ACTIONS(1897), + [anon_sym_PIPE_GT] = ACTIONS(1897), + [anon_sym_LT_LT_LT] = ACTIONS(1897), + [anon_sym_GT_GT_GT] = ACTIONS(1897), + [anon_sym_LT_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_PIPE_GT] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1897), + [anon_sym_LT_GT] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_STAR_STAR] = ACTIONS(1897), + [anon_sym_DASH_GT] = ACTIONS(1897), + [anon_sym_after] = ACTIONS(1897), + [anon_sym_catch] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_end] = ACTIONS(1897), + [anon_sym_fn] = ACTIONS(1897), + [anon_sym_rescue] = ACTIONS(1897), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1897), + [sym_semgrep_metavariable] = ACTIONS(1897), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1897), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1897), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1895), + [sym_not_in] = ACTIONS(1895), + [sym_quoted_atom_start] = ACTIONS(1895), + }, + [1361] = { + [aux_sym_terminator_token1] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [aux_sym_identifier_token1] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [sym_alias] = ACTIONS(1897), + [sym_integer] = ACTIONS(1897), + [sym_float] = ACTIONS(1897), + [sym_char] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_nil] = ACTIONS(1897), + [sym_atom_] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_PERCENT] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_CARET] = ACTIONS(1897), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1897), + [anon_sym_not] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1897), + [anon_sym_LT_DASH] = ACTIONS(1897), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1897), + [anon_sym_when] = ACTIONS(1897), + [anon_sym_COLON_COLON] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_or] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1897), + [anon_sym_and] = ACTIONS(1897), + [anon_sym_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ] = ACTIONS(1897), + [anon_sym_EQ_TILDE] = ACTIONS(1897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1897), + [anon_sym_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_EQ] = ACTIONS(1897), + [anon_sym_PIPE_GT] = ACTIONS(1897), + [anon_sym_LT_LT_LT] = ACTIONS(1897), + [anon_sym_GT_GT_GT] = ACTIONS(1897), + [anon_sym_LT_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_PIPE_GT] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1897), + [anon_sym_LT_GT] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_STAR_STAR] = ACTIONS(1897), + [anon_sym_DASH_GT] = ACTIONS(1897), + [anon_sym_after] = ACTIONS(1897), + [anon_sym_catch] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_end] = ACTIONS(1897), + [anon_sym_fn] = ACTIONS(1897), + [anon_sym_rescue] = ACTIONS(1897), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1897), + [sym_semgrep_metavariable] = ACTIONS(1897), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1897), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1897), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1895), + [sym_not_in] = ACTIONS(1895), + [sym_quoted_atom_start] = ACTIONS(1895), + }, + [1362] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1899), + [aux_sym_identifier_token1] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), + [sym_alias] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1899), + [sym_char] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_nil] = ACTIONS(1899), + [sym_atom_] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [sym_keyword_] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1899), + [anon_sym_not] = ACTIONS(1899), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1899), + [anon_sym_when] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1899), + [anon_sym_and] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_EQ_TILDE] = ACTIONS(1899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_PIPE_GT] = ACTIONS(1899), + [anon_sym_LT_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_LT_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_PIPE_GT] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1899), + [anon_sym_LT_GT] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_STAR_STAR] = ACTIONS(1899), + [anon_sym_DASH_GT] = ACTIONS(1899), + [anon_sym_after] = ACTIONS(1899), + [anon_sym_catch] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1899), + [anon_sym_end] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_rescue] = ACTIONS(1899), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1899), + [sym_semgrep_metavariable] = ACTIONS(1899), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1899), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1899), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1901), + [sym_not_in] = ACTIONS(1901), + [sym_quoted_atom_start] = ACTIONS(1901), + }, + [1363] = { + [aux_sym_terminator_token1] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [aux_sym_identifier_token1] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), + [sym_alias] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1899), + [sym_char] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_nil] = ACTIONS(1899), + [sym_atom_] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1899), + [anon_sym_not] = ACTIONS(1899), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1899), + [anon_sym_when] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1899), + [anon_sym_and] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_EQ_TILDE] = ACTIONS(1899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_PIPE_GT] = ACTIONS(1899), + [anon_sym_LT_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_LT_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_PIPE_GT] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1899), + [anon_sym_LT_GT] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_STAR_STAR] = ACTIONS(1899), + [anon_sym_DASH_GT] = ACTIONS(1899), + [anon_sym_after] = ACTIONS(1899), + [anon_sym_catch] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1899), + [anon_sym_end] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_rescue] = ACTIONS(1899), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1899), + [sym_semgrep_metavariable] = ACTIONS(1899), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1899), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1899), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1901), + [sym_not_in] = ACTIONS(1901), + [sym_quoted_atom_start] = ACTIONS(1901), }, [1364] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1857), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [aux_sym_terminator_token1] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_after] = ACTIONS(1877), + [anon_sym_catch] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_end] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_rescue] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1879), + [sym_not_in] = ACTIONS(1879), + [sym_quoted_atom_start] = ACTIONS(1879), }, [1365] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [sym_keyword_] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_after] = ACTIONS(1877), + [anon_sym_catch] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_end] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_rescue] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1879), + [sym_not_in] = ACTIONS(1879), + [sym_quoted_atom_start] = ACTIONS(1879), }, [1366] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_after] = ACTIONS(1877), + [anon_sym_catch] = ACTIONS(1877), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_end] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_rescue] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1879), + [sym_not_in] = ACTIONS(1879), + [sym_quoted_atom_start] = ACTIONS(1879), }, [1367] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1855), - [aux_sym_identifier_token1] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1855), - [sym_alias] = ACTIONS(1855), - [sym_integer] = ACTIONS(1855), - [sym_float] = ACTIONS(1855), - [sym_char] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_nil] = ACTIONS(1855), - [sym_atom_] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [sym_keyword_] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1855), - [anon_sym_not] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1855), - [anon_sym_LT_DASH] = ACTIONS(1855), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1855), - [anon_sym_when] = ACTIONS(1855), - [anon_sym_COLON_COLON] = ACTIONS(1855), - [anon_sym_EQ_GT] = ACTIONS(1855), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_or] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1855), - [anon_sym_and] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_EQ_TILDE] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_PIPE_GT] = ACTIONS(1855), - [anon_sym_LT_LT_LT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE] = ACTIONS(1855), - [anon_sym_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_TILDE_GT] = ACTIONS(1855), - [anon_sym_LT_PIPE_GT] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1855), - [anon_sym_SLASH_SLASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1855), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1855), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1855), - [anon_sym_LT_GT] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_DASH_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_fn] = ACTIONS(1855), - [anon_sym_LPAREN2] = ACTIONS(1853), - [anon_sym_LBRACK2] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1855), - [sym_semgrep_metavariable] = ACTIONS(1855), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1855), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1853), - [sym_not_in] = ACTIONS(1853), - [sym_quoted_atom_start] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1899), + [aux_sym_identifier_token1] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), + [sym_alias] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1899), + [sym_char] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_nil] = ACTIONS(1899), + [sym_atom_] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1899), + [anon_sym_not] = ACTIONS(1899), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1899), + [anon_sym_when] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1899), + [anon_sym_and] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_EQ_TILDE] = ACTIONS(1899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_PIPE_GT] = ACTIONS(1899), + [anon_sym_LT_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_LT_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_PIPE_GT] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1899), + [anon_sym_LT_GT] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_STAR_STAR] = ACTIONS(1899), + [anon_sym_DASH_GT] = ACTIONS(1899), + [anon_sym_after] = ACTIONS(1899), + [anon_sym_catch] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1899), + [anon_sym_end] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_rescue] = ACTIONS(1899), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1899), + [sym_semgrep_metavariable] = ACTIONS(1899), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1899), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1899), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1901), + [sym_not_in] = ACTIONS(1901), + [sym_quoted_atom_start] = ACTIONS(1901), }, [1368] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1817), - [aux_sym_identifier_token1] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_nil] = ACTIONS(1817), - [sym_atom_] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1817), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [sym_keyword_] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LT_DASH] = ACTIONS(1817), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1817), - [anon_sym_when] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_EQ_GT] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_or] = ACTIONS(1817), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_EQ_TILDE] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_PIPE_GT] = ACTIONS(1817), - [anon_sym_LT_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE] = ACTIONS(1817), - [anon_sym_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_TILDE_GT] = ACTIONS(1817), - [anon_sym_LT_PIPE_GT] = ACTIONS(1817), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1817), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1817), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1817), - [anon_sym_LT_GT] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_DASH_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_LBRACK2] = ACTIONS(1815), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1817), - [sym_semgrep_metavariable] = ACTIONS(1817), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1817), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1815), - [sym_not_in] = ACTIONS(1815), - [sym_quoted_atom_start] = ACTIONS(1815), + [aux_sym_terminator_repeat1] = STATE(1368), + [aux_sym_terminator_token1] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [aux_sym_identifier_token1] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1884), + [sym_alias] = ACTIONS(1884), + [sym_integer] = ACTIONS(1884), + [sym_float] = ACTIONS(1884), + [sym_char] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [anon_sym_nil] = ACTIONS(1884), + [sym_atom_] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1884), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [sym_keyword_] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1884), + [anon_sym_not] = ACTIONS(1884), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_LT_DASH] = ACTIONS(1884), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1884), + [anon_sym_when] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_or] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1884), + [anon_sym_and] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1884), + [anon_sym_EQ_TILDE] = ACTIONS(1884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1884), + [anon_sym_LT_EQ] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1884), + [anon_sym_PIPE_GT] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT_GT] = ACTIONS(1884), + [anon_sym_LT_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_PIPE_GT] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1884), + [anon_sym_LT_GT] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_STAR_STAR] = ACTIONS(1884), + [anon_sym_DASH_GT] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1884), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1884), + [sym_semgrep_metavariable] = ACTIONS(1884), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1884), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1884), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1886), + [sym_not_in] = ACTIONS(1886), + [sym_quoted_atom_start] = ACTIONS(1886), }, [1369] = { [aux_sym_terminator_repeat1] = STATE(1370), - [aux_sym_terminator_token1] = ACTIONS(67), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [sym_keyword_] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_after] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_end] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_rescue] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), + [aux_sym_terminator_token1] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [sym_keyword_] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_end] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1879), + [sym_not_in] = ACTIONS(1879), + [sym_quoted_atom_start] = ACTIONS(1879), }, [1370] = { [aux_sym_terminator_repeat1] = STATE(1370), - [aux_sym_terminator_token1] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1868), - [aux_sym_identifier_token1] = ACTIONS(1868), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1868), - [sym_alias] = ACTIONS(1868), - [sym_integer] = ACTIONS(1868), - [sym_float] = ACTIONS(1868), - [sym_char] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_nil] = ACTIONS(1868), - [sym_atom_] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [sym_keyword_] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_PERCENT] = ACTIONS(1868), - [anon_sym_DOT_DOT] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1868), - [anon_sym_not] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1868), - [anon_sym_LT_DASH] = ACTIONS(1868), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1868), - [anon_sym_when] = ACTIONS(1868), - [anon_sym_COLON_COLON] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_or] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1868), - [anon_sym_and] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_EQ_TILDE] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1868), - [anon_sym_LT_EQ] = ACTIONS(1868), - [anon_sym_GT_EQ] = ACTIONS(1868), - [anon_sym_PIPE_GT] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_GT_GT] = ACTIONS(1868), - [anon_sym_LT_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_PIPE_GT] = ACTIONS(1868), - [anon_sym_in] = ACTIONS(1868), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1868), - [anon_sym_LT_GT] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_STAR_STAR] = ACTIONS(1868), - [anon_sym_DASH_GT] = ACTIONS(1868), - [anon_sym_after] = ACTIONS(1868), - [anon_sym_catch] = ACTIONS(1868), - [anon_sym_else] = ACTIONS(1868), - [anon_sym_end] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_rescue] = ACTIONS(1868), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1868), - [sym_semgrep_metavariable] = ACTIONS(1868), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1868), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1870), - [sym_not_in] = ACTIONS(1870), - [sym_quoted_atom_start] = ACTIONS(1870), + [aux_sym_terminator_token1] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [aux_sym_identifier_token1] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1884), + [sym_alias] = ACTIONS(1884), + [sym_integer] = ACTIONS(1884), + [sym_float] = ACTIONS(1884), + [sym_char] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [anon_sym_nil] = ACTIONS(1884), + [sym_atom_] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1884), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [sym_keyword_] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1884), + [anon_sym_not] = ACTIONS(1884), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_LT_DASH] = ACTIONS(1884), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1884), + [anon_sym_when] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_or] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1884), + [anon_sym_and] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1884), + [anon_sym_EQ_TILDE] = ACTIONS(1884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1884), + [anon_sym_LT_EQ] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1884), + [anon_sym_PIPE_GT] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT_GT] = ACTIONS(1884), + [anon_sym_LT_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_PIPE_GT] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1884), + [anon_sym_LT_GT] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_STAR_STAR] = ACTIONS(1884), + [anon_sym_DASH_GT] = ACTIONS(1884), + [anon_sym_end] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1884), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1884), + [sym_semgrep_metavariable] = ACTIONS(1884), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1884), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1884), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1886), + [sym_not_in] = ACTIONS(1886), + [sym_quoted_atom_start] = ACTIONS(1886), }, [1371] = { - [aux_sym_terminator_repeat1] = STATE(1371), - [aux_sym_terminator_token1] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1868), - [aux_sym_identifier_token1] = ACTIONS(1868), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1868), - [sym_alias] = ACTIONS(1868), - [sym_integer] = ACTIONS(1868), - [sym_float] = ACTIONS(1868), - [sym_char] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_nil] = ACTIONS(1868), - [sym_atom_] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_PERCENT] = ACTIONS(1868), - [anon_sym_DOT_DOT] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1868), - [anon_sym_not] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1868), - [anon_sym_LT_DASH] = ACTIONS(1868), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1868), - [anon_sym_when] = ACTIONS(1868), - [anon_sym_COLON_COLON] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_or] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1868), - [anon_sym_and] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_EQ_TILDE] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1868), - [anon_sym_LT_EQ] = ACTIONS(1868), - [anon_sym_GT_EQ] = ACTIONS(1868), - [anon_sym_PIPE_GT] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_GT_GT] = ACTIONS(1868), - [anon_sym_LT_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_PIPE_GT] = ACTIONS(1868), - [anon_sym_in] = ACTIONS(1868), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1868), - [anon_sym_LT_GT] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_STAR_STAR] = ACTIONS(1868), - [anon_sym_DASH_GT] = ACTIONS(1868), - [anon_sym_after] = ACTIONS(1868), - [anon_sym_catch] = ACTIONS(1868), - [anon_sym_else] = ACTIONS(1868), - [anon_sym_end] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_rescue] = ACTIONS(1868), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1868), - [sym_semgrep_metavariable] = ACTIONS(1868), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1868), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1870), - [sym_not_in] = ACTIONS(1870), - [sym_quoted_atom_start] = ACTIONS(1870), + [aux_sym_terminator_repeat1] = STATE(1368), + [aux_sym_terminator_token1] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [sym_keyword_] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1879), + [sym_not_in] = ACTIONS(1879), + [sym_quoted_atom_start] = ACTIONS(1879), }, [1372] = { - [aux_sym_terminator_repeat1] = STATE(1371), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_after] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_end] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_rescue] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), + [aux_sym_terminator_repeat1] = STATE(1372), + [aux_sym_terminator_token1] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [aux_sym_identifier_token1] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1884), + [sym_alias] = ACTIONS(1884), + [sym_integer] = ACTIONS(1884), + [sym_float] = ACTIONS(1884), + [sym_char] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [anon_sym_nil] = ACTIONS(1884), + [sym_atom_] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1884), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1884), + [anon_sym_not] = ACTIONS(1884), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_LT_DASH] = ACTIONS(1884), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1884), + [anon_sym_when] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_or] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1884), + [anon_sym_and] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1884), + [anon_sym_EQ_TILDE] = ACTIONS(1884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1884), + [anon_sym_LT_EQ] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1884), + [anon_sym_PIPE_GT] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT_GT] = ACTIONS(1884), + [anon_sym_LT_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_PIPE_GT] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1884), + [anon_sym_LT_GT] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_STAR_STAR] = ACTIONS(1884), + [anon_sym_DASH_GT] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1884), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1884), + [sym_semgrep_metavariable] = ACTIONS(1884), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1884), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1884), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1886), + [sym_not_in] = ACTIONS(1886), + [sym_quoted_atom_start] = ACTIONS(1886), }, [1373] = { - [aux_sym_terminator_repeat1] = STATE(1371), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_after] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_end] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_rescue] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), + [aux_sym_terminator_token1] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [aux_sym_identifier_token1] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [sym_alias] = ACTIONS(1897), + [sym_integer] = ACTIONS(1897), + [sym_float] = ACTIONS(1897), + [sym_char] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_nil] = ACTIONS(1897), + [sym_atom_] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1897), + [sym_keyword_] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_PERCENT] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_CARET] = ACTIONS(1897), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1897), + [anon_sym_not] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1897), + [anon_sym_LT_DASH] = ACTIONS(1897), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1897), + [anon_sym_when] = ACTIONS(1897), + [anon_sym_COLON_COLON] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_or] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1897), + [anon_sym_and] = ACTIONS(1897), + [anon_sym_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ] = ACTIONS(1897), + [anon_sym_EQ_TILDE] = ACTIONS(1897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1897), + [anon_sym_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_EQ] = ACTIONS(1897), + [anon_sym_PIPE_GT] = ACTIONS(1897), + [anon_sym_LT_LT_LT] = ACTIONS(1897), + [anon_sym_GT_GT_GT] = ACTIONS(1897), + [anon_sym_LT_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_PIPE_GT] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1897), + [anon_sym_LT_GT] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_STAR_STAR] = ACTIONS(1897), + [anon_sym_DASH_GT] = ACTIONS(1897), + [anon_sym_fn] = ACTIONS(1897), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1897), + [sym_semgrep_metavariable] = ACTIONS(1897), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1897), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1897), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1895), + [sym_not_in] = ACTIONS(1895), + [sym_quoted_atom_start] = ACTIONS(1895), }, [1374] = { - [aux_sym_terminator_token1] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [aux_sym_identifier_token1] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), - [sym_alias] = ACTIONS(1881), - [sym_integer] = ACTIONS(1881), - [sym_float] = ACTIONS(1881), - [sym_char] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_nil] = ACTIONS(1881), - [sym_atom_] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1881), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [sym_keyword_] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1881), - [anon_sym_not] = ACTIONS(1881), - [anon_sym_AT] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1881), - [anon_sym_when] = ACTIONS(1881), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1881), - [anon_sym_and] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_EQ_TILDE] = ACTIONS(1881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_PIPE_GT] = ACTIONS(1881), - [anon_sym_LT_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_LT_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_PIPE_GT] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1881), - [anon_sym_LT_GT] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_STAR_STAR] = ACTIONS(1881), - [anon_sym_DASH_GT] = ACTIONS(1881), - [anon_sym_after] = ACTIONS(1881), - [anon_sym_catch] = ACTIONS(1881), - [anon_sym_else] = ACTIONS(1881), - [anon_sym_end] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_rescue] = ACTIONS(1881), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1881), - [sym_semgrep_metavariable] = ACTIONS(1881), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1881), + [aux_sym_terminator_repeat1] = STATE(1374), + [ts_builtin_sym_end] = ACTIONS(1886), + [aux_sym_terminator_token1] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [aux_sym_identifier_token1] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1884), + [sym_alias] = ACTIONS(1884), + [sym_integer] = ACTIONS(1884), + [sym_float] = ACTIONS(1884), + [sym_char] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [anon_sym_nil] = ACTIONS(1884), + [sym_atom_] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1884), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1884), + [anon_sym_not] = ACTIONS(1884), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_LT_DASH] = ACTIONS(1884), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1884), + [anon_sym_when] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_or] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1884), + [anon_sym_and] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1884), + [anon_sym_EQ_TILDE] = ACTIONS(1884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1884), + [anon_sym_LT_EQ] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1884), + [anon_sym_PIPE_GT] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT_GT] = ACTIONS(1884), + [anon_sym_LT_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_PIPE_GT] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1884), + [anon_sym_LT_GT] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_STAR_STAR] = ACTIONS(1884), + [anon_sym_DASH_GT] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1884), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1884), + [sym_semgrep_metavariable] = ACTIONS(1884), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1884), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1884), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1886), + [sym_not_in] = ACTIONS(1886), + [sym_quoted_atom_start] = ACTIONS(1886), + }, + [1375] = { + [aux_sym_terminator_repeat1] = STATE(1374), + [ts_builtin_sym_end] = ACTIONS(1879), + [aux_sym_terminator_token1] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(1879), [sym_not_in] = ACTIONS(1879), [sym_quoted_atom_start] = ACTIONS(1879), }, - [1375] = { - [aux_sym_terminator_token1] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_after] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_end] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_rescue] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), - }, [1376] = { - [aux_sym_terminator_token1] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [aux_sym_identifier_token1] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1885), - [sym_alias] = ACTIONS(1885), - [sym_integer] = ACTIONS(1885), - [sym_float] = ACTIONS(1885), - [sym_char] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_nil] = ACTIONS(1885), - [sym_atom_] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1885), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_LT_LT] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1885), - [anon_sym_not] = ACTIONS(1885), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_LT_DASH] = ACTIONS(1885), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1885), - [anon_sym_when] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_or] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1885), - [anon_sym_and] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_EQ_TILDE] = ACTIONS(1885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_PIPE_GT] = ACTIONS(1885), - [anon_sym_LT_LT_LT] = ACTIONS(1885), - [anon_sym_GT_GT_GT] = ACTIONS(1885), - [anon_sym_LT_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_PIPE_GT] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(1885), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1885), - [anon_sym_LT_GT] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_STAR_STAR] = ACTIONS(1885), - [anon_sym_DASH_GT] = ACTIONS(1885), - [anon_sym_after] = ACTIONS(1885), - [anon_sym_catch] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1885), - [anon_sym_end] = ACTIONS(1885), - [anon_sym_fn] = ACTIONS(1885), - [anon_sym_rescue] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1885), - [sym_semgrep_metavariable] = ACTIONS(1885), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1885), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1883), - [sym_not_in] = ACTIONS(1883), - [sym_quoted_atom_start] = ACTIONS(1883), + [aux_sym_terminator_repeat1] = STATE(1372), + [aux_sym_terminator_token1] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1879), + [sym_not_in] = ACTIONS(1879), + [sym_quoted_atom_start] = ACTIONS(1879), }, [1377] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1885), - [aux_sym_identifier_token1] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1885), - [sym_alias] = ACTIONS(1885), - [sym_integer] = ACTIONS(1885), - [sym_float] = ACTIONS(1885), - [sym_char] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_nil] = ACTIONS(1885), - [sym_atom_] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1885), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [sym_keyword_] = ACTIONS(1885), - [anon_sym_LT_LT] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1885), - [anon_sym_not] = ACTIONS(1885), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_LT_DASH] = ACTIONS(1885), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1885), - [anon_sym_when] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_or] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1885), - [anon_sym_and] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_EQ_TILDE] = ACTIONS(1885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_PIPE_GT] = ACTIONS(1885), - [anon_sym_LT_LT_LT] = ACTIONS(1885), - [anon_sym_GT_GT_GT] = ACTIONS(1885), - [anon_sym_LT_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_PIPE_GT] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(1885), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1885), - [anon_sym_LT_GT] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_STAR_STAR] = ACTIONS(1885), - [anon_sym_DASH_GT] = ACTIONS(1885), - [anon_sym_after] = ACTIONS(1885), - [anon_sym_catch] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1885), - [anon_sym_end] = ACTIONS(1885), - [anon_sym_fn] = ACTIONS(1885), - [anon_sym_rescue] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1885), - [sym_semgrep_metavariable] = ACTIONS(1885), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1885), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1883), - [sym_not_in] = ACTIONS(1883), - [sym_quoted_atom_start] = ACTIONS(1883), + [aux_sym_terminator_repeat1] = STATE(1372), + [aux_sym_terminator_token1] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1879), + [sym_not_in] = ACTIONS(1879), + [sym_quoted_atom_start] = ACTIONS(1879), }, [1378] = { - [aux_sym_terminator_token1] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [aux_sym_identifier_token1] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), - [sym_alias] = ACTIONS(1881), - [sym_integer] = ACTIONS(1881), - [sym_float] = ACTIONS(1881), - [sym_char] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_nil] = ACTIONS(1881), - [sym_atom_] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1881), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1881), - [anon_sym_not] = ACTIONS(1881), - [anon_sym_AT] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1881), - [anon_sym_when] = ACTIONS(1881), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1881), - [anon_sym_and] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_EQ_TILDE] = ACTIONS(1881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_PIPE_GT] = ACTIONS(1881), - [anon_sym_LT_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_LT_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_PIPE_GT] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1881), - [anon_sym_LT_GT] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_STAR_STAR] = ACTIONS(1881), - [anon_sym_DASH_GT] = ACTIONS(1881), - [anon_sym_after] = ACTIONS(1881), - [anon_sym_catch] = ACTIONS(1881), - [anon_sym_else] = ACTIONS(1881), - [anon_sym_end] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [anon_sym_rescue] = ACTIONS(1881), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1881), - [sym_semgrep_metavariable] = ACTIONS(1881), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1881), + [aux_sym_terminator_repeat1] = STATE(1380), + [aux_sym_terminator_token1] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_end] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(1879), @@ -192816,3482 +193998,2366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_atom_start] = ACTIONS(1879), }, [1379] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [sym_keyword_] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_after] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_end] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_rescue] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), + [aux_sym_terminator_token1] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [aux_sym_identifier_token1] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [sym_alias] = ACTIONS(1897), + [sym_integer] = ACTIONS(1897), + [sym_float] = ACTIONS(1897), + [sym_char] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_nil] = ACTIONS(1897), + [sym_atom_] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1897), + [sym_keyword_] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_PERCENT] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_CARET] = ACTIONS(1897), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1897), + [anon_sym_not] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1897), + [anon_sym_LT_DASH] = ACTIONS(1897), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1897), + [anon_sym_when] = ACTIONS(1897), + [anon_sym_COLON_COLON] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_or] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1897), + [anon_sym_and] = ACTIONS(1897), + [anon_sym_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ] = ACTIONS(1897), + [anon_sym_EQ_TILDE] = ACTIONS(1897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1897), + [anon_sym_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_EQ] = ACTIONS(1897), + [anon_sym_PIPE_GT] = ACTIONS(1897), + [anon_sym_LT_LT_LT] = ACTIONS(1897), + [anon_sym_GT_GT_GT] = ACTIONS(1897), + [anon_sym_LT_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_PIPE_GT] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1897), + [anon_sym_LT_GT] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_STAR_STAR] = ACTIONS(1897), + [anon_sym_DASH_GT] = ACTIONS(1897), + [anon_sym_end] = ACTIONS(1897), + [anon_sym_fn] = ACTIONS(1897), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1897), + [sym_semgrep_metavariable] = ACTIONS(1897), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1897), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1897), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1895), + [sym_not_in] = ACTIONS(1895), + [sym_quoted_atom_start] = ACTIONS(1895), }, [1380] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1885), - [aux_sym_identifier_token1] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1885), - [sym_alias] = ACTIONS(1885), - [sym_integer] = ACTIONS(1885), - [sym_float] = ACTIONS(1885), - [sym_char] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_nil] = ACTIONS(1885), - [sym_atom_] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1885), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_LT_LT] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1885), - [anon_sym_not] = ACTIONS(1885), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_LT_DASH] = ACTIONS(1885), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1885), - [anon_sym_when] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_or] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1885), - [anon_sym_and] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_EQ_TILDE] = ACTIONS(1885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_PIPE_GT] = ACTIONS(1885), - [anon_sym_LT_LT_LT] = ACTIONS(1885), - [anon_sym_GT_GT_GT] = ACTIONS(1885), - [anon_sym_LT_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_PIPE_GT] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(1885), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1885), - [anon_sym_LT_GT] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_STAR_STAR] = ACTIONS(1885), - [anon_sym_DASH_GT] = ACTIONS(1885), - [anon_sym_after] = ACTIONS(1885), - [anon_sym_catch] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1885), - [anon_sym_end] = ACTIONS(1885), - [anon_sym_fn] = ACTIONS(1885), - [anon_sym_rescue] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1885), - [sym_semgrep_metavariable] = ACTIONS(1885), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1885), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1883), - [sym_not_in] = ACTIONS(1883), - [sym_quoted_atom_start] = ACTIONS(1883), + [aux_sym_terminator_repeat1] = STATE(1380), + [aux_sym_terminator_token1] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [aux_sym_identifier_token1] = ACTIONS(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1884), + [sym_alias] = ACTIONS(1884), + [sym_integer] = ACTIONS(1884), + [sym_float] = ACTIONS(1884), + [sym_char] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [anon_sym_nil] = ACTIONS(1884), + [sym_atom_] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1884), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1884), + [anon_sym_not] = ACTIONS(1884), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_LT_DASH] = ACTIONS(1884), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1884), + [anon_sym_when] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_or] = ACTIONS(1884), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1884), + [anon_sym_and] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1884), + [anon_sym_EQ_TILDE] = ACTIONS(1884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1884), + [anon_sym_LT_EQ] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1884), + [anon_sym_PIPE_GT] = ACTIONS(1884), + [anon_sym_LT_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT_GT] = ACTIONS(1884), + [anon_sym_LT_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE] = ACTIONS(1884), + [anon_sym_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_TILDE_GT] = ACTIONS(1884), + [anon_sym_LT_PIPE_GT] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1884), + [anon_sym_LT_GT] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_STAR_STAR] = ACTIONS(1884), + [anon_sym_DASH_GT] = ACTIONS(1884), + [anon_sym_end] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1884), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1884), + [sym_semgrep_metavariable] = ACTIONS(1884), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1884), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1884), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1886), + [sym_not_in] = ACTIONS(1886), + [sym_quoted_atom_start] = ACTIONS(1886), }, [1381] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_after] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_end] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [anon_sym_rescue] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [sym_keyword_] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_end] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1879), + [sym_not_in] = ACTIONS(1879), + [sym_quoted_atom_start] = ACTIONS(1879), }, [1382] = { - [aux_sym_terminator_repeat1] = STATE(1382), - [aux_sym_terminator_token1] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1868), - [anon_sym_RPAREN] = ACTIONS(1868), - [aux_sym_identifier_token1] = ACTIONS(1868), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1868), - [sym_alias] = ACTIONS(1868), - [sym_integer] = ACTIONS(1868), - [sym_float] = ACTIONS(1868), - [sym_char] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_nil] = ACTIONS(1868), - [sym_atom_] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [sym_keyword_] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_PERCENT] = ACTIONS(1868), - [anon_sym_DOT_DOT] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1868), - [anon_sym_not] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1868), - [anon_sym_LT_DASH] = ACTIONS(1868), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1868), - [anon_sym_when] = ACTIONS(1868), - [anon_sym_COLON_COLON] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_or] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1868), - [anon_sym_and] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_EQ_TILDE] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1868), - [anon_sym_LT_EQ] = ACTIONS(1868), - [anon_sym_GT_EQ] = ACTIONS(1868), - [anon_sym_PIPE_GT] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_GT_GT] = ACTIONS(1868), - [anon_sym_LT_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_PIPE_GT] = ACTIONS(1868), - [anon_sym_in] = ACTIONS(1868), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1868), - [anon_sym_LT_GT] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_STAR_STAR] = ACTIONS(1868), - [anon_sym_DASH_GT] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1868), - [sym_semgrep_metavariable] = ACTIONS(1868), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1868), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1870), - [sym_not_in] = ACTIONS(1870), - [sym_quoted_atom_start] = ACTIONS(1870), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1899), + [aux_sym_identifier_token1] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), + [sym_alias] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1899), + [sym_char] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_nil] = ACTIONS(1899), + [sym_atom_] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [sym_keyword_] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1899), + [anon_sym_not] = ACTIONS(1899), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1899), + [anon_sym_when] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1899), + [anon_sym_and] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_EQ_TILDE] = ACTIONS(1899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_PIPE_GT] = ACTIONS(1899), + [anon_sym_LT_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_LT_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_PIPE_GT] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1899), + [anon_sym_LT_GT] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_STAR_STAR] = ACTIONS(1899), + [anon_sym_DASH_GT] = ACTIONS(1899), + [anon_sym_end] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1899), + [sym_semgrep_metavariable] = ACTIONS(1899), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1899), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1899), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1901), + [sym_not_in] = ACTIONS(1901), + [sym_quoted_atom_start] = ACTIONS(1901), }, [1383] = { - [aux_sym_terminator_repeat1] = STATE(1385), - [aux_sym_terminator_token1] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [sym_keyword_] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_end] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), + [aux_sym_terminator_token1] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [aux_sym_identifier_token1] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), + [sym_alias] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1899), + [sym_char] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_nil] = ACTIONS(1899), + [sym_atom_] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1899), + [anon_sym_not] = ACTIONS(1899), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1899), + [anon_sym_when] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1899), + [anon_sym_and] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_EQ_TILDE] = ACTIONS(1899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_PIPE_GT] = ACTIONS(1899), + [anon_sym_LT_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_LT_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_PIPE_GT] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1899), + [anon_sym_LT_GT] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_STAR_STAR] = ACTIONS(1899), + [anon_sym_DASH_GT] = ACTIONS(1899), + [anon_sym_end] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1899), + [sym_semgrep_metavariable] = ACTIONS(1899), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1899), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1899), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1901), + [sym_not_in] = ACTIONS(1901), + [sym_quoted_atom_start] = ACTIONS(1901), }, [1384] = { - [aux_sym_terminator_repeat1] = STATE(1382), - [aux_sym_terminator_token1] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [sym_keyword_] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), - }, - [1385] = { - [aux_sym_terminator_repeat1] = STATE(1385), - [aux_sym_terminator_token1] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1868), - [aux_sym_identifier_token1] = ACTIONS(1868), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1868), - [sym_alias] = ACTIONS(1868), - [sym_integer] = ACTIONS(1868), - [sym_float] = ACTIONS(1868), - [sym_char] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_nil] = ACTIONS(1868), - [sym_atom_] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [sym_keyword_] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_PERCENT] = ACTIONS(1868), - [anon_sym_DOT_DOT] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1868), - [anon_sym_not] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1868), - [anon_sym_LT_DASH] = ACTIONS(1868), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1868), - [anon_sym_when] = ACTIONS(1868), - [anon_sym_COLON_COLON] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_or] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1868), - [anon_sym_and] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_EQ_TILDE] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1868), - [anon_sym_LT_EQ] = ACTIONS(1868), - [anon_sym_GT_EQ] = ACTIONS(1868), - [anon_sym_PIPE_GT] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_GT_GT] = ACTIONS(1868), - [anon_sym_LT_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_PIPE_GT] = ACTIONS(1868), - [anon_sym_in] = ACTIONS(1868), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1868), - [anon_sym_LT_GT] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_STAR_STAR] = ACTIONS(1868), - [anon_sym_DASH_GT] = ACTIONS(1868), - [anon_sym_end] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1868), - [sym_semgrep_metavariable] = ACTIONS(1868), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1868), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1870), - [sym_not_in] = ACTIONS(1870), - [sym_quoted_atom_start] = ACTIONS(1870), - }, - [1386] = { - [aux_sym_terminator_repeat1] = STATE(1391), - [aux_sym_terminator_token1] = ACTIONS(1533), + [aux_sym_terminator_token1] = ACTIONS(1895), [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_end] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), - }, - [1387] = { - [aux_sym_terminator_repeat1] = STATE(1387), - [aux_sym_terminator_token1] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1868), - [anon_sym_RPAREN] = ACTIONS(1868), - [aux_sym_identifier_token1] = ACTIONS(1868), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1868), - [sym_alias] = ACTIONS(1868), - [sym_integer] = ACTIONS(1868), - [sym_float] = ACTIONS(1868), - [sym_char] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_nil] = ACTIONS(1868), - [sym_atom_] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_PERCENT] = ACTIONS(1868), - [anon_sym_DOT_DOT] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1868), - [anon_sym_not] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1868), - [anon_sym_LT_DASH] = ACTIONS(1868), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1868), - [anon_sym_when] = ACTIONS(1868), - [anon_sym_COLON_COLON] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_or] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1868), - [anon_sym_and] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_EQ_TILDE] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1868), - [anon_sym_LT_EQ] = ACTIONS(1868), - [anon_sym_GT_EQ] = ACTIONS(1868), - [anon_sym_PIPE_GT] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_GT_GT] = ACTIONS(1868), - [anon_sym_LT_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_PIPE_GT] = ACTIONS(1868), - [anon_sym_in] = ACTIONS(1868), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1868), - [anon_sym_LT_GT] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_STAR_STAR] = ACTIONS(1868), - [anon_sym_DASH_GT] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1868), - [sym_semgrep_metavariable] = ACTIONS(1868), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1868), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1870), - [sym_not_in] = ACTIONS(1870), - [sym_quoted_atom_start] = ACTIONS(1870), - }, - [1388] = { - [aux_sym_terminator_repeat1] = STATE(1387), - [aux_sym_terminator_token1] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [aux_sym_identifier_token1] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [sym_alias] = ACTIONS(1897), + [sym_integer] = ACTIONS(1897), + [sym_float] = ACTIONS(1897), + [sym_char] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_nil] = ACTIONS(1897), + [sym_atom_] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_PERCENT] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_CARET] = ACTIONS(1897), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1897), + [anon_sym_not] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1897), + [anon_sym_LT_DASH] = ACTIONS(1897), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1897), + [anon_sym_when] = ACTIONS(1897), + [anon_sym_COLON_COLON] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_or] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1897), + [anon_sym_and] = ACTIONS(1897), + [anon_sym_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ] = ACTIONS(1897), + [anon_sym_EQ_TILDE] = ACTIONS(1897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1897), + [anon_sym_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_EQ] = ACTIONS(1897), + [anon_sym_PIPE_GT] = ACTIONS(1897), + [anon_sym_LT_LT_LT] = ACTIONS(1897), + [anon_sym_GT_GT_GT] = ACTIONS(1897), + [anon_sym_LT_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_PIPE_GT] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1897), + [anon_sym_LT_GT] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_STAR_STAR] = ACTIONS(1897), + [anon_sym_DASH_GT] = ACTIONS(1897), + [anon_sym_fn] = ACTIONS(1897), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1897), + [sym_semgrep_metavariable] = ACTIONS(1897), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1897), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1897), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1895), + [sym_not_in] = ACTIONS(1895), + [sym_quoted_atom_start] = ACTIONS(1895), }, - [1389] = { + [1385] = { [aux_sym_terminator_token1] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [aux_sym_identifier_token1] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), - [sym_alias] = ACTIONS(1881), - [sym_integer] = ACTIONS(1881), - [sym_float] = ACTIONS(1881), - [sym_char] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_nil] = ACTIONS(1881), - [sym_atom_] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1881), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [sym_keyword_] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1881), - [anon_sym_not] = ACTIONS(1881), - [anon_sym_AT] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1881), - [anon_sym_when] = ACTIONS(1881), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1881), - [anon_sym_and] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_EQ_TILDE] = ACTIONS(1881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_PIPE_GT] = ACTIONS(1881), - [anon_sym_LT_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_LT_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_PIPE_GT] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1881), - [anon_sym_LT_GT] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_STAR_STAR] = ACTIONS(1881), - [anon_sym_DASH_GT] = ACTIONS(1881), - [anon_sym_end] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1881), - [sym_semgrep_metavariable] = ACTIONS(1881), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(1879), [sym_not_in] = ACTIONS(1879), [sym_quoted_atom_start] = ACTIONS(1879), }, - [1390] = { - [aux_sym_terminator_repeat1] = STATE(1393), - [ts_builtin_sym_end] = ACTIONS(1863), - [aux_sym_terminator_token1] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), + [1386] = { + [aux_sym_terminator_token1] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_RPAREN] = ACTIONS(1899), + [aux_sym_identifier_token1] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), + [sym_alias] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1899), + [sym_char] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_nil] = ACTIONS(1899), + [sym_atom_] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1899), + [anon_sym_not] = ACTIONS(1899), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1899), + [anon_sym_when] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1899), + [anon_sym_and] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_EQ_TILDE] = ACTIONS(1899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_PIPE_GT] = ACTIONS(1899), + [anon_sym_LT_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_LT_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_PIPE_GT] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1899), + [anon_sym_LT_GT] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_STAR_STAR] = ACTIONS(1899), + [anon_sym_DASH_GT] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1899), + [sym_semgrep_metavariable] = ACTIONS(1899), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1899), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1899), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1901), + [sym_not_in] = ACTIONS(1901), + [sym_quoted_atom_start] = ACTIONS(1901), }, - [1391] = { - [aux_sym_terminator_repeat1] = STATE(1391), - [aux_sym_terminator_token1] = ACTIONS(1906), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1868), - [aux_sym_identifier_token1] = ACTIONS(1868), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1868), - [sym_alias] = ACTIONS(1868), - [sym_integer] = ACTIONS(1868), - [sym_float] = ACTIONS(1868), - [sym_char] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_nil] = ACTIONS(1868), - [sym_atom_] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_PERCENT] = ACTIONS(1868), - [anon_sym_DOT_DOT] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1868), - [anon_sym_not] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1868), - [anon_sym_LT_DASH] = ACTIONS(1868), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1868), - [anon_sym_when] = ACTIONS(1868), - [anon_sym_COLON_COLON] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_or] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1868), - [anon_sym_and] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_EQ_TILDE] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1868), - [anon_sym_LT_EQ] = ACTIONS(1868), - [anon_sym_GT_EQ] = ACTIONS(1868), - [anon_sym_PIPE_GT] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_GT_GT] = ACTIONS(1868), - [anon_sym_LT_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_PIPE_GT] = ACTIONS(1868), - [anon_sym_in] = ACTIONS(1868), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1868), - [anon_sym_LT_GT] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_STAR_STAR] = ACTIONS(1868), - [anon_sym_DASH_GT] = ACTIONS(1868), - [anon_sym_end] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1868), - [sym_semgrep_metavariable] = ACTIONS(1868), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1868), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1870), - [sym_not_in] = ACTIONS(1870), - [sym_quoted_atom_start] = ACTIONS(1870), + [1387] = { + [aux_sym_terminator_token1] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [aux_sym_identifier_token1] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [sym_alias] = ACTIONS(1897), + [sym_integer] = ACTIONS(1897), + [sym_float] = ACTIONS(1897), + [sym_char] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_nil] = ACTIONS(1897), + [sym_atom_] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_PERCENT] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_CARET] = ACTIONS(1897), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1897), + [anon_sym_not] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1897), + [anon_sym_LT_DASH] = ACTIONS(1897), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1897), + [anon_sym_when] = ACTIONS(1897), + [anon_sym_COLON_COLON] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_or] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1897), + [anon_sym_and] = ACTIONS(1897), + [anon_sym_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ] = ACTIONS(1897), + [anon_sym_EQ_TILDE] = ACTIONS(1897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1897), + [anon_sym_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_EQ] = ACTIONS(1897), + [anon_sym_PIPE_GT] = ACTIONS(1897), + [anon_sym_LT_LT_LT] = ACTIONS(1897), + [anon_sym_GT_GT_GT] = ACTIONS(1897), + [anon_sym_LT_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_PIPE_GT] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1897), + [anon_sym_LT_GT] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_STAR_STAR] = ACTIONS(1897), + [anon_sym_DASH_GT] = ACTIONS(1897), + [anon_sym_end] = ACTIONS(1897), + [anon_sym_fn] = ACTIONS(1897), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1897), + [sym_semgrep_metavariable] = ACTIONS(1897), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1897), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1897), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1895), + [sym_not_in] = ACTIONS(1895), + [sym_quoted_atom_start] = ACTIONS(1895), }, - [1392] = { + [1388] = { [aux_sym_terminator_token1] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_RPAREN] = ACTIONS(1881), - [aux_sym_identifier_token1] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), - [sym_alias] = ACTIONS(1881), - [sym_integer] = ACTIONS(1881), - [sym_float] = ACTIONS(1881), - [sym_char] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_nil] = ACTIONS(1881), - [sym_atom_] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1881), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [sym_keyword_] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1881), - [anon_sym_not] = ACTIONS(1881), - [anon_sym_AT] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1881), - [anon_sym_when] = ACTIONS(1881), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1881), - [anon_sym_and] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_EQ_TILDE] = ACTIONS(1881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_PIPE_GT] = ACTIONS(1881), - [anon_sym_LT_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_LT_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_PIPE_GT] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1881), - [anon_sym_LT_GT] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_STAR_STAR] = ACTIONS(1881), - [anon_sym_DASH_GT] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1881), - [sym_semgrep_metavariable] = ACTIONS(1881), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_end] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(1879), [sym_not_in] = ACTIONS(1879), [sym_quoted_atom_start] = ACTIONS(1879), }, - [1393] = { - [aux_sym_terminator_repeat1] = STATE(1393), - [ts_builtin_sym_end] = ACTIONS(1870), - [aux_sym_terminator_token1] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1868), - [aux_sym_identifier_token1] = ACTIONS(1868), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1868), - [sym_alias] = ACTIONS(1868), - [sym_integer] = ACTIONS(1868), - [sym_float] = ACTIONS(1868), - [sym_char] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_nil] = ACTIONS(1868), - [sym_atom_] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_PERCENT] = ACTIONS(1868), - [anon_sym_DOT_DOT] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1868), - [anon_sym_not] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1868), - [anon_sym_LT_DASH] = ACTIONS(1868), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1868), - [anon_sym_when] = ACTIONS(1868), - [anon_sym_COLON_COLON] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_or] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1868), - [anon_sym_and] = ACTIONS(1868), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_EQ_TILDE] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1868), - [anon_sym_LT_EQ] = ACTIONS(1868), - [anon_sym_GT_EQ] = ACTIONS(1868), - [anon_sym_PIPE_GT] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [anon_sym_GT_GT_GT] = ACTIONS(1868), - [anon_sym_LT_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE] = ACTIONS(1868), - [anon_sym_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_TILDE_GT] = ACTIONS(1868), - [anon_sym_LT_PIPE_GT] = ACTIONS(1868), - [anon_sym_in] = ACTIONS(1868), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1868), - [anon_sym_LT_GT] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_STAR_STAR] = ACTIONS(1868), - [anon_sym_DASH_GT] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1868), - [sym_semgrep_metavariable] = ACTIONS(1868), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1868), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1870), - [sym_not_in] = ACTIONS(1870), - [sym_quoted_atom_start] = ACTIONS(1870), - }, - [1394] = { - [aux_sym_terminator_repeat1] = STATE(1387), - [aux_sym_terminator_token1] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), - }, - [1395] = { + [1389] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [aux_sym_identifier_token1] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1885), - [sym_alias] = ACTIONS(1885), - [sym_integer] = ACTIONS(1885), - [sym_float] = ACTIONS(1885), - [sym_char] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_nil] = ACTIONS(1885), - [sym_atom_] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1885), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [sym_keyword_] = ACTIONS(1885), - [anon_sym_LT_LT] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1885), - [anon_sym_not] = ACTIONS(1885), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_LT_DASH] = ACTIONS(1885), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1885), - [anon_sym_when] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_or] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1885), - [anon_sym_and] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_EQ_TILDE] = ACTIONS(1885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_PIPE_GT] = ACTIONS(1885), - [anon_sym_LT_LT_LT] = ACTIONS(1885), - [anon_sym_GT_GT_GT] = ACTIONS(1885), - [anon_sym_LT_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_PIPE_GT] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(1885), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1885), - [anon_sym_LT_GT] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_STAR_STAR] = ACTIONS(1885), - [anon_sym_DASH_GT] = ACTIONS(1885), - [anon_sym_fn] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1885), - [sym_semgrep_metavariable] = ACTIONS(1885), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1885), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1883), - [sym_not_in] = ACTIONS(1883), - [sym_quoted_atom_start] = ACTIONS(1883), - }, - [1396] = { - [aux_sym_terminator_token1] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [aux_sym_identifier_token1] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1885), - [sym_alias] = ACTIONS(1885), - [sym_integer] = ACTIONS(1885), - [sym_float] = ACTIONS(1885), - [sym_char] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_nil] = ACTIONS(1885), - [sym_atom_] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1885), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_LT_LT] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1885), - [anon_sym_not] = ACTIONS(1885), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_LT_DASH] = ACTIONS(1885), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1885), - [anon_sym_when] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_or] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1885), - [anon_sym_and] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_EQ_TILDE] = ACTIONS(1885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_PIPE_GT] = ACTIONS(1885), - [anon_sym_LT_LT_LT] = ACTIONS(1885), - [anon_sym_GT_GT_GT] = ACTIONS(1885), - [anon_sym_LT_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_PIPE_GT] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(1885), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1885), - [anon_sym_LT_GT] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_STAR_STAR] = ACTIONS(1885), - [anon_sym_DASH_GT] = ACTIONS(1885), - [anon_sym_fn] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1885), - [sym_semgrep_metavariable] = ACTIONS(1885), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1885), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1883), - [sym_not_in] = ACTIONS(1883), - [sym_quoted_atom_start] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_RPAREN] = ACTIONS(1899), + [aux_sym_identifier_token1] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), + [sym_alias] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1899), + [sym_char] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_nil] = ACTIONS(1899), + [sym_atom_] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [sym_keyword_] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1899), + [anon_sym_not] = ACTIONS(1899), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1899), + [anon_sym_when] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1899), + [anon_sym_and] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_EQ_TILDE] = ACTIONS(1899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_PIPE_GT] = ACTIONS(1899), + [anon_sym_LT_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_LT_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_PIPE_GT] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1899), + [anon_sym_LT_GT] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_STAR_STAR] = ACTIONS(1899), + [anon_sym_DASH_GT] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1899), + [sym_semgrep_metavariable] = ACTIONS(1899), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1899), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1899), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1901), + [sym_not_in] = ACTIONS(1901), + [sym_quoted_atom_start] = ACTIONS(1901), }, - [1397] = { + [1390] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [sym_keyword_] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_end] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), - }, - [1398] = { - [aux_sym_terminator_token1] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_end] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), - }, - [1399] = { - [aux_sym_terminator_token1] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_RPAREN] = ACTIONS(1881), - [aux_sym_identifier_token1] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), - [sym_alias] = ACTIONS(1881), - [sym_integer] = ACTIONS(1881), - [sym_float] = ACTIONS(1881), - [sym_char] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_nil] = ACTIONS(1881), - [sym_atom_] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1881), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1881), - [anon_sym_not] = ACTIONS(1881), - [anon_sym_AT] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1881), - [anon_sym_when] = ACTIONS(1881), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1881), - [anon_sym_and] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_EQ_TILDE] = ACTIONS(1881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_PIPE_GT] = ACTIONS(1881), - [anon_sym_LT_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_LT_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_PIPE_GT] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1881), - [anon_sym_LT_GT] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_STAR_STAR] = ACTIONS(1881), - [anon_sym_DASH_GT] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1881), - [sym_semgrep_metavariable] = ACTIONS(1881), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [sym_keyword_] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(1879), [sym_not_in] = ACTIONS(1879), [sym_quoted_atom_start] = ACTIONS(1879), }, - [1400] = { - [aux_sym_terminator_token1] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [aux_sym_identifier_token1] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1885), - [sym_alias] = ACTIONS(1885), - [sym_integer] = ACTIONS(1885), - [sym_float] = ACTIONS(1885), - [sym_char] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_nil] = ACTIONS(1885), - [sym_atom_] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1885), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_LT_LT] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1885), - [anon_sym_not] = ACTIONS(1885), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_LT_DASH] = ACTIONS(1885), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1885), - [anon_sym_when] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_or] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1885), - [anon_sym_and] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_EQ_TILDE] = ACTIONS(1885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_PIPE_GT] = ACTIONS(1885), - [anon_sym_LT_LT_LT] = ACTIONS(1885), - [anon_sym_GT_GT_GT] = ACTIONS(1885), - [anon_sym_LT_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_PIPE_GT] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(1885), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1885), - [anon_sym_LT_GT] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_STAR_STAR] = ACTIONS(1885), - [anon_sym_DASH_GT] = ACTIONS(1885), - [anon_sym_end] = ACTIONS(1885), - [anon_sym_fn] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1885), - [sym_semgrep_metavariable] = ACTIONS(1885), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1885), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1883), - [sym_not_in] = ACTIONS(1883), - [sym_quoted_atom_start] = ACTIONS(1883), + [1391] = { + [ts_builtin_sym_end] = ACTIONS(1895), + [aux_sym_terminator_token1] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [aux_sym_identifier_token1] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [sym_alias] = ACTIONS(1897), + [sym_integer] = ACTIONS(1897), + [sym_float] = ACTIONS(1897), + [sym_char] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_nil] = ACTIONS(1897), + [sym_atom_] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1897), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_PERCENT] = ACTIONS(1897), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_CARET] = ACTIONS(1897), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1897), + [anon_sym_not] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1897), + [anon_sym_LT_DASH] = ACTIONS(1897), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1897), + [anon_sym_when] = ACTIONS(1897), + [anon_sym_COLON_COLON] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_or] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1897), + [anon_sym_and] = ACTIONS(1897), + [anon_sym_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ] = ACTIONS(1897), + [anon_sym_EQ_TILDE] = ACTIONS(1897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1897), + [anon_sym_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_EQ] = ACTIONS(1897), + [anon_sym_PIPE_GT] = ACTIONS(1897), + [anon_sym_LT_LT_LT] = ACTIONS(1897), + [anon_sym_GT_GT_GT] = ACTIONS(1897), + [anon_sym_LT_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE] = ACTIONS(1897), + [anon_sym_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_TILDE_GT] = ACTIONS(1897), + [anon_sym_LT_PIPE_GT] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1897), + [anon_sym_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1897), + [anon_sym_LT_GT] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_STAR_STAR] = ACTIONS(1897), + [anon_sym_DASH_GT] = ACTIONS(1897), + [anon_sym_fn] = ACTIONS(1897), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1897), + [sym_semgrep_metavariable] = ACTIONS(1897), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1897), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1897), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1895), + [sym_not_in] = ACTIONS(1895), + [sym_quoted_atom_start] = ACTIONS(1895), }, - [1401] = { + [1392] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1885), - [aux_sym_identifier_token1] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1885), - [sym_alias] = ACTIONS(1885), - [sym_integer] = ACTIONS(1885), - [sym_float] = ACTIONS(1885), - [sym_char] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_nil] = ACTIONS(1885), - [sym_atom_] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1885), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [sym_keyword_] = ACTIONS(1885), - [anon_sym_LT_LT] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1885), - [anon_sym_not] = ACTIONS(1885), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_LT_DASH] = ACTIONS(1885), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1885), - [anon_sym_when] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_or] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1885), - [anon_sym_and] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_EQ_TILDE] = ACTIONS(1885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_PIPE_GT] = ACTIONS(1885), - [anon_sym_LT_LT_LT] = ACTIONS(1885), - [anon_sym_GT_GT_GT] = ACTIONS(1885), - [anon_sym_LT_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_PIPE_GT] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(1885), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1885), - [anon_sym_LT_GT] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_STAR_STAR] = ACTIONS(1885), - [anon_sym_DASH_GT] = ACTIONS(1885), - [anon_sym_end] = ACTIONS(1885), - [anon_sym_fn] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1885), - [sym_semgrep_metavariable] = ACTIONS(1885), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1885), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1883), - [sym_not_in] = ACTIONS(1883), - [sym_quoted_atom_start] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_RPAREN] = ACTIONS(1899), + [aux_sym_identifier_token1] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), + [sym_alias] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1899), + [sym_char] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_nil] = ACTIONS(1899), + [sym_atom_] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1899), + [anon_sym_not] = ACTIONS(1899), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1899), + [anon_sym_when] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1899), + [anon_sym_and] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_EQ_TILDE] = ACTIONS(1899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_PIPE_GT] = ACTIONS(1899), + [anon_sym_LT_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_LT_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_PIPE_GT] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1899), + [anon_sym_LT_GT] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_STAR_STAR] = ACTIONS(1899), + [anon_sym_DASH_GT] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1899), + [sym_semgrep_metavariable] = ACTIONS(1899), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1899), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1899), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1901), + [sym_not_in] = ACTIONS(1901), + [sym_quoted_atom_start] = ACTIONS(1901), }, - [1402] = { - [ts_builtin_sym_end] = ACTIONS(1879), - [aux_sym_terminator_token1] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [aux_sym_identifier_token1] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), - [sym_alias] = ACTIONS(1881), - [sym_integer] = ACTIONS(1881), - [sym_float] = ACTIONS(1881), - [sym_char] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_nil] = ACTIONS(1881), - [sym_atom_] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1881), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1881), - [anon_sym_not] = ACTIONS(1881), - [anon_sym_AT] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1881), - [anon_sym_when] = ACTIONS(1881), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1881), - [anon_sym_and] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_EQ_TILDE] = ACTIONS(1881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_PIPE_GT] = ACTIONS(1881), - [anon_sym_LT_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_LT_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_PIPE_GT] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1881), - [anon_sym_LT_GT] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_STAR_STAR] = ACTIONS(1881), - [anon_sym_DASH_GT] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1881), - [sym_semgrep_metavariable] = ACTIONS(1881), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1881), + [1393] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(1879), [sym_not_in] = ACTIONS(1879), [sym_quoted_atom_start] = ACTIONS(1879), }, - [1403] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [sym_keyword_] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), + [1394] = { + [ts_builtin_sym_end] = ACTIONS(1901), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1899), + [aux_sym_identifier_token1] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), + [sym_alias] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1899), + [sym_char] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_nil] = ACTIONS(1899), + [sym_atom_] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1899), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1899), + [anon_sym_not] = ACTIONS(1899), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1899), + [anon_sym_when] = ACTIONS(1899), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1899), + [anon_sym_or] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1899), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1899), + [anon_sym_and] = ACTIONS(1899), + [anon_sym_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_EQ_TILDE] = ACTIONS(1899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_PIPE_GT] = ACTIONS(1899), + [anon_sym_LT_LT_LT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1899), + [anon_sym_LT_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE] = ACTIONS(1899), + [anon_sym_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_TILDE_GT] = ACTIONS(1899), + [anon_sym_LT_PIPE_GT] = ACTIONS(1899), + [anon_sym_in] = ACTIONS(1899), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1899), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1899), + [anon_sym_LT_GT] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_STAR_STAR] = ACTIONS(1899), + [anon_sym_DASH_GT] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1899), + [sym_semgrep_metavariable] = ACTIONS(1899), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1899), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1899), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1901), + [sym_not_in] = ACTIONS(1901), + [sym_quoted_atom_start] = ACTIONS(1901), }, - [1404] = { - [aux_sym_terminator_token1] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [aux_sym_identifier_token1] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), - [sym_alias] = ACTIONS(1881), - [sym_integer] = ACTIONS(1881), - [sym_float] = ACTIONS(1881), - [sym_char] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [anon_sym_nil] = ACTIONS(1881), - [sym_atom_] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1881), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1881), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1881), - [anon_sym_not] = ACTIONS(1881), - [anon_sym_AT] = ACTIONS(1881), - [anon_sym_LT_DASH] = ACTIONS(1881), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1881), - [anon_sym_when] = ACTIONS(1881), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_EQ] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_or] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1881), - [anon_sym_and] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_EQ_TILDE] = ACTIONS(1881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_PIPE_GT] = ACTIONS(1881), - [anon_sym_LT_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_LT_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE] = ACTIONS(1881), - [anon_sym_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_TILDE_GT] = ACTIONS(1881), - [anon_sym_LT_PIPE_GT] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1881), - [anon_sym_LT_GT] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_STAR_STAR] = ACTIONS(1881), - [anon_sym_DASH_GT] = ACTIONS(1881), - [anon_sym_end] = ACTIONS(1881), - [anon_sym_fn] = ACTIONS(1881), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1881), - [sym_semgrep_metavariable] = ACTIONS(1881), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1881), + [1395] = { + [ts_builtin_sym_end] = ACTIONS(1879), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1877), + [aux_sym_identifier_token1] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [anon_sym_nil] = ACTIONS(1877), + [sym_atom_] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1877), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1877), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1877), + [anon_sym_when] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1877), + [anon_sym_and] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_EQ_TILDE] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_PIPE_GT] = ACTIONS(1877), + [anon_sym_LT_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_LT_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE] = ACTIONS(1877), + [anon_sym_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_TILDE_GT] = ACTIONS(1877), + [anon_sym_LT_PIPE_GT] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_GT] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_STAR_STAR] = ACTIONS(1877), + [anon_sym_DASH_GT] = ACTIONS(1877), + [anon_sym_fn] = ACTIONS(1877), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1877), + [sym_semgrep_metavariable] = ACTIONS(1877), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1877), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1877), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_before_unary_op] = ACTIONS(1879), [sym_not_in] = ACTIONS(1879), [sym_quoted_atom_start] = ACTIONS(1879), }, - [1405] = { - [aux_sym_terminator_token1] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), - }, - [1406] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), - }, - [1407] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [aux_sym_identifier_token1] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1885), - [sym_alias] = ACTIONS(1885), - [sym_integer] = ACTIONS(1885), - [sym_float] = ACTIONS(1885), - [sym_char] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_nil] = ACTIONS(1885), - [sym_atom_] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1885), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_LT_LT] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1885), - [anon_sym_not] = ACTIONS(1885), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_LT_DASH] = ACTIONS(1885), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1885), - [anon_sym_when] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_or] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1885), - [anon_sym_and] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_EQ_TILDE] = ACTIONS(1885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_PIPE_GT] = ACTIONS(1885), - [anon_sym_LT_LT_LT] = ACTIONS(1885), - [anon_sym_GT_GT_GT] = ACTIONS(1885), - [anon_sym_LT_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_PIPE_GT] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(1885), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1885), - [anon_sym_LT_GT] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_STAR_STAR] = ACTIONS(1885), - [anon_sym_DASH_GT] = ACTIONS(1885), - [anon_sym_fn] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1885), - [sym_semgrep_metavariable] = ACTIONS(1885), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1885), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1883), - [sym_not_in] = ACTIONS(1883), - [sym_quoted_atom_start] = ACTIONS(1883), - }, - [1408] = { - [ts_builtin_sym_end] = ACTIONS(1863), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1861), - [aux_sym_identifier_token1] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1861), - [anon_sym_false] = ACTIONS(1861), - [anon_sym_nil] = ACTIONS(1861), - [sym_atom_] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1861), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LT_DASH] = ACTIONS(1861), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1861), - [anon_sym_when] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1861), - [anon_sym_or] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1861), - [anon_sym_and] = ACTIONS(1861), - [anon_sym_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ] = ACTIONS(1861), - [anon_sym_EQ_TILDE] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_PIPE_GT] = ACTIONS(1861), - [anon_sym_LT_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE] = ACTIONS(1861), - [anon_sym_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_TILDE_GT] = ACTIONS(1861), - [anon_sym_LT_PIPE_GT] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1861), - [anon_sym_LT_GT] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_DASH_GT] = ACTIONS(1861), - [anon_sym_fn] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1861), - [sym_semgrep_metavariable] = ACTIONS(1861), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1861), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1863), - [sym_not_in] = ACTIONS(1863), - [sym_quoted_atom_start] = ACTIONS(1863), - }, - [1409] = { - [ts_builtin_sym_end] = ACTIONS(1883), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1885), - [aux_sym_identifier_token1] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1885), - [sym_alias] = ACTIONS(1885), - [sym_integer] = ACTIONS(1885), - [sym_float] = ACTIONS(1885), - [sym_char] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [anon_sym_nil] = ACTIONS(1885), - [sym_atom_] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1885), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_SLASH] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_LT_LT] = ACTIONS(1885), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1885), - [anon_sym_not] = ACTIONS(1885), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_LT_DASH] = ACTIONS(1885), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1885), - [anon_sym_when] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_or] = ACTIONS(1885), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1885), - [anon_sym_and] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1885), - [anon_sym_EQ_TILDE] = ACTIONS(1885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_PIPE_GT] = ACTIONS(1885), - [anon_sym_LT_LT_LT] = ACTIONS(1885), - [anon_sym_GT_GT_GT] = ACTIONS(1885), - [anon_sym_LT_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE] = ACTIONS(1885), - [anon_sym_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_TILDE_GT] = ACTIONS(1885), - [anon_sym_LT_PIPE_GT] = ACTIONS(1885), - [anon_sym_in] = ACTIONS(1885), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1885), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1885), - [anon_sym_LT_GT] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_STAR_STAR] = ACTIONS(1885), - [anon_sym_DASH_GT] = ACTIONS(1885), - [anon_sym_fn] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1885), - [sym_semgrep_metavariable] = ACTIONS(1885), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1885), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1883), - [sym_not_in] = ACTIONS(1883), - [sym_quoted_atom_start] = ACTIONS(1883), - }, - [1410] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1914), - [aux_sym_identifier_token1] = ACTIONS(1914), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1914), - [sym_alias] = ACTIONS(1914), - [sym_integer] = ACTIONS(1914), - [sym_float] = ACTIONS(1914), - [sym_char] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_nil] = ACTIONS(1914), - [sym_atom_] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(1914), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1914), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_GT] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_SLASH] = ACTIONS(1914), - [anon_sym_TILDE] = ACTIONS(1914), - [anon_sym_LT_LT] = ACTIONS(1914), - [anon_sym_PERCENT] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_PLUS] = ACTIONS(1914), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_CARET] = ACTIONS(1914), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1914), - [anon_sym_not] = ACTIONS(1914), - [anon_sym_AT] = ACTIONS(1914), - [anon_sym_LT_DASH] = ACTIONS(1914), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1914), - [anon_sym_when] = ACTIONS(1914), - [anon_sym_COLON_COLON] = ACTIONS(1914), - [anon_sym_EQ] = ACTIONS(1914), - [anon_sym_PIPE_PIPE] = ACTIONS(1914), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1914), - [anon_sym_or] = ACTIONS(1914), - [anon_sym_AMP_AMP] = ACTIONS(1914), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1914), - [anon_sym_and] = ACTIONS(1914), - [anon_sym_EQ_EQ] = ACTIONS(1914), - [anon_sym_BANG_EQ] = ACTIONS(1914), - [anon_sym_EQ_TILDE] = ACTIONS(1914), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1914), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1914), - [anon_sym_LT_EQ] = ACTIONS(1914), - [anon_sym_GT_EQ] = ACTIONS(1914), - [anon_sym_PIPE_GT] = ACTIONS(1914), - [anon_sym_LT_LT_LT] = ACTIONS(1914), - [anon_sym_GT_GT_GT] = ACTIONS(1914), - [anon_sym_LT_LT_TILDE] = ACTIONS(1914), - [anon_sym_TILDE_GT_GT] = ACTIONS(1914), - [anon_sym_LT_TILDE] = ACTIONS(1914), - [anon_sym_TILDE_GT] = ACTIONS(1914), - [anon_sym_LT_TILDE_GT] = ACTIONS(1914), - [anon_sym_LT_PIPE_GT] = ACTIONS(1914), - [anon_sym_in] = ACTIONS(1914), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1914), - [anon_sym_PLUS_PLUS] = ACTIONS(1914), - [anon_sym_DASH_DASH] = ACTIONS(1914), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1914), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1914), - [anon_sym_LT_GT] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_STAR_STAR] = ACTIONS(1914), - [anon_sym_DASH_GT] = ACTIONS(1914), - [anon_sym_fn] = ACTIONS(1914), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1914), - [sym_semgrep_metavariable] = ACTIONS(1914), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1914), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1916), - [sym_not_in] = ACTIONS(1916), - [sym_quoted_atom_start] = ACTIONS(1916), - }, - [1411] = { - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1918), - [aux_sym_identifier_token1] = ACTIONS(1918), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1918), - [sym_alias] = ACTIONS(1918), - [sym_integer] = ACTIONS(1918), - [sym_float] = ACTIONS(1918), - [sym_char] = ACTIONS(1918), - [anon_sym_true] = ACTIONS(1918), - [anon_sym_false] = ACTIONS(1918), - [anon_sym_nil] = ACTIONS(1918), - [sym_atom_] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1918), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_SLASH] = ACTIONS(1918), - [anon_sym_TILDE] = ACTIONS(1918), - [anon_sym_LT_LT] = ACTIONS(1918), - [anon_sym_PERCENT] = ACTIONS(1918), - [anon_sym_DOT_DOT] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_CARET] = ACTIONS(1918), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), - [anon_sym_not] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(1918), - [anon_sym_LT_DASH] = ACTIONS(1918), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1918), - [anon_sym_when] = ACTIONS(1918), - [anon_sym_COLON_COLON] = ACTIONS(1918), - [anon_sym_EQ] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1918), - [anon_sym_or] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1918), - [anon_sym_and] = ACTIONS(1918), - [anon_sym_EQ_EQ] = ACTIONS(1918), - [anon_sym_BANG_EQ] = ACTIONS(1918), - [anon_sym_EQ_TILDE] = ACTIONS(1918), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1918), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1918), - [anon_sym_LT_EQ] = ACTIONS(1918), - [anon_sym_GT_EQ] = ACTIONS(1918), - [anon_sym_PIPE_GT] = ACTIONS(1918), - [anon_sym_LT_LT_LT] = ACTIONS(1918), - [anon_sym_GT_GT_GT] = ACTIONS(1918), - [anon_sym_LT_LT_TILDE] = ACTIONS(1918), - [anon_sym_TILDE_GT_GT] = ACTIONS(1918), - [anon_sym_LT_TILDE] = ACTIONS(1918), - [anon_sym_TILDE_GT] = ACTIONS(1918), - [anon_sym_LT_TILDE_GT] = ACTIONS(1918), - [anon_sym_LT_PIPE_GT] = ACTIONS(1918), - [anon_sym_in] = ACTIONS(1918), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1918), - [anon_sym_PLUS_PLUS] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1918), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1918), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1918), - [anon_sym_LT_GT] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_STAR_STAR] = ACTIONS(1918), - [anon_sym_DASH_GT] = ACTIONS(1918), - [anon_sym_fn] = ACTIONS(1918), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1918), - [sym_semgrep_metavariable] = ACTIONS(1918), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1918), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1920), - [sym_not_in] = ACTIONS(1920), - [sym_quoted_atom_start] = ACTIONS(1920), - }, - [1412] = { + [1396] = { [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1922), - [aux_sym_identifier_token1] = ACTIONS(1922), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1922), - [sym_alias] = ACTIONS(1922), - [sym_integer] = ACTIONS(1922), - [sym_float] = ACTIONS(1922), - [sym_char] = ACTIONS(1922), - [anon_sym_true] = ACTIONS(1922), - [anon_sym_false] = ACTIONS(1922), - [anon_sym_nil] = ACTIONS(1922), - [sym_atom_] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1922), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_SLASH] = ACTIONS(1922), - [anon_sym_TILDE] = ACTIONS(1922), - [anon_sym_LT_LT] = ACTIONS(1922), - [anon_sym_PERCENT] = ACTIONS(1922), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_CARET] = ACTIONS(1922), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1922), - [anon_sym_not] = ACTIONS(1922), - [anon_sym_AT] = ACTIONS(1922), - [anon_sym_LT_DASH] = ACTIONS(1922), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1922), - [anon_sym_when] = ACTIONS(1922), - [anon_sym_COLON_COLON] = ACTIONS(1922), - [anon_sym_EQ] = ACTIONS(1922), - [anon_sym_PIPE_PIPE] = ACTIONS(1922), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1922), - [anon_sym_or] = ACTIONS(1922), - [anon_sym_AMP_AMP] = ACTIONS(1922), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1922), - [anon_sym_and] = ACTIONS(1922), - [anon_sym_EQ_EQ] = ACTIONS(1922), - [anon_sym_BANG_EQ] = ACTIONS(1922), - [anon_sym_EQ_TILDE] = ACTIONS(1922), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1922), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1922), - [anon_sym_LT_EQ] = ACTIONS(1922), - [anon_sym_GT_EQ] = ACTIONS(1922), - [anon_sym_PIPE_GT] = ACTIONS(1922), - [anon_sym_LT_LT_LT] = ACTIONS(1922), - [anon_sym_GT_GT_GT] = ACTIONS(1922), - [anon_sym_LT_LT_TILDE] = ACTIONS(1922), - [anon_sym_TILDE_GT_GT] = ACTIONS(1922), - [anon_sym_LT_TILDE] = ACTIONS(1922), - [anon_sym_TILDE_GT] = ACTIONS(1922), - [anon_sym_LT_TILDE_GT] = ACTIONS(1922), - [anon_sym_LT_PIPE_GT] = ACTIONS(1922), - [anon_sym_in] = ACTIONS(1922), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1922), - [anon_sym_PLUS_PLUS] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1922), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1922), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1922), - [anon_sym_LT_GT] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_STAR_STAR] = ACTIONS(1922), - [anon_sym_DASH_GT] = ACTIONS(1922), - [anon_sym_fn] = ACTIONS(1922), - [sym_comment] = ACTIONS(5), - [anon_sym_COLON] = ACTIONS(1922), - [sym_semgrep_metavariable] = ACTIONS(1922), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1922), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_before_unary_op] = ACTIONS(1924), - [sym_not_in] = ACTIONS(1924), - [sym_quoted_atom_start] = ACTIONS(1924), - }, - [1413] = { - [sym_identifier] = STATE(1281), - [sym_quoted_i_double] = STATE(1281), - [sym_quoted_i_single] = STATE(1281), - [sym_tuple] = STATE(4320), - [sym_operator_identifier] = STATE(1281), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(1928), + [anon_sym_LPAREN] = ACTIONS(1930), + [aux_sym_identifier_token1] = ACTIONS(1930), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1930), + [sym_alias] = ACTIONS(1930), + [sym_integer] = ACTIONS(1930), + [sym_float] = ACTIONS(1930), + [sym_char] = ACTIONS(1930), [anon_sym_true] = ACTIONS(1930), [anon_sym_false] = ACTIONS(1930), [anon_sym_nil] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(1932), - [anon_sym_SQUOTE] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_SLASH] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_CARET] = ACTIONS(1940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1940), - [anon_sym_not] = ACTIONS(1942), - [anon_sym_AT] = ACTIONS(1944), - [anon_sym_LT_DASH] = ACTIONS(1936), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1936), - [anon_sym_when] = ACTIONS(1946), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_EQ] = ACTIONS(1936), - [anon_sym_PIPE_PIPE] = ACTIONS(1936), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1936), - [anon_sym_or] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1936), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1936), - [anon_sym_and] = ACTIONS(1946), - [anon_sym_EQ_EQ] = ACTIONS(1936), - [anon_sym_BANG_EQ] = ACTIONS(1936), - [anon_sym_EQ_TILDE] = ACTIONS(1936), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1936), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1936), - [anon_sym_LT_EQ] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1936), - [anon_sym_PIPE_GT] = ACTIONS(1936), - [anon_sym_LT_LT_LT] = ACTIONS(1936), - [anon_sym_GT_GT_GT] = ACTIONS(1936), - [anon_sym_LT_LT_TILDE] = ACTIONS(1936), - [anon_sym_TILDE_GT_GT] = ACTIONS(1936), - [anon_sym_LT_TILDE] = ACTIONS(1936), - [anon_sym_TILDE_GT] = ACTIONS(1936), - [anon_sym_LT_TILDE_GT] = ACTIONS(1936), - [anon_sym_LT_PIPE_GT] = ACTIONS(1936), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1936), - [anon_sym_DASH_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1936), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1936), - [anon_sym_LT_GT] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_STAR_STAR] = ACTIONS(1936), - [anon_sym_DASH_GT] = ACTIONS(1936), - [anon_sym_after] = ACTIONS(1930), - [anon_sym_catch] = ACTIONS(1930), - [anon_sym_do] = ACTIONS(1930), - [anon_sym_else] = ACTIONS(1930), - [anon_sym_end] = ACTIONS(1930), + [sym_atom_] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_SLASH] = ACTIONS(1930), + [anon_sym_TILDE] = ACTIONS(1930), + [anon_sym_LT_LT] = ACTIONS(1930), + [anon_sym_PERCENT] = ACTIONS(1930), + [anon_sym_DOT_DOT] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1930), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1930), + [anon_sym_not] = ACTIONS(1930), + [anon_sym_AT] = ACTIONS(1930), + [anon_sym_LT_DASH] = ACTIONS(1930), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1930), + [anon_sym_when] = ACTIONS(1930), + [anon_sym_COLON_COLON] = ACTIONS(1930), + [anon_sym_EQ] = ACTIONS(1930), + [anon_sym_PIPE_PIPE] = ACTIONS(1930), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1930), + [anon_sym_or] = ACTIONS(1930), + [anon_sym_AMP_AMP] = ACTIONS(1930), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1930), + [anon_sym_and] = ACTIONS(1930), + [anon_sym_EQ_EQ] = ACTIONS(1930), + [anon_sym_BANG_EQ] = ACTIONS(1930), + [anon_sym_EQ_TILDE] = ACTIONS(1930), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1930), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1930), + [anon_sym_LT_EQ] = ACTIONS(1930), + [anon_sym_GT_EQ] = ACTIONS(1930), + [anon_sym_PIPE_GT] = ACTIONS(1930), + [anon_sym_LT_LT_LT] = ACTIONS(1930), + [anon_sym_GT_GT_GT] = ACTIONS(1930), + [anon_sym_LT_LT_TILDE] = ACTIONS(1930), + [anon_sym_TILDE_GT_GT] = ACTIONS(1930), + [anon_sym_LT_TILDE] = ACTIONS(1930), + [anon_sym_TILDE_GT] = ACTIONS(1930), + [anon_sym_LT_TILDE_GT] = ACTIONS(1930), + [anon_sym_LT_PIPE_GT] = ACTIONS(1930), + [anon_sym_in] = ACTIONS(1930), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1930), + [anon_sym_LT_GT] = ACTIONS(1930), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_STAR_STAR] = ACTIONS(1930), + [anon_sym_DASH_GT] = ACTIONS(1930), [anon_sym_fn] = ACTIONS(1930), - [anon_sym_rescue] = ACTIONS(1930), [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1595), + [anon_sym_COLON] = ACTIONS(1930), + [sym_semgrep_metavariable] = ACTIONS(1930), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1930), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1930), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(1948), + [sym_before_unary_op] = ACTIONS(1932), + [sym_not_in] = ACTIONS(1932), + [sym_quoted_atom_start] = ACTIONS(1932), }, - [1414] = { - [sym_identifier] = STATE(1300), - [sym_quoted_i_double] = STATE(1300), - [sym_quoted_i_single] = STATE(1300), - [sym_tuple] = STATE(2052), - [sym_operator_identifier] = STATE(1300), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), - [sym_alias] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [anon_sym_nil] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_GT] = ACTIONS(1958), - [anon_sym_PIPE] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1962), - [anon_sym_not] = ACTIONS(1964), - [anon_sym_AT] = ACTIONS(1966), - [anon_sym_LT_DASH] = ACTIONS(1958), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1958), - [anon_sym_when] = ACTIONS(1968), - [anon_sym_COLON_COLON] = ACTIONS(1958), - [anon_sym_EQ] = ACTIONS(1958), - [anon_sym_PIPE_PIPE] = ACTIONS(1958), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1958), - [anon_sym_or] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1958), - [anon_sym_and] = ACTIONS(1968), - [anon_sym_EQ_EQ] = ACTIONS(1958), - [anon_sym_BANG_EQ] = ACTIONS(1958), - [anon_sym_EQ_TILDE] = ACTIONS(1958), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1958), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1958), - [anon_sym_LT_EQ] = ACTIONS(1958), - [anon_sym_GT_EQ] = ACTIONS(1958), - [anon_sym_PIPE_GT] = ACTIONS(1958), - [anon_sym_LT_LT_LT] = ACTIONS(1958), - [anon_sym_GT_GT_GT] = ACTIONS(1958), - [anon_sym_LT_LT_TILDE] = ACTIONS(1958), - [anon_sym_TILDE_GT_GT] = ACTIONS(1958), - [anon_sym_LT_TILDE] = ACTIONS(1958), - [anon_sym_TILDE_GT] = ACTIONS(1958), - [anon_sym_LT_TILDE_GT] = ACTIONS(1958), - [anon_sym_LT_PIPE_GT] = ACTIONS(1958), - [anon_sym_in] = ACTIONS(1968), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1958), - [anon_sym_PLUS_PLUS] = ACTIONS(1958), - [anon_sym_DASH_DASH] = ACTIONS(1958), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1958), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1958), - [anon_sym_LT_GT] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_STAR_STAR] = ACTIONS(1958), - [anon_sym_DASH_GT] = ACTIONS(1958), - [anon_sym_after] = ACTIONS(1952), - [anon_sym_catch] = ACTIONS(1952), - [anon_sym_do] = ACTIONS(1952), - [anon_sym_else] = ACTIONS(1952), - [anon_sym_end] = ACTIONS(1952), - [anon_sym_fn] = ACTIONS(1952), - [anon_sym_rescue] = ACTIONS(1952), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1719), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(1970), + [1397] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1934), + [aux_sym_identifier_token1] = ACTIONS(1934), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1934), + [sym_alias] = ACTIONS(1934), + [sym_integer] = ACTIONS(1934), + [sym_float] = ACTIONS(1934), + [sym_char] = ACTIONS(1934), + [anon_sym_true] = ACTIONS(1934), + [anon_sym_false] = ACTIONS(1934), + [anon_sym_nil] = ACTIONS(1934), + [sym_atom_] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_LT] = ACTIONS(1934), + [anon_sym_GT] = ACTIONS(1934), + [anon_sym_PIPE] = ACTIONS(1934), + [anon_sym_SLASH] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_LT_LT] = ACTIONS(1934), + [anon_sym_PERCENT] = ACTIONS(1934), + [anon_sym_DOT_DOT] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1934), + [anon_sym_not] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(1934), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1934), + [anon_sym_when] = ACTIONS(1934), + [anon_sym_COLON_COLON] = ACTIONS(1934), + [anon_sym_EQ] = ACTIONS(1934), + [anon_sym_PIPE_PIPE] = ACTIONS(1934), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1934), + [anon_sym_or] = ACTIONS(1934), + [anon_sym_AMP_AMP] = ACTIONS(1934), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1934), + [anon_sym_and] = ACTIONS(1934), + [anon_sym_EQ_EQ] = ACTIONS(1934), + [anon_sym_BANG_EQ] = ACTIONS(1934), + [anon_sym_EQ_TILDE] = ACTIONS(1934), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1934), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1934), + [anon_sym_LT_EQ] = ACTIONS(1934), + [anon_sym_GT_EQ] = ACTIONS(1934), + [anon_sym_PIPE_GT] = ACTIONS(1934), + [anon_sym_LT_LT_LT] = ACTIONS(1934), + [anon_sym_GT_GT_GT] = ACTIONS(1934), + [anon_sym_LT_LT_TILDE] = ACTIONS(1934), + [anon_sym_TILDE_GT_GT] = ACTIONS(1934), + [anon_sym_LT_TILDE] = ACTIONS(1934), + [anon_sym_TILDE_GT] = ACTIONS(1934), + [anon_sym_LT_TILDE_GT] = ACTIONS(1934), + [anon_sym_LT_PIPE_GT] = ACTIONS(1934), + [anon_sym_in] = ACTIONS(1934), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1934), + [anon_sym_LT_GT] = ACTIONS(1934), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_STAR_STAR] = ACTIONS(1934), + [anon_sym_DASH_GT] = ACTIONS(1934), + [anon_sym_fn] = ACTIONS(1934), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1934), + [sym_semgrep_metavariable] = ACTIONS(1934), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1934), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1934), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1936), + [sym_not_in] = ACTIONS(1936), + [sym_quoted_atom_start] = ACTIONS(1936), }, - [1415] = { - [sym_identifier] = STATE(1292), - [sym_quoted_i_double] = STATE(1292), - [sym_quoted_i_single] = STATE(1292), - [sym_tuple] = STATE(1930), - [sym_operator_identifier] = STATE(1292), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(1972), - [anon_sym_true] = ACTIONS(1974), - [anon_sym_false] = ACTIONS(1974), - [anon_sym_nil] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_SLASH] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_CARET] = ACTIONS(1984), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), - [anon_sym_not] = ACTIONS(1986), - [anon_sym_AT] = ACTIONS(1988), - [anon_sym_LT_DASH] = ACTIONS(1980), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1980), - [anon_sym_when] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_EQ] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_or] = ACTIONS(1990), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1980), - [anon_sym_and] = ACTIONS(1990), - [anon_sym_EQ_EQ] = ACTIONS(1980), - [anon_sym_BANG_EQ] = ACTIONS(1980), - [anon_sym_EQ_TILDE] = ACTIONS(1980), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), - [anon_sym_LT_EQ] = ACTIONS(1980), - [anon_sym_GT_EQ] = ACTIONS(1980), - [anon_sym_PIPE_GT] = ACTIONS(1980), - [anon_sym_LT_LT_LT] = ACTIONS(1980), - [anon_sym_GT_GT_GT] = ACTIONS(1980), - [anon_sym_LT_LT_TILDE] = ACTIONS(1980), - [anon_sym_TILDE_GT_GT] = ACTIONS(1980), - [anon_sym_LT_TILDE] = ACTIONS(1980), - [anon_sym_TILDE_GT] = ACTIONS(1980), - [anon_sym_LT_TILDE_GT] = ACTIONS(1980), - [anon_sym_LT_PIPE_GT] = ACTIONS(1980), - [anon_sym_in] = ACTIONS(1990), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1980), - [anon_sym_PLUS_PLUS] = ACTIONS(1980), - [anon_sym_DASH_DASH] = ACTIONS(1980), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1980), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1980), - [anon_sym_LT_GT] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_STAR_STAR] = ACTIONS(1980), - [anon_sym_DASH_GT] = ACTIONS(1980), - [anon_sym_after] = ACTIONS(1974), - [anon_sym_catch] = ACTIONS(1974), - [anon_sym_do] = ACTIONS(1974), - [anon_sym_else] = ACTIONS(1974), - [anon_sym_end] = ACTIONS(1974), - [anon_sym_fn] = ACTIONS(1974), - [anon_sym_rescue] = ACTIONS(1974), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1677), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(1992), + [1398] = { + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1938), + [aux_sym_identifier_token1] = ACTIONS(1938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), + [sym_alias] = ACTIONS(1938), + [sym_integer] = ACTIONS(1938), + [sym_float] = ACTIONS(1938), + [sym_char] = ACTIONS(1938), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_nil] = ACTIONS(1938), + [sym_atom_] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_SLASH] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_LT_LT] = ACTIONS(1938), + [anon_sym_PERCENT] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1938), + [anon_sym_not] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1938), + [anon_sym_LT_DASH] = ACTIONS(1938), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1938), + [anon_sym_when] = ACTIONS(1938), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_EQ] = ACTIONS(1938), + [anon_sym_PIPE_PIPE] = ACTIONS(1938), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1938), + [anon_sym_or] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1938), + [anon_sym_and] = ACTIONS(1938), + [anon_sym_EQ_EQ] = ACTIONS(1938), + [anon_sym_BANG_EQ] = ACTIONS(1938), + [anon_sym_EQ_TILDE] = ACTIONS(1938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1938), + [anon_sym_LT_EQ] = ACTIONS(1938), + [anon_sym_GT_EQ] = ACTIONS(1938), + [anon_sym_PIPE_GT] = ACTIONS(1938), + [anon_sym_LT_LT_LT] = ACTIONS(1938), + [anon_sym_GT_GT_GT] = ACTIONS(1938), + [anon_sym_LT_LT_TILDE] = ACTIONS(1938), + [anon_sym_TILDE_GT_GT] = ACTIONS(1938), + [anon_sym_LT_TILDE] = ACTIONS(1938), + [anon_sym_TILDE_GT] = ACTIONS(1938), + [anon_sym_LT_TILDE_GT] = ACTIONS(1938), + [anon_sym_LT_PIPE_GT] = ACTIONS(1938), + [anon_sym_in] = ACTIONS(1938), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1938), + [anon_sym_LT_GT] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_STAR_STAR] = ACTIONS(1938), + [anon_sym_DASH_GT] = ACTIONS(1938), + [anon_sym_fn] = ACTIONS(1938), + [sym_comment] = ACTIONS(5), + [anon_sym_COLON] = ACTIONS(1938), + [sym_semgrep_metavariable] = ACTIONS(1938), + [sym_semgrep_ellipsis_metavariable] = ACTIONS(1938), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1938), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_before_unary_op] = ACTIONS(1940), + [sym_not_in] = ACTIONS(1940), + [sym_quoted_atom_start] = ACTIONS(1940), }, - [1416] = { - [sym_identifier] = STATE(1240), - [sym_quoted_i_double] = STATE(1240), - [sym_quoted_i_single] = STATE(1240), - [sym_tuple] = STATE(3536), - [sym_operator_identifier] = STATE(1240), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_nil] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1998), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_GT] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_SLASH] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_CARET] = ACTIONS(2006), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), - [anon_sym_not] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(2010), - [anon_sym_LT_DASH] = ACTIONS(2002), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2002), - [anon_sym_when] = ACTIONS(2012), - [anon_sym_COLON_COLON] = ACTIONS(2002), - [anon_sym_EQ] = ACTIONS(2002), - [anon_sym_PIPE_PIPE] = ACTIONS(2002), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2002), - [anon_sym_or] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2002), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2002), - [anon_sym_and] = ACTIONS(2012), - [anon_sym_EQ_EQ] = ACTIONS(2002), - [anon_sym_BANG_EQ] = ACTIONS(2002), - [anon_sym_EQ_TILDE] = ACTIONS(2002), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2002), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2002), - [anon_sym_LT_EQ] = ACTIONS(2002), - [anon_sym_GT_EQ] = ACTIONS(2002), - [anon_sym_PIPE_GT] = ACTIONS(2002), - [anon_sym_LT_LT_LT] = ACTIONS(2002), - [anon_sym_GT_GT_GT] = ACTIONS(2002), - [anon_sym_LT_LT_TILDE] = ACTIONS(2002), - [anon_sym_TILDE_GT_GT] = ACTIONS(2002), - [anon_sym_LT_TILDE] = ACTIONS(2002), - [anon_sym_TILDE_GT] = ACTIONS(2002), - [anon_sym_LT_TILDE_GT] = ACTIONS(2002), - [anon_sym_LT_PIPE_GT] = ACTIONS(2002), - [anon_sym_in] = ACTIONS(2012), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2002), - [anon_sym_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2002), - [anon_sym_LT_GT] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_STAR_STAR] = ACTIONS(2002), - [anon_sym_DASH_GT] = ACTIONS(2002), - [anon_sym_after] = ACTIONS(1996), - [anon_sym_catch] = ACTIONS(1996), - [anon_sym_do] = ACTIONS(1996), - [anon_sym_else] = ACTIONS(1996), - [anon_sym_end] = ACTIONS(1996), - [anon_sym_fn] = ACTIONS(1996), - [anon_sym_rescue] = ACTIONS(1996), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1609), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2014), + [1399] = { + [sym_identifier] = STATE(1227), + [sym_quoted_i_double] = STATE(1227), + [sym_quoted_i_single] = STATE(1227), + [sym_tuple] = STATE(2188), + [sym_operator_identifier] = STATE(1227), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(1944), + [anon_sym_true] = ACTIONS(1946), + [anon_sym_false] = ACTIONS(1946), + [anon_sym_nil] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_GT] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_BANG] = ACTIONS(1956), + [anon_sym_CARET] = ACTIONS(1956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1958), + [anon_sym_AT] = ACTIONS(1960), + [anon_sym_LT_DASH] = ACTIONS(1952), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(1962), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_or] = ACTIONS(1962), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1952), + [anon_sym_and] = ACTIONS(1962), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_EQ_TILDE] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_PIPE_GT] = ACTIONS(1952), + [anon_sym_LT_LT_LT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT_TILDE] = ACTIONS(1952), + [anon_sym_TILDE_GT_GT] = ACTIONS(1952), + [anon_sym_LT_TILDE] = ACTIONS(1952), + [anon_sym_TILDE_GT] = ACTIONS(1952), + [anon_sym_LT_TILDE_GT] = ACTIONS(1952), + [anon_sym_LT_PIPE_GT] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1962), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1952), + [anon_sym_DASH_DASH] = ACTIONS(1952), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1952), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1952), + [anon_sym_LT_GT] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_DASH_GT] = ACTIONS(1952), + [anon_sym_after] = ACTIONS(1946), + [anon_sym_catch] = ACTIONS(1946), + [anon_sym_do] = ACTIONS(1946), + [anon_sym_else] = ACTIONS(1946), + [anon_sym_end] = ACTIONS(1946), + [anon_sym_fn] = ACTIONS(1946), + [anon_sym_rescue] = ACTIONS(1946), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(1964), }, - [1417] = { - [sym_identifier] = STATE(1281), - [sym_quoted_i_double] = STATE(1281), - [sym_quoted_i_single] = STATE(1281), - [sym_tuple] = STATE(3246), - [sym_operator_identifier] = STATE(1281), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), - [sym_alias] = ACTIONS(2016), - [anon_sym_true] = ACTIONS(1930), - [anon_sym_false] = ACTIONS(1930), - [anon_sym_nil] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(1932), - [anon_sym_SQUOTE] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(463), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_SLASH] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_CARET] = ACTIONS(1940), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1940), - [anon_sym_not] = ACTIONS(1942), - [anon_sym_AT] = ACTIONS(1944), - [anon_sym_LT_DASH] = ACTIONS(1936), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1936), - [anon_sym_when] = ACTIONS(1946), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_EQ] = ACTIONS(1936), - [anon_sym_PIPE_PIPE] = ACTIONS(1936), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1936), - [anon_sym_or] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1936), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1936), - [anon_sym_and] = ACTIONS(1946), - [anon_sym_EQ_EQ] = ACTIONS(1936), - [anon_sym_BANG_EQ] = ACTIONS(1936), - [anon_sym_EQ_TILDE] = ACTIONS(1936), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1936), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1936), - [anon_sym_LT_EQ] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1936), - [anon_sym_PIPE_GT] = ACTIONS(1936), - [anon_sym_LT_LT_LT] = ACTIONS(1936), - [anon_sym_GT_GT_GT] = ACTIONS(1936), - [anon_sym_LT_LT_TILDE] = ACTIONS(1936), - [anon_sym_TILDE_GT_GT] = ACTIONS(1936), - [anon_sym_LT_TILDE] = ACTIONS(1936), - [anon_sym_TILDE_GT] = ACTIONS(1936), - [anon_sym_LT_TILDE_GT] = ACTIONS(1936), - [anon_sym_LT_PIPE_GT] = ACTIONS(1936), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1936), - [anon_sym_DASH_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1936), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1936), - [anon_sym_LT_GT] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_STAR_STAR] = ACTIONS(1936), - [anon_sym_DASH_GT] = ACTIONS(1936), - [anon_sym_after] = ACTIONS(1930), - [anon_sym_catch] = ACTIONS(1930), - [anon_sym_do] = ACTIONS(1930), - [anon_sym_else] = ACTIONS(1930), - [anon_sym_end] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_rescue] = ACTIONS(1930), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1595), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(1948), + [1400] = { + [sym_identifier] = STATE(1348), + [sym_quoted_i_double] = STATE(1348), + [sym_quoted_i_single] = STATE(1348), + [sym_tuple] = STATE(4693), + [sym_operator_identifier] = STATE(1348), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(1966), + [anon_sym_true] = ACTIONS(1968), + [anon_sym_false] = ACTIONS(1968), + [anon_sym_nil] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_GT] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1978), + [anon_sym_not] = ACTIONS(1980), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(1974), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1974), + [anon_sym_when] = ACTIONS(1984), + [anon_sym_COLON_COLON] = ACTIONS(1974), + [anon_sym_EQ] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_or] = ACTIONS(1984), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1974), + [anon_sym_and] = ACTIONS(1984), + [anon_sym_EQ_EQ] = ACTIONS(1974), + [anon_sym_BANG_EQ] = ACTIONS(1974), + [anon_sym_EQ_TILDE] = ACTIONS(1974), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1974), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1974), + [anon_sym_LT_EQ] = ACTIONS(1974), + [anon_sym_GT_EQ] = ACTIONS(1974), + [anon_sym_PIPE_GT] = ACTIONS(1974), + [anon_sym_LT_LT_LT] = ACTIONS(1974), + [anon_sym_GT_GT_GT] = ACTIONS(1974), + [anon_sym_LT_LT_TILDE] = ACTIONS(1974), + [anon_sym_TILDE_GT_GT] = ACTIONS(1974), + [anon_sym_LT_TILDE] = ACTIONS(1974), + [anon_sym_TILDE_GT] = ACTIONS(1974), + [anon_sym_LT_TILDE_GT] = ACTIONS(1974), + [anon_sym_LT_PIPE_GT] = ACTIONS(1974), + [anon_sym_in] = ACTIONS(1984), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1974), + [anon_sym_LT_GT] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_STAR_STAR] = ACTIONS(1974), + [anon_sym_DASH_GT] = ACTIONS(1974), + [anon_sym_after] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_end] = ACTIONS(1968), + [anon_sym_fn] = ACTIONS(1968), + [anon_sym_rescue] = ACTIONS(1968), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(1986), }, - [1418] = { - [sym_identifier] = STATE(1292), - [sym_quoted_i_double] = STATE(1292), - [sym_quoted_i_single] = STATE(1292), - [sym_tuple] = STATE(2052), - [sym_operator_identifier] = STATE(1292), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1974), - [anon_sym_false] = ACTIONS(1974), - [anon_sym_nil] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_SLASH] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_CARET] = ACTIONS(1984), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), - [anon_sym_not] = ACTIONS(1986), - [anon_sym_AT] = ACTIONS(1988), - [anon_sym_LT_DASH] = ACTIONS(1980), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1980), - [anon_sym_when] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_EQ] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_or] = ACTIONS(1990), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1980), - [anon_sym_and] = ACTIONS(1990), - [anon_sym_EQ_EQ] = ACTIONS(1980), - [anon_sym_BANG_EQ] = ACTIONS(1980), - [anon_sym_EQ_TILDE] = ACTIONS(1980), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), - [anon_sym_LT_EQ] = ACTIONS(1980), - [anon_sym_GT_EQ] = ACTIONS(1980), - [anon_sym_PIPE_GT] = ACTIONS(1980), - [anon_sym_LT_LT_LT] = ACTIONS(1980), - [anon_sym_GT_GT_GT] = ACTIONS(1980), - [anon_sym_LT_LT_TILDE] = ACTIONS(1980), - [anon_sym_TILDE_GT_GT] = ACTIONS(1980), - [anon_sym_LT_TILDE] = ACTIONS(1980), - [anon_sym_TILDE_GT] = ACTIONS(1980), - [anon_sym_LT_TILDE_GT] = ACTIONS(1980), - [anon_sym_LT_PIPE_GT] = ACTIONS(1980), - [anon_sym_in] = ACTIONS(1990), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1980), - [anon_sym_PLUS_PLUS] = ACTIONS(1980), - [anon_sym_DASH_DASH] = ACTIONS(1980), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1980), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1980), - [anon_sym_LT_GT] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_STAR_STAR] = ACTIONS(1980), - [anon_sym_DASH_GT] = ACTIONS(1980), - [anon_sym_after] = ACTIONS(1974), - [anon_sym_catch] = ACTIONS(1974), - [anon_sym_do] = ACTIONS(1974), - [anon_sym_else] = ACTIONS(1974), - [anon_sym_end] = ACTIONS(1974), - [anon_sym_fn] = ACTIONS(1974), - [anon_sym_rescue] = ACTIONS(1974), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1677), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(1992), + [1401] = { + [sym_identifier] = STATE(1348), + [sym_quoted_i_double] = STATE(1348), + [sym_quoted_i_single] = STATE(1348), + [sym_tuple] = STATE(4021), + [sym_operator_identifier] = STATE(1348), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [sym_alias] = ACTIONS(1988), + [anon_sym_true] = ACTIONS(1968), + [anon_sym_false] = ACTIONS(1968), + [anon_sym_nil] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_GT] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1978), + [anon_sym_not] = ACTIONS(1980), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(1974), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1974), + [anon_sym_when] = ACTIONS(1984), + [anon_sym_COLON_COLON] = ACTIONS(1974), + [anon_sym_EQ] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_or] = ACTIONS(1984), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1974), + [anon_sym_and] = ACTIONS(1984), + [anon_sym_EQ_EQ] = ACTIONS(1974), + [anon_sym_BANG_EQ] = ACTIONS(1974), + [anon_sym_EQ_TILDE] = ACTIONS(1974), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1974), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1974), + [anon_sym_LT_EQ] = ACTIONS(1974), + [anon_sym_GT_EQ] = ACTIONS(1974), + [anon_sym_PIPE_GT] = ACTIONS(1974), + [anon_sym_LT_LT_LT] = ACTIONS(1974), + [anon_sym_GT_GT_GT] = ACTIONS(1974), + [anon_sym_LT_LT_TILDE] = ACTIONS(1974), + [anon_sym_TILDE_GT_GT] = ACTIONS(1974), + [anon_sym_LT_TILDE] = ACTIONS(1974), + [anon_sym_TILDE_GT] = ACTIONS(1974), + [anon_sym_LT_TILDE_GT] = ACTIONS(1974), + [anon_sym_LT_PIPE_GT] = ACTIONS(1974), + [anon_sym_in] = ACTIONS(1984), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1974), + [anon_sym_LT_GT] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_STAR_STAR] = ACTIONS(1974), + [anon_sym_DASH_GT] = ACTIONS(1974), + [anon_sym_after] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_end] = ACTIONS(1968), + [anon_sym_fn] = ACTIONS(1968), + [anon_sym_rescue] = ACTIONS(1968), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(516), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(1986), }, - [1419] = { - [sym_identifier] = STATE(1334), - [sym_quoted_i_double] = STATE(1334), - [sym_quoted_i_single] = STATE(1334), - [sym_tuple] = STATE(3579), - [sym_operator_identifier] = STATE(1334), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [anon_sym_nil] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_CARET] = ACTIONS(2030), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2030), - [anon_sym_not] = ACTIONS(2032), - [anon_sym_AT] = ACTIONS(2034), - [anon_sym_LT_DASH] = ACTIONS(2026), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2026), - [anon_sym_when] = ACTIONS(2036), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_EQ] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2026), - [anon_sym_and] = ACTIONS(2036), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_EQ_TILDE] = ACTIONS(2026), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2026), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_PIPE_GT] = ACTIONS(2026), - [anon_sym_LT_LT_LT] = ACTIONS(2026), - [anon_sym_GT_GT_GT] = ACTIONS(2026), - [anon_sym_LT_LT_TILDE] = ACTIONS(2026), - [anon_sym_TILDE_GT_GT] = ACTIONS(2026), - [anon_sym_LT_TILDE] = ACTIONS(2026), - [anon_sym_TILDE_GT] = ACTIONS(2026), - [anon_sym_LT_TILDE_GT] = ACTIONS(2026), - [anon_sym_LT_PIPE_GT] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2036), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2026), - [anon_sym_LT_GT] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_STAR_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [anon_sym_after] = ACTIONS(2020), - [anon_sym_catch] = ACTIONS(2020), - [anon_sym_do] = ACTIONS(2020), - [anon_sym_else] = ACTIONS(2020), - [anon_sym_end] = ACTIONS(2020), - [anon_sym_fn] = ACTIONS(2020), - [anon_sym_rescue] = ACTIONS(2020), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1649), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2038), + [1402] = { + [sym_identifier] = STATE(1294), + [sym_quoted_i_double] = STATE(1294), + [sym_quoted_i_single] = STATE(1294), + [sym_tuple] = STATE(1878), + [sym_operator_identifier] = STATE(1294), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(1990), + [anon_sym_true] = ACTIONS(1992), + [anon_sym_false] = ACTIONS(1992), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_PIPE] = ACTIONS(1998), + [anon_sym_SLASH] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_CARET] = ACTIONS(2002), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2002), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_AT] = ACTIONS(2006), + [anon_sym_LT_DASH] = ACTIONS(1998), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1998), + [anon_sym_when] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_EQ] = ACTIONS(1998), + [anon_sym_PIPE_PIPE] = ACTIONS(1998), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1998), + [anon_sym_or] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(1998), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1998), + [anon_sym_and] = ACTIONS(2008), + [anon_sym_EQ_EQ] = ACTIONS(1998), + [anon_sym_BANG_EQ] = ACTIONS(1998), + [anon_sym_EQ_TILDE] = ACTIONS(1998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(1998), + [anon_sym_GT_EQ] = ACTIONS(1998), + [anon_sym_PIPE_GT] = ACTIONS(1998), + [anon_sym_LT_LT_LT] = ACTIONS(1998), + [anon_sym_GT_GT_GT] = ACTIONS(1998), + [anon_sym_LT_LT_TILDE] = ACTIONS(1998), + [anon_sym_TILDE_GT_GT] = ACTIONS(1998), + [anon_sym_LT_TILDE] = ACTIONS(1998), + [anon_sym_TILDE_GT] = ACTIONS(1998), + [anon_sym_LT_TILDE_GT] = ACTIONS(1998), + [anon_sym_LT_PIPE_GT] = ACTIONS(1998), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1998), + [anon_sym_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1998), + [anon_sym_LT_GT] = ACTIONS(1998), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_STAR_STAR] = ACTIONS(1998), + [anon_sym_DASH_GT] = ACTIONS(1998), + [anon_sym_after] = ACTIONS(1992), + [anon_sym_catch] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_end] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1992), + [anon_sym_rescue] = ACTIONS(1992), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2010), }, - [1420] = { - [sym_identifier] = STATE(1228), - [sym_quoted_i_double] = STATE(1228), - [sym_quoted_i_single] = STATE(1228), - [sym_tuple] = STATE(1930), - [sym_operator_identifier] = STATE(1228), + [1403] = { + [sym_identifier] = STATE(1294), + [sym_quoted_i_double] = STATE(1294), + [sym_quoted_i_single] = STATE(1294), + [sym_tuple] = STATE(2188), + [sym_operator_identifier] = STATE(1294), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(1944), + [anon_sym_true] = ACTIONS(1992), + [anon_sym_false] = ACTIONS(1992), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_PIPE] = ACTIONS(1998), + [anon_sym_SLASH] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_CARET] = ACTIONS(2002), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2002), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_AT] = ACTIONS(2006), + [anon_sym_LT_DASH] = ACTIONS(1998), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1998), + [anon_sym_when] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_EQ] = ACTIONS(1998), + [anon_sym_PIPE_PIPE] = ACTIONS(1998), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1998), + [anon_sym_or] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(1998), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1998), + [anon_sym_and] = ACTIONS(2008), + [anon_sym_EQ_EQ] = ACTIONS(1998), + [anon_sym_BANG_EQ] = ACTIONS(1998), + [anon_sym_EQ_TILDE] = ACTIONS(1998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(1998), + [anon_sym_GT_EQ] = ACTIONS(1998), + [anon_sym_PIPE_GT] = ACTIONS(1998), + [anon_sym_LT_LT_LT] = ACTIONS(1998), + [anon_sym_GT_GT_GT] = ACTIONS(1998), + [anon_sym_LT_LT_TILDE] = ACTIONS(1998), + [anon_sym_TILDE_GT_GT] = ACTIONS(1998), + [anon_sym_LT_TILDE] = ACTIONS(1998), + [anon_sym_TILDE_GT] = ACTIONS(1998), + [anon_sym_LT_TILDE_GT] = ACTIONS(1998), + [anon_sym_LT_PIPE_GT] = ACTIONS(1998), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1998), + [anon_sym_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1998), + [anon_sym_LT_GT] = ACTIONS(1998), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_STAR_STAR] = ACTIONS(1998), + [anon_sym_DASH_GT] = ACTIONS(1998), + [anon_sym_after] = ACTIONS(1992), + [anon_sym_catch] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_end] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1992), + [anon_sym_rescue] = ACTIONS(1992), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2010), + }, + [1404] = { + [sym_identifier] = STATE(1249), + [sym_quoted_i_double] = STATE(1249), + [sym_quoted_i_single] = STATE(1249), + [sym_tuple] = STATE(3517), + [sym_operator_identifier] = STATE(1249), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2014), + [anon_sym_false] = ACTIONS(2014), + [anon_sym_nil] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2016), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_GT] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_SLASH] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2026), + [anon_sym_AT] = ACTIONS(2028), + [anon_sym_LT_DASH] = ACTIONS(2020), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2020), + [anon_sym_when] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_or] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2020), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2020), + [anon_sym_and] = ACTIONS(2030), + [anon_sym_EQ_EQ] = ACTIONS(2020), + [anon_sym_BANG_EQ] = ACTIONS(2020), + [anon_sym_EQ_TILDE] = ACTIONS(2020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2020), + [anon_sym_GT_EQ] = ACTIONS(2020), + [anon_sym_PIPE_GT] = ACTIONS(2020), + [anon_sym_LT_LT_LT] = ACTIONS(2020), + [anon_sym_GT_GT_GT] = ACTIONS(2020), + [anon_sym_LT_LT_TILDE] = ACTIONS(2020), + [anon_sym_TILDE_GT_GT] = ACTIONS(2020), + [anon_sym_LT_TILDE] = ACTIONS(2020), + [anon_sym_TILDE_GT] = ACTIONS(2020), + [anon_sym_LT_TILDE_GT] = ACTIONS(2020), + [anon_sym_LT_PIPE_GT] = ACTIONS(2020), + [anon_sym_in] = ACTIONS(2030), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2020), + [anon_sym_LT_GT] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2020), + [anon_sym_STAR_STAR] = ACTIONS(2020), + [anon_sym_DASH_GT] = ACTIONS(2020), + [anon_sym_after] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_end] = ACTIONS(2014), + [anon_sym_fn] = ACTIONS(2014), + [anon_sym_rescue] = ACTIONS(2014), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2032), + }, + [1405] = { + [sym_identifier] = STATE(1249), + [sym_quoted_i_double] = STATE(1249), + [sym_quoted_i_single] = STATE(1249), + [sym_tuple] = STATE(4319), + [sym_operator_identifier] = STATE(1249), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(2034), + [anon_sym_true] = ACTIONS(2014), + [anon_sym_false] = ACTIONS(2014), + [anon_sym_nil] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2016), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_GT] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_SLASH] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2026), + [anon_sym_AT] = ACTIONS(2028), + [anon_sym_LT_DASH] = ACTIONS(2020), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2020), + [anon_sym_when] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_or] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2020), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2020), + [anon_sym_and] = ACTIONS(2030), + [anon_sym_EQ_EQ] = ACTIONS(2020), + [anon_sym_BANG_EQ] = ACTIONS(2020), + [anon_sym_EQ_TILDE] = ACTIONS(2020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2020), + [anon_sym_GT_EQ] = ACTIONS(2020), + [anon_sym_PIPE_GT] = ACTIONS(2020), + [anon_sym_LT_LT_LT] = ACTIONS(2020), + [anon_sym_GT_GT_GT] = ACTIONS(2020), + [anon_sym_LT_LT_TILDE] = ACTIONS(2020), + [anon_sym_TILDE_GT_GT] = ACTIONS(2020), + [anon_sym_LT_TILDE] = ACTIONS(2020), + [anon_sym_TILDE_GT] = ACTIONS(2020), + [anon_sym_LT_TILDE_GT] = ACTIONS(2020), + [anon_sym_LT_PIPE_GT] = ACTIONS(2020), + [anon_sym_in] = ACTIONS(2030), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2020), + [anon_sym_LT_GT] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2020), + [anon_sym_STAR_STAR] = ACTIONS(2020), + [anon_sym_DASH_GT] = ACTIONS(2020), + [anon_sym_after] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_end] = ACTIONS(2014), + [anon_sym_fn] = ACTIONS(2014), + [anon_sym_rescue] = ACTIONS(2014), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2032), + }, + [1406] = { + [sym_identifier] = STATE(1227), + [sym_quoted_i_double] = STATE(1227), + [sym_quoted_i_single] = STATE(1227), + [sym_tuple] = STATE(1764), + [sym_operator_identifier] = STATE(1227), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1942), [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(1972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(1946), + [anon_sym_false] = ACTIONS(1946), + [anon_sym_nil] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_GT] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_BANG] = ACTIONS(1956), + [anon_sym_CARET] = ACTIONS(1956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1958), + [anon_sym_AT] = ACTIONS(1960), + [anon_sym_LT_DASH] = ACTIONS(1952), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(1962), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_or] = ACTIONS(1962), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1952), + [anon_sym_and] = ACTIONS(1962), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_EQ_TILDE] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_PIPE_GT] = ACTIONS(1952), + [anon_sym_LT_LT_LT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT_TILDE] = ACTIONS(1952), + [anon_sym_TILDE_GT_GT] = ACTIONS(1952), + [anon_sym_LT_TILDE] = ACTIONS(1952), + [anon_sym_TILDE_GT] = ACTIONS(1952), + [anon_sym_LT_TILDE_GT] = ACTIONS(1952), + [anon_sym_LT_PIPE_GT] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1962), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1952), + [anon_sym_DASH_DASH] = ACTIONS(1952), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1952), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1952), + [anon_sym_LT_GT] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_DASH_GT] = ACTIONS(1952), + [anon_sym_after] = ACTIONS(1946), + [anon_sym_catch] = ACTIONS(1946), + [anon_sym_do] = ACTIONS(1946), + [anon_sym_else] = ACTIONS(1946), + [anon_sym_end] = ACTIONS(1946), + [anon_sym_fn] = ACTIONS(1946), + [anon_sym_rescue] = ACTIONS(1946), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(1964), + }, + [1407] = { + [sym_identifier] = STATE(1335), + [sym_quoted_i_double] = STATE(1335), + [sym_quoted_i_single] = STATE(1335), + [sym_tuple] = STATE(4539), + [sym_operator_identifier] = STATE(1335), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(2038), [anon_sym_true] = ACTIONS(2040), [anon_sym_false] = ACTIONS(2040), [anon_sym_nil] = ACTIONS(2040), [anon_sym_DQUOTE] = ACTIONS(2042), [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(1132), [anon_sym_LT] = ACTIONS(2046), [anon_sym_GT] = ACTIONS(2046), [anon_sym_PIPE] = ACTIONS(2046), @@ -196349,186 +196415,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_fn] = ACTIONS(2040), [anon_sym_rescue] = ACTIONS(2040), [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1571), + [sym_semgrep_metavariable] = ACTIONS(570), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_not_in] = ACTIONS(2058), }, - [1421] = { - [sym_identifier] = STATE(1292), - [sym_quoted_i_double] = STATE(1292), - [sym_quoted_i_single] = STATE(1292), - [sym_tuple] = STATE(1787), - [sym_operator_identifier] = STATE(1292), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(2060), - [anon_sym_true] = ACTIONS(1974), - [anon_sym_false] = ACTIONS(1974), - [anon_sym_nil] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_SLASH] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_CARET] = ACTIONS(1984), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), - [anon_sym_not] = ACTIONS(1986), - [anon_sym_AT] = ACTIONS(1988), - [anon_sym_LT_DASH] = ACTIONS(1980), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1980), - [anon_sym_when] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_EQ] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_or] = ACTIONS(1990), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1980), - [anon_sym_and] = ACTIONS(1990), - [anon_sym_EQ_EQ] = ACTIONS(1980), - [anon_sym_BANG_EQ] = ACTIONS(1980), - [anon_sym_EQ_TILDE] = ACTIONS(1980), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), - [anon_sym_LT_EQ] = ACTIONS(1980), - [anon_sym_GT_EQ] = ACTIONS(1980), - [anon_sym_PIPE_GT] = ACTIONS(1980), - [anon_sym_LT_LT_LT] = ACTIONS(1980), - [anon_sym_GT_GT_GT] = ACTIONS(1980), - [anon_sym_LT_LT_TILDE] = ACTIONS(1980), - [anon_sym_TILDE_GT_GT] = ACTIONS(1980), - [anon_sym_LT_TILDE] = ACTIONS(1980), - [anon_sym_TILDE_GT] = ACTIONS(1980), - [anon_sym_LT_TILDE_GT] = ACTIONS(1980), - [anon_sym_LT_PIPE_GT] = ACTIONS(1980), - [anon_sym_in] = ACTIONS(1990), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1980), - [anon_sym_PLUS_PLUS] = ACTIONS(1980), - [anon_sym_DASH_DASH] = ACTIONS(1980), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1980), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1980), - [anon_sym_LT_GT] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_STAR_STAR] = ACTIONS(1980), - [anon_sym_DASH_GT] = ACTIONS(1980), - [anon_sym_after] = ACTIONS(1974), - [anon_sym_catch] = ACTIONS(1974), - [anon_sym_do] = ACTIONS(1974), - [anon_sym_else] = ACTIONS(1974), - [anon_sym_end] = ACTIONS(1974), - [anon_sym_fn] = ACTIONS(1974), - [anon_sym_rescue] = ACTIONS(1974), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1677), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(1992), + [1408] = { + [sym_identifier] = STATE(1257), + [sym_quoted_i_double] = STATE(1257), + [sym_quoted_i_single] = STATE(1257), + [sym_tuple] = STATE(2188), + [sym_operator_identifier] = STATE(1257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(1944), + [anon_sym_true] = ACTIONS(2060), + [anon_sym_false] = ACTIONS(2060), + [anon_sym_nil] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(2066), + [anon_sym_GT] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_SLASH] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_CARET] = ACTIONS(2070), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2066), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2066), + [anon_sym_when] = ACTIONS(2076), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_EQ] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2066), + [anon_sym_or] = ACTIONS(2076), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2066), + [anon_sym_and] = ACTIONS(2076), + [anon_sym_EQ_EQ] = ACTIONS(2066), + [anon_sym_BANG_EQ] = ACTIONS(2066), + [anon_sym_EQ_TILDE] = ACTIONS(2066), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2066), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2066), + [anon_sym_LT_EQ] = ACTIONS(2066), + [anon_sym_GT_EQ] = ACTIONS(2066), + [anon_sym_PIPE_GT] = ACTIONS(2066), + [anon_sym_LT_LT_LT] = ACTIONS(2066), + [anon_sym_GT_GT_GT] = ACTIONS(2066), + [anon_sym_LT_LT_TILDE] = ACTIONS(2066), + [anon_sym_TILDE_GT_GT] = ACTIONS(2066), + [anon_sym_LT_TILDE] = ACTIONS(2066), + [anon_sym_TILDE_GT] = ACTIONS(2066), + [anon_sym_LT_TILDE_GT] = ACTIONS(2066), + [anon_sym_LT_PIPE_GT] = ACTIONS(2066), + [anon_sym_in] = ACTIONS(2076), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2066), + [anon_sym_PLUS_PLUS] = ACTIONS(2066), + [anon_sym_DASH_DASH] = ACTIONS(2066), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2066), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2066), + [anon_sym_LT_GT] = ACTIONS(2066), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym_STAR_STAR] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), + [anon_sym_after] = ACTIONS(2060), + [anon_sym_catch] = ACTIONS(2060), + [anon_sym_do] = ACTIONS(2060), + [anon_sym_else] = ACTIONS(2060), + [anon_sym_end] = ACTIONS(2060), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_rescue] = ACTIONS(2060), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2078), }, - [1422] = { - [sym_identifier] = STATE(1300), - [sym_quoted_i_double] = STATE(1300), - [sym_quoted_i_single] = STATE(1300), - [sym_tuple] = STATE(1787), - [sym_operator_identifier] = STATE(1300), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), - [sym_alias] = ACTIONS(2060), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [anon_sym_nil] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(1956), + [1409] = { + [sym_identifier] = STATE(1294), + [sym_quoted_i_double] = STATE(1294), + [sym_quoted_i_single] = STATE(1294), + [sym_tuple] = STATE(1593), + [sym_operator_identifier] = STATE(1294), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(2080), + [anon_sym_true] = ACTIONS(1992), + [anon_sym_false] = ACTIONS(1992), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1996), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_GT] = ACTIONS(1958), - [anon_sym_PIPE] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1962), - [anon_sym_not] = ACTIONS(1964), - [anon_sym_AT] = ACTIONS(1966), - [anon_sym_LT_DASH] = ACTIONS(1958), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1958), - [anon_sym_when] = ACTIONS(1968), - [anon_sym_COLON_COLON] = ACTIONS(1958), - [anon_sym_EQ] = ACTIONS(1958), - [anon_sym_PIPE_PIPE] = ACTIONS(1958), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1958), - [anon_sym_or] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1958), - [anon_sym_and] = ACTIONS(1968), - [anon_sym_EQ_EQ] = ACTIONS(1958), - [anon_sym_BANG_EQ] = ACTIONS(1958), - [anon_sym_EQ_TILDE] = ACTIONS(1958), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1958), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1958), - [anon_sym_LT_EQ] = ACTIONS(1958), - [anon_sym_GT_EQ] = ACTIONS(1958), - [anon_sym_PIPE_GT] = ACTIONS(1958), - [anon_sym_LT_LT_LT] = ACTIONS(1958), - [anon_sym_GT_GT_GT] = ACTIONS(1958), - [anon_sym_LT_LT_TILDE] = ACTIONS(1958), - [anon_sym_TILDE_GT_GT] = ACTIONS(1958), - [anon_sym_LT_TILDE] = ACTIONS(1958), - [anon_sym_TILDE_GT] = ACTIONS(1958), - [anon_sym_LT_TILDE_GT] = ACTIONS(1958), - [anon_sym_LT_PIPE_GT] = ACTIONS(1958), - [anon_sym_in] = ACTIONS(1968), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1958), - [anon_sym_PLUS_PLUS] = ACTIONS(1958), - [anon_sym_DASH_DASH] = ACTIONS(1958), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1958), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1958), - [anon_sym_LT_GT] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_STAR_STAR] = ACTIONS(1958), - [anon_sym_DASH_GT] = ACTIONS(1958), - [anon_sym_after] = ACTIONS(1952), - [anon_sym_catch] = ACTIONS(1952), - [anon_sym_do] = ACTIONS(1952), - [anon_sym_else] = ACTIONS(1952), - [anon_sym_end] = ACTIONS(1952), - [anon_sym_fn] = ACTIONS(1952), - [anon_sym_rescue] = ACTIONS(1952), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1719), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_PIPE] = ACTIONS(1998), + [anon_sym_SLASH] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_CARET] = ACTIONS(2002), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2002), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_AT] = ACTIONS(2006), + [anon_sym_LT_DASH] = ACTIONS(1998), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1998), + [anon_sym_when] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_EQ] = ACTIONS(1998), + [anon_sym_PIPE_PIPE] = ACTIONS(1998), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1998), + [anon_sym_or] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(1998), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1998), + [anon_sym_and] = ACTIONS(2008), + [anon_sym_EQ_EQ] = ACTIONS(1998), + [anon_sym_BANG_EQ] = ACTIONS(1998), + [anon_sym_EQ_TILDE] = ACTIONS(1998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(1998), + [anon_sym_GT_EQ] = ACTIONS(1998), + [anon_sym_PIPE_GT] = ACTIONS(1998), + [anon_sym_LT_LT_LT] = ACTIONS(1998), + [anon_sym_GT_GT_GT] = ACTIONS(1998), + [anon_sym_LT_LT_TILDE] = ACTIONS(1998), + [anon_sym_TILDE_GT_GT] = ACTIONS(1998), + [anon_sym_LT_TILDE] = ACTIONS(1998), + [anon_sym_TILDE_GT] = ACTIONS(1998), + [anon_sym_LT_TILDE_GT] = ACTIONS(1998), + [anon_sym_LT_PIPE_GT] = ACTIONS(1998), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1998), + [anon_sym_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1998), + [anon_sym_LT_GT] = ACTIONS(1998), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_STAR_STAR] = ACTIONS(1998), + [anon_sym_DASH_GT] = ACTIONS(1998), + [anon_sym_after] = ACTIONS(1992), + [anon_sym_catch] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_end] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1992), + [anon_sym_rescue] = ACTIONS(1992), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2010), }, - [1423] = { - [sym_identifier] = STATE(1228), - [sym_quoted_i_double] = STATE(1228), - [sym_quoted_i_single] = STATE(1228), - [sym_tuple] = STATE(2052), - [sym_operator_identifier] = STATE(1228), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(1950), + [1410] = { + [sym_identifier] = STATE(1249), + [sym_quoted_i_double] = STATE(1249), + [sym_quoted_i_single] = STATE(1249), + [sym_tuple] = STATE(3235), + [sym_operator_identifier] = STATE(1249), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(2082), + [anon_sym_true] = ACTIONS(2014), + [anon_sym_false] = ACTIONS(2014), + [anon_sym_nil] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2016), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_GT] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_SLASH] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2026), + [anon_sym_AT] = ACTIONS(2028), + [anon_sym_LT_DASH] = ACTIONS(2020), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2020), + [anon_sym_when] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_or] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2020), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2020), + [anon_sym_and] = ACTIONS(2030), + [anon_sym_EQ_EQ] = ACTIONS(2020), + [anon_sym_BANG_EQ] = ACTIONS(2020), + [anon_sym_EQ_TILDE] = ACTIONS(2020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2020), + [anon_sym_GT_EQ] = ACTIONS(2020), + [anon_sym_PIPE_GT] = ACTIONS(2020), + [anon_sym_LT_LT_LT] = ACTIONS(2020), + [anon_sym_GT_GT_GT] = ACTIONS(2020), + [anon_sym_LT_LT_TILDE] = ACTIONS(2020), + [anon_sym_TILDE_GT_GT] = ACTIONS(2020), + [anon_sym_LT_TILDE] = ACTIONS(2020), + [anon_sym_TILDE_GT] = ACTIONS(2020), + [anon_sym_LT_TILDE_GT] = ACTIONS(2020), + [anon_sym_LT_PIPE_GT] = ACTIONS(2020), + [anon_sym_in] = ACTIONS(2030), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2020), + [anon_sym_LT_GT] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2020), + [anon_sym_STAR_STAR] = ACTIONS(2020), + [anon_sym_DASH_GT] = ACTIONS(2020), + [anon_sym_after] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_end] = ACTIONS(2014), + [anon_sym_fn] = ACTIONS(2014), + [anon_sym_rescue] = ACTIONS(2014), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2032), + }, + [1411] = { + [sym_identifier] = STATE(1335), + [sym_quoted_i_double] = STATE(1335), + [sym_quoted_i_single] = STATE(1335), + [sym_tuple] = STATE(3728), + [sym_operator_identifier] = STATE(1335), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_alias] = ACTIONS(2084), [anon_sym_true] = ACTIONS(2040), [anon_sym_false] = ACTIONS(2040), [anon_sym_nil] = ACTIONS(2040), [anon_sym_DQUOTE] = ACTIONS(2042), [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(590), [anon_sym_LT] = ACTIONS(2046), [anon_sym_GT] = ACTIONS(2046), [anon_sym_PIPE] = ACTIONS(2046), @@ -196586,3065 +196731,2902 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_fn] = ACTIONS(2040), [anon_sym_rescue] = ACTIONS(2040), [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1571), + [sym_semgrep_metavariable] = ACTIONS(570), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), [sym_not_in] = ACTIONS(2058), }, - [1424] = { - [sym_identifier] = STATE(1228), - [sym_quoted_i_double] = STATE(1228), - [sym_quoted_i_single] = STATE(1228), - [sym_tuple] = STATE(1543), - [sym_operator_identifier] = STATE(1228), + [1412] = { + [sym_identifier] = STATE(1256), + [sym_quoted_i_double] = STATE(1256), + [sym_quoted_i_single] = STATE(1256), + [sym_tuple] = STATE(3332), + [sym_operator_identifier] = STATE(1256), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(2086), + [anon_sym_true] = ACTIONS(2088), + [anon_sym_false] = ACTIONS(2088), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_GT] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_SLASH] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2098), + [anon_sym_not] = ACTIONS(2100), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(2094), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2094), + [anon_sym_when] = ACTIONS(2104), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_EQ] = ACTIONS(2094), + [anon_sym_PIPE_PIPE] = ACTIONS(2094), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2094), + [anon_sym_or] = ACTIONS(2104), + [anon_sym_AMP_AMP] = ACTIONS(2094), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2094), + [anon_sym_and] = ACTIONS(2104), + [anon_sym_EQ_EQ] = ACTIONS(2094), + [anon_sym_BANG_EQ] = ACTIONS(2094), + [anon_sym_EQ_TILDE] = ACTIONS(2094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2094), + [anon_sym_LT_EQ] = ACTIONS(2094), + [anon_sym_GT_EQ] = ACTIONS(2094), + [anon_sym_PIPE_GT] = ACTIONS(2094), + [anon_sym_LT_LT_LT] = ACTIONS(2094), + [anon_sym_GT_GT_GT] = ACTIONS(2094), + [anon_sym_LT_LT_TILDE] = ACTIONS(2094), + [anon_sym_TILDE_GT_GT] = ACTIONS(2094), + [anon_sym_LT_TILDE] = ACTIONS(2094), + [anon_sym_TILDE_GT] = ACTIONS(2094), + [anon_sym_LT_TILDE_GT] = ACTIONS(2094), + [anon_sym_LT_PIPE_GT] = ACTIONS(2094), + [anon_sym_in] = ACTIONS(2104), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2094), + [anon_sym_LT_GT] = ACTIONS(2094), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_STAR_STAR] = ACTIONS(2094), + [anon_sym_DASH_GT] = ACTIONS(2094), + [anon_sym_after] = ACTIONS(2088), + [anon_sym_catch] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_else] = ACTIONS(2088), + [anon_sym_end] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2088), + [anon_sym_rescue] = ACTIONS(2088), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2106), + }, + [1413] = { + [sym_identifier] = STATE(1227), + [sym_quoted_i_double] = STATE(1227), + [sym_quoted_i_single] = STATE(1227), + [sym_tuple] = STATE(1878), + [sym_operator_identifier] = STATE(1227), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1942), [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(2062), - [anon_sym_true] = ACTIONS(2040), - [anon_sym_false] = ACTIONS(2040), - [anon_sym_nil] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_GT] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2046), - [anon_sym_SLASH] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2048), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2050), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), - [anon_sym_not] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2054), - [anon_sym_LT_DASH] = ACTIONS(2046), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2046), - [anon_sym_when] = ACTIONS(2056), - [anon_sym_COLON_COLON] = ACTIONS(2046), - [anon_sym_EQ] = ACTIONS(2046), - [anon_sym_PIPE_PIPE] = ACTIONS(2046), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2046), - [anon_sym_or] = ACTIONS(2056), - [anon_sym_AMP_AMP] = ACTIONS(2046), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2046), - [anon_sym_and] = ACTIONS(2056), - [anon_sym_EQ_EQ] = ACTIONS(2046), - [anon_sym_BANG_EQ] = ACTIONS(2046), - [anon_sym_EQ_TILDE] = ACTIONS(2046), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2046), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2046), - [anon_sym_LT_EQ] = ACTIONS(2046), - [anon_sym_GT_EQ] = ACTIONS(2046), - [anon_sym_PIPE_GT] = ACTIONS(2046), - [anon_sym_LT_LT_LT] = ACTIONS(2046), - [anon_sym_GT_GT_GT] = ACTIONS(2046), - [anon_sym_LT_LT_TILDE] = ACTIONS(2046), - [anon_sym_TILDE_GT_GT] = ACTIONS(2046), - [anon_sym_LT_TILDE] = ACTIONS(2046), - [anon_sym_TILDE_GT] = ACTIONS(2046), - [anon_sym_LT_TILDE_GT] = ACTIONS(2046), - [anon_sym_LT_PIPE_GT] = ACTIONS(2046), - [anon_sym_in] = ACTIONS(2056), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2046), - [anon_sym_PLUS_PLUS] = ACTIONS(2046), - [anon_sym_DASH_DASH] = ACTIONS(2046), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2046), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2046), - [anon_sym_LT_GT] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_STAR_STAR] = ACTIONS(2046), - [anon_sym_DASH_GT] = ACTIONS(2046), - [anon_sym_after] = ACTIONS(2040), - [anon_sym_catch] = ACTIONS(2040), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_fn] = ACTIONS(2040), - [anon_sym_rescue] = ACTIONS(2040), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1571), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(1990), + [anon_sym_true] = ACTIONS(1946), + [anon_sym_false] = ACTIONS(1946), + [anon_sym_nil] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(91), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_GT] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_BANG] = ACTIONS(1956), + [anon_sym_CARET] = ACTIONS(1956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1958), + [anon_sym_AT] = ACTIONS(1960), + [anon_sym_LT_DASH] = ACTIONS(1952), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(1962), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_or] = ACTIONS(1962), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1952), + [anon_sym_and] = ACTIONS(1962), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_EQ_TILDE] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_PIPE_GT] = ACTIONS(1952), + [anon_sym_LT_LT_LT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT_TILDE] = ACTIONS(1952), + [anon_sym_TILDE_GT_GT] = ACTIONS(1952), + [anon_sym_LT_TILDE] = ACTIONS(1952), + [anon_sym_TILDE_GT] = ACTIONS(1952), + [anon_sym_LT_TILDE_GT] = ACTIONS(1952), + [anon_sym_LT_PIPE_GT] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1962), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1952), + [anon_sym_DASH_DASH] = ACTIONS(1952), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1952), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1952), + [anon_sym_LT_GT] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_DASH_GT] = ACTIONS(1952), + [anon_sym_after] = ACTIONS(1946), + [anon_sym_catch] = ACTIONS(1946), + [anon_sym_do] = ACTIONS(1946), + [anon_sym_else] = ACTIONS(1946), + [anon_sym_end] = ACTIONS(1946), + [anon_sym_fn] = ACTIONS(1946), + [anon_sym_rescue] = ACTIONS(1946), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(1964), }, - [1425] = { - [sym_identifier] = STATE(1228), - [sym_quoted_i_double] = STATE(1228), - [sym_quoted_i_single] = STATE(1228), - [sym_tuple] = STATE(1787), - [sym_operator_identifier] = STATE(1228), + [1414] = { + [sym_identifier] = STATE(1294), + [sym_quoted_i_double] = STATE(1294), + [sym_quoted_i_single] = STATE(1294), + [sym_tuple] = STATE(1764), + [sym_operator_identifier] = STATE(1294), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_alias] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(1992), + [anon_sym_false] = ACTIONS(1992), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_PIPE] = ACTIONS(1998), + [anon_sym_SLASH] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_CARET] = ACTIONS(2002), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2002), + [anon_sym_not] = ACTIONS(2004), + [anon_sym_AT] = ACTIONS(2006), + [anon_sym_LT_DASH] = ACTIONS(1998), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1998), + [anon_sym_when] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_EQ] = ACTIONS(1998), + [anon_sym_PIPE_PIPE] = ACTIONS(1998), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1998), + [anon_sym_or] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(1998), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1998), + [anon_sym_and] = ACTIONS(2008), + [anon_sym_EQ_EQ] = ACTIONS(1998), + [anon_sym_BANG_EQ] = ACTIONS(1998), + [anon_sym_EQ_TILDE] = ACTIONS(1998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1998), + [anon_sym_LT_EQ] = ACTIONS(1998), + [anon_sym_GT_EQ] = ACTIONS(1998), + [anon_sym_PIPE_GT] = ACTIONS(1998), + [anon_sym_LT_LT_LT] = ACTIONS(1998), + [anon_sym_GT_GT_GT] = ACTIONS(1998), + [anon_sym_LT_LT_TILDE] = ACTIONS(1998), + [anon_sym_TILDE_GT_GT] = ACTIONS(1998), + [anon_sym_LT_TILDE] = ACTIONS(1998), + [anon_sym_TILDE_GT] = ACTIONS(1998), + [anon_sym_LT_TILDE_GT] = ACTIONS(1998), + [anon_sym_LT_PIPE_GT] = ACTIONS(1998), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1998), + [anon_sym_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1998), + [anon_sym_LT_GT] = ACTIONS(1998), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_STAR_STAR] = ACTIONS(1998), + [anon_sym_DASH_GT] = ACTIONS(1998), + [anon_sym_after] = ACTIONS(1992), + [anon_sym_catch] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_else] = ACTIONS(1992), + [anon_sym_end] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1992), + [anon_sym_rescue] = ACTIONS(1992), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(399), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2010), + }, + [1415] = { + [sym_identifier] = STATE(1227), + [sym_quoted_i_double] = STATE(1227), + [sym_quoted_i_single] = STATE(1227), + [sym_tuple] = STATE(1593), + [sym_operator_identifier] = STATE(1227), [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1942), [aux_sym_identifier_token1] = ACTIONS(169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [sym_alias] = ACTIONS(2060), - [anon_sym_true] = ACTIONS(2040), - [anon_sym_false] = ACTIONS(2040), - [anon_sym_nil] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [sym_alias] = ACTIONS(2080), + [anon_sym_true] = ACTIONS(1946), + [anon_sym_false] = ACTIONS(1946), + [anon_sym_nil] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1950), [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_GT] = ACTIONS(2046), - [anon_sym_PIPE] = ACTIONS(2046), - [anon_sym_SLASH] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2048), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2050), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), - [anon_sym_not] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2054), - [anon_sym_LT_DASH] = ACTIONS(2046), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2046), - [anon_sym_when] = ACTIONS(2056), - [anon_sym_COLON_COLON] = ACTIONS(2046), - [anon_sym_EQ] = ACTIONS(2046), - [anon_sym_PIPE_PIPE] = ACTIONS(2046), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2046), - [anon_sym_or] = ACTIONS(2056), - [anon_sym_AMP_AMP] = ACTIONS(2046), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2046), - [anon_sym_and] = ACTIONS(2056), - [anon_sym_EQ_EQ] = ACTIONS(2046), - [anon_sym_BANG_EQ] = ACTIONS(2046), - [anon_sym_EQ_TILDE] = ACTIONS(2046), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2046), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2046), - [anon_sym_LT_EQ] = ACTIONS(2046), - [anon_sym_GT_EQ] = ACTIONS(2046), - [anon_sym_PIPE_GT] = ACTIONS(2046), - [anon_sym_LT_LT_LT] = ACTIONS(2046), - [anon_sym_GT_GT_GT] = ACTIONS(2046), - [anon_sym_LT_LT_TILDE] = ACTIONS(2046), - [anon_sym_TILDE_GT_GT] = ACTIONS(2046), - [anon_sym_LT_TILDE] = ACTIONS(2046), - [anon_sym_TILDE_GT] = ACTIONS(2046), - [anon_sym_LT_TILDE_GT] = ACTIONS(2046), - [anon_sym_LT_PIPE_GT] = ACTIONS(2046), - [anon_sym_in] = ACTIONS(2056), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2046), - [anon_sym_PLUS_PLUS] = ACTIONS(2046), - [anon_sym_DASH_DASH] = ACTIONS(2046), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2046), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2046), - [anon_sym_LT_GT] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_STAR_STAR] = ACTIONS(2046), - [anon_sym_DASH_GT] = ACTIONS(2046), - [anon_sym_after] = ACTIONS(2040), - [anon_sym_catch] = ACTIONS(2040), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_fn] = ACTIONS(2040), - [anon_sym_rescue] = ACTIONS(2040), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1571), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2058), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_GT] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_SLASH] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_BANG] = ACTIONS(1956), + [anon_sym_CARET] = ACTIONS(1956), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1958), + [anon_sym_AT] = ACTIONS(1960), + [anon_sym_LT_DASH] = ACTIONS(1952), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1952), + [anon_sym_when] = ACTIONS(1962), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1952), + [anon_sym_or] = ACTIONS(1962), + [anon_sym_AMP_AMP] = ACTIONS(1952), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1952), + [anon_sym_and] = ACTIONS(1962), + [anon_sym_EQ_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ] = ACTIONS(1952), + [anon_sym_EQ_TILDE] = ACTIONS(1952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1952), + [anon_sym_LT_EQ] = ACTIONS(1952), + [anon_sym_GT_EQ] = ACTIONS(1952), + [anon_sym_PIPE_GT] = ACTIONS(1952), + [anon_sym_LT_LT_LT] = ACTIONS(1952), + [anon_sym_GT_GT_GT] = ACTIONS(1952), + [anon_sym_LT_LT_TILDE] = ACTIONS(1952), + [anon_sym_TILDE_GT_GT] = ACTIONS(1952), + [anon_sym_LT_TILDE] = ACTIONS(1952), + [anon_sym_TILDE_GT] = ACTIONS(1952), + [anon_sym_LT_TILDE_GT] = ACTIONS(1952), + [anon_sym_LT_PIPE_GT] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1962), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1952), + [anon_sym_PLUS_PLUS] = ACTIONS(1952), + [anon_sym_DASH_DASH] = ACTIONS(1952), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1952), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1952), + [anon_sym_LT_GT] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_STAR_STAR] = ACTIONS(1952), + [anon_sym_DASH_GT] = ACTIONS(1952), + [anon_sym_after] = ACTIONS(1946), + [anon_sym_catch] = ACTIONS(1946), + [anon_sym_do] = ACTIONS(1946), + [anon_sym_else] = ACTIONS(1946), + [anon_sym_end] = ACTIONS(1946), + [anon_sym_fn] = ACTIONS(1946), + [anon_sym_rescue] = ACTIONS(1946), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(169), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(1964), }, - [1426] = { - [sym_identifier] = STATE(1292), - [sym_quoted_i_double] = STATE(1292), - [sym_quoted_i_single] = STATE(1292), - [sym_tuple] = STATE(1543), - [sym_operator_identifier] = STATE(1292), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [sym_alias] = ACTIONS(2062), - [anon_sym_true] = ACTIONS(1974), - [anon_sym_false] = ACTIONS(1974), - [anon_sym_nil] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(241), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_SLASH] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_CARET] = ACTIONS(1984), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), - [anon_sym_not] = ACTIONS(1986), - [anon_sym_AT] = ACTIONS(1988), - [anon_sym_LT_DASH] = ACTIONS(1980), - [anon_sym_BSLASH_BSLASH] = ACTIONS(1980), - [anon_sym_when] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_EQ] = ACTIONS(1980), - [anon_sym_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1980), - [anon_sym_or] = ACTIONS(1990), - [anon_sym_AMP_AMP] = ACTIONS(1980), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1980), - [anon_sym_and] = ACTIONS(1990), - [anon_sym_EQ_EQ] = ACTIONS(1980), - [anon_sym_BANG_EQ] = ACTIONS(1980), - [anon_sym_EQ_TILDE] = ACTIONS(1980), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1980), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1980), - [anon_sym_LT_EQ] = ACTIONS(1980), - [anon_sym_GT_EQ] = ACTIONS(1980), - [anon_sym_PIPE_GT] = ACTIONS(1980), - [anon_sym_LT_LT_LT] = ACTIONS(1980), - [anon_sym_GT_GT_GT] = ACTIONS(1980), - [anon_sym_LT_LT_TILDE] = ACTIONS(1980), - [anon_sym_TILDE_GT_GT] = ACTIONS(1980), - [anon_sym_LT_TILDE] = ACTIONS(1980), - [anon_sym_TILDE_GT] = ACTIONS(1980), - [anon_sym_LT_TILDE_GT] = ACTIONS(1980), - [anon_sym_LT_PIPE_GT] = ACTIONS(1980), - [anon_sym_in] = ACTIONS(1990), - [anon_sym_CARET_CARET_CARET] = ACTIONS(1980), - [anon_sym_PLUS_PLUS] = ACTIONS(1980), - [anon_sym_DASH_DASH] = ACTIONS(1980), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1980), - [anon_sym_DASH_DASH_DASH] = ACTIONS(1980), - [anon_sym_LT_GT] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_STAR_STAR] = ACTIONS(1980), - [anon_sym_DASH_GT] = ACTIONS(1980), - [anon_sym_after] = ACTIONS(1974), - [anon_sym_catch] = ACTIONS(1974), - [anon_sym_do] = ACTIONS(1974), - [anon_sym_else] = ACTIONS(1974), - [anon_sym_end] = ACTIONS(1974), - [anon_sym_fn] = ACTIONS(1974), - [anon_sym_rescue] = ACTIONS(1974), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1677), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(1992), + [1416] = { + [sym_identifier] = STATE(1257), + [sym_quoted_i_double] = STATE(1257), + [sym_quoted_i_single] = STATE(1257), + [sym_tuple] = STATE(1764), + [sym_operator_identifier] = STATE(1257), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_alias] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(2060), + [anon_sym_false] = ACTIONS(2060), + [anon_sym_nil] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(2066), + [anon_sym_GT] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_SLASH] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_CARET] = ACTIONS(2070), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2070), + [anon_sym_not] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2066), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2066), + [anon_sym_when] = ACTIONS(2076), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_EQ] = ACTIONS(2066), + [anon_sym_PIPE_PIPE] = ACTIONS(2066), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2066), + [anon_sym_or] = ACTIONS(2076), + [anon_sym_AMP_AMP] = ACTIONS(2066), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2066), + [anon_sym_and] = ACTIONS(2076), + [anon_sym_EQ_EQ] = ACTIONS(2066), + [anon_sym_BANG_EQ] = ACTIONS(2066), + [anon_sym_EQ_TILDE] = ACTIONS(2066), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2066), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2066), + [anon_sym_LT_EQ] = ACTIONS(2066), + [anon_sym_GT_EQ] = ACTIONS(2066), + [anon_sym_PIPE_GT] = ACTIONS(2066), + [anon_sym_LT_LT_LT] = ACTIONS(2066), + [anon_sym_GT_GT_GT] = ACTIONS(2066), + [anon_sym_LT_LT_TILDE] = ACTIONS(2066), + [anon_sym_TILDE_GT_GT] = ACTIONS(2066), + [anon_sym_LT_TILDE] = ACTIONS(2066), + [anon_sym_TILDE_GT] = ACTIONS(2066), + [anon_sym_LT_TILDE_GT] = ACTIONS(2066), + [anon_sym_LT_PIPE_GT] = ACTIONS(2066), + [anon_sym_in] = ACTIONS(2076), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2066), + [anon_sym_PLUS_PLUS] = ACTIONS(2066), + [anon_sym_DASH_DASH] = ACTIONS(2066), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2066), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2066), + [anon_sym_LT_GT] = ACTIONS(2066), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym_STAR_STAR] = ACTIONS(2066), + [anon_sym_DASH_GT] = ACTIONS(2066), + [anon_sym_after] = ACTIONS(2060), + [anon_sym_catch] = ACTIONS(2060), + [anon_sym_do] = ACTIONS(2060), + [anon_sym_else] = ACTIONS(2060), + [anon_sym_end] = ACTIONS(2060), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_rescue] = ACTIONS(2060), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(476), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2078), }, - [1427] = { - [sym_identifier] = STATE(1240), - [sym_quoted_i_double] = STATE(1240), - [sym_quoted_i_single] = STATE(1240), - [sym_tuple] = STATE(2362), - [sym_operator_identifier] = STATE(1240), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(2064), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_nil] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1998), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_GT] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_SLASH] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_CARET] = ACTIONS(2006), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), - [anon_sym_not] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(2010), - [anon_sym_LT_DASH] = ACTIONS(2002), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2002), - [anon_sym_when] = ACTIONS(2012), - [anon_sym_COLON_COLON] = ACTIONS(2002), - [anon_sym_EQ] = ACTIONS(2002), - [anon_sym_PIPE_PIPE] = ACTIONS(2002), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2002), - [anon_sym_or] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2002), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2002), - [anon_sym_and] = ACTIONS(2012), - [anon_sym_EQ_EQ] = ACTIONS(2002), - [anon_sym_BANG_EQ] = ACTIONS(2002), - [anon_sym_EQ_TILDE] = ACTIONS(2002), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2002), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2002), - [anon_sym_LT_EQ] = ACTIONS(2002), - [anon_sym_GT_EQ] = ACTIONS(2002), - [anon_sym_PIPE_GT] = ACTIONS(2002), - [anon_sym_LT_LT_LT] = ACTIONS(2002), - [anon_sym_GT_GT_GT] = ACTIONS(2002), - [anon_sym_LT_LT_TILDE] = ACTIONS(2002), - [anon_sym_TILDE_GT_GT] = ACTIONS(2002), - [anon_sym_LT_TILDE] = ACTIONS(2002), - [anon_sym_TILDE_GT] = ACTIONS(2002), - [anon_sym_LT_TILDE_GT] = ACTIONS(2002), - [anon_sym_LT_PIPE_GT] = ACTIONS(2002), - [anon_sym_in] = ACTIONS(2012), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2002), - [anon_sym_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2002), - [anon_sym_LT_GT] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_STAR_STAR] = ACTIONS(2002), - [anon_sym_DASH_GT] = ACTIONS(2002), - [anon_sym_after] = ACTIONS(1996), - [anon_sym_catch] = ACTIONS(1996), - [anon_sym_do] = ACTIONS(1996), - [anon_sym_else] = ACTIONS(1996), - [anon_sym_end] = ACTIONS(1996), - [anon_sym_fn] = ACTIONS(1996), - [anon_sym_rescue] = ACTIONS(1996), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1609), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2014), + [1417] = { + [sym_identifier] = STATE(1256), + [sym_quoted_i_double] = STATE(1256), + [sym_quoted_i_single] = STATE(1256), + [sym_tuple] = STATE(4195), + [sym_operator_identifier] = STATE(1256), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_alias] = ACTIONS(2108), + [anon_sym_true] = ACTIONS(2088), + [anon_sym_false] = ACTIONS(2088), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_GT] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_SLASH] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2098), + [anon_sym_not] = ACTIONS(2100), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(2094), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2094), + [anon_sym_when] = ACTIONS(2104), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_EQ] = ACTIONS(2094), + [anon_sym_PIPE_PIPE] = ACTIONS(2094), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2094), + [anon_sym_or] = ACTIONS(2104), + [anon_sym_AMP_AMP] = ACTIONS(2094), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2094), + [anon_sym_and] = ACTIONS(2104), + [anon_sym_EQ_EQ] = ACTIONS(2094), + [anon_sym_BANG_EQ] = ACTIONS(2094), + [anon_sym_EQ_TILDE] = ACTIONS(2094), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2094), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2094), + [anon_sym_LT_EQ] = ACTIONS(2094), + [anon_sym_GT_EQ] = ACTIONS(2094), + [anon_sym_PIPE_GT] = ACTIONS(2094), + [anon_sym_LT_LT_LT] = ACTIONS(2094), + [anon_sym_GT_GT_GT] = ACTIONS(2094), + [anon_sym_LT_LT_TILDE] = ACTIONS(2094), + [anon_sym_TILDE_GT_GT] = ACTIONS(2094), + [anon_sym_LT_TILDE] = ACTIONS(2094), + [anon_sym_TILDE_GT] = ACTIONS(2094), + [anon_sym_LT_TILDE_GT] = ACTIONS(2094), + [anon_sym_LT_PIPE_GT] = ACTIONS(2094), + [anon_sym_in] = ACTIONS(2104), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2094), + [anon_sym_LT_GT] = ACTIONS(2094), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_STAR_STAR] = ACTIONS(2094), + [anon_sym_DASH_GT] = ACTIONS(2094), + [anon_sym_after] = ACTIONS(2088), + [anon_sym_catch] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_else] = ACTIONS(2088), + [anon_sym_end] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2088), + [anon_sym_rescue] = ACTIONS(2088), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(420), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2106), }, - [1428] = { - [sym_identifier] = STATE(1318), - [sym_quoted_i_double] = STATE(1318), - [sym_quoted_i_single] = STATE(1318), - [sym_tuple] = STATE(3715), - [sym_operator_identifier] = STATE(1318), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2068), - [anon_sym_false] = ACTIONS(2068), - [anon_sym_nil] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2070), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_GT] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_SLASH] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_CARET] = ACTIONS(2078), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2078), - [anon_sym_not] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2082), - [anon_sym_LT_DASH] = ACTIONS(2074), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2074), - [anon_sym_when] = ACTIONS(2084), - [anon_sym_COLON_COLON] = ACTIONS(2074), - [anon_sym_EQ] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_or] = ACTIONS(2084), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2074), - [anon_sym_and] = ACTIONS(2084), - [anon_sym_EQ_EQ] = ACTIONS(2074), - [anon_sym_BANG_EQ] = ACTIONS(2074), - [anon_sym_EQ_TILDE] = ACTIONS(2074), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2074), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2074), - [anon_sym_LT_EQ] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2074), - [anon_sym_PIPE_GT] = ACTIONS(2074), - [anon_sym_LT_LT_LT] = ACTIONS(2074), - [anon_sym_GT_GT_GT] = ACTIONS(2074), - [anon_sym_LT_LT_TILDE] = ACTIONS(2074), - [anon_sym_TILDE_GT_GT] = ACTIONS(2074), - [anon_sym_LT_TILDE] = ACTIONS(2074), - [anon_sym_TILDE_GT] = ACTIONS(2074), - [anon_sym_LT_TILDE_GT] = ACTIONS(2074), - [anon_sym_LT_PIPE_GT] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(2084), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2074), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2074), - [anon_sym_LT_GT] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_STAR_STAR] = ACTIONS(2074), - [anon_sym_DASH_GT] = ACTIONS(2074), - [anon_sym_after] = ACTIONS(2068), - [anon_sym_catch] = ACTIONS(2068), - [anon_sym_do] = ACTIONS(2068), - [anon_sym_else] = ACTIONS(2068), - [anon_sym_end] = ACTIONS(2068), - [anon_sym_fn] = ACTIONS(2068), - [anon_sym_rescue] = ACTIONS(2068), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1743), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2086), + [1418] = { + [sym_identifier] = STATE(1249), + [sym_quoted_i_double] = STATE(1249), + [sym_quoted_i_single] = STATE(1249), + [sym_tuple] = STATE(2448), + [sym_operator_identifier] = STATE(1249), + [aux_sym_terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1942), + [aux_sym_identifier_token1] = ACTIONS(337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(337), + [sym_alias] = ACTIONS(2110), + [anon_sym_true] = ACTIONS(2014), + [anon_sym_false] = ACTIONS(2014), + [anon_sym_nil] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2016), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_GT] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_SLASH] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_not] = ACTIONS(2026), + [anon_sym_AT] = ACTIONS(2028), + [anon_sym_LT_DASH] = ACTIONS(2020), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2020), + [anon_sym_when] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_or] = ACTIONS(2030), + [anon_sym_AMP_AMP] = ACTIONS(2020), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2020), + [anon_sym_and] = ACTIONS(2030), + [anon_sym_EQ_EQ] = ACTIONS(2020), + [anon_sym_BANG_EQ] = ACTIONS(2020), + [anon_sym_EQ_TILDE] = ACTIONS(2020), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2020), + [anon_sym_GT_EQ] = ACTIONS(2020), + [anon_sym_PIPE_GT] = ACTIONS(2020), + [anon_sym_LT_LT_LT] = ACTIONS(2020), + [anon_sym_GT_GT_GT] = ACTIONS(2020), + [anon_sym_LT_LT_TILDE] = ACTIONS(2020), + [anon_sym_TILDE_GT_GT] = ACTIONS(2020), + [anon_sym_LT_TILDE] = ACTIONS(2020), + [anon_sym_TILDE_GT] = ACTIONS(2020), + [anon_sym_LT_TILDE_GT] = ACTIONS(2020), + [anon_sym_LT_PIPE_GT] = ACTIONS(2020), + [anon_sym_in] = ACTIONS(2030), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2020), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2020), + [anon_sym_LT_GT] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2020), + [anon_sym_STAR_STAR] = ACTIONS(2020), + [anon_sym_DASH_GT] = ACTIONS(2020), + [anon_sym_after] = ACTIONS(2014), + [anon_sym_catch] = ACTIONS(2014), + [anon_sym_do] = ACTIONS(2014), + [anon_sym_else] = ACTIONS(2014), + [anon_sym_end] = ACTIONS(2014), + [anon_sym_fn] = ACTIONS(2014), + [anon_sym_rescue] = ACTIONS(2014), + [sym_comment] = ACTIONS(5), + [sym_semgrep_metavariable] = ACTIONS(337), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2032), }, - [1429] = { - [sym_identifier] = STATE(1240), - [sym_quoted_i_double] = STATE(1240), - [sym_quoted_i_single] = STATE(1240), - [sym_tuple] = STATE(3523), - [sym_operator_identifier] = STATE(1240), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(2088), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_nil] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1998), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_GT] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_SLASH] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_CARET] = ACTIONS(2006), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), - [anon_sym_not] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(2010), - [anon_sym_LT_DASH] = ACTIONS(2002), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2002), - [anon_sym_when] = ACTIONS(2012), - [anon_sym_COLON_COLON] = ACTIONS(2002), - [anon_sym_EQ] = ACTIONS(2002), - [anon_sym_PIPE_PIPE] = ACTIONS(2002), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2002), - [anon_sym_or] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2002), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2002), - [anon_sym_and] = ACTIONS(2012), - [anon_sym_EQ_EQ] = ACTIONS(2002), - [anon_sym_BANG_EQ] = ACTIONS(2002), - [anon_sym_EQ_TILDE] = ACTIONS(2002), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2002), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2002), - [anon_sym_LT_EQ] = ACTIONS(2002), - [anon_sym_GT_EQ] = ACTIONS(2002), - [anon_sym_PIPE_GT] = ACTIONS(2002), - [anon_sym_LT_LT_LT] = ACTIONS(2002), - [anon_sym_GT_GT_GT] = ACTIONS(2002), - [anon_sym_LT_LT_TILDE] = ACTIONS(2002), - [anon_sym_TILDE_GT_GT] = ACTIONS(2002), - [anon_sym_LT_TILDE] = ACTIONS(2002), - [anon_sym_TILDE_GT] = ACTIONS(2002), - [anon_sym_LT_TILDE_GT] = ACTIONS(2002), - [anon_sym_LT_PIPE_GT] = ACTIONS(2002), - [anon_sym_in] = ACTIONS(2012), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2002), - [anon_sym_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2002), - [anon_sym_LT_GT] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_STAR_STAR] = ACTIONS(2002), - [anon_sym_DASH_GT] = ACTIONS(2002), - [anon_sym_after] = ACTIONS(1996), - [anon_sym_catch] = ACTIONS(1996), - [anon_sym_do] = ACTIONS(1996), - [anon_sym_else] = ACTIONS(1996), - [anon_sym_end] = ACTIONS(1996), - [anon_sym_fn] = ACTIONS(1996), - [anon_sym_rescue] = ACTIONS(1996), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1609), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2014), + [1419] = { + [sym_terminator] = STATE(167), + [sym_after_block] = STATE(4996), + [sym_rescue_block] = STATE(4996), + [sym_catch_block] = STATE(4996), + [sym_else_block] = STATE(4996), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4914), + [aux_sym_do_block_repeat1] = STATE(4996), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(319), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), + [sym_comment] = ACTIONS(5), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2159), }, - [1430] = { - [sym_identifier] = STATE(1318), - [sym_quoted_i_double] = STATE(1318), - [sym_quoted_i_single] = STATE(1318), - [sym_tuple] = STATE(4727), - [sym_operator_identifier] = STATE(1318), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [sym_alias] = ACTIONS(2090), - [anon_sym_true] = ACTIONS(2068), - [anon_sym_false] = ACTIONS(2068), - [anon_sym_nil] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2070), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_GT] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_SLASH] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_CARET] = ACTIONS(2078), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2078), - [anon_sym_not] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2082), - [anon_sym_LT_DASH] = ACTIONS(2074), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2074), - [anon_sym_when] = ACTIONS(2084), - [anon_sym_COLON_COLON] = ACTIONS(2074), - [anon_sym_EQ] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_or] = ACTIONS(2084), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2074), - [anon_sym_and] = ACTIONS(2084), - [anon_sym_EQ_EQ] = ACTIONS(2074), - [anon_sym_BANG_EQ] = ACTIONS(2074), - [anon_sym_EQ_TILDE] = ACTIONS(2074), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2074), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2074), - [anon_sym_LT_EQ] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2074), - [anon_sym_PIPE_GT] = ACTIONS(2074), - [anon_sym_LT_LT_LT] = ACTIONS(2074), - [anon_sym_GT_GT_GT] = ACTIONS(2074), - [anon_sym_LT_LT_TILDE] = ACTIONS(2074), - [anon_sym_TILDE_GT_GT] = ACTIONS(2074), - [anon_sym_LT_TILDE] = ACTIONS(2074), - [anon_sym_TILDE_GT] = ACTIONS(2074), - [anon_sym_LT_TILDE_GT] = ACTIONS(2074), - [anon_sym_LT_PIPE_GT] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(2084), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2074), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2074), - [anon_sym_LT_GT] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_STAR_STAR] = ACTIONS(2074), - [anon_sym_DASH_GT] = ACTIONS(2074), - [anon_sym_after] = ACTIONS(2068), - [anon_sym_catch] = ACTIONS(2068), - [anon_sym_do] = ACTIONS(2068), - [anon_sym_else] = ACTIONS(2068), - [anon_sym_end] = ACTIONS(2068), - [anon_sym_fn] = ACTIONS(2068), - [anon_sym_rescue] = ACTIONS(2068), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1743), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2086), + [1420] = { + [sym_terminator] = STATE(197), + [sym_after_block] = STATE(5009), + [sym_rescue_block] = STATE(5009), + [sym_catch_block] = STATE(5009), + [sym_else_block] = STATE(5009), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4886), + [aux_sym_do_block_repeat1] = STATE(5009), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1046), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), + [sym_comment] = ACTIONS(5), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2159), }, - [1431] = { - [sym_identifier] = STATE(1334), - [sym_quoted_i_double] = STATE(1334), - [sym_quoted_i_single] = STATE(1334), - [sym_tuple] = STATE(4607), - [sym_operator_identifier] = STATE(1334), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [sym_alias] = ACTIONS(2092), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [anon_sym_nil] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2026), - [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_BANG] = ACTIONS(2030), - [anon_sym_CARET] = ACTIONS(2030), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2030), - [anon_sym_not] = ACTIONS(2032), - [anon_sym_AT] = ACTIONS(2034), - [anon_sym_LT_DASH] = ACTIONS(2026), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2026), - [anon_sym_when] = ACTIONS(2036), - [anon_sym_COLON_COLON] = ACTIONS(2026), - [anon_sym_EQ] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_or] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2026), - [anon_sym_and] = ACTIONS(2036), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_EQ_TILDE] = ACTIONS(2026), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2026), - [anon_sym_LT_EQ] = ACTIONS(2026), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_PIPE_GT] = ACTIONS(2026), - [anon_sym_LT_LT_LT] = ACTIONS(2026), - [anon_sym_GT_GT_GT] = ACTIONS(2026), - [anon_sym_LT_LT_TILDE] = ACTIONS(2026), - [anon_sym_TILDE_GT_GT] = ACTIONS(2026), - [anon_sym_LT_TILDE] = ACTIONS(2026), - [anon_sym_TILDE_GT] = ACTIONS(2026), - [anon_sym_LT_TILDE_GT] = ACTIONS(2026), - [anon_sym_LT_PIPE_GT] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2036), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2026), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2026), - [anon_sym_LT_GT] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_STAR_STAR] = ACTIONS(2026), - [anon_sym_DASH_GT] = ACTIONS(2026), - [anon_sym_after] = ACTIONS(2020), - [anon_sym_catch] = ACTIONS(2020), - [anon_sym_do] = ACTIONS(2020), - [anon_sym_else] = ACTIONS(2020), - [anon_sym_end] = ACTIONS(2020), - [anon_sym_fn] = ACTIONS(2020), - [anon_sym_rescue] = ACTIONS(2020), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1649), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2038), + [1421] = { + [sym_terminator] = STATE(173), + [sym_after_block] = STATE(5046), + [sym_rescue_block] = STATE(5046), + [sym_catch_block] = STATE(5046), + [sym_else_block] = STATE(5046), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4950), + [aux_sym_do_block_repeat1] = STATE(5046), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1034), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), + [sym_comment] = ACTIONS(5), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2159), }, - [1432] = { - [sym_identifier] = STATE(1240), - [sym_quoted_i_double] = STATE(1240), - [sym_quoted_i_single] = STATE(1240), - [sym_tuple] = STATE(4165), - [sym_operator_identifier] = STATE(1240), - [aux_sym_terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1926), - [aux_sym_identifier_token1] = ACTIONS(333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [sym_alias] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [anon_sym_nil] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1998), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_GT] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_SLASH] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_CARET] = ACTIONS(2006), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), - [anon_sym_not] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(2010), - [anon_sym_LT_DASH] = ACTIONS(2002), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2002), - [anon_sym_when] = ACTIONS(2012), - [anon_sym_COLON_COLON] = ACTIONS(2002), - [anon_sym_EQ] = ACTIONS(2002), - [anon_sym_PIPE_PIPE] = ACTIONS(2002), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2002), - [anon_sym_or] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2002), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2002), - [anon_sym_and] = ACTIONS(2012), - [anon_sym_EQ_EQ] = ACTIONS(2002), - [anon_sym_BANG_EQ] = ACTIONS(2002), - [anon_sym_EQ_TILDE] = ACTIONS(2002), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2002), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2002), - [anon_sym_LT_EQ] = ACTIONS(2002), - [anon_sym_GT_EQ] = ACTIONS(2002), - [anon_sym_PIPE_GT] = ACTIONS(2002), - [anon_sym_LT_LT_LT] = ACTIONS(2002), - [anon_sym_GT_GT_GT] = ACTIONS(2002), - [anon_sym_LT_LT_TILDE] = ACTIONS(2002), - [anon_sym_TILDE_GT_GT] = ACTIONS(2002), - [anon_sym_LT_TILDE] = ACTIONS(2002), - [anon_sym_TILDE_GT] = ACTIONS(2002), - [anon_sym_LT_TILDE_GT] = ACTIONS(2002), - [anon_sym_LT_PIPE_GT] = ACTIONS(2002), - [anon_sym_in] = ACTIONS(2012), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2002), - [anon_sym_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2002), - [anon_sym_LT_GT] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_STAR_STAR] = ACTIONS(2002), - [anon_sym_DASH_GT] = ACTIONS(2002), - [anon_sym_after] = ACTIONS(1996), - [anon_sym_catch] = ACTIONS(1996), - [anon_sym_do] = ACTIONS(1996), - [anon_sym_else] = ACTIONS(1996), - [anon_sym_end] = ACTIONS(1996), - [anon_sym_fn] = ACTIONS(1996), - [anon_sym_rescue] = ACTIONS(1996), - [sym_comment] = ACTIONS(5), - [sym_semgrep_metavariable] = ACTIONS(1609), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2014), + [1422] = { + [sym_terminator] = STATE(171), + [sym_after_block] = STATE(5038), + [sym_rescue_block] = STATE(5038), + [sym_catch_block] = STATE(5038), + [sym_else_block] = STATE(5038), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4942), + [aux_sym_do_block_repeat1] = STATE(5038), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(994), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), + [sym_comment] = ACTIONS(5), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2159), }, - [1433] = { - [sym_terminator] = STATE(176), + [1423] = { + [sym_terminator] = STATE(168), + [sym_after_block] = STATE(5000), + [sym_rescue_block] = STATE(5000), + [sym_catch_block] = STATE(5000), + [sym_else_block] = STATE(5000), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4916), + [aux_sym_do_block_repeat1] = STATE(5000), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(988), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), + [sym_comment] = ACTIONS(5), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2159), + }, + [1424] = { + [sym_terminator] = STATE(192), [sym_after_block] = STATE(5042), [sym_rescue_block] = STATE(5042), [sym_catch_block] = STATE(5042), [sym_else_block] = STATE(5042), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4944), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4952), [aux_sym_do_block_repeat1] = STATE(5042), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(988), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(309), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1434] = { - [sym_terminator] = STATE(189), - [sym_after_block] = STATE(5025), - [sym_rescue_block] = STATE(5025), - [sym_catch_block] = STATE(5025), - [sym_else_block] = STATE(5025), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4920), - [aux_sym_do_block_repeat1] = STATE(5025), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(1014), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1425] = { + [sym_terminator] = STATE(195), + [sym_after_block] = STATE(5015), + [sym_rescue_block] = STATE(5015), + [sym_catch_block] = STATE(5015), + [sym_else_block] = STATE(5015), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4888), + [aux_sym_do_block_repeat1] = STATE(5015), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(305), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1435] = { - [sym_terminator] = STATE(182), - [sym_after_block] = STATE(5023), - [sym_rescue_block] = STATE(5023), - [sym_catch_block] = STATE(5023), - [sym_else_block] = STATE(5023), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4940), - [aux_sym_do_block_repeat1] = STATE(5023), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(1000), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1426] = { + [sym_terminator] = STATE(160), + [sym_after_block] = STATE(5037), + [sym_rescue_block] = STATE(5037), + [sym_catch_block] = STATE(5037), + [sym_else_block] = STATE(5037), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4870), + [aux_sym_do_block_repeat1] = STATE(5037), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(317), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1436] = { - [sym_terminator] = STATE(199), - [sym_after_block] = STATE(5045), - [sym_rescue_block] = STATE(5045), - [sym_catch_block] = STATE(5045), - [sym_else_block] = STATE(5045), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4959), - [aux_sym_do_block_repeat1] = STATE(5045), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(317), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1427] = { + [sym_terminator] = STATE(193), + [sym_after_block] = STATE(4983), + [sym_rescue_block] = STATE(4983), + [sym_catch_block] = STATE(4983), + [sym_else_block] = STATE(4983), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4953), + [aux_sym_do_block_repeat1] = STATE(4983), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1038), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1437] = { - [sym_terminator] = STATE(171), - [sym_after_block] = STATE(5069), - [sym_rescue_block] = STATE(5069), - [sym_catch_block] = STATE(5069), - [sym_else_block] = STATE(5069), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4974), - [aux_sym_do_block_repeat1] = STATE(5069), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(303), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1428] = { + [sym_terminator] = STATE(174), + [sym_after_block] = STATE(5020), + [sym_rescue_block] = STATE(5020), + [sym_catch_block] = STATE(5020), + [sym_else_block] = STATE(5020), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4911), + [aux_sym_do_block_repeat1] = STATE(5020), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1044), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1438] = { - [sym_terminator] = STATE(172), - [sym_after_block] = STATE(5030), - [sym_rescue_block] = STATE(5030), - [sym_catch_block] = STATE(5030), - [sym_else_block] = STATE(5030), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4938), - [aux_sym_do_block_repeat1] = STATE(5030), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(980), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1429] = { + [sym_terminator] = STATE(161), + [sym_after_block] = STATE(4980), + [sym_rescue_block] = STATE(4980), + [sym_catch_block] = STATE(4980), + [sym_else_block] = STATE(4980), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4923), + [aux_sym_do_block_repeat1] = STATE(4980), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(307), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1439] = { - [sym_terminator] = STATE(197), - [sym_after_block] = STATE(5011), - [sym_rescue_block] = STATE(5011), - [sym_catch_block] = STATE(5011), - [sym_else_block] = STATE(5011), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4903), - [aux_sym_do_block_repeat1] = STATE(5011), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(305), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1430] = { + [sym_terminator] = STATE(187), + [sym_after_block] = STATE(4984), + [sym_rescue_block] = STATE(4984), + [sym_catch_block] = STATE(4984), + [sym_else_block] = STATE(4984), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4948), + [aux_sym_do_block_repeat1] = STATE(4984), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(325), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1440] = { - [sym_terminator] = STATE(198), - [sym_after_block] = STATE(5024), - [sym_rescue_block] = STATE(5024), - [sym_catch_block] = STATE(5024), - [sym_else_block] = STATE(5024), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4905), - [aux_sym_do_block_repeat1] = STATE(5024), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(1032), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1431] = { + [sym_terminator] = STATE(163), + [sym_after_block] = STATE(5047), + [sym_rescue_block] = STATE(5047), + [sym_catch_block] = STATE(5047), + [sym_else_block] = STATE(5047), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4873), + [aux_sym_do_block_repeat1] = STATE(5047), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(974), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1441] = { - [sym_terminator] = STATE(179), - [sym_after_block] = STATE(5060), - [sym_rescue_block] = STATE(5060), - [sym_catch_block] = STATE(5060), - [sym_else_block] = STATE(5060), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4969), - [aux_sym_do_block_repeat1] = STATE(5060), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(1036), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1432] = { + [sym_terminator] = STATE(178), + [sym_after_block] = STATE(5031), + [sym_rescue_block] = STATE(5031), + [sym_catch_block] = STATE(5031), + [sym_else_block] = STATE(5031), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4935), + [aux_sym_do_block_repeat1] = STATE(5031), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(976), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1442] = { - [sym_terminator] = STATE(174), - [sym_after_block] = STATE(5026), - [sym_rescue_block] = STATE(5026), - [sym_catch_block] = STATE(5026), - [sym_else_block] = STATE(5026), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4967), - [aux_sym_do_block_repeat1] = STATE(5026), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(972), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1433] = { + [sym_terminator] = STATE(158), + [sym_after_block] = STATE(5032), + [sym_rescue_block] = STATE(5032), + [sym_catch_block] = STATE(5032), + [sym_else_block] = STATE(5032), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4876), + [aux_sym_do_block_repeat1] = STATE(5032), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(311), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1443] = { - [sym_terminator] = STATE(175), - [sym_after_block] = STATE(5073), - [sym_rescue_block] = STATE(5073), - [sym_catch_block] = STATE(5073), - [sym_else_block] = STATE(5073), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4955), - [aux_sym_do_block_repeat1] = STATE(5073), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(321), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1434] = { + [sym_terminator] = STATE(181), + [sym_after_block] = STATE(5012), + [sym_rescue_block] = STATE(5012), + [sym_catch_block] = STATE(5012), + [sym_else_block] = STATE(5012), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4885), + [aux_sym_do_block_repeat1] = STATE(5012), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(313), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1444] = { - [sym_terminator] = STATE(184), - [sym_after_block] = STATE(5056), - [sym_rescue_block] = STATE(5056), - [sym_catch_block] = STATE(5056), - [sym_else_block] = STATE(5056), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4965), - [aux_sym_do_block_repeat1] = STATE(5056), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(295), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), - [sym_comment] = ACTIONS(5), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), - }, - [1445] = { - [sym_terminator] = STATE(185), - [sym_after_block] = STATE(5063), - [sym_rescue_block] = STATE(5063), - [sym_catch_block] = STATE(5063), - [sym_else_block] = STATE(5063), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4968), - [aux_sym_do_block_repeat1] = STATE(5063), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(1006), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1435] = { + [sym_terminator] = STATE(183), + [sym_after_block] = STATE(4985), + [sym_rescue_block] = STATE(4985), + [sym_catch_block] = STATE(4985), + [sym_else_block] = STATE(4985), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4881), + [aux_sym_do_block_repeat1] = STATE(4985), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(960), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1446] = { - [sym_terminator] = STATE(167), - [sym_after_block] = STATE(5008), - [sym_rescue_block] = STATE(5008), - [sym_catch_block] = STATE(5008), - [sym_else_block] = STATE(5008), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4936), - [aux_sym_do_block_repeat1] = STATE(5008), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(301), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1436] = { + [sym_terminator] = STATE(177), + [sym_after_block] = STATE(5025), + [sym_rescue_block] = STATE(5025), + [sym_catch_block] = STATE(5025), + [sym_else_block] = STATE(5025), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4929), + [aux_sym_do_block_repeat1] = STATE(5025), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(321), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1447] = { - [sym_terminator] = STATE(178), - [sym_after_block] = STATE(5055), - [sym_rescue_block] = STATE(5055), - [sym_catch_block] = STATE(5055), - [sym_else_block] = STATE(5055), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4909), - [aux_sym_do_block_repeat1] = STATE(5055), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(309), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1437] = { + [sym_terminator] = STATE(188), + [sym_after_block] = STATE(4990), + [sym_rescue_block] = STATE(4990), + [sym_catch_block] = STATE(4990), + [sym_else_block] = STATE(4990), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4890), + [aux_sym_do_block_repeat1] = STATE(4990), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1028), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1448] = { - [sym_terminator] = STATE(159), - [sym_after_block] = STATE(5005), - [sym_rescue_block] = STATE(5005), - [sym_catch_block] = STATE(5005), - [sym_else_block] = STATE(5005), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4914), - [aux_sym_do_block_repeat1] = STATE(5005), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(994), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1438] = { + [sym_terminator] = STATE(190), + [sym_after_block] = STATE(4998), + [sym_rescue_block] = STATE(4998), + [sym_catch_block] = STATE(4998), + [sym_else_block] = STATE(4998), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4897), + [aux_sym_do_block_repeat1] = STATE(4998), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(303), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1449] = { - [sym_terminator] = STATE(181), - [sym_after_block] = STATE(5038), - [sym_rescue_block] = STATE(5038), - [sym_catch_block] = STATE(5038), - [sym_else_block] = STATE(5038), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4962), - [aux_sym_do_block_repeat1] = STATE(5038), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(311), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1439] = { + [sym_terminator] = STATE(166), + [sym_after_block] = STATE(5027), + [sym_rescue_block] = STATE(5027), + [sym_catch_block] = STATE(5027), + [sym_else_block] = STATE(5027), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4902), + [aux_sym_do_block_repeat1] = STATE(5027), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(299), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), - }, - [1450] = { - [sym_terminator] = STATE(191), - [sym_after_block] = STATE(5040), - [sym_rescue_block] = STATE(5040), - [sym_catch_block] = STATE(5040), - [sym_else_block] = STATE(5040), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4911), - [aux_sym_do_block_repeat1] = STATE(5040), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(297), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), - [sym_comment] = ACTIONS(5), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1451] = { - [sym_terminator] = STATE(168), - [sym_after_block] = STATE(5057), - [sym_rescue_block] = STATE(5057), - [sym_catch_block] = STATE(5057), - [sym_else_block] = STATE(5057), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4930), - [aux_sym_do_block_repeat1] = STATE(5057), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(313), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1440] = { + [sym_terminator] = STATE(175), + [sym_after_block] = STATE(4994), + [sym_rescue_block] = STATE(4994), + [sym_catch_block] = STATE(4994), + [sym_else_block] = STATE(4994), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4893), + [aux_sym_do_block_repeat1] = STATE(4994), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(315), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1452] = { - [sym_terminator] = STATE(162), - [sym_after_block] = STATE(5013), - [sym_rescue_block] = STATE(5013), - [sym_catch_block] = STATE(5013), - [sym_else_block] = STATE(5013), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4916), - [aux_sym_do_block_repeat1] = STATE(5013), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(1020), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), - [sym_comment] = ACTIONS(5), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), - }, - [1453] = { - [sym_terminator] = STATE(169), - [sym_after_block] = STATE(5070), - [sym_rescue_block] = STATE(5070), - [sym_catch_block] = STATE(5070), - [sym_else_block] = STATE(5070), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4975), - [aux_sym_do_block_repeat1] = STATE(5070), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(974), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1441] = { + [sym_terminator] = STATE(196), + [sym_after_block] = STATE(5007), + [sym_rescue_block] = STATE(5007), + [sym_catch_block] = STATE(5007), + [sym_else_block] = STATE(5007), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4879), + [aux_sym_do_block_repeat1] = STATE(5007), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(301), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1454] = { - [sym_terminator] = STATE(193), - [sym_after_block] = STATE(5019), - [sym_rescue_block] = STATE(5019), - [sym_catch_block] = STATE(5019), - [sym_else_block] = STATE(5019), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4941), - [aux_sym_do_block_repeat1] = STATE(5019), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(1022), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1442] = { + [sym_terminator] = STATE(182), + [sym_after_block] = STATE(5010), + [sym_rescue_block] = STATE(5010), + [sym_catch_block] = STATE(5010), + [sym_else_block] = STATE(5010), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4918), + [aux_sym_do_block_repeat1] = STATE(5010), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1016), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1455] = { - [sym_terminator] = STATE(163), - [sym_after_block] = STATE(5033), - [sym_rescue_block] = STATE(5033), - [sym_catch_block] = STATE(5033), - [sym_else_block] = STATE(5033), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4952), - [aux_sym_do_block_repeat1] = STATE(5033), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(307), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1443] = { + [sym_terminator] = STATE(199), + [sym_after_block] = STATE(5029), + [sym_rescue_block] = STATE(5029), + [sym_catch_block] = STATE(5029), + [sym_else_block] = STATE(5029), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4931), + [aux_sym_do_block_repeat1] = STATE(5029), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1008), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1456] = { - [sym_terminator] = STATE(164), - [sym_after_block] = STATE(5044), - [sym_rescue_block] = STATE(5044), - [sym_catch_block] = STATE(5044), - [sym_else_block] = STATE(5044), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4957), - [aux_sym_do_block_repeat1] = STATE(5044), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(964), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), - [sym_comment] = ACTIONS(5), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), - }, - [1457] = { - [sym_terminator] = STATE(194), - [sym_after_block] = STATE(5065), - [sym_rescue_block] = STATE(5065), - [sym_catch_block] = STATE(5065), - [sym_else_block] = STATE(5065), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4932), - [aux_sym_do_block_repeat1] = STATE(5065), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(299), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1444] = { + [sym_terminator] = STATE(186), + [sym_after_block] = STATE(5043), + [sym_rescue_block] = STATE(5043), + [sym_catch_block] = STATE(5043), + [sym_else_block] = STATE(5043), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4904), + [aux_sym_do_block_repeat1] = STATE(5043), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(986), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1458] = { - [sym_terminator] = STATE(188), - [sym_after_block] = STATE(5068), - [sym_rescue_block] = STATE(5068), - [sym_catch_block] = STATE(5068), - [sym_else_block] = STATE(5068), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4913), - [aux_sym_do_block_repeat1] = STATE(5068), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(319), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1445] = { + [sym_terminator] = STATE(176), + [sym_after_block] = STATE(4999), + [sym_rescue_block] = STATE(4999), + [sym_catch_block] = STATE(4999), + [sym_else_block] = STATE(4999), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4895), + [aux_sym_do_block_repeat1] = STATE(4999), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(1004), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1459] = { - [sym_terminator] = STATE(195), - [sym_after_block] = STATE(5014), - [sym_rescue_block] = STATE(5014), - [sym_catch_block] = STATE(5014), - [sym_else_block] = STATE(5014), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4937), - [aux_sym_do_block_repeat1] = STATE(5014), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(1026), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), + [1446] = { + [sym_terminator] = STATE(170), + [sym_after_block] = STATE(5036), + [sym_rescue_block] = STATE(5036), + [sym_catch_block] = STATE(5036), + [sym_else_block] = STATE(5036), + [aux_sym_terminator_repeat1] = STATE(1359), + [aux_sym_block_repeat2] = STATE(4939), + [aux_sym_do_block_repeat1] = STATE(5036), + [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6420), + [aux_sym_terminator_token1] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_SLASH] = ACTIONS(2118), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_LT_DASH] = ACTIONS(2126), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2126), + [anon_sym_when] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_EQ_GT] = ACTIONS(2133), + [anon_sym_EQ] = ACTIONS(2135), + [anon_sym_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2137), + [anon_sym_or] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2139), + [anon_sym_and] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ] = ACTIONS(2141), + [anon_sym_EQ_TILDE] = ACTIONS(2141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), + [anon_sym_LT_EQ] = ACTIONS(2114), + [anon_sym_GT_EQ] = ACTIONS(2114), + [anon_sym_PIPE_GT] = ACTIONS(2143), + [anon_sym_LT_LT_LT] = ACTIONS(2143), + [anon_sym_GT_GT_GT] = ACTIONS(2143), + [anon_sym_LT_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE] = ACTIONS(2143), + [anon_sym_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_TILDE_GT] = ACTIONS(2143), + [anon_sym_LT_PIPE_GT] = ACTIONS(2143), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2122), + [anon_sym_LT_GT] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_DASH_GT] = ACTIONS(2153), + [anon_sym_DOT] = ACTIONS(2155), + [anon_sym_after] = ACTIONS(113), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(117), + [anon_sym_end] = ACTIONS(323), + [anon_sym_rescue] = ACTIONS(123), + [anon_sym_LBRACK2] = ACTIONS(2157), [sym_comment] = ACTIONS(5), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), + [sym_not_in] = ACTIONS(2159), }, - [1460] = { - [sym_terminator] = STATE(192), - [sym_after_block] = STATE(5021), - [sym_rescue_block] = STATE(5021), - [sym_catch_block] = STATE(5021), - [sym_else_block] = STATE(5021), - [aux_sym_terminator_repeat1] = STATE(1373), - [aux_sym_block_repeat2] = STATE(4943), - [aux_sym_do_block_repeat1] = STATE(5021), - [aux_sym_stab_clause_arguments_without_parentheses_repeat1] = STATE(6540), - [aux_sym_terminator_token1] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2110), - [anon_sym_when] = ACTIONS(2112), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_EQ_GT] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2121), - [anon_sym_or] = ACTIONS(2121), - [anon_sym_AMP_AMP] = ACTIONS(2123), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2123), - [anon_sym_and] = ACTIONS(2123), - [anon_sym_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ] = ACTIONS(2125), - [anon_sym_EQ_TILDE] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_PIPE_GT] = ACTIONS(2127), - [anon_sym_LT_LT_LT] = ACTIONS(2127), - [anon_sym_GT_GT_GT] = ACTIONS(2127), - [anon_sym_LT_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE] = ACTIONS(2127), - [anon_sym_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_TILDE_GT] = ACTIONS(2127), - [anon_sym_LT_PIPE_GT] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(2133), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_GT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_STAR_STAR] = ACTIONS(2135), - [anon_sym_DASH_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2139), - [anon_sym_after] = ACTIONS(115), - [anon_sym_catch] = ACTIONS(117), - [anon_sym_else] = ACTIONS(119), - [anon_sym_end] = ACTIONS(315), - [anon_sym_rescue] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(2141), - [sym_comment] = ACTIONS(5), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2143), - }, - [1461] = { - [sym_call_arguments_with_parentheses] = STATE(1478), - [aux_sym_terminator_token1] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2147), - [anon_sym_LT] = ACTIONS(2147), - [anon_sym_GT] = ACTIONS(2147), - [anon_sym_PIPE] = ACTIONS(2147), - [anon_sym_SLASH] = ACTIONS(2147), - [anon_sym_COMMA] = ACTIONS(2147), - [anon_sym_DOT_DOT] = ACTIONS(2147), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_LT_DASH] = ACTIONS(2147), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2147), - [anon_sym_when] = ACTIONS(2147), - [anon_sym_COLON_COLON] = ACTIONS(2147), - [anon_sym_EQ_GT] = ACTIONS(2147), - [anon_sym_EQ] = ACTIONS(2147), - [anon_sym_PIPE_PIPE] = ACTIONS(2147), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2147), - [anon_sym_or] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(2147), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2147), - [anon_sym_and] = ACTIONS(2147), - [anon_sym_EQ_EQ] = ACTIONS(2147), - [anon_sym_BANG_EQ] = ACTIONS(2147), - [anon_sym_EQ_TILDE] = ACTIONS(2147), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2147), - [anon_sym_LT_EQ] = ACTIONS(2147), - [anon_sym_GT_EQ] = ACTIONS(2147), - [anon_sym_PIPE_GT] = ACTIONS(2147), - [anon_sym_LT_LT_LT] = ACTIONS(2147), - [anon_sym_GT_GT_GT] = ACTIONS(2147), - [anon_sym_LT_LT_TILDE] = ACTIONS(2147), - [anon_sym_TILDE_GT_GT] = ACTIONS(2147), - [anon_sym_LT_TILDE] = ACTIONS(2147), - [anon_sym_TILDE_GT] = ACTIONS(2147), - [anon_sym_LT_TILDE_GT] = ACTIONS(2147), - [anon_sym_LT_PIPE_GT] = ACTIONS(2147), - [anon_sym_in] = ACTIONS(2147), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2147), - [anon_sym_SLASH_SLASH] = ACTIONS(2147), - [anon_sym_PLUS_PLUS] = ACTIONS(2147), - [anon_sym_DASH_DASH] = ACTIONS(2147), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2147), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2147), - [anon_sym_LT_GT] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2147), - [anon_sym_STAR_STAR] = ACTIONS(2147), - [anon_sym_DASH_GT] = ACTIONS(2147), - [anon_sym_DOT] = ACTIONS(2147), - [anon_sym_after] = ACTIONS(2147), - [anon_sym_catch] = ACTIONS(2147), - [anon_sym_do] = ACTIONS(2147), - [anon_sym_else] = ACTIONS(2147), - [anon_sym_end] = ACTIONS(2147), - [anon_sym_rescue] = ACTIONS(2147), - [anon_sym_LBRACK2] = ACTIONS(2145), - [sym_comment] = ACTIONS(5), - [sym_newline_before_do] = ACTIONS(2145), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2145), - }, - [1462] = { - [sym_do_block] = STATE(1468), - [aux_sym_terminator_token1] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2153), - [anon_sym_COMMA] = ACTIONS(2153), - [anon_sym_DOT_DOT] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_LT_DASH] = ACTIONS(2153), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2153), - [anon_sym_when] = ACTIONS(2153), - [anon_sym_COLON_COLON] = ACTIONS(2153), - [anon_sym_EQ_GT] = ACTIONS(2153), - [anon_sym_EQ] = ACTIONS(2153), - [anon_sym_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_or] = ACTIONS(2153), - [anon_sym_AMP_AMP] = ACTIONS(2153), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2153), - [anon_sym_and] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ] = ACTIONS(2153), - [anon_sym_EQ_TILDE] = ACTIONS(2153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2153), - [anon_sym_LT_EQ] = ACTIONS(2153), - [anon_sym_GT_EQ] = ACTIONS(2153), - [anon_sym_PIPE_GT] = ACTIONS(2153), - [anon_sym_LT_LT_LT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_LT_LT_TILDE] = ACTIONS(2153), - [anon_sym_TILDE_GT_GT] = ACTIONS(2153), - [anon_sym_LT_TILDE] = ACTIONS(2153), - [anon_sym_TILDE_GT] = ACTIONS(2153), - [anon_sym_LT_TILDE_GT] = ACTIONS(2153), - [anon_sym_LT_PIPE_GT] = ACTIONS(2153), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2153), - [anon_sym_SLASH_SLASH] = ACTIONS(2153), - [anon_sym_PLUS_PLUS] = ACTIONS(2153), - [anon_sym_DASH_DASH] = ACTIONS(2153), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2153), - [anon_sym_LT_GT] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_STAR_STAR] = ACTIONS(2153), - [anon_sym_DASH_GT] = ACTIONS(2153), - [anon_sym_DOT] = ACTIONS(2153), - [anon_sym_after] = ACTIONS(2153), - [anon_sym_catch] = ACTIONS(2153), - [anon_sym_do] = ACTIONS(2153), - [anon_sym_else] = ACTIONS(2153), - [anon_sym_end] = ACTIONS(2153), - [anon_sym_rescue] = ACTIONS(2153), - [anon_sym_LBRACK2] = ACTIONS(2151), - [sym_comment] = ACTIONS(5), - [sym_newline_before_do] = ACTIONS(2151), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2151), - }, - [1463] = { - [sym_do_block] = STATE(1469), - [aux_sym_terminator_token1] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_RPAREN] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_GT] = ACTIONS(2157), - [anon_sym_PIPE] = ACTIONS(2157), - [anon_sym_SLASH] = ACTIONS(2157), - [anon_sym_COMMA] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2157), - [anon_sym_DASH] = ACTIONS(2157), - [anon_sym_LT_DASH] = ACTIONS(2157), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2157), - [anon_sym_when] = ACTIONS(2157), - [anon_sym_COLON_COLON] = ACTIONS(2157), - [anon_sym_EQ_GT] = ACTIONS(2157), - [anon_sym_EQ] = ACTIONS(2157), - [anon_sym_PIPE_PIPE] = ACTIONS(2157), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2157), - [anon_sym_or] = ACTIONS(2157), - [anon_sym_AMP_AMP] = ACTIONS(2157), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2157), - [anon_sym_and] = ACTIONS(2157), - [anon_sym_EQ_EQ] = ACTIONS(2157), - [anon_sym_BANG_EQ] = ACTIONS(2157), - [anon_sym_EQ_TILDE] = ACTIONS(2157), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2157), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2157), - [anon_sym_LT_EQ] = ACTIONS(2157), - [anon_sym_GT_EQ] = ACTIONS(2157), - [anon_sym_PIPE_GT] = ACTIONS(2157), - [anon_sym_LT_LT_LT] = ACTIONS(2157), - [anon_sym_GT_GT_GT] = ACTIONS(2157), - [anon_sym_LT_LT_TILDE] = ACTIONS(2157), - [anon_sym_TILDE_GT_GT] = ACTIONS(2157), - [anon_sym_LT_TILDE] = ACTIONS(2157), - [anon_sym_TILDE_GT] = ACTIONS(2157), - [anon_sym_LT_TILDE_GT] = ACTIONS(2157), - [anon_sym_LT_PIPE_GT] = ACTIONS(2157), - [anon_sym_in] = ACTIONS(2157), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2157), - [anon_sym_SLASH_SLASH] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2157), - [anon_sym_LT_GT] = ACTIONS(2157), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_STAR_STAR] = ACTIONS(2157), - [anon_sym_DASH_GT] = ACTIONS(2157), - [anon_sym_DOT] = ACTIONS(2157), - [anon_sym_after] = ACTIONS(2157), - [anon_sym_catch] = ACTIONS(2157), - [anon_sym_do] = ACTIONS(2157), - [anon_sym_else] = ACTIONS(2157), - [anon_sym_end] = ACTIONS(2157), - [anon_sym_rescue] = ACTIONS(2157), - [anon_sym_LBRACK2] = ACTIONS(2155), - [sym_comment] = ACTIONS(5), - [sym_newline_before_do] = ACTIONS(2155), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2155), - }, - [1464] = { - [sym_do_block] = STATE(1735), - [aux_sym_terminator_token1] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_GT] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_SLASH] = ACTIONS(2153), - [anon_sym_COMMA] = ACTIONS(2153), - [anon_sym_DOT_DOT] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_LT_DASH] = ACTIONS(2153), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2153), - [anon_sym_when] = ACTIONS(2153), - [anon_sym_COLON_COLON] = ACTIONS(2153), - [anon_sym_EQ_GT] = ACTIONS(2153), - [anon_sym_EQ] = ACTIONS(2153), - [anon_sym_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2153), - [anon_sym_or] = ACTIONS(2153), - [anon_sym_AMP_AMP] = ACTIONS(2153), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2153), - [anon_sym_and] = ACTIONS(2153), - [anon_sym_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ] = ACTIONS(2153), - [anon_sym_EQ_TILDE] = ACTIONS(2153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2153), - [anon_sym_LT_EQ] = ACTIONS(2153), - [anon_sym_GT_EQ] = ACTIONS(2153), - [anon_sym_PIPE_GT] = ACTIONS(2153), - [anon_sym_LT_LT_LT] = ACTIONS(2153), - [anon_sym_GT_GT_GT] = ACTIONS(2153), - [anon_sym_LT_LT_TILDE] = ACTIONS(2153), - [anon_sym_TILDE_GT_GT] = ACTIONS(2153), - [anon_sym_LT_TILDE] = ACTIONS(2153), - [anon_sym_TILDE_GT] = ACTIONS(2153), - [anon_sym_LT_TILDE_GT] = ACTIONS(2153), - [anon_sym_LT_PIPE_GT] = ACTIONS(2153), - [anon_sym_in] = ACTIONS(2153), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2153), - [anon_sym_SLASH_SLASH] = ACTIONS(2153), - [anon_sym_PLUS_PLUS] = ACTIONS(2153), - [anon_sym_DASH_DASH] = ACTIONS(2153), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2153), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2153), - [anon_sym_LT_GT] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_STAR_STAR] = ACTIONS(2153), - [anon_sym_DASH_GT] = ACTIONS(2153), - [anon_sym_DOT] = ACTIONS(2153), - [anon_sym_after] = ACTIONS(2153), - [anon_sym_catch] = ACTIONS(2153), - [anon_sym_do] = ACTIONS(257), - [anon_sym_else] = ACTIONS(2153), - [anon_sym_end] = ACTIONS(2153), - [anon_sym_rescue] = ACTIONS(2153), - [anon_sym_LBRACK2] = ACTIONS(2151), - [sym_comment] = ACTIONS(5), - [sym_newline_before_do] = ACTIONS(2159), - [sym_newline_before_binary_operator] = ACTIONS(3), - [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2151), - }, - [1465] = { - [sym_do_block] = STATE(1746), - [aux_sym_terminator_token1] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_RPAREN] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_GT] = ACTIONS(2157), - [anon_sym_PIPE] = ACTIONS(2157), - [anon_sym_SLASH] = ACTIONS(2157), - [anon_sym_COMMA] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2157), - [anon_sym_DASH] = ACTIONS(2157), - [anon_sym_LT_DASH] = ACTIONS(2157), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2157), - [anon_sym_when] = ACTIONS(2157), - [anon_sym_COLON_COLON] = ACTIONS(2157), - [anon_sym_EQ_GT] = ACTIONS(2157), - [anon_sym_EQ] = ACTIONS(2157), - [anon_sym_PIPE_PIPE] = ACTIONS(2157), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2157), - [anon_sym_or] = ACTIONS(2157), - [anon_sym_AMP_AMP] = ACTIONS(2157), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2157), - [anon_sym_and] = ACTIONS(2157), - [anon_sym_EQ_EQ] = ACTIONS(2157), - [anon_sym_BANG_EQ] = ACTIONS(2157), - [anon_sym_EQ_TILDE] = ACTIONS(2157), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2157), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2157), - [anon_sym_LT_EQ] = ACTIONS(2157), - [anon_sym_GT_EQ] = ACTIONS(2157), - [anon_sym_PIPE_GT] = ACTIONS(2157), - [anon_sym_LT_LT_LT] = ACTIONS(2157), - [anon_sym_GT_GT_GT] = ACTIONS(2157), - [anon_sym_LT_LT_TILDE] = ACTIONS(2157), - [anon_sym_TILDE_GT_GT] = ACTIONS(2157), - [anon_sym_LT_TILDE] = ACTIONS(2157), - [anon_sym_TILDE_GT] = ACTIONS(2157), - [anon_sym_LT_TILDE_GT] = ACTIONS(2157), - [anon_sym_LT_PIPE_GT] = ACTIONS(2157), - [anon_sym_in] = ACTIONS(2157), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2157), - [anon_sym_SLASH_SLASH] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2157), - [anon_sym_LT_GT] = ACTIONS(2157), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_STAR_STAR] = ACTIONS(2157), - [anon_sym_DASH_GT] = ACTIONS(2157), - [anon_sym_DOT] = ACTIONS(2157), - [anon_sym_after] = ACTIONS(2157), - [anon_sym_catch] = ACTIONS(2157), - [anon_sym_do] = ACTIONS(257), - [anon_sym_else] = ACTIONS(2157), - [anon_sym_end] = ACTIONS(2157), - [anon_sym_rescue] = ACTIONS(2157), - [anon_sym_LBRACK2] = ACTIONS(2155), + [1447] = { + [sym_call_arguments_with_parentheses] = STATE(1474), + [aux_sym_terminator_token1] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_RPAREN] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_LT_DASH] = ACTIONS(2163), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2163), + [anon_sym_when] = ACTIONS(2163), + [anon_sym_COLON_COLON] = ACTIONS(2163), + [anon_sym_EQ_GT] = ACTIONS(2163), + [anon_sym_EQ] = ACTIONS(2163), + [anon_sym_PIPE_PIPE] = ACTIONS(2163), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2163), + [anon_sym_or] = ACTIONS(2163), + [anon_sym_AMP_AMP] = ACTIONS(2163), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2163), + [anon_sym_and] = ACTIONS(2163), + [anon_sym_EQ_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ] = ACTIONS(2163), + [anon_sym_EQ_TILDE] = ACTIONS(2163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), + [anon_sym_LT_EQ] = ACTIONS(2163), + [anon_sym_GT_EQ] = ACTIONS(2163), + [anon_sym_PIPE_GT] = ACTIONS(2163), + [anon_sym_LT_LT_LT] = ACTIONS(2163), + [anon_sym_GT_GT_GT] = ACTIONS(2163), + [anon_sym_LT_LT_TILDE] = ACTIONS(2163), + [anon_sym_TILDE_GT_GT] = ACTIONS(2163), + [anon_sym_LT_TILDE] = ACTIONS(2163), + [anon_sym_TILDE_GT] = ACTIONS(2163), + [anon_sym_LT_TILDE_GT] = ACTIONS(2163), + [anon_sym_LT_PIPE_GT] = ACTIONS(2163), + [anon_sym_in] = ACTIONS(2163), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2163), + [anon_sym_SLASH_SLASH] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2163), + [anon_sym_LT_GT] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_STAR_STAR] = ACTIONS(2163), + [anon_sym_DASH_GT] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_after] = ACTIONS(2163), + [anon_sym_catch] = ACTIONS(2163), + [anon_sym_do] = ACTIONS(2163), + [anon_sym_else] = ACTIONS(2163), + [anon_sym_end] = ACTIONS(2163), + [anon_sym_rescue] = ACTIONS(2163), + [anon_sym_LBRACK2] = ACTIONS(2161), [sym_comment] = ACTIONS(5), [sym_newline_before_do] = ACTIONS(2161), [sym_newline_before_binary_operator] = ACTIONS(3), [sym_newline_before_comment] = ACTIONS(3), - [sym_not_in] = ACTIONS(2155), + [sym_not_in] = ACTIONS(2161), + }, + [1448] = { + [sym_do_block] = STATE(1674), + [aux_sym_terminator_token1] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_SLASH] = ACTIONS(2169), + [anon_sym_COMMA] = ACTIONS(2169), + [anon_sym_DOT_DOT] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_LT_DASH] = ACTIONS(2169), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2169), + [anon_sym_when] = ACTIONS(2169), + [anon_sym_COLON_COLON] = ACTIONS(2169), + [anon_sym_EQ_GT] = ACTIONS(2169), + [anon_sym_EQ] = ACTIONS(2169), + [anon_sym_PIPE_PIPE] = ACTIONS(2169), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2169), + [anon_sym_or] = ACTIONS(2169), + [anon_sym_AMP_AMP] = ACTIONS(2169), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2169), + [anon_sym_and] = ACTIONS(2169), + [anon_sym_EQ_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ] = ACTIONS(2169), + [anon_sym_EQ_TILDE] = ACTIONS(2169), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), + [anon_sym_LT_EQ] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2169), + [anon_sym_PIPE_GT] = ACTIONS(2169), + [anon_sym_LT_LT_LT] = ACTIONS(2169), + [anon_sym_GT_GT_GT] = ACTIONS(2169), + [anon_sym_LT_LT_TILDE] = ACTIONS(2169), + [anon_sym_TILDE_GT_GT] = ACTIONS(2169), + [anon_sym_LT_TILDE] = ACTIONS(2169), + [anon_sym_TILDE_GT] = ACTIONS(2169), + [anon_sym_LT_TILDE_GT] = ACTIONS(2169), + [anon_sym_LT_PIPE_GT] = ACTIONS(2169), + [anon_sym_in] = ACTIONS(2169), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2169), + [anon_sym_SLASH_SLASH] = ACTIONS(2169), + [anon_sym_PLUS_PLUS] = ACTIONS(2169), + [anon_sym_DASH_DASH] = ACTIONS(2169), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2169), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2169), + [anon_sym_LT_GT] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_STAR_STAR] = ACTIONS(2169), + [anon_sym_DASH_GT] = ACTIONS(2169), + [anon_sym_DOT] = ACTIONS(2169), + [anon_sym_after] = ACTIONS(2169), + [anon_sym_catch] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(295), + [anon_sym_else] = ACTIONS(2169), + [anon_sym_end] = ACTIONS(2169), + [anon_sym_rescue] = ACTIONS(2169), + [anon_sym_LBRACK2] = ACTIONS(2167), + [sym_comment] = ACTIONS(5), + [sym_newline_before_do] = ACTIONS(2171), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2167), + }, + [1449] = { + [sym_do_block] = STATE(1466), + [aux_sym_terminator_token1] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2175), + [anon_sym_when] = ACTIONS(2175), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_EQ_GT] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2175), + [anon_sym_and] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_EQ_TILDE] = ACTIONS(2175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_PIPE_GT] = ACTIONS(2175), + [anon_sym_LT_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_LT_LT_TILDE] = ACTIONS(2175), + [anon_sym_TILDE_GT_GT] = ACTIONS(2175), + [anon_sym_LT_TILDE] = ACTIONS(2175), + [anon_sym_TILDE_GT] = ACTIONS(2175), + [anon_sym_LT_TILDE_GT] = ACTIONS(2175), + [anon_sym_LT_PIPE_GT] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2175), + [anon_sym_SLASH_SLASH] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2175), + [anon_sym_LT_GT] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_STAR_STAR] = ACTIONS(2175), + [anon_sym_DASH_GT] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_after] = ACTIONS(2175), + [anon_sym_catch] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_end] = ACTIONS(2175), + [anon_sym_rescue] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2173), + [sym_comment] = ACTIONS(5), + [sym_newline_before_do] = ACTIONS(2173), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2173), + }, + [1450] = { + [sym_do_block] = STATE(1457), + [aux_sym_terminator_token1] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_SLASH] = ACTIONS(2169), + [anon_sym_COMMA] = ACTIONS(2169), + [anon_sym_DOT_DOT] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_LT_DASH] = ACTIONS(2169), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2169), + [anon_sym_when] = ACTIONS(2169), + [anon_sym_COLON_COLON] = ACTIONS(2169), + [anon_sym_EQ_GT] = ACTIONS(2169), + [anon_sym_EQ] = ACTIONS(2169), + [anon_sym_PIPE_PIPE] = ACTIONS(2169), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2169), + [anon_sym_or] = ACTIONS(2169), + [anon_sym_AMP_AMP] = ACTIONS(2169), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2169), + [anon_sym_and] = ACTIONS(2169), + [anon_sym_EQ_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ] = ACTIONS(2169), + [anon_sym_EQ_TILDE] = ACTIONS(2169), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), + [anon_sym_LT_EQ] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2169), + [anon_sym_PIPE_GT] = ACTIONS(2169), + [anon_sym_LT_LT_LT] = ACTIONS(2169), + [anon_sym_GT_GT_GT] = ACTIONS(2169), + [anon_sym_LT_LT_TILDE] = ACTIONS(2169), + [anon_sym_TILDE_GT_GT] = ACTIONS(2169), + [anon_sym_LT_TILDE] = ACTIONS(2169), + [anon_sym_TILDE_GT] = ACTIONS(2169), + [anon_sym_LT_TILDE_GT] = ACTIONS(2169), + [anon_sym_LT_PIPE_GT] = ACTIONS(2169), + [anon_sym_in] = ACTIONS(2169), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2169), + [anon_sym_SLASH_SLASH] = ACTIONS(2169), + [anon_sym_PLUS_PLUS] = ACTIONS(2169), + [anon_sym_DASH_DASH] = ACTIONS(2169), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2169), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2169), + [anon_sym_LT_GT] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_STAR_STAR] = ACTIONS(2169), + [anon_sym_DASH_GT] = ACTIONS(2169), + [anon_sym_DOT] = ACTIONS(2169), + [anon_sym_after] = ACTIONS(2169), + [anon_sym_catch] = ACTIONS(2169), + [anon_sym_do] = ACTIONS(2169), + [anon_sym_else] = ACTIONS(2169), + [anon_sym_end] = ACTIONS(2169), + [anon_sym_rescue] = ACTIONS(2169), + [anon_sym_LBRACK2] = ACTIONS(2167), + [sym_comment] = ACTIONS(5), + [sym_newline_before_do] = ACTIONS(2167), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2167), + }, + [1451] = { + [sym_do_block] = STATE(1676), + [aux_sym_terminator_token1] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_LT_DASH] = ACTIONS(2175), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2175), + [anon_sym_when] = ACTIONS(2175), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_EQ_GT] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_or] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2175), + [anon_sym_and] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_EQ_TILDE] = ACTIONS(2175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_PIPE_GT] = ACTIONS(2175), + [anon_sym_LT_LT_LT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_LT_LT_TILDE] = ACTIONS(2175), + [anon_sym_TILDE_GT_GT] = ACTIONS(2175), + [anon_sym_LT_TILDE] = ACTIONS(2175), + [anon_sym_TILDE_GT] = ACTIONS(2175), + [anon_sym_LT_TILDE_GT] = ACTIONS(2175), + [anon_sym_LT_PIPE_GT] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2175), + [anon_sym_SLASH_SLASH] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2175), + [anon_sym_LT_GT] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_STAR_STAR] = ACTIONS(2175), + [anon_sym_DASH_GT] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_after] = ACTIONS(2175), + [anon_sym_catch] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(295), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_end] = ACTIONS(2175), + [anon_sym_rescue] = ACTIONS(2175), + [anon_sym_LBRACK2] = ACTIONS(2173), + [sym_comment] = ACTIONS(5), + [sym_newline_before_do] = ACTIONS(2177), + [sym_newline_before_binary_operator] = ACTIONS(3), + [sym_newline_before_comment] = ACTIONS(3), + [sym_not_in] = ACTIONS(2173), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 7, + [0] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(205), 1, - anon_sym_do, - ACTIONS(2163), 1, - sym_newline_before_do, - STATE(1855), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2155), 3, + ACTIONS(2179), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2157), 55, + ACTIONS(2181), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -199694,24 +199676,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [79] = 4, + [73] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2165), 4, + ACTIONS(2183), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2167), 57, + ACTIONS(2185), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -199769,255 +199753,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [152] = 4, + [146] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2169), 4, - sym_newline_before_do, - sym_not_in, + ACTIONS(1198), 1, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2171), 57, + ACTIONS(2112), 1, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2116), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(2120), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(2128), 1, anon_sym_when, + ACTIONS(2131), 1, anon_sym_COLON_COLON, + ACTIONS(2133), 1, anon_sym_EQ_GT, + ACTIONS(2135), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(2145), 1, anon_sym_in, + ACTIONS(2147), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2151), 1, anon_sym_STAR_STAR, + ACTIONS(2153), 1, anon_sym_DASH_GT, + ACTIONS(2155), 1, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [225] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, + sym_not_in, + STATE(404), 1, + sym_terminator, + STATE(1359), 1, + aux_sym_terminator_repeat1, + STATE(5070), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2173), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2175), 57, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2118), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2126), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2137), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(2114), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, + ACTIONS(1599), 5, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [298] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(1845), 5, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1847), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [371] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(1849), 5, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1851), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -200027,36 +199850,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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [444] = 4, + [275] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2177), 4, + ACTIONS(2187), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2179), 57, + ACTIONS(2189), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -200114,119 +199919,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [517] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1172), 1, - aux_sym_terminator_token1, - ACTIONS(2096), 1, - anon_sym_SEMI, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2112), 1, - anon_sym_when, - ACTIONS(2115), 1, - anon_sym_COLON_COLON, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(2119), 1, - anon_sym_EQ, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - STATE(400), 1, - sym_terminator, - STATE(1373), 1, - aux_sym_terminator_repeat1, - STATE(5078), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2110), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1559), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [646] = 6, + [348] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2181), 1, - anon_sym_LPAREN, - STATE(1508), 1, - sym_call_arguments_with_parentheses, + ACTIONS(295), 1, + anon_sym_do, + ACTIONS(2195), 1, + sym_newline_before_do, + STATE(1884), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2145), 4, - sym_newline_before_do, + ACTIONS(2191), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2147), 55, + ACTIONS(2193), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200275,28 +199984,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [723] = 5, + [427] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2183), 4, + ACTIONS(2197), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 56, + ACTIONS(2199), 57, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -200352,20 +200060,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [798] = 5, + [500] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, + ACTIONS(2205), 1, aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2189), 4, + ACTIONS(2201), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2191), 56, + ACTIONS(2203), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200422,117 +200130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [873] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1172), 1, - aux_sym_terminator_token1, - ACTIONS(2096), 1, - anon_sym_SEMI, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2112), 1, - anon_sym_when, - ACTIONS(2115), 1, - anon_sym_COLON_COLON, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(2119), 1, - anon_sym_EQ, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - STATE(391), 1, - sym_terminator, - STATE(1373), 1, - aux_sym_terminator_repeat1, - STATE(5076), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2110), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(690), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [1002] = 5, + [575] = 4, ACTIONS(5), 1, sym_comment, - STATE(1548), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2193), 4, + ACTIONS(1849), 5, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2195), 56, + ACTIONS(1851), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200589,19 +200199,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1077] = 4, + [648] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2207), 1, + anon_sym_LPAREN, + STATE(1602), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 5, + ACTIONS(2161), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1835), 56, + ACTIONS(2163), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200650,7 +200263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -200658,18 +200270,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1150] = 4, + [725] = 5, ACTIONS(5), 1, sym_comment, + STATE(1606), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2197), 4, + ACTIONS(2167), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2199), 57, + ACTIONS(2169), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -200719,7 +200333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -200727,115 +200340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1223] = 32, + [800] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1172), 1, - aux_sym_terminator_token1, - ACTIONS(2096), 1, - anon_sym_SEMI, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2112), 1, - anon_sym_when, - ACTIONS(2115), 1, - anon_sym_COLON_COLON, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(2119), 1, - anon_sym_EQ, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - STATE(396), 1, - sym_terminator, - STATE(1373), 1, - aux_sym_terminator_repeat1, - STATE(5102), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2110), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1549), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [1352] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2201), 4, + ACTIONS(2209), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2203), 57, + ACTIONS(2211), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -200893,22 +200409,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1425] = 5, + [873] = 4, ACTIONS(5), 1, sym_comment, - STATE(1645), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2151), 4, + ACTIONS(1853), 5, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2153), 56, + ACTIONS(1855), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -200956,6 +200470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -200963,20 +200478,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1500] = 5, + [946] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1198), 1, + aux_sym_terminator_token1, + ACTIONS(2112), 1, + anon_sym_SEMI, + ACTIONS(2116), 1, + anon_sym_PIPE, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2128), 1, + anon_sym_when, + ACTIONS(2131), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 1, + anon_sym_EQ_GT, + ACTIONS(2135), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_in, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, + sym_not_in, + STATE(390), 1, + sym_terminator, + STATE(1359), 1, + aux_sym_terminator_repeat1, + STATE(5069), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2118), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2124), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2126), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2137), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2114), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1595), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2143), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [1075] = 4, ACTIONS(5), 1, sym_comment, - STATE(1646), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2155), 4, + ACTIONS(2213), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2157), 56, + ACTIONS(2215), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -201026,6 +200636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -201033,18 +200644,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1575] = 4, + [1148] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2205), 4, + ACTIONS(2217), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2207), 57, + ACTIONS(2219), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -201102,20 +200713,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1648] = 5, + [1221] = 7, ACTIONS(5), 1, sym_comment, - STATE(1546), 1, + ACTIONS(295), 1, + anon_sym_do, + ACTIONS(2225), 1, + sym_newline_before_do, + STATE(1889), 1, sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2209), 4, - sym_newline_before_do, + ACTIONS(2221), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2211), 56, + ACTIONS(2223), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -201168,24 +200782,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [1723] = 4, + [1300] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2213), 4, + ACTIONS(1865), 5, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2215), 57, + ACTIONS(1867), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -201241,20 +200854,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1796] = 4, + [1373] = 5, ACTIONS(5), 1, sym_comment, + STATE(1607), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 5, + ACTIONS(2173), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1827), 56, + ACTIONS(2175), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -201302,7 +200917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -201310,117 +200924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1869] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1172), 1, - aux_sym_terminator_token1, - ACTIONS(2096), 1, - anon_sym_SEMI, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2112), 1, - anon_sym_when, - ACTIONS(2115), 1, - anon_sym_COLON_COLON, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(2119), 1, - anon_sym_EQ, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - STATE(395), 1, - sym_terminator, - STATE(1373), 1, - aux_sym_terminator_repeat1, - STATE(5097), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2110), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1541), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [1998] = 5, + [1448] = 4, ACTIONS(5), 1, sym_comment, - STATE(1549), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2217), 4, + ACTIONS(1845), 5, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2219), 56, + ACTIONS(1847), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -201477,18 +200993,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2073] = 4, + [1521] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(271), 1, + anon_sym_do, + ACTIONS(2227), 1, + sym_newline_before_do, + STATE(1971), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2221), 4, - sym_newline_before_do, + ACTIONS(2167), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2223), 57, + ACTIONS(2169), 55, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -201538,28 +201059,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1600] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1198), 1, + aux_sym_terminator_token1, + ACTIONS(2112), 1, + anon_sym_SEMI, + ACTIONS(2116), 1, + anon_sym_PIPE, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2128), 1, + anon_sym_when, + ACTIONS(2131), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 1, + anon_sym_EQ_GT, + ACTIONS(2135), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_in, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2153), 1, anon_sym_DASH_GT, + ACTIONS(2155), 1, anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, + sym_not_in, + STATE(403), 1, + sym_terminator, + STATE(1359), 1, + aux_sym_terminator_repeat1, + STATE(5066), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2118), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2124), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2126), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2137), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2114), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(700), 5, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2146] = 4, + ACTIONS(2141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2143), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [1729] = 5, ACTIONS(5), 1, sym_comment, + STATE(1594), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2225), 4, + ACTIONS(2229), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2227), 57, + ACTIONS(2231), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -201615,20 +201232,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2219] = 4, + [1804] = 5, ACTIONS(5), 1, sym_comment, + STATE(1596), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2229), 4, + ACTIONS(2191), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2231), 57, + ACTIONS(2193), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -201684,7 +201302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2292] = 4, + [1879] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -201753,94 +201371,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2365] = 32, + [1952] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - ACTIONS(2100), 1, + ACTIONS(2116), 1, anon_sym_PIPE, - ACTIONS(2104), 1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2112), 1, + ACTIONS(2128), 1, anon_sym_when, - ACTIONS(2115), 1, + ACTIONS(2131), 1, anon_sym_COLON_COLON, - ACTIONS(2117), 1, + ACTIONS(2133), 1, anon_sym_EQ_GT, - ACTIONS(2119), 1, + ACTIONS(2135), 1, anon_sym_EQ, - ACTIONS(2129), 1, + ACTIONS(2145), 1, anon_sym_in, - ACTIONS(2131), 1, + ACTIONS(2147), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, + ACTIONS(2149), 1, anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2139), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2143), 1, + ACTIONS(2159), 1, sym_not_in, - STATE(394), 1, + STATE(400), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5085), 1, + STATE(5068), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, + ACTIONS(2118), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2108), 2, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2110), 2, + ACTIONS(2126), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2121), 3, + ACTIONS(2137), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2123), 3, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2098), 4, + ACTIONS(2114), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(706), 5, + ACTIONS(712), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(2125), 5, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, + ACTIONS(2122), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2127), 9, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -201850,94 +201468,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [2494] = 32, + [2081] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1172), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(1857), 5, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2096), 1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1859), 56, anon_sym_SEMI, - ACTIONS(2100), 1, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2104), 1, + anon_sym_SLASH, anon_sym_COMMA, - ACTIONS(2112), 1, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(2115), 1, anon_sym_COLON_COLON, - ACTIONS(2117), 1, anon_sym_EQ_GT, - ACTIONS(2119), 1, anon_sym_EQ, - ACTIONS(2129), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(2131), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2154] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1198), 1, + aux_sym_terminator_token1, + ACTIONS(2112), 1, + anon_sym_SEMI, + ACTIONS(2116), 1, + anon_sym_PIPE, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2128), 1, + anon_sym_when, + ACTIONS(2131), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 1, + anon_sym_EQ_GT, ACTIONS(2135), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_in, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2139), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2143), 1, + ACTIONS(2159), 1, sym_not_in, - STATE(403), 1, + STATE(394), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5083), 1, + STATE(5064), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, + ACTIONS(2118), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2108), 2, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2110), 2, + ACTIONS(2126), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2121), 3, + ACTIONS(2137), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2123), 3, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2098), 4, + ACTIONS(2114), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1557), 5, + ACTIONS(1597), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(2125), 5, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, + ACTIONS(2122), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2127), 9, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -201947,23 +201634,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [2623] = 7, + [2283] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(257), 1, - anon_sym_do, - ACTIONS(2237), 1, - sym_newline_before_do, - STATE(1944), 1, + STATE(1597), 1, sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2209), 3, + ACTIONS(2221), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2211), 55, + ACTIONS(2223), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -202016,27 +201700,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2702] = 7, + [2358] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(257), 1, - anon_sym_do, - ACTIONS(2239), 1, - sym_newline_before_do, - STATE(1952), 1, - sym_do_block, + ACTIONS(1198), 1, + aux_sym_terminator_token1, + ACTIONS(2112), 1, + anon_sym_SEMI, + ACTIONS(2116), 1, + anon_sym_PIPE, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2128), 1, + anon_sym_when, + ACTIONS(2131), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 1, + anon_sym_EQ_GT, + ACTIONS(2135), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_in, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, + sym_not_in, + STATE(398), 1, + sym_terminator, + STATE(1359), 1, + aux_sym_terminator_repeat1, + STATE(5075), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2193), 3, + ACTIONS(2118), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2124), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2126), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2137), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2114), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(714), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2143), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [2487] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2237), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2195), 55, + ACTIONS(2239), 57, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -202088,10 +201866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2781] = 4, + [2560] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -202160,25 +201939,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2854] = 7, + [2633] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(205), 1, - anon_sym_do, - ACTIONS(2245), 1, - sym_newline_before_do, - STATE(1854), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2151), 3, + ACTIONS(1861), 5, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2153), 55, + ACTIONS(1863), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -202226,24 +202000,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2933] = 4, + [2706] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2247), 4, + ACTIONS(2245), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2249), 57, + ACTIONS(2247), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -202301,20 +202077,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3006] = 4, + [2779] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 5, + ACTIONS(2249), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1839), 56, + ACTIONS(2251), 57, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -202370,24 +202146,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3079] = 7, + [2852] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(257), 1, - anon_sym_do, - ACTIONS(2251), 1, - sym_newline_before_do, - STATE(1954), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2217), 3, + ACTIONS(2253), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2219), 55, + ACTIONS(2255), 57, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -202439,23 +202211,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [3158] = 4, + [2925] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(271), 1, + anon_sym_do, + ACTIONS(2257), 1, + sym_newline_before_do, + STATE(1976), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 5, - sym_newline_before_do, + ACTIONS(2173), 3, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1843), 56, + ACTIONS(2175), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -202503,102 +202281,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [3231] = 32, + [3004] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - ACTIONS(2100), 1, + ACTIONS(2116), 1, anon_sym_PIPE, - ACTIONS(2104), 1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2112), 1, + ACTIONS(2128), 1, anon_sym_when, - ACTIONS(2115), 1, + ACTIONS(2131), 1, anon_sym_COLON_COLON, - ACTIONS(2117), 1, + ACTIONS(2133), 1, anon_sym_EQ_GT, - ACTIONS(2119), 1, + ACTIONS(2135), 1, anon_sym_EQ, - ACTIONS(2129), 1, + ACTIONS(2145), 1, anon_sym_in, - ACTIONS(2131), 1, + ACTIONS(2147), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, + ACTIONS(2149), 1, anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2139), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2143), 1, + ACTIONS(2159), 1, sym_not_in, - STATE(398), 1, + STATE(389), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5101), 1, + STATE(5063), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, + ACTIONS(2118), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2108), 2, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2110), 2, + ACTIONS(2126), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2121), 3, + ACTIONS(2137), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2123), 3, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2098), 4, + ACTIONS(2114), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(688), 5, + ACTIONS(1605), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(2125), 5, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, + ACTIONS(2122), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2127), 9, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -202608,94 +202384,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [3360] = 32, + [3133] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(1172), 1, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2259), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2096), 1, + anon_sym_LBRACK2, + ACTIONS(2261), 56, anon_sym_SEMI, - ACTIONS(2100), 1, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2104), 1, + anon_sym_SLASH, anon_sym_COMMA, - ACTIONS(2112), 1, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(2115), 1, anon_sym_COLON_COLON, - ACTIONS(2117), 1, anon_sym_EQ_GT, - ACTIONS(2119), 1, anon_sym_EQ, - ACTIONS(2129), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(2131), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3208] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1198), 1, + aux_sym_terminator_token1, + ACTIONS(2112), 1, + anon_sym_SEMI, + ACTIONS(2116), 1, + anon_sym_PIPE, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2128), 1, + anon_sym_when, + ACTIONS(2131), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 1, + anon_sym_EQ_GT, ACTIONS(2135), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_in, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2139), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2143), 1, + ACTIONS(2159), 1, sym_not_in, STATE(399), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5084), 1, + STATE(5054), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, + ACTIONS(2118), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2108), 2, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2110), 2, + ACTIONS(2126), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2121), 3, + ACTIONS(2137), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2123), 3, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2098), 4, + ACTIONS(2114), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(686), 5, + ACTIONS(702), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(2125), 5, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, + ACTIONS(2122), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2127), 9, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -202705,18 +202551,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [3489] = 4, + [3337] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2253), 4, + ACTIONS(2263), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2255), 57, + ACTIONS(2265), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -202766,76 +202612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [3562] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1792), 1, - sym_do_block, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2193), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2195), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -202843,20 +202620,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3636] = 4, + [3410] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 5, + ACTIONS(2267), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1839), 55, + ACTIONS(2269), 57, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -202904,6 +202681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -202911,21 +202689,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3708] = 5, + [3483] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2261), 1, - aux_sym_sigil_token3, + ACTIONS(295), 1, + anon_sym_do, + ACTIONS(2271), 1, + sym_newline_before_do, + STATE(1882), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2257), 4, - sym_newline_before_do, + ACTIONS(2229), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2259), 55, + ACTIONS(2231), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -202976,29 +202758,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [3782] = 5, + [3562] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2267), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2263), 4, + ACTIONS(2273), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2265), 55, + ACTIONS(2275), 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_DOT_DOT, anon_sym_PLUS, @@ -203049,24 +202829,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3856] = 4, + [3634] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 4, + ACTIONS(2277), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 56, + ACTIONS(2279), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -203117,24 +202897,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3928] = 4, + [3706] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 4, + ACTIONS(2281), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 56, + ACTIONS(2283), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -203185,24 +202965,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4000] = 4, + [3778] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2277), 4, + ACTIONS(2285), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2279), 56, + ACTIONS(2287), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -203253,24 +203033,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4072] = 4, + [3850] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2281), 4, + ACTIONS(2289), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2283), 56, + ACTIONS(2291), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -203321,24 +203101,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4144] = 4, + [3922] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2285), 4, + ACTIONS(2293), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2287), 56, + ACTIONS(2295), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -203389,24 +203169,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4216] = 4, + [3994] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 4, + ACTIONS(2297), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 56, + ACTIONS(2299), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -203457,24 +203237,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4288] = 4, + [4066] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 4, + ACTIONS(2301), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 56, + ACTIONS(2303), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -203525,88 +203305,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4360] = 27, + [4138] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2299), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2305), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2307), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2303), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - ACTIONS(2311), 1, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(2313), 1, anon_sym_COLON_COLON, - ACTIONS(2315), 1, anon_sym_EQ_GT, - ACTIONS(2317), 1, anon_sym_EQ, - ACTIONS(2327), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(2329), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2335), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(2339), 1, - sym_not_in, - STATE(1621), 1, - aux_sym_items_with_trailing_separator_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4210] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2293), 2, + ACTIONS(2309), 4, sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2301), 2, + anon_sym_LBRACK2, + ACTIONS(2311), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2319), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2321), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2297), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2323), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2295), 8, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(2325), 9, + [4282] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2313), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2315), 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_DOT_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_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -203616,24 +203491,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [4478] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4354] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 4, + ACTIONS(2317), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 56, + ACTIONS(2319), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -203684,24 +203577,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4550] = 4, + [4426] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2341), 4, + ACTIONS(2321), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2343), 56, + ACTIONS(2323), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -203752,24 +203645,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4622] = 4, + [4498] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2345), 4, + ACTIONS(2325), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2347), 56, + ACTIONS(2327), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -203820,24 +203713,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4694] = 4, + [4570] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2349), 4, + ACTIONS(2329), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1857), 56, + ACTIONS(2331), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -203888,24 +203781,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4766] = 4, + [4642] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 4, + ACTIONS(2333), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 56, + ACTIONS(2335), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -203956,24 +203849,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4838] = 4, + [4714] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2355), 4, + ACTIONS(2337), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2357), 56, + ACTIONS(2339), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204024,24 +203917,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4910] = 4, + [4786] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2217), 4, + ACTIONS(2341), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2219), 56, + ACTIONS(2343), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204092,24 +203985,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4982] = 4, + [4858] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 4, + ACTIONS(2345), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 56, + ACTIONS(2347), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204160,24 +204053,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5054] = 4, + [4930] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 4, + ACTIONS(2349), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 56, + ACTIONS(2351), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204228,24 +204121,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5126] = 4, + [5002] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 4, + ACTIONS(2353), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 56, + ACTIONS(2355), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204296,24 +204189,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5198] = 4, + [5074] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2363), 4, + ACTIONS(2357), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2365), 56, + ACTIONS(2359), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204364,18 +204257,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5270] = 4, + [5146] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2367), 4, + ACTIONS(2361), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2369), 56, + ACTIONS(2363), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -204432,18 +204325,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5342] = 4, + [5218] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2371), 4, + ACTIONS(2365), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2373), 56, + ACTIONS(2367), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -204500,24 +204393,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5414] = 4, + [5290] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 4, + ACTIONS(2369), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2377), 56, + ACTIONS(2371), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204568,24 +204461,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5486] = 4, + [5362] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 4, + ACTIONS(2373), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2381), 56, + ACTIONS(2375), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204636,24 +204529,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5558] = 4, + [5434] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2383), 4, + ACTIONS(2377), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2385), 56, + ACTIONS(2379), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204704,24 +204597,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5630] = 4, + [5506] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2387), 4, + ACTIONS(2381), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2389), 56, + ACTIONS(2383), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204772,24 +204665,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5702] = 4, + [5578] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2391), 4, + ACTIONS(2385), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2393), 56, + ACTIONS(2387), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204840,24 +204733,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5774] = 4, + [5650] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2395), 4, + ACTIONS(2389), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2397), 56, + ACTIONS(2391), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204908,24 +204801,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5846] = 4, + [5722] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2399), 4, + ACTIONS(2393), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2401), 56, + ACTIONS(2395), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204976,24 +204869,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5918] = 4, + [5794] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2403), 4, + ACTIONS(2397), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2405), 56, + ACTIONS(2399), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -205044,24 +204937,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5990] = 4, + [5866] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 4, + ACTIONS(2401), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 56, + ACTIONS(2403), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -205112,24 +205005,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6062] = 4, + [5938] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 4, + ACTIONS(2405), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 56, + ACTIONS(2407), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -205180,18 +205073,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6134] = 4, + [6010] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2411), 4, + ACTIONS(2409), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2413), 56, + ACTIONS(2411), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -205248,18 +205141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6206] = 4, + [6082] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2415), 4, + ACTIONS(2413), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2417), 56, + ACTIONS(2415), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -205316,18 +205209,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6278] = 4, + [6154] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2419), 4, + ACTIONS(2417), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2421), 56, + ACTIONS(2419), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -205384,24 +205277,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6350] = 4, + [6226] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2423), 4, + ACTIONS(2421), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2425), 56, + ACTIONS(2423), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -205452,24 +205345,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6422] = 4, + [6298] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 4, + ACTIONS(2425), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 56, + ACTIONS(2427), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -205520,24 +205413,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6494] = 4, + [6370] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2427), 4, + ACTIONS(2429), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2429), 56, + ACTIONS(2431), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -205588,24 +205481,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6566] = 4, + [6442] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2431), 4, + ACTIONS(2433), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2433), 56, + ACTIONS(2435), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -205656,18 +205549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6638] = 4, + [6514] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2435), 4, + ACTIONS(1845), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2437), 56, + ACTIONS(1847), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -205724,24 +205617,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6710] = 4, + [6586] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2439), 4, + ACTIONS(1853), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2441), 56, + ACTIONS(1855), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -205792,18 +205685,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6782] = 4, + [6658] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2443), 4, + ACTIONS(1849), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2445), 56, + ACTIONS(1851), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -205860,18 +205753,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6854] = 4, + [6730] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2447), 4, + ACTIONS(1857), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2449), 56, + ACTIONS(1859), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -205928,24 +205821,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6926] = 4, + [6802] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 4, + ACTIONS(1861), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2453), 56, + ACTIONS(1863), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -205996,24 +205889,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6998] = 4, + [6874] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 4, + ACTIONS(1865), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2457), 56, + ACTIONS(1867), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -206064,251 +205957,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7070] = 4, + [6946] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2459), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2461), 56, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2439), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(2443), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(2451), 1, anon_sym_when, + ACTIONS(2453), 1, anon_sym_COLON_COLON, + ACTIONS(2455), 1, anon_sym_EQ_GT, + ACTIONS(2457), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(2467), 1, anon_sym_in, + ACTIONS(2469), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2471), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2473), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(2475), 1, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [7142] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(2479), 1, + sym_not_in, + STATE(1629), 1, + aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2463), 4, + ACTIONS(2409), 2, sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2465), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2441), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2449), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2459), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2461), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [7214] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2467), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2469), 56, - anon_sym_SEMI, + ACTIONS(2437), 4, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_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_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2463), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(2411), 8, + anon_sym_SEMI, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [7286] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2471), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2473), 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_DOT_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_EQ, - anon_sym_GT_EQ, + ACTIONS(2465), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206318,36 +206048,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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [7358] = 4, + [7064] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2475), 4, + ACTIONS(163), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2477), 56, + ACTIONS(165), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -206404,18 +206116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7430] = 4, + [7136] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2479), 4, + ACTIONS(2481), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2481), 56, + ACTIONS(2483), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -206472,18 +206184,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7502] = 4, + [7208] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2479), 4, + ACTIONS(2485), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2481), 56, + ACTIONS(2487), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -206540,18 +206252,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7574] = 4, + [7280] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2483), 4, + ACTIONS(2489), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2485), 56, + ACTIONS(2491), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -206608,18 +206320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7646] = 4, + [7352] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2487), 4, + ACTIONS(2493), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2489), 56, + ACTIONS(2495), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -206676,18 +206388,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7718] = 4, + [7424] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2491), 4, + ACTIONS(2259), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2493), 56, + ACTIONS(2261), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -206744,24 +206456,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7790] = 4, + [7496] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2495), 4, + ACTIONS(2201), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2497), 56, + ACTIONS(2203), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -206812,24 +206524,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7862] = 4, + [7568] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2499), 4, + ACTIONS(2497), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2501), 56, + ACTIONS(2499), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -206880,18 +206592,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7934] = 4, + [7640] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2503), 4, + ACTIONS(2501), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2505), 56, + ACTIONS(2503), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -206948,18 +206660,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8006] = 4, + [7712] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2507), 4, + ACTIONS(2161), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2509), 56, + ACTIONS(2163), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -207016,24 +206728,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8078] = 4, + [7784] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2511), 4, + ACTIONS(2505), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2513), 56, + ACTIONS(2507), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -207084,18 +206796,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8150] = 4, + [7856] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2515), 4, + ACTIONS(2509), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2517), 56, + ACTIONS(2511), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -207152,18 +206864,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8222] = 4, + [7928] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2519), 4, + ACTIONS(2413), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2521), 56, + ACTIONS(2415), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -207220,18 +206932,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8294] = 4, + [8000] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2523), 4, + ACTIONS(2513), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2525), 56, + ACTIONS(2515), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -207288,18 +207000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8366] = 4, + [8072] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2527), 4, + ACTIONS(2259), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2529), 56, + ACTIONS(2261), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -207348,7 +207062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -207356,24 +207069,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8438] = 4, + [8146] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2531), 4, + ACTIONS(2201), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2533), 56, + ACTIONS(2203), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -207416,7 +207131,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -207424,18 +207138,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8510] = 4, + [8220] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2535), 4, + ACTIONS(2417), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2537), 56, + ACTIONS(2419), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -207492,24 +207206,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8582] = 4, + [8292] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2539), 4, + ACTIONS(2517), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2541), 56, + ACTIONS(2519), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -207560,24 +207274,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8654] = 4, + [8364] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2543), 4, + ACTIONS(2521), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2545), 56, + ACTIONS(2523), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -207628,24 +207342,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8726] = 4, + [8436] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2547), 4, + ACTIONS(2525), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2549), 56, + ACTIONS(2527), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -207696,24 +207410,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8798] = 4, + [8508] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2551), 4, + ACTIONS(2529), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2553), 56, + ACTIONS(2531), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -207764,24 +207478,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8870] = 4, + [8580] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2555), 4, + ACTIONS(2529), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2557), 56, + ACTIONS(2531), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -207832,24 +207546,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8942] = 4, + [8652] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2559), 4, + ACTIONS(2529), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2561), 56, + ACTIONS(2531), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -207900,24 +207614,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9014] = 4, + [8724] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2563), 4, + ACTIONS(2533), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2565), 56, + ACTIONS(2535), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -207968,24 +207682,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9086] = 4, + [8796] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2567), 4, + ACTIONS(2537), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2569), 56, + ACTIONS(2539), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208036,24 +207750,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9158] = 4, + [8868] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2165), 1, + anon_sym_LPAREN, + STATE(1456), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2571), 4, - sym_newline_before_do, + ACTIONS(2161), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2573), 56, + ACTIONS(2163), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208100,28 +207817,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [9230] = 4, + [8944] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2575), 4, + ACTIONS(2541), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2577), 56, + ACTIONS(2543), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208172,24 +207888,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9302] = 4, + [9016] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(271), 1, + anon_sym_do, + ACTIONS(2545), 1, + sym_newline_before_do, + STATE(2195), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2579), 4, - sym_newline_before_do, + ACTIONS(2229), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2581), 56, + ACTIONS(2231), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208232,32 +207953,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [9374] = 4, + [9094] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(271), 1, + anon_sym_do, + ACTIONS(2547), 1, + sym_newline_before_do, + STATE(2197), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2583), 4, - sym_newline_before_do, + ACTIONS(2191), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2585), 56, + ACTIONS(2193), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208300,32 +208024,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [9446] = 4, + [9172] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2587), 4, + ACTIONS(2549), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2589), 56, + ACTIONS(2551), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208376,24 +208098,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9518] = 4, + [9244] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(271), 1, + anon_sym_do, + ACTIONS(2553), 1, + sym_newline_before_do, + STATE(2198), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2591), 4, - sym_newline_before_do, + ACTIONS(2221), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2593), 56, + ACTIONS(2223), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208436,32 +208163,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [9590] = 4, + [9322] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2595), 4, + ACTIONS(2555), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2597), 56, + ACTIONS(2557), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208512,24 +208237,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9662] = 4, + [9394] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2599), 4, + ACTIONS(2221), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2601), 56, + ACTIONS(2223), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208580,24 +208305,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9734] = 4, + [9466] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2603), 4, + ACTIONS(2559), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2605), 56, + ACTIONS(2561), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208648,24 +208373,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9806] = 4, + [9538] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2607), 4, + ACTIONS(2559), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2609), 56, + ACTIONS(2561), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208716,24 +208441,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9878] = 4, + [9610] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2611), 4, + ACTIONS(2559), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 56, + ACTIONS(2561), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208784,23 +208509,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9950] = 7, + [9682] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(205), 1, - anon_sym_do, - ACTIONS(2615), 1, - sym_newline_before_do, - STATE(2239), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2217), 3, + ACTIONS(2563), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2219), 54, + ACTIONS(2565), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -208849,30 +208569,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [10028] = 4, + [9754] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2617), 4, + ACTIONS(2179), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2619), 56, + ACTIONS(2181), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208915,7 +208638,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -208923,24 +208645,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10100] = 4, + [9826] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2621), 4, + ACTIONS(2233), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2623), 56, + ACTIONS(2235), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208983,7 +208706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -208991,24 +208713,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10172] = 4, + [9898] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2625), 4, + ACTIONS(2421), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2627), 56, + ACTIONS(2423), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -209059,18 +208781,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10244] = 4, + [9970] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2629), 4, + ACTIONS(2567), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2631), 56, + ACTIONS(2569), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -209127,24 +208849,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10316] = 4, + [10042] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2633), 4, + ACTIONS(2571), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2635), 56, + ACTIONS(2573), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -209195,24 +208917,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10388] = 4, + [10114] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2637), 4, + ACTIONS(2575), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2639), 56, + ACTIONS(2577), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -209263,24 +208985,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10460] = 4, + [10186] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2641), 4, + ACTIONS(2579), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2643), 56, + ACTIONS(2581), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -209331,24 +209053,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10532] = 4, + [10258] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2645), 4, + ACTIONS(2583), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2647), 56, + ACTIONS(2585), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -209399,24 +209121,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10604] = 4, + [10330] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2649), 4, + ACTIONS(2587), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2651), 56, + ACTIONS(2589), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -209467,24 +209189,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10676] = 4, + [10402] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2653), 4, + ACTIONS(2591), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2655), 56, + ACTIONS(2593), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -209535,24 +209257,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10748] = 4, + [10474] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2657), 4, + ACTIONS(2595), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2659), 56, + ACTIONS(2597), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -209603,24 +209325,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10820] = 4, + [10546] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2661), 4, + ACTIONS(2595), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2663), 56, + ACTIONS(2597), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -209671,24 +209393,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10892] = 4, + [10618] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2665), 4, + ACTIONS(2599), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2667), 56, + ACTIONS(1873), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -209739,24 +209461,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10964] = 4, + [10690] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2669), 4, + ACTIONS(2601), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2671), 56, + ACTIONS(2603), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -209807,19 +209529,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11036] = 4, + [10762] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 5, + ACTIONS(2605), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1843), 55, + ACTIONS(2607), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -209868,6 +209589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -209875,18 +209597,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11108] = 4, + [10834] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2293), 4, + ACTIONS(2609), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2295), 56, + ACTIONS(2611), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -209943,20 +209665,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11180] = 5, + [10906] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2183), 4, + ACTIONS(2595), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 55, + ACTIONS(2597), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -210005,6 +209725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -210012,20 +209733,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11254] = 5, + [10978] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2189), 4, + ACTIONS(2613), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2191), 55, + ACTIONS(2615), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -210074,6 +209793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -210081,19 +209801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11328] = 4, + [11050] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 5, + ACTIONS(2617), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1847), 55, + ACTIONS(2619), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -210142,6 +209861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -210149,19 +209869,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11400] = 4, + [11122] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 5, + ACTIONS(2621), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1851), 55, + ACTIONS(2623), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -210210,6 +209929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -210217,18 +209937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11472] = 4, + [11194] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2673), 4, + ACTIONS(2429), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2675), 56, + ACTIONS(2431), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -210285,20 +210005,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11544] = 4, + [11266] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2177), 4, + ACTIONS(2433), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2179), 56, + ACTIONS(2435), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -210346,6 +210065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -210353,20 +210073,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11616] = 4, + [11338] = 5, ACTIONS(5), 1, sym_comment, + STATE(1767), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2241), 4, + ACTIONS(2229), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2243), 56, + ACTIONS(2231), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -210421,21 +210142,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11688] = 6, + [11412] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2149), 1, - anon_sym_LPAREN, - STATE(1498), 1, - sym_call_arguments_with_parentheses, + STATE(1769), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2145), 3, + ACTIONS(2191), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2147), 55, + ACTIONS(2193), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -210484,34 +210204,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [11764] = 6, + [11486] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2681), 1, - anon_sym_COMMA, - STATE(1633), 1, - aux_sym_items_with_trailing_separator_repeat1, + STATE(1770), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2677), 4, + ACTIONS(2221), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2679), 54, + ACTIONS(2223), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -210553,7 +210273,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -210561,20 +210280,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11840] = 4, + [11560] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 5, + ACTIONS(2253), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1827), 55, + ACTIONS(2255), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -210629,24 +210348,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11912] = 4, + [11632] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 4, + ACTIONS(2183), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 56, + ACTIONS(2185), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -210689,7 +210409,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -210697,24 +210416,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11984] = 4, + [11704] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 4, + ACTIONS(2197), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 56, + ACTIONS(2199), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -210757,7 +210477,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -210765,20 +210484,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12056] = 4, + [11776] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 5, + ACTIONS(2217), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1835), 55, + ACTIONS(2219), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -210833,24 +210552,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12128] = 4, + [11848] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 4, + ACTIONS(2249), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2377), 56, + ACTIONS(2251), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -210893,7 +210613,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -210901,24 +210620,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12200] = 4, + [11920] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 4, + ACTIONS(2245), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2381), 56, + ACTIONS(2247), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -210961,7 +210681,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -210969,19 +210688,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12272] = 4, + [11992] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2683), 4, + ACTIONS(2187), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2685), 56, + ACTIONS(2189), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -211029,7 +210749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -211037,24 +210756,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12344] = 4, + [12064] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 4, + ACTIONS(2241), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2453), 56, + ACTIONS(2243), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -211097,7 +210817,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -211105,24 +210824,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12416] = 4, + [12136] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 4, + ACTIONS(2237), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2457), 56, + ACTIONS(2239), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -211165,7 +210885,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -211173,18 +210892,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12488] = 4, + [12208] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2247), 4, + ACTIONS(2213), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2249), 56, + ACTIONS(2215), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -211241,18 +210960,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12560] = 4, + [12280] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2197), 4, + ACTIONS(2267), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2199), 56, + ACTIONS(2269), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -211309,88 +211028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12632] = 6, + [12352] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2691), 1, - anon_sym_COMMA, - STATE(1633), 1, - aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2687), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2689), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [12708] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(273), 4, + ACTIONS(2625), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(275), 56, + ACTIONS(2627), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -211447,18 +211096,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12780] = 4, + [12424] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2694), 4, + ACTIONS(2629), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2696), 56, + ACTIONS(2631), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -211515,18 +211164,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12852] = 4, + [12496] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2698), 4, + ACTIONS(2629), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2700), 56, + ACTIONS(2631), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -211583,24 +211232,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12924] = 4, + [12568] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 4, + ACTIONS(2633), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1827), 56, + ACTIONS(2635), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -211651,24 +211300,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12996] = 4, + [12640] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 4, + ACTIONS(2637), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1835), 56, + ACTIONS(2639), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -211719,24 +211368,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13068] = 4, + [12712] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 4, + ACTIONS(2641), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1839), 56, + ACTIONS(2643), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -211787,20 +211436,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13140] = 5, + [12784] = 4, ACTIONS(5), 1, sym_comment, - STATE(1790), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2209), 4, + ACTIONS(2645), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2211), 55, + ACTIONS(2647), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -211849,73 +211496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [13214] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(1841), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1843), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, @@ -211924,20 +211504,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13286] = 5, + [12856] = 4, ACTIONS(5), 1, sym_comment, - STATE(1793), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2217), 4, + ACTIONS(2649), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2219), 55, + ACTIONS(2651), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -211986,6 +211564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -211993,20 +211572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13360] = 4, + [12928] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2225), 4, + ACTIONS(2653), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2227), 56, + ACTIONS(2655), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -212054,6 +211632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -212061,20 +211640,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13432] = 4, + [13000] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2165), 4, + ACTIONS(2657), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2167), 56, + ACTIONS(2659), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -212122,6 +211700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -212129,20 +211708,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13504] = 4, + [13072] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2169), 4, + ACTIONS(2661), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2171), 56, + ACTIONS(2664), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -212190,6 +211768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -212197,20 +211776,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13576] = 4, + [13144] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2173), 4, + ACTIONS(2667), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2175), 56, + ACTIONS(2669), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -212258,6 +211836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -212265,20 +211844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13648] = 4, + [13216] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2201), 4, + ACTIONS(2671), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2203), 56, + ACTIONS(2673), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -212326,6 +211904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -212333,20 +211912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13720] = 4, + [13288] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2205), 4, + ACTIONS(2675), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2207), 56, + ACTIONS(2677), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -212394,6 +211972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -212401,26 +211980,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13792] = 4, + [13360] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2683), 1, + anon_sym_COMMA, + STATE(1634), 1, + aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2253), 4, + ACTIONS(2679), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2255), 56, + ACTIONS(2681), 54, 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -212462,6 +212042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -212469,20 +212050,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13864] = 4, + [13436] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2213), 4, + ACTIONS(1845), 5, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2215), 56, + ACTIONS(1847), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -212537,20 +212118,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13936] = 4, + [13508] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2221), 4, + ACTIONS(1853), 5, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2223), 56, + ACTIONS(1855), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -212605,26 +212186,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14008] = 4, + [13580] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2689), 1, + anon_sym_COMMA, + STATE(1633), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2229), 4, + ACTIONS(2685), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2231), 56, + ACTIONS(2687), 54, 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -212666,6 +212248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -212673,26 +212256,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14080] = 4, + [13656] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2691), 1, + anon_sym_COMMA, + STATE(1633), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2233), 4, + ACTIONS(2601), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2235), 56, + ACTIONS(2603), 54, 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -212734,6 +212318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -212741,25 +212326,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14152] = 4, + [13732] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2698), 1, + anon_sym_COMMA, + STATE(1634), 1, + aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 4, + ACTIONS(2694), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1847), 56, + ACTIONS(2696), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -212809,24 +212396,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14224] = 4, + [13808] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 4, + ACTIONS(1849), 5, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1851), 56, + ACTIONS(1851), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -212869,7 +212457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -212877,18 +212464,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14296] = 4, + [13880] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2702), 4, + ACTIONS(1857), 5, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2704), 56, + ACTIONS(1859), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -212937,7 +212525,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -212945,18 +212532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14368] = 4, + [13952] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2706), 4, + ACTIONS(1861), 5, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2708), 56, + ACTIONS(1863), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -213005,7 +212593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -213013,18 +212600,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14440] = 4, + [14024] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2710), 4, + ACTIONS(1865), 5, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2712), 56, + ACTIONS(1867), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -213073,7 +212661,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -213081,19 +212668,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14512] = 4, + [14096] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2183), 4, + ACTIONS(2209), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 56, + ACTIONS(2211), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -213141,7 +212729,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -213149,20 +212736,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14584] = 4, + [14168] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2705), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2189), 4, + ACTIONS(2701), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2191), 56, + ACTIONS(2703), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -213217,25 +212805,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14656] = 4, + [14242] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2689), 1, + anon_sym_COMMA, + STATE(1632), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2714), 4, + ACTIONS(2707), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2716), 56, + ACTIONS(2709), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -213285,19 +212875,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14728] = 4, + [14318] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2718), 4, + ACTIONS(2263), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2720), 56, + ACTIONS(2265), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -213345,7 +212936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -213353,24 +212943,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14800] = 4, + [14390] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2722), 4, + ACTIONS(2711), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2724), 56, + ACTIONS(2713), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -213421,29 +213011,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14872] = 7, + [14462] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(205), 1, - anon_sym_do, - ACTIONS(2726), 1, - sym_newline_before_do, - STATE(2097), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2209), 3, + ACTIONS(2715), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2211), 54, + ACTIONS(2717), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -213486,30 +213071,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [14950] = 4, + [14534] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2145), 4, + ACTIONS(2719), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2147), 56, + ACTIONS(2721), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -213560,29 +213147,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15022] = 7, + [14606] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(205), 1, - anon_sym_do, - ACTIONS(2728), 1, - sym_newline_before_do, - STATE(2199), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2193), 3, + ACTIONS(2723), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2195), 54, + ACTIONS(2725), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -213625,33 +213207,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [15100] = 6, + [14678] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2734), 1, - anon_sym_COMMA, - STATE(1668), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2730), 4, + ACTIONS(2727), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2732), 54, + ACTIONS(2729), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -213701,27 +213283,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15176] = 6, + [14750] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2734), 1, - anon_sym_COMMA, - STATE(1669), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2736), 4, + ACTIONS(2731), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2738), 54, + ACTIONS(2733), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -213771,27 +213351,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15252] = 6, + [14822] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2740), 1, - anon_sym_COMMA, - STATE(1669), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 4, + ACTIONS(2735), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 54, + ACTIONS(2737), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -213841,24 +213419,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15328] = 4, + [14894] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2743), 4, + ACTIONS(2739), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2745), 56, + ACTIONS(2741), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -213909,18 +213487,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15400] = 4, + [14966] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2747), 4, + ACTIONS(2743), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2749), 56, + ACTIONS(2745), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -213977,93 +213555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15472] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2299), 1, - anon_sym_PIPE, - ACTIONS(2313), 1, - anon_sym_COLON_COLON, - ACTIONS(2315), 1, - anon_sym_EQ_GT, - ACTIONS(2317), 1, - anon_sym_EQ, - ACTIONS(2327), 1, - anon_sym_in, - ACTIONS(2329), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(2339), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2301), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(2319), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2321), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2297), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2323), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2325), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [15581] = 4, + [15038] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -214074,7 +213566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2749), 55, + ACTIONS(2749), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -214123,6 +213615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -214130,18 +213623,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15652] = 4, + [15110] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2617), 4, + ACTIONS(2751), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2619), 55, + ACTIONS(2753), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -214190,6 +213683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -214197,24 +213691,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15723] = 4, + [15182] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2225), 3, + ACTIONS(2755), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2227), 56, + ACTIONS(2757), 56, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -214261,21 +213755,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [15794] = 4, + [15254] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2621), 4, + ACTIONS(2759), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2623), 55, + ACTIONS(2761), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -214324,6 +213819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -214331,24 +213827,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15865] = 4, + [15326] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2625), 4, + ACTIONS(2425), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2627), 55, + ACTIONS(2427), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -214391,6 +213887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -214398,18 +213895,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15936] = 4, + [15398] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2629), 4, + ACTIONS(2345), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2631), 55, + ACTIONS(2347), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -214465,28 +213962,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16007] = 4, + [15469] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(2471), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2633), 4, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2635), 55, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 42, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -214517,33 +214029,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [16078] = 4, + [15554] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2637), 4, + ACTIONS(2413), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2639), 55, + ACTIONS(2415), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -214599,18 +214103,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16149] = 4, + [15625] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2641), 4, + ACTIONS(2417), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2643), 55, + ACTIONS(2419), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -214666,18 +214170,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16220] = 4, + [15696] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2645), 4, + ACTIONS(2421), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2647), 55, + ACTIONS(2423), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -214733,18 +214237,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16291] = 4, + [15767] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2649), 4, + ACTIONS(2425), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2651), 55, + ACTIONS(2427), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -214800,61 +214304,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16362] = 16, + [15838] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2327), 1, - anon_sym_in, - ACTIONS(2329), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(2339), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2429), 4, sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2297), 4, + anon_sym_LBRACK2, + ACTIONS(2431), 55, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2325), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 27, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -214872,35 +214343,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_DASH_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [16457] = 7, + [15909] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, + ACTIONS(2433), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 53, + anon_sym_LBRACK2, + ACTIONS(2435), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -214942,25 +214430,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_DASH_GT, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [16534] = 4, + [15980] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2653), 4, + ACTIONS(1845), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2655), 55, + ACTIONS(1847), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -215016,18 +214505,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16605] = 4, + [16051] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2657), 4, + ACTIONS(1853), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2659), 55, + ACTIONS(1855), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -215083,18 +214572,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16676] = 4, + [16122] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2661), 4, + ACTIONS(1849), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2663), 55, + ACTIONS(1851), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -215150,24 +214639,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16747] = 4, + [16193] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 4, + ACTIONS(1857), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1839), 55, + ACTIONS(1859), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -215210,31 +214699,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [16818] = 4, + [16264] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 4, + ACTIONS(1861), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1843), 55, + ACTIONS(1863), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -215277,25 +214766,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [16889] = 4, + [16335] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2665), 4, + ACTIONS(1865), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2667), 55, + ACTIONS(1867), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -215351,24 +214840,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16960] = 4, + [16406] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2669), 4, - sym_newline_before_do, + ACTIONS(1849), 4, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2671), 55, + ACTIONS(1851), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -215411,75 +214900,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [17031] = 22, + [16477] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2299), 1, - anon_sym_PIPE, - ACTIONS(2315), 1, - anon_sym_EQ_GT, - ACTIONS(2317), 1, - anon_sym_EQ, - ACTIONS(2327), 1, - anon_sym_in, - ACTIONS(2329), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(2339), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, + ACTIONS(1857), 4, + sym_not_in, + aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1859), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(2319), 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(2321), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2297), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2323), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2325), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -215489,86 +214957,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [17138] = 24, + [16548] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2299), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2183), 3, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2185), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2311), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(2313), 1, anon_sym_COLON_COLON, - ACTIONS(2315), 1, anon_sym_EQ_GT, - ACTIONS(2317), 1, anon_sym_EQ, - ACTIONS(2327), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(2329), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2335), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(2339), 1, - sym_not_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16619] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, + ACTIONS(2197), 3, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2199), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(2319), 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(2321), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2297), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2323), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2325), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -215578,84 +215091,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [17249] = 24, + [16690] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2299), 1, + ACTIONS(2439), 1, anon_sym_PIPE, - ACTIONS(2311), 1, + ACTIONS(2451), 1, anon_sym_when, - ACTIONS(2313), 1, + ACTIONS(2453), 1, anon_sym_COLON_COLON, - ACTIONS(2315), 1, + ACTIONS(2455), 1, anon_sym_EQ_GT, - ACTIONS(2317), 1, + ACTIONS(2457), 1, anon_sym_EQ, - ACTIONS(2327), 1, + ACTIONS(2467), 1, anon_sym_in, - ACTIONS(2329), 1, + ACTIONS(2469), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, + ACTIONS(2471), 1, anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, + ACTIONS(2473), 1, anon_sym_STAR_STAR, - ACTIONS(2335), 1, + ACTIONS(2475), 1, anon_sym_DOT, - ACTIONS(2337), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(2339), 1, + ACTIONS(2479), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, + ACTIONS(2441), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2307), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2449), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2694), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(2319), 3, + ACTIONS(2459), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2321), 3, + ACTIONS(2461), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2297), 4, + ACTIONS(2437), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2323), 5, + ACTIONS(2463), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2305), 6, + ACTIONS(2445), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2325), 9, + ACTIONS(2465), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -215665,11 +215186,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 11, + ACTIONS(2696), 9, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, @@ -215677,17 +215196,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17360] = 4, + [16803] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2213), 3, + ACTIONS(2217), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2215), 56, + ACTIONS(2219), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -215744,67 +215263,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17431] = 14, + [16874] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(2439), 1, + anon_sym_PIPE, + ACTIONS(2451), 1, + anon_sym_when, + ACTIONS(2453), 1, + anon_sym_COLON_COLON, + ACTIONS(2455), 1, + anon_sym_EQ_GT, + ACTIONS(2457), 1, + anon_sym_EQ, + ACTIONS(2467), 1, anon_sym_in, - ACTIONS(2329), 1, + ACTIONS(2469), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, + ACTIONS(2471), 1, anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, + ACTIONS(2473), 1, anon_sym_STAR_STAR, - ACTIONS(2335), 1, + ACTIONS(2475), 1, anon_sym_DOT, - ACTIONS(2337), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(2339), 1, + ACTIONS(2479), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, + ACTIONS(2441), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2307), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 40, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(2449), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2763), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(2459), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2461), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2437), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2463), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2465), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -215814,6 +215341,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2765), 9, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, @@ -215821,75 +215351,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17522] = 25, + [16987] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2299), 1, + ACTIONS(2439), 1, anon_sym_PIPE, - ACTIONS(2311), 1, + ACTIONS(2451), 1, anon_sym_when, - ACTIONS(2313), 1, + ACTIONS(2453), 1, anon_sym_COLON_COLON, - ACTIONS(2315), 1, + ACTIONS(2455), 1, anon_sym_EQ_GT, - ACTIONS(2317), 1, + ACTIONS(2457), 1, anon_sym_EQ, - ACTIONS(2327), 1, + ACTIONS(2467), 1, anon_sym_in, - ACTIONS(2329), 1, + ACTIONS(2469), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, + ACTIONS(2471), 1, anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, + ACTIONS(2473), 1, anon_sym_STAR_STAR, - ACTIONS(2335), 1, + ACTIONS(2475), 1, anon_sym_DOT, - ACTIONS(2337), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(2339), 1, + ACTIONS(2479), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, + ACTIONS(2441), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2307), 2, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, + ACTIONS(2449), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2751), 2, + ACTIONS(2767), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(2319), 3, + ACTIONS(2459), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2321), 3, + ACTIONS(2461), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2297), 4, + ACTIONS(2437), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2323), 5, + ACTIONS(2463), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2305), 6, + ACTIONS(2445), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2325), 9, + ACTIONS(2465), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -215899,7 +215429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2753), 9, + ACTIONS(2769), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DASH_GT, @@ -215909,18 +215439,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17635] = 4, + [17100] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 4, - sym_newline_before_do, + ACTIONS(1861), 4, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2381), 55, + ACTIONS(1863), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -215969,25 +215499,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [17706] = 4, + [17171] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 4, - sym_newline_before_do, + ACTIONS(1865), 4, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2453), 55, + ACTIONS(1867), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -216036,50 +215566,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [17777] = 11, + [17242] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2331), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, + ACTIONS(2249), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 42, + anon_sym_LBRACK2, + ACTIONS(2251), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -216110,25 +215625,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [17862] = 4, + [17313] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 4, + ACTIONS(2555), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2457), 55, + ACTIONS(2557), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -216184,17 +215707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17933] = 4, + [17384] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2229), 3, + ACTIONS(2245), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2231), 56, + ACTIONS(2247), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -216251,43 +215774,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18004] = 11, + [17455] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2331), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, + ACTIONS(2187), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 42, + anon_sym_LBRACK2, + ACTIONS(2189), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -216318,101 +215826,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [18089] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2329), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2301), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 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_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [18176] = 4, + [17526] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2710), 4, - sym_newline_before_do, + ACTIONS(2241), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2712), 55, + ACTIONS(2243), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -216460,27 +215901,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [18247] = 4, + [17597] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2771), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2722), 4, + ACTIONS(2701), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2724), 55, + ACTIONS(2703), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -216534,19 +215976,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18318] = 4, + [17670] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2683), 4, - sym_newline_before_do, + ACTIONS(2237), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2685), 55, + ACTIONS(2239), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -216594,48 +216036,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [18389] = 10, + [17741] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, + ACTIONS(2213), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 43, + anon_sym_LBRACK2, + ACTIONS(2215), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -216667,24 +216096,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [18472] = 4, + [17812] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2233), 3, + ACTIONS(2267), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2235), 56, + ACTIONS(2269), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -216741,107 +216177,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18543] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2299), 1, - anon_sym_PIPE, - ACTIONS(2311), 1, - anon_sym_when, - ACTIONS(2313), 1, - anon_sym_COLON_COLON, - ACTIONS(2315), 1, - anon_sym_EQ_GT, - ACTIONS(2317), 1, - anon_sym_EQ, - ACTIONS(2327), 1, - anon_sym_in, - ACTIONS(2329), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(2339), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2301), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2309), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2755), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(2319), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2321), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2297), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2323), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2325), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2757), 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, - [18656] = 5, + [17883] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(2207), 1, + anon_sym_LPAREN, + STATE(1570), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2183), 3, + ACTIONS(2161), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 55, + ACTIONS(2163), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -216890,37 +216240,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [18729] = 8, + [17958] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2407), 3, - sym_newline_before_do, + ACTIONS(2259), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 51, + anon_sym_LBRACK2, + ACTIONS(2261), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -216961,73 +216305,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [18808] = 21, + [18031] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(2315), 1, + ACTIONS(2775), 1, + anon_sym_PIPE, + ACTIONS(2779), 1, + anon_sym_COMMA, + ACTIONS(2787), 1, + anon_sym_when, + ACTIONS(2789), 1, + anon_sym_COLON_COLON, + ACTIONS(2791), 1, anon_sym_EQ_GT, - ACTIONS(2317), 1, + ACTIONS(2793), 1, anon_sym_EQ, - ACTIONS(2327), 1, + ACTIONS(2803), 1, anon_sym_in, - ACTIONS(2329), 1, + ACTIONS(2805), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, + ACTIONS(2807), 1, anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, + ACTIONS(2809), 1, anon_sym_STAR_STAR, - ACTIONS(2335), 1, + ACTIONS(2811), 1, anon_sym_DOT, - ACTIONS(2337), 1, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(2339), 1, + ACTIONS(2815), 1, sym_not_in, + STATE(1816), 1, + aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, + ACTIONS(2409), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(2777), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2307), 2, + ACTIONS(2783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(2319), 3, + ACTIONS(2785), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2795), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2321), 3, + ACTIONS(2797), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2297), 4, + ACTIONS(2773), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2323), 5, + ACTIONS(2799), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2305), 6, + ACTIONS(2781), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2325), 9, + ACTIONS(2411), 7, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2801), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -217037,34 +216404,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [18913] = 4, + [18148] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2221), 3, + ACTIONS(2661), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2223), 56, + ACTIONS(2664), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -217112,65 +216464,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [18984] = 15, + [18219] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2327), 1, - anon_sym_in, - ACTIONS(2329), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(2339), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2711), 4, sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2325), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 31, + anon_sym_LBRACK2, + ACTIONS(2713), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -217190,71 +216512,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [19077] = 20, + [18290] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2317), 1, - anon_sym_EQ, - ACTIONS(2327), 1, - anon_sym_in, - ACTIONS(2329), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(2339), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, + ACTIONS(2715), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2717), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(2319), 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(2321), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2297), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2323), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2325), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -217264,74 +216588,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [19180] = 18, + [18361] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2327), 1, - anon_sym_in, - ACTIONS(2329), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(2339), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, + ACTIONS(2719), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2721), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(2321), 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(2297), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2323), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2325), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -217341,44 +216655,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [19279] = 4, + [18432] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2293), 4, + ACTIONS(2723), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2295), 55, + ACTIONS(2725), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -217428,24 +216739,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19350] = 4, + [18503] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2349), 4, + ACTIONS(2727), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1857), 55, + ACTIONS(2729), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -217495,24 +216806,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19421] = 4, + [18574] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 4, + ACTIONS(2731), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 55, + ACTIONS(2733), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -217562,18 +216873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19492] = 4, + [18645] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 4, + ACTIONS(2735), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 55, + ACTIONS(2737), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -217629,18 +216940,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19563] = 4, + [18716] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 4, + ACTIONS(2739), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 55, + ACTIONS(2741), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -217696,24 +217007,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19634] = 4, + [18787] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2165), 3, + ACTIONS(2743), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2167), 56, + ACTIONS(2745), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -217756,25 +217067,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [19705] = 4, + [18858] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 4, + ACTIONS(2747), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2377), 55, + ACTIONS(2749), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -217830,75 +217141,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19776] = 25, + [18929] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2299), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2751), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2753), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2311), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(2313), 1, anon_sym_COLON_COLON, - ACTIONS(2315), 1, anon_sym_EQ_GT, - ACTIONS(2317), 1, anon_sym_EQ, - ACTIONS(2327), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(2329), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2335), 1, anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(2339), 1, - sym_not_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19000] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, + ACTIONS(163), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(165), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2309), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2687), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(2319), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2321), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2297), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2323), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2325), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -217908,64 +217258,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2689), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [19889] = 17, + [19071] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2327), 1, - anon_sym_in, - ACTIONS(2329), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2331), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(2339), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2301), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2307), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2481), 4, sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2297), 4, + anon_sym_LBRACK2, + ACTIONS(2483), 55, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2323), 5, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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, - ACTIONS(2305), 6, - anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2325), 9, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19142] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2485), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2487), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -217975,10 +217392,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 22, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19213] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2489), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2491), 55, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -217991,28 +217443,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_DASH_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [19986] = 5, + [19284] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2759), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2257), 4, + ACTIONS(2493), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2259), 54, + ACTIONS(2495), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -218066,18 +217543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20059] = 4, + [19355] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 4, + ACTIONS(2755), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2381), 55, + ACTIONS(2757), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -218133,24 +217610,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20130] = 4, + [19426] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(273), 4, + ACTIONS(2759), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(275), 55, + ACTIONS(2761), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -218200,24 +217677,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20201] = 4, + [19497] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2694), 4, + ACTIONS(2567), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2696), 55, + ACTIONS(2569), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -218267,18 +217744,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20272] = 4, + [19568] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2698), 4, + ACTIONS(2259), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2700), 55, + ACTIONS(2261), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -218334,18 +217811,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20343] = 4, + [19639] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2702), 4, + ACTIONS(2201), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2704), 55, + ACTIONS(2203), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -218401,18 +217878,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20414] = 4, + [19710] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2706), 4, + ACTIONS(2497), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2708), 55, + ACTIONS(2499), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -218468,19 +217945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20485] = 4, + [19781] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2169), 3, + ACTIONS(2501), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2171), 56, + ACTIONS(2503), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -218528,31 +218005,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [20556] = 4, + [19852] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2183), 4, + ACTIONS(2277), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 55, + ACTIONS(2279), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -218602,18 +218079,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20627] = 4, + [19923] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2189), 4, + ACTIONS(2161), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2191), 55, + ACTIONS(2163), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -218669,24 +218146,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20698] = 4, + [19994] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2714), 4, + ACTIONS(2281), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2716), 55, + ACTIONS(2283), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -218736,24 +218213,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20769] = 4, + [20065] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2718), 4, + ACTIONS(2285), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2720), 55, + ACTIONS(2287), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -218803,18 +218280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20840] = 4, + [20136] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 4, + ACTIONS(2289), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2453), 55, + ACTIONS(2291), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -218870,18 +218347,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20911] = 4, + [20207] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2145), 4, + ACTIONS(2505), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2147), 55, + ACTIONS(2507), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -218937,24 +218414,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20982] = 4, + [20278] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 4, + ACTIONS(2541), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2457), 55, + ACTIONS(2543), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -219004,24 +218481,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21053] = 4, + [20349] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 4, + ACTIONS(2293), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 55, + ACTIONS(2295), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -219071,24 +218548,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21124] = 4, + [20420] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2743), 4, + ACTIONS(2297), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2745), 55, + ACTIONS(2299), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -219138,18 +218615,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21195] = 4, + [20491] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2673), 4, + ACTIONS(2517), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2675), 55, + ACTIONS(2519), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -219205,24 +218682,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21266] = 4, + [20562] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2173), 3, + ACTIONS(2301), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2175), 56, + ACTIONS(2303), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -219265,31 +218742,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [21337] = 4, + [20633] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 4, + ACTIONS(2305), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 55, + ACTIONS(2307), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -219339,18 +218816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21408] = 4, + [20704] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2277), 4, + ACTIONS(2521), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2279), 55, + ACTIONS(2523), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -219406,18 +218883,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21479] = 4, + [20775] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2281), 4, + ACTIONS(2525), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2283), 55, + ACTIONS(2527), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -219473,18 +218950,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21550] = 4, + [20846] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2285), 4, + ACTIONS(2529), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2287), 55, + ACTIONS(2531), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -219540,18 +219017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21621] = 4, + [20917] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 4, + ACTIONS(2529), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 55, + ACTIONS(2531), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -219607,18 +219084,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21692] = 4, + [20988] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 4, + ACTIONS(2529), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 55, + ACTIONS(2531), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -219674,18 +219151,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21763] = 4, + [21059] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 4, + ACTIONS(2533), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 55, + ACTIONS(2535), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -219741,18 +219218,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21834] = 4, + [21130] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2341), 4, + ACTIONS(2537), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2343), 55, + ACTIONS(2539), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -219808,24 +219285,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21905] = 4, + [21201] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2345), 4, + ACTIONS(2309), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2347), 55, + ACTIONS(2311), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -219875,25 +219352,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21976] = 5, + [21272] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2761), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2263), 4, + ACTIONS(2313), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2265), 54, + ACTIONS(2315), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -219943,24 +219419,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22049] = 4, + [21343] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 4, + ACTIONS(2317), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1847), 55, + ACTIONS(2319), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220003,31 +219479,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [22120] = 4, + [21414] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 4, + ACTIONS(2321), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1851), 55, + ACTIONS(2323), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220070,25 +219546,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [22191] = 4, + [21485] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2367), 4, + ACTIONS(2325), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2369), 55, + ACTIONS(2327), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -220144,95 +219620,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22262] = 6, + [21556] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 3, + ACTIONS(2329), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2291), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - 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, - [22337] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, anon_sym_LBRACK2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2359), 3, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(2361), 54, + ACTIONS(2331), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220275,29 +219680,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [22412] = 6, + [21627] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2335), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, + ACTIONS(2599), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 54, + anon_sym_LBRACK2, + ACTIONS(1873), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -220344,31 +219747,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [22487] = 4, + [21698] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2371), 4, + ACTIONS(2601), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2373), 55, + ACTIONS(2603), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220418,24 +219821,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22558] = 4, + [21769] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2201), 3, + ACTIONS(2333), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2203), 56, + ACTIONS(2335), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220478,25 +219881,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [22629] = 4, + [21840] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2415), 4, + ACTIONS(2337), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2417), 55, + ACTIONS(2339), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -220552,18 +219955,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22700] = 4, + [21911] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2419), 4, + ACTIONS(2341), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2421), 55, + ACTIONS(2343), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -220619,24 +220022,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22771] = 4, + [21982] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2435), 4, + ACTIONS(2549), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2437), 55, + ACTIONS(2551), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220686,24 +220089,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22842] = 4, + [22053] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2611), 4, + ACTIONS(2513), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 55, + ACTIONS(2515), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220753,24 +220156,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22913] = 4, + [22124] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2355), 4, + ACTIONS(2349), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2357), 55, + ACTIONS(2351), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220820,27 +220223,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22984] = 6, + [22195] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2763), 1, - anon_sym_COMMA, - STATE(1770), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 4, + ACTIONS(2221), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 53, + ACTIONS(2223), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -220889,18 +220290,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23059] = 4, + [22266] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2447), 4, + ACTIONS(2353), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2449), 55, + ACTIONS(2355), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -220956,24 +220357,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23130] = 4, + [22337] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2463), 4, + ACTIONS(2559), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2465), 55, + ACTIONS(2561), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221023,18 +220424,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23201] = 4, + [22408] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2217), 4, + ACTIONS(2559), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2219), 55, + ACTIONS(2561), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221090,24 +220491,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23272] = 4, + [22479] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2467), 4, + ACTIONS(2559), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2469), 55, + ACTIONS(2561), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221157,18 +220558,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23343] = 4, + [22550] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 4, + ACTIONS(2563), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 55, + ACTIONS(2565), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221224,18 +220625,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23414] = 4, + [22621] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 4, + ACTIONS(2571), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 55, + ACTIONS(2573), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221291,18 +220692,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23485] = 4, + [22692] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 4, + ACTIONS(2575), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 55, + ACTIONS(2577), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221358,18 +220759,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23556] = 4, + [22763] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2363), 4, + ACTIONS(2579), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2365), 55, + ACTIONS(2581), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221425,18 +220826,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23627] = 4, + [22834] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2383), 4, + ACTIONS(2583), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2385), 55, + ACTIONS(2585), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221492,18 +220893,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23698] = 4, + [22905] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2387), 4, + ACTIONS(2587), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2389), 55, + ACTIONS(2589), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221559,18 +220960,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23769] = 4, + [22976] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2391), 4, + ACTIONS(2591), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2393), 55, + ACTIONS(2593), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221626,18 +221027,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23840] = 4, + [23047] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2395), 4, + ACTIONS(2595), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2397), 55, + ACTIONS(2597), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221693,25 +221094,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23911] = 4, + [23118] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2817), 1, + anon_sym_COMMA, + STATE(1818), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2399), 4, + ACTIONS(2707), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2401), 55, + ACTIONS(2709), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -221760,18 +221163,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23982] = 4, + [23193] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2403), 4, + ACTIONS(2605), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2405), 55, + ACTIONS(2607), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221827,24 +221230,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24053] = 4, + [23264] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 4, + ACTIONS(2357), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 55, + ACTIONS(2359), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221894,24 +221297,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24124] = 4, + [23335] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 4, + ACTIONS(2361), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 55, + ACTIONS(2363), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221961,18 +221364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24195] = 4, + [23406] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2411), 4, + ACTIONS(2609), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2413), 55, + ACTIONS(2611), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -222028,24 +221431,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24266] = 4, + [23477] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2471), 4, + ACTIONS(2595), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2473), 55, + ACTIONS(2597), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -222095,24 +221498,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24337] = 4, + [23548] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2495), 4, + ACTIONS(2613), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2497), 55, + ACTIONS(2615), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -222162,18 +221565,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24408] = 4, + [23619] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2423), 4, + ACTIONS(2617), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2425), 55, + ACTIONS(2619), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -222229,24 +221632,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24479] = 4, + [23690] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 4, + ACTIONS(2365), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 55, + ACTIONS(2367), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -222296,18 +221699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24550] = 4, + [23761] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2427), 4, + ACTIONS(2621), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2429), 55, + ACTIONS(2623), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -222363,18 +221766,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24621] = 4, + [23832] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2431), 4, + ACTIONS(2625), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2433), 55, + ACTIONS(2627), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -222430,24 +221833,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24692] = 4, + [23903] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2499), 4, + ACTIONS(2629), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2501), 55, + ACTIONS(2631), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -222497,18 +221900,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24763] = 4, + [23974] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2439), 4, + ACTIONS(2629), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2441), 55, + ACTIONS(2631), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -222564,19 +221967,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24834] = 4, + [24045] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2459), 4, - sym_newline_before_do, + ACTIONS(2179), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2461), 55, + ACTIONS(2181), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -222624,26 +222027,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [24905] = 4, + [24116] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2475), 4, - sym_newline_before_do, + ACTIONS(2233), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2477), 55, + ACTIONS(2235), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -222691,25 +222094,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [24976] = 4, + [24187] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2479), 4, + ACTIONS(2633), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2481), 55, + ACTIONS(2635), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -222765,18 +222168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25047] = 4, + [24258] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2479), 4, + ACTIONS(2637), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2481), 55, + ACTIONS(2639), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -222832,27 +222235,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25118] = 6, + [24329] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2766), 1, - anon_sym_COMMA, - STATE(1801), 1, - aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2677), 4, + ACTIONS(2641), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2679), 53, + 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -222901,27 +222302,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25193] = 6, + [24400] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2768), 1, - anon_sym_COMMA, - STATE(1801), 1, - aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2687), 4, + ACTIONS(2273), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2689), 53, + ACTIONS(2275), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -222970,24 +222369,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25268] = 4, + [24471] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2483), 4, + ACTIONS(2369), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2485), 55, + ACTIONS(2371), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -223037,18 +222436,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25339] = 4, + [24542] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2487), 4, + ACTIONS(2645), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2489), 55, + ACTIONS(2647), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -223104,18 +222503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25410] = 4, + [24613] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2491), 4, + ACTIONS(2649), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2493), 55, + ACTIONS(2651), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -223171,18 +222570,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25481] = 4, + [24684] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2511), 4, + ACTIONS(2373), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2513), 55, + ACTIONS(2375), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -223238,19 +222637,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25552] = 5, + [24755] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2189), 3, + ACTIONS(2653), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2191), 55, + ACTIONS(2655), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -223299,25 +222697,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [25625] = 4, + [24826] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2503), 4, + ACTIONS(2657), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2505), 55, + ACTIONS(2659), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -223373,18 +222771,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25696] = 4, + [24897] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2507), 4, + ACTIONS(2667), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2509), 55, + ACTIONS(2669), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -223440,108 +222838,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25767] = 27, + [24968] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2773), 1, - anon_sym_PIPE, - ACTIONS(2777), 1, - anon_sym_COMMA, - ACTIONS(2785), 1, - anon_sym_when, - ACTIONS(2787), 1, - anon_sym_COLON_COLON, - ACTIONS(2789), 1, - anon_sym_EQ_GT, - ACTIONS(2791), 1, - anon_sym_EQ, - ACTIONS(2801), 1, - anon_sym_in, - ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2807), 1, - anon_sym_STAR_STAR, - ACTIONS(2809), 1, - anon_sym_DOT, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(2813), 1, - sym_not_in, - STATE(1800), 1, - aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2293), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(2775), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2781), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2783), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2793), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2795), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2771), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2797), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2779), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2295), 7, - anon_sym_SEMI, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2799), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [25884] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2515), 4, + ACTIONS(2671), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2517), 55, + ACTIONS(2673), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -223597,24 +222905,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25955] = 4, + [25039] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2519), 4, + ACTIONS(2377), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2521), 55, + ACTIONS(2379), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -223664,18 +222972,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26026] = 4, + [25110] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2523), 4, + ACTIONS(2675), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2525), 55, + ACTIONS(2677), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -223731,24 +223039,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26097] = 4, + [25181] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2527), 4, + ACTIONS(2381), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2529), 55, + ACTIONS(2383), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -223798,18 +223106,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26168] = 4, + [25252] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2531), 4, + ACTIONS(2385), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2533), 55, + ACTIONS(2387), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -223865,24 +223173,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26239] = 4, + [25323] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2535), 4, + ACTIONS(2389), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2537), 55, + ACTIONS(2391), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -223932,18 +223240,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26310] = 4, + [25394] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2539), 4, + ACTIONS(2393), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2541), 55, + ACTIONS(2395), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -223999,24 +223307,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26381] = 4, + [25465] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2543), 4, - sym_newline_before_do, + ACTIONS(1845), 4, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2545), 55, + ACTIONS(1847), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -224059,31 +223367,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [26452] = 4, + [25536] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2547), 4, - sym_newline_before_do, + ACTIONS(1853), 4, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2549), 55, + ACTIONS(1855), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -224126,25 +223434,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [26523] = 4, + [25607] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2551), 4, + ACTIONS(2397), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2553), 55, + ACTIONS(2399), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -224200,18 +223508,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26594] = 4, + [25678] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2555), 4, + ACTIONS(2401), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2557), 55, + ACTIONS(2403), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -224267,18 +223575,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26665] = 4, + [25749] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 4, + ACTIONS(2405), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1827), 55, + ACTIONS(2407), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -224334,24 +223642,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26736] = 4, + [25820] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 4, + ACTIONS(2413), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1835), 55, + ACTIONS(2415), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -224401,24 +223709,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26807] = 4, + [25891] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 4, + ACTIONS(2417), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1839), 55, + ACTIONS(2419), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -224468,47 +223776,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26878] = 4, + [25962] = 22, ACTIONS(5), 1, sym_comment, + ACTIONS(2439), 1, + anon_sym_PIPE, + ACTIONS(2455), 1, + anon_sym_EQ_GT, + ACTIONS(2457), 1, + anon_sym_EQ, + ACTIONS(2467), 1, + anon_sym_in, + ACTIONS(2469), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2471), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(2479), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1843), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2441), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(2459), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2461), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2437), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2463), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2465), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -224518,41 +223847,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [26069] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2439), 1, + anon_sym_PIPE, + ACTIONS(2451), 1, + anon_sym_when, + ACTIONS(2453), 1, + anon_sym_COLON_COLON, + ACTIONS(2455), 1, + anon_sym_EQ_GT, + ACTIONS(2457), 1, + anon_sym_EQ, + ACTIONS(2467), 1, anon_sym_in, + ACTIONS(2469), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2471), 1, anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(2479), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(2459), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2461), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2437), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2463), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(2465), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, - [26949] = 4, + [26180] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 4, + ACTIONS(2421), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1847), 55, + ACTIONS(2423), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -224602,24 +224015,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27020] = 4, + [26251] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 4, + ACTIONS(2425), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1851), 55, + ACTIONS(2427), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -224669,24 +224082,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27091] = 4, + [26322] = 24, ACTIONS(5), 1, sym_comment, + ACTIONS(2439), 1, + anon_sym_PIPE, + ACTIONS(2451), 1, + anon_sym_when, + ACTIONS(2453), 1, + anon_sym_COLON_COLON, + ACTIONS(2455), 1, + anon_sym_EQ_GT, + ACTIONS(2457), 1, + anon_sym_EQ, + ACTIONS(2467), 1, + anon_sym_in, + ACTIONS(2469), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2471), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(2479), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2559), 4, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(2459), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2461), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2437), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2463), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2465), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [26433] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2429), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2561), 55, + ACTIONS(2431), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -224736,24 +224236,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27162] = 4, + [26504] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2563), 4, + ACTIONS(2433), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2565), 55, + ACTIONS(2435), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -224803,24 +224303,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27233] = 4, + [26575] = 23, ACTIONS(5), 1, sym_comment, + ACTIONS(2439), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_COLON_COLON, + ACTIONS(2455), 1, + anon_sym_EQ_GT, + ACTIONS(2457), 1, + anon_sym_EQ, + ACTIONS(2467), 1, + anon_sym_in, + ACTIONS(2469), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2471), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(2479), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2567), 4, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 2, sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(2459), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2461), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2437), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2463), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2465), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [26684] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2253), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2569), 55, + ACTIONS(2255), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -224863,31 +224449,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [27304] = 4, + [26755] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2571), 4, - sym_newline_before_do, + ACTIONS(2201), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2573), 55, + ACTIONS(2203), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -224930,31 +224517,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [27375] = 4, + [26828] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2575), 4, + ACTIONS(2529), 3, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2577), 55, + ACTIONS(2531), 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_DOT_DOT, anon_sym_PLUS, @@ -224997,31 +224586,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [27446] = 4, + [26903] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2579), 4, + ACTIONS(2559), 3, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2581), 55, + ACTIONS(2561), 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_DOT_DOT, anon_sym_PLUS, @@ -225064,32 +224655,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26978] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2475), 1, anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + ACTIONS(2597), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + 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, - [27517] = 4, + [27053] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2819), 1, + anon_sym_COMMA, + STATE(1817), 1, + aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2583), 4, + ACTIONS(2679), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2585), 55, + ACTIONS(2681), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -225138,25 +224800,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27588] = 4, + [27128] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2821), 1, + anon_sym_COMMA, + STATE(1817), 1, + aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2587), 4, + ACTIONS(2694), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2589), 55, + ACTIONS(2696), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -225205,25 +224869,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27659] = 4, + [27203] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2817), 1, + anon_sym_COMMA, + STATE(1819), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2205), 3, + ACTIONS(2685), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2207), 56, + ACTIONS(2687), 53, 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -225265,35 +224931,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [27730] = 6, + [27278] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2181), 1, - anon_sym_LPAREN, - STATE(1666), 1, - sym_call_arguments_with_parentheses, + ACTIONS(2824), 1, + anon_sym_COMMA, + STATE(1819), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2145), 3, + ACTIONS(2601), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2147), 54, + ACTIONS(2603), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -225338,22 +225003,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [27805] = 4, + [27353] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2253), 3, + ACTIONS(2409), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2255), 56, + ACTIONS(2411), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -225401,35 +225067,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [27876] = 4, + [27424] = 12, ACTIONS(5), 1, sym_comment, + ACTIONS(2469), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2471), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2591), 4, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2593), 55, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 41, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -225459,44 +225142,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [27947] = 4, + [27511] = 15, ACTIONS(5), 1, sym_comment, + ACTIONS(2467), 1, + anon_sym_in, + ACTIONS(2469), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2471), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(2479), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2595), 4, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 2, sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2597), 55, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2465), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 31, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -225516,50 +225220,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28018] = 4, + [27604] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2599), 4, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2601), 55, + ACTIONS(2597), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -225601,36 +225290,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28089] = 4, + [27681] = 10, ACTIONS(5), 1, sym_comment, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 4, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1827), 55, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 43, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -225662,38 +225363,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28160] = 4, + [27764] = 8, ACTIONS(5), 1, sym_comment, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 4, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2595), 3, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1835), 55, + ACTIONS(2597), 51, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -225734,56 +225434,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28231] = 4, + [27843] = 21, ACTIONS(5), 1, sym_comment, + ACTIONS(2455), 1, + anon_sym_EQ_GT, + ACTIONS(2457), 1, + anon_sym_EQ, + ACTIONS(2467), 1, + anon_sym_in, + ACTIONS(2469), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2471), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(2479), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2247), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2249), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2441), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2447), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(2459), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2461), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2437), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2463), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2465), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -225793,45 +225510,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [27948] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2457), 1, + anon_sym_EQ, + ACTIONS(2467), 1, anon_sym_in, + ACTIONS(2469), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2471), 1, anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(2479), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(2459), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2461), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2437), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2463), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(2465), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28302] = 4, + [28051] = 18, ACTIONS(5), 1, sym_comment, + ACTIONS(2467), 1, + anon_sym_in, + ACTIONS(2469), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2471), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(2479), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2197), 3, - sym_not_in, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 2, + sym_newline_before_do, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2199), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2461), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2437), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2463), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2465), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 19, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -225841,16 +225682,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28150] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2467), 1, + anon_sym_in, + ACTIONS(2469), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2471), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(2479), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(2437), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2463), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2465), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -225860,41 +225746,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [28247] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2467), 1, anon_sym_in, + ACTIONS(2469), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2471), 1, anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(2479), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(2437), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(2465), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28373] = 4, + [28342] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2603), 4, + ACTIONS(2509), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2605), 55, + ACTIONS(2511), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -225944,28 +225915,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28444] = 4, + [28413] = 14, ACTIONS(5), 1, sym_comment, + ACTIONS(2467), 1, + anon_sym_in, + ACTIONS(2469), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2471), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(2479), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2607), 4, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 2, sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2609), 55, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 40, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -225994,45 +225985,50 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28515] = 4, + [28504] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(2471), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2473), 1, + anon_sym_STAR_STAR, + ACTIONS(2475), 1, + anon_sym_DOT, + ACTIONS(2477), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 4, + ACTIONS(2441), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2377), 55, + ACTIONS(2445), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 42, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -226063,42 +226059,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28586] = 6, + [28589] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2815), 1, - anon_sym_COMMA, - STATE(1849), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2730), 4, + ACTIONS(2595), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2732), 53, + ACTIONS(2597), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -226147,27 +226133,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28661] = 6, + [28660] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2815), 1, - anon_sym_COMMA, - STATE(1770), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2736), 4, - sym_newline_before_do, + ACTIONS(2329), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2738), 53, + ACTIONS(2331), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -226209,31 +226192,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28736] = 4, + [28730] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2443), 4, - sym_newline_before_do, + ACTIONS(2667), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2445), 55, + ACTIONS(2669), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -226276,24 +226258,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28807] = 4, + [28800] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 3, + ACTIONS(2671), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 55, + ACTIONS(2673), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -226349,26 +226331,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28877] = 6, + [28870] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2817), 1, - anon_sym_COMMA, - STATE(1852), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 3, + ACTIONS(1853), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 53, + ACTIONS(1855), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -226417,19 +226397,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28951] = 4, + [28940] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2165), 3, + ACTIONS(2421), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2167), 55, + ACTIONS(2423), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -226477,25 +226456,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [29021] = 4, + [29010] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2169), 3, + ACTIONS(2675), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2171), 55, + ACTIONS(2677), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -226543,25 +226522,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [29091] = 4, + [29080] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2173), 3, + ACTIONS(2425), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2175), 55, + ACTIONS(2427), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -226609,24 +226588,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [29161] = 4, + [29150] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 4, + ACTIONS(2571), 3, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1847), 54, + ACTIONS(2573), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -226675,24 +226654,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [29231] = 4, + [29220] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 4, + ACTIONS(2575), 3, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1851), 54, + ACTIONS(2577), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -226741,46 +226720,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [29301] = 12, + [29290] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(2807), 1, - anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, ACTIONS(2809), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2775), 2, + ACTIONS(2777), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2781), 2, + ACTIONS(2783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2779), 6, + ACTIONS(2781), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 40, + ACTIONS(2597), 40, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -226821,134 +226801,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29387] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2820), 1, - aux_sym_terminator_token1, - ACTIONS(2823), 1, - anon_sym_SEMI, - ACTIONS(2828), 1, - anon_sym_PIPE, - ACTIONS(2838), 1, - anon_sym_when, - ACTIONS(2840), 1, - anon_sym_COLON_COLON, - ACTIONS(2842), 1, - anon_sym_EQ_GT, - ACTIONS(2844), 1, - anon_sym_EQ, - ACTIONS(2854), 1, - anon_sym_in, - ACTIONS(2856), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, - STATE(387), 1, - sym_terminator, - STATE(1372), 1, - aux_sym_terminator_repeat1, - STATE(5093), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2836), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2846), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2848), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2826), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1519), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2850), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2852), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [29507] = 15, + [29376] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_in, ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, + anon_sym_in, ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(2807), 1, - anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, ACTIONS(2809), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(2811), 1, - anon_sym_LBRACK2, + anon_sym_DOT, ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(2815), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(2775), 2, + ACTIONS(2777), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2781), 2, + ACTIONS(2783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2779), 6, + ACTIONS(2781), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2799), 9, + ACTIONS(2801), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -226958,7 +226847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 30, + ACTIONS(2597), 30, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -226989,88 +226878,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29599] = 29, + [29468] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2828), 1, - anon_sym_PIPE, - ACTIONS(2838), 1, - anon_sym_when, - ACTIONS(2840), 1, - anon_sym_COLON_COLON, - ACTIONS(2842), 1, - anon_sym_EQ_GT, - ACTIONS(2844), 1, - anon_sym_EQ, - ACTIONS(2854), 1, - anon_sym_in, - ACTIONS(2856), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, - ACTIONS(2868), 1, - aux_sym_terminator_token1, - ACTIONS(2871), 1, - anon_sym_SEMI, - STATE(386), 1, - sym_terminator, - STATE(1372), 1, - aux_sym_terminator_repeat1, - STATE(5087), 1, - aux_sym_source_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2830), 2, + ACTIONS(2201), 3, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2203), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2836), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2846), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2848), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2826), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1527), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2850), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2852), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -227080,23 +226927,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [29719] = 7, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29538] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2807), 1, - anon_sym_STAR_STAR, ACTIONS(2809), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 52, + ACTIONS(2597), 52, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -227149,36 +227013,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29795] = 10, + [29614] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2807), 1, - anon_sym_STAR_STAR, ACTIONS(2809), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2775), 2, + ACTIONS(2777), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2781), 2, + ACTIONS(2783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2779), 6, + ACTIONS(2781), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 42, + ACTIONS(2597), 42, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -227221,26 +227085,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29877] = 8, + [29696] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2807), 1, - anon_sym_STAR_STAR, ACTIONS(2809), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2775), 2, + ACTIONS(2777), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2407), 3, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 50, + ACTIONS(2597), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -227291,66 +227155,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29955] = 21, + [29774] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2789), 1, - anon_sym_EQ_GT, ACTIONS(2791), 1, + anon_sym_EQ_GT, + ACTIONS(2793), 1, anon_sym_EQ, - ACTIONS(2801), 1, - anon_sym_in, ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, + anon_sym_in, ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(2807), 1, - anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, ACTIONS(2809), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(2811), 1, - anon_sym_LBRACK2, + anon_sym_DOT, ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(2815), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(2775), 2, + ACTIONS(2777), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2781), 2, + ACTIONS(2783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2793), 3, + ACTIONS(2795), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2795), 3, + ACTIONS(2797), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2771), 4, + ACTIONS(2773), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2797), 5, + ACTIONS(2799), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2779), 6, + ACTIONS(2781), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2799), 9, + ACTIONS(2801), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -227360,7 +227224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 13, + ACTIONS(2597), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -227374,64 +227238,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30059] = 20, + [29878] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2791), 1, - anon_sym_EQ, - ACTIONS(2801), 1, - anon_sym_in, - ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2807), 1, - anon_sym_STAR_STAR, - ACTIONS(2809), 1, - anon_sym_DOT, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(2813), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, + ACTIONS(2497), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2775), 2, + anon_sym_LBRACK2, + ACTIONS(2499), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2781), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2793), 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(2795), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2771), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2797), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2779), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2799), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -227441,73 +227287,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [30161] = 18, + [29948] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_in, + ACTIONS(2793), 1, + anon_sym_EQ, ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, + anon_sym_in, ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(2807), 1, - anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, ACTIONS(2809), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(2811), 1, - anon_sym_LBRACK2, + anon_sym_DOT, ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(2815), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(2775), 2, + ACTIONS(2777), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2781), 2, + ACTIONS(2783), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2795), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2797), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2771), 4, + ACTIONS(2773), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2797), 5, + ACTIONS(2799), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2779), 6, + ACTIONS(2781), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2799), 9, + ACTIONS(2801), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -227517,7 +227371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 18, + ACTIONS(2597), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -227526,64 +227380,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_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, - [30259] = 17, + [30050] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_in, ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, + anon_sym_in, ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(2807), 1, - anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, ACTIONS(2809), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(2811), 1, - anon_sym_LBRACK2, + anon_sym_DOT, ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(2815), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(2775), 2, + ACTIONS(2777), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2781), 2, + ACTIONS(2783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2771), 4, + ACTIONS(2797), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2773), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2797), 5, + ACTIONS(2799), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2779), 6, + ACTIONS(2781), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2799), 9, + ACTIONS(2801), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -227593,7 +227447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 21, + ACTIONS(2597), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -227606,57 +227460,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [30355] = 16, + [30148] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_in, ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, + anon_sym_in, ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(2807), 1, - anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, ACTIONS(2809), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(2811), 1, - anon_sym_LBRACK2, + anon_sym_DOT, ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(2815), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(2775), 2, + ACTIONS(2777), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2781), 2, + ACTIONS(2783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2771), 4, + ACTIONS(2773), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2779), 6, + ACTIONS(2799), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2781), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2799), 9, + ACTIONS(2801), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -227666,7 +227523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 26, + ACTIONS(2597), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -227682,59 +227539,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - 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, - [30449] = 14, + [30244] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_in, - ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2807), 1, - anon_sym_STAR_STAR, - ACTIONS(2809), 1, - anon_sym_DOT, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(2813), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, + ACTIONS(2579), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2775), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2781), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2779), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 39, + anon_sym_LBRACK2, + ACTIONS(2581), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -227763,125 +227594,49 @@ static const uint16_t ts_small_parse_table[] = { 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, - [30539] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2805), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - ACTIONS(2807), 1, - anon_sym_STAR_STAR, - ACTIONS(2809), 1, - anon_sym_DOT, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2775), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2781), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(2779), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 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_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [30623] = 11, + [30314] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2807), 1, - anon_sym_STAR_STAR, - ACTIONS(2809), 1, - anon_sym_DOT, - ACTIONS(2811), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2775), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2781), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, + ACTIONS(2827), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(2541), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2779), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 41, + anon_sym_LBRACK2, + ACTIONS(2543), 53, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_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, @@ -227909,23 +227664,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [30707] = 4, + [30386] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2189), 3, + ACTIONS(2583), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2191), 55, + ACTIONS(2585), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227981,17 +227744,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30777] = 4, + [30456] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2714), 3, + ACTIONS(2587), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2716), 55, + ACTIONS(2589), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -228047,75 +227810,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30847] = 25, + [30526] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2773), 1, + ACTIONS(2775), 1, anon_sym_PIPE, - ACTIONS(2785), 1, - anon_sym_when, ACTIONS(2787), 1, - anon_sym_COLON_COLON, + anon_sym_when, ACTIONS(2789), 1, - anon_sym_EQ_GT, + anon_sym_COLON_COLON, ACTIONS(2791), 1, + anon_sym_EQ_GT, + ACTIONS(2793), 1, anon_sym_EQ, - ACTIONS(2801), 1, - anon_sym_in, ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, + anon_sym_in, ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(2807), 1, - anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, ACTIONS(2809), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(2811), 1, - anon_sym_LBRACK2, + anon_sym_DOT, ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(2815), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2687), 2, + ACTIONS(2694), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(2775), 2, + ACTIONS(2777), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2781), 2, + ACTIONS(2783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2783), 2, + ACTIONS(2785), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2793), 3, + ACTIONS(2795), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2795), 3, + ACTIONS(2797), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2771), 4, + ACTIONS(2773), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2797), 5, + ACTIONS(2799), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2779), 6, + ACTIONS(2781), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2689), 8, + ACTIONS(2696), 8, anon_sym_SEMI, anon_sym_COMMA, anon_sym_after, @@ -228124,7 +227887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(2799), 9, + ACTIONS(2801), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -228134,75 +227897,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [30959] = 25, + [30638] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2773), 1, + ACTIONS(2775), 1, anon_sym_PIPE, - ACTIONS(2785), 1, - anon_sym_when, ACTIONS(2787), 1, - anon_sym_COLON_COLON, + anon_sym_when, ACTIONS(2789), 1, - anon_sym_EQ_GT, + anon_sym_COLON_COLON, ACTIONS(2791), 1, + anon_sym_EQ_GT, + ACTIONS(2793), 1, anon_sym_EQ, - ACTIONS(2801), 1, - anon_sym_in, ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, + anon_sym_in, ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(2807), 1, - anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, ACTIONS(2809), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(2811), 1, - anon_sym_LBRACK2, + anon_sym_DOT, ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(2815), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2751), 2, + ACTIONS(2763), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(2775), 2, + ACTIONS(2777), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2781), 2, + ACTIONS(2783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2783), 2, + ACTIONS(2785), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2793), 3, + ACTIONS(2795), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2795), 3, + ACTIONS(2797), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2771), 4, + ACTIONS(2773), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2797), 5, + ACTIONS(2799), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2779), 6, + ACTIONS(2781), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2753), 8, + ACTIONS(2765), 8, anon_sym_SEMI, anon_sym_COMMA, anon_sym_after, @@ -228211,7 +227974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(2799), 9, + ACTIONS(2801), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -228221,75 +227984,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [31071] = 25, + [30750] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2773), 1, + ACTIONS(2775), 1, anon_sym_PIPE, - ACTIONS(2785), 1, - anon_sym_when, ACTIONS(2787), 1, - anon_sym_COLON_COLON, + anon_sym_when, ACTIONS(2789), 1, - anon_sym_EQ_GT, + anon_sym_COLON_COLON, ACTIONS(2791), 1, + anon_sym_EQ_GT, + ACTIONS(2793), 1, anon_sym_EQ, - ACTIONS(2801), 1, - anon_sym_in, ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, + anon_sym_in, ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(2807), 1, - anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, ACTIONS(2809), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(2811), 1, - anon_sym_LBRACK2, + anon_sym_DOT, ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(2815), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2755), 2, + ACTIONS(2767), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(2775), 2, + ACTIONS(2777), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2781), 2, + ACTIONS(2783), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2783), 2, + ACTIONS(2785), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2793), 3, + ACTIONS(2795), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2795), 3, + ACTIONS(2797), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2771), 4, + ACTIONS(2773), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2797), 5, + ACTIONS(2799), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2779), 6, + ACTIONS(2781), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2757), 8, + ACTIONS(2769), 8, anon_sym_SEMI, anon_sym_COMMA, anon_sym_after, @@ -228298,188 +228061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(2799), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [31183] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2718), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2720), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31253] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2471), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2473), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31323] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2495), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2497), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, + ACTIONS(2801), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -228489,34 +228071,17 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31393] = 4, + [30862] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2145), 3, + ACTIONS(2501), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2147), 55, + ACTIONS(2503), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -228572,287 +228137,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [31463] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2499), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2501), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31533] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2511), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2513), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31603] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2531), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2533), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31673] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2539), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2541), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31743] = 4, + [30932] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2543), 3, + ACTIONS(2179), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2545), 55, + ACTIONS(2181), 55, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -228895,37 +228197,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [31813] = 4, + [31002] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2341), 3, + ACTIONS(163), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2343), 55, + ACTIONS(2664), 3, + anon_sym_COMMA, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(165), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_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, @@ -228961,34 +228264,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [31883] = 4, + [31074] = 16, ACTIONS(5), 1, sym_comment, + ACTIONS(2803), 1, + anon_sym_in, + ACTIONS(2805), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2807), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2809), 1, + anon_sym_STAR_STAR, + ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(2815), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2345), 3, - sym_not_in, + ACTIONS(2595), 2, + sym_newline_before_do, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2347), 55, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2773), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2781), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2801), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 26, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -229006,62 +228342,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [31953] = 6, + [31168] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(2874), 1, - anon_sym_LPAREN, - STATE(2312), 1, - sym_call_arguments_with_parentheses, - ACTIONS(3), 3, + ACTIONS(2803), 1, + anon_sym_in, + ACTIONS(2805), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2807), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2809), 1, + anon_sym_STAR_STAR, + ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(2815), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2145), 3, + ACTIONS(2595), 2, sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2147), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym_terminator_token1, + ACTIONS(2777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2781), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 39, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -229090,29 +228418,23 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_after, + anon_sym_catch, anon_sym_do, - [32027] = 4, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31258] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2710), 3, + ACTIONS(2161), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2712), 55, + ACTIONS(2163), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -229168,20 +228490,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [32097] = 5, + [31328] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2876), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(2673), 3, + ACTIONS(1845), 4, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2675), 53, + ACTIONS(1847), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -229194,6 +228514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_EQ, @@ -229235,92 +228556,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [32169] = 33, + [31398] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2591), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2593), 55, anon_sym_SEMI, - ACTIONS(2880), 1, anon_sym_RPAREN, - ACTIONS(2884), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2888), 1, - anon_sym_COMMA, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - STATE(499), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5546), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - STATE(7099), 1, - aux_sym_stab_clause_arguments_with_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -229330,25 +228605,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [32297] = 5, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31468] = 4, ACTIONS(5), 1, sym_comment, - STATE(2046), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2151), 3, - sym_newline_before_do, + ACTIONS(1853), 4, sym_not_in, + aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2153), 53, - anon_sym_LPAREN, + ACTIONS(1855), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -229396,34 +228683,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [32369] = 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31538] = 11, ACTIONS(5), 1, sym_comment, - STATE(2049), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(2807), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2809), 1, + anon_sym_STAR_STAR, + ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2155), 3, + ACTIONS(2777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2157), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym_terminator_token1, + ACTIONS(2781), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 41, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -229454,37 +228755,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_after, + anon_sym_catch, anon_sym_do, - [32441] = 4, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31622] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(2807), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2809), 1, + anon_sym_STAR_STAR, + ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2349), 3, + ACTIONS(2777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1857), 55, + ACTIONS(2781), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 41, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -229515,32 +228828,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [32511] = 4, + [31706] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 3, + ACTIONS(2829), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(2563), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 55, + ACTIONS(2565), 53, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -229553,7 +228860,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_EQ, @@ -229589,26 +228895,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [32581] = 4, + [31778] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2201), 3, + ACTIONS(2595), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2203), 55, + ACTIONS(2597), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -229656,25 +228960,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [32651] = 4, + [31848] = 33, ACTIONS(5), 1, sym_comment, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2833), 1, + anon_sym_RPAREN, + ACTIONS(2837), 1, + anon_sym_PIPE, + ACTIONS(2841), 1, + anon_sym_COMMA, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(510), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5567), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + STATE(7131), 1, + aux_sym_stab_clause_arguments_with_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2205), 3, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2847), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2858), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2860), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [31976] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2207), 55, + ACTIONS(2597), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -229722,27 +229121,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [32721] = 5, + [32046] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2925), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(2363), 3, + ACTIONS(2253), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2365), 53, + ACTIONS(2255), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -229754,6 +229152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_EQ, @@ -229795,23 +229194,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [32793] = 4, + [32116] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2435), 3, + ACTIONS(2605), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2437), 55, + ACTIONS(2607), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -229861,18 +229260,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [32863] = 4, + [32186] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2355), 3, + ACTIONS(2233), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2357), 55, + ACTIONS(2235), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -229920,31 +229320,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [32933] = 4, + [32256] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2213), 3, + ACTIONS(1849), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2215), 55, + ACTIONS(1851), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -229987,74 +229385,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [33003] = 22, + [32326] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2773), 1, - anon_sym_PIPE, - ACTIONS(2789), 1, - anon_sym_EQ_GT, - ACTIONS(2791), 1, - anon_sym_EQ, - ACTIONS(2801), 1, - anon_sym_in, - ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2807), 1, - anon_sym_STAR_STAR, - ACTIONS(2809), 1, - anon_sym_DOT, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(2813), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, + ACTIONS(1857), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2775), 2, + anon_sym_LBRACK2, + ACTIONS(1859), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2781), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2793), 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(2795), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2771), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2797), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2779), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2799), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -230064,30 +229441,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [33109] = 4, + [32396] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2217), 3, + ACTIONS(2609), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2219), 55, + ACTIONS(2611), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -230143,158 +229524,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [33179] = 24, + [32466] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2773), 1, - anon_sym_PIPE, - ACTIONS(2785), 1, - anon_sym_when, - ACTIONS(2787), 1, - anon_sym_COLON_COLON, - ACTIONS(2789), 1, - anon_sym_EQ_GT, - ACTIONS(2791), 1, - anon_sym_EQ, - ACTIONS(2801), 1, - anon_sym_in, - ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2807), 1, - anon_sym_STAR_STAR, - ACTIONS(2809), 1, - anon_sym_DOT, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(2813), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, + ACTIONS(2595), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2775), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2781), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2793), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2795), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2771), 4, + anon_sym_LBRACK2, + ACTIONS(2597), 55, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2797), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2779), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2799), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 10, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, 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, - [33289] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2773), 1, - anon_sym_PIPE, - ACTIONS(2785), 1, anon_sym_when, - ACTIONS(2787), 1, anon_sym_COLON_COLON, - ACTIONS(2789), 1, anon_sym_EQ_GT, - ACTIONS(2791), 1, anon_sym_EQ, - ACTIONS(2801), 1, - anon_sym_in, - ACTIONS(2803), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2805), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2807), 1, - anon_sym_STAR_STAR, - ACTIONS(2809), 1, - anon_sym_DOT, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(2813), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(2775), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2781), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2793), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2795), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2771), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2797), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2779), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2799), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -230304,115 +229573,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [33399] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2773), 1, - anon_sym_PIPE, - ACTIONS(2787), 1, - anon_sym_COLON_COLON, - ACTIONS(2789), 1, - anon_sym_EQ_GT, - ACTIONS(2791), 1, - anon_sym_EQ, - ACTIONS(2801), 1, anon_sym_in, - ACTIONS(2803), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2805), 1, anon_sym_SLASH_SLASH, - ACTIONS(2807), 1, - anon_sym_STAR_STAR, - ACTIONS(2809), 1, - anon_sym_DOT, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(2813), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(2775), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2781), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2793), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2795), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2771), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2797), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2779), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2799), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [33507] = 4, + [32536] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2221), 3, + ACTIONS(2613), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2223), 55, + ACTIONS(2615), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -230460,25 +229649,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [33577] = 4, + [32606] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2229), 3, + ACTIONS(163), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2231), 55, + ACTIONS(165), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -230526,23 +229715,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [33647] = 4, + [32676] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2233), 3, + ACTIONS(2241), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2235), 55, + ACTIONS(2243), 55, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -230598,17 +229788,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [33717] = 4, + [32746] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 3, + ACTIONS(2481), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 55, + ACTIONS(2483), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -230664,23 +229854,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [33787] = 4, + [32816] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 3, + ACTIONS(1861), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 55, + ACTIONS(1863), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -230730,17 +229920,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [33857] = 4, + [32886] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 3, + ACTIONS(2617), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 55, + ACTIONS(2619), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -230796,17 +229986,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [33927] = 4, + [32956] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2363), 3, + ACTIONS(2485), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2365), 55, + ACTIONS(2487), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -230862,23 +230052,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [33997] = 4, + [33026] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 3, + ACTIONS(1865), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2377), 55, + ACTIONS(1867), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -230928,17 +230118,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34067] = 4, + [33096] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 3, + ACTIONS(2489), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2381), 55, + ACTIONS(2491), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -230994,17 +230184,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34137] = 4, + [33166] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2547), 3, + ACTIONS(2413), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2549), 55, + ACTIONS(2415), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -231060,17 +230250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34207] = 4, + [33236] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2383), 3, + ACTIONS(2413), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2385), 55, + ACTIONS(2415), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -231126,17 +230316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34277] = 4, + [33306] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2387), 3, + ACTIONS(2417), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2389), 55, + ACTIONS(2419), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -231192,18 +230382,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34347] = 4, + [33376] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2391), 3, + ACTIONS(2237), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2393), 55, + ACTIONS(2239), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -231251,24 +230442,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [34417] = 4, + [33446] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2395), 3, + ACTIONS(2517), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2397), 55, + ACTIONS(2519), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -231324,18 +230514,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34487] = 4, + [33516] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2399), 3, + ACTIONS(2213), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2401), 55, + ACTIONS(2215), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -231383,30 +230574,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [34557] = 4, + [33586] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 3, + ACTIONS(2621), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 55, + ACTIONS(2623), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -231456,17 +230646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34627] = 4, + [33656] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2403), 3, + ACTIONS(2549), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2405), 55, + ACTIONS(2551), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -231522,19 +230712,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34697] = 4, + [33726] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2878), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, + ACTIONS(2701), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 55, + ACTIONS(2703), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -231588,17 +230779,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34767] = 4, + [33798] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 3, + ACTIONS(2711), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 55, + ACTIONS(2713), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -231654,23 +230845,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34837] = 4, + [33868] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 3, + ACTIONS(2541), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2377), 55, + ACTIONS(2543), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -231720,23 +230911,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34907] = 4, + [33938] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, + ACTIONS(2715), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 55, + ACTIONS(2717), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -231786,17 +230977,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34977] = 4, + [34008] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 3, + ACTIONS(2719), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2381), 55, + ACTIONS(2721), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -231852,23 +231043,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35047] = 4, + [34078] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2411), 3, + ACTIONS(2723), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2413), 55, + ACTIONS(2725), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -231918,17 +231109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35117] = 4, + [34148] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 3, + ACTIONS(2727), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2453), 55, + ACTIONS(2729), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -231984,17 +231175,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35187] = 4, + [34218] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 3, + ACTIONS(2731), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2457), 55, + ACTIONS(2733), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -232050,17 +231241,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35257] = 4, + [34288] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2551), 3, + ACTIONS(2735), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2553), 55, + ACTIONS(2737), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -232116,17 +231307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35327] = 4, + [34358] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2555), 3, + ACTIONS(2739), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2557), 55, + ACTIONS(2741), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -232182,7 +231373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35397] = 4, + [34428] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -232194,11 +231385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(2745), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -232248,17 +231439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35467] = 4, + [34498] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2559), 3, + ACTIONS(2747), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2561), 55, + ACTIONS(2749), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -232314,17 +231505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35537] = 4, + [34568] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2563), 3, + ACTIONS(2751), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2565), 55, + ACTIONS(2753), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -232380,32 +231571,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35607] = 7, + [34638] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(369), 1, - anon_sym_do, - ACTIONS(2927), 1, - sym_newline_before_do, - STATE(2970), 1, - sym_do_block, - ACTIONS(2151), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2755), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2153), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2757), 55, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -232448,18 +231630,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [35683] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34708] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2567), 3, + ACTIONS(2759), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2569), 55, + ACTIONS(2761), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -232515,17 +231703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35753] = 4, + [34778] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2571), 3, + ACTIONS(2567), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2573), 55, + ACTIONS(2569), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -232581,17 +231769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35823] = 4, + [34848] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2575), 3, + ACTIONS(2277), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2577), 55, + ACTIONS(2279), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -232647,17 +231835,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35893] = 4, + [34918] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 3, + ACTIONS(2281), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1827), 55, + ACTIONS(2283), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -232713,17 +231901,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35963] = 4, + [34988] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 3, + ACTIONS(2285), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1835), 55, + ACTIONS(2287), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -232779,23 +231967,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36033] = 4, + [35058] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2423), 3, + ACTIONS(2289), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2425), 55, + ACTIONS(2291), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -232845,23 +232033,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36103] = 4, + [35128] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2673), 3, + ACTIONS(2293), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2675), 55, + ACTIONS(2295), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -232911,23 +232099,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36173] = 4, + [35198] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, + ACTIONS(2297), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 55, + ACTIONS(2299), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -232977,17 +232165,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36243] = 4, + [35268] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 3, + ACTIONS(2301), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1839), 55, + ACTIONS(2303), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -233043,17 +232231,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36313] = 4, + [35338] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 3, + ACTIONS(2305), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1843), 55, + ACTIONS(2307), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -233109,17 +232297,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36383] = 4, + [35408] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 3, + ACTIONS(2309), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1847), 55, + ACTIONS(2311), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -233175,17 +232363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36453] = 4, + [35478] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 3, + ACTIONS(2313), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1851), 55, + ACTIONS(2315), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -233241,24 +232429,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36523] = 4, + [35548] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2225), 3, + ACTIONS(2317), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2227), 55, + ACTIONS(2319), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -233301,29 +232488,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [36593] = 4, + [35618] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2427), 3, + ACTIONS(2321), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2429), 55, + ACTIONS(2323), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -233373,17 +232561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36663] = 4, + [35688] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2579), 3, + ACTIONS(2325), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2581), 55, + ACTIONS(2327), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -233439,17 +232627,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36733] = 4, + [35758] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2431), 3, + ACTIONS(2559), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2433), 55, + ACTIONS(2561), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -233505,115 +232693,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36803] = 5, + [35828] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2183), 3, - sym_not_in, + ACTIONS(2880), 1, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2185), 54, + ACTIONS(2883), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2888), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 1, anon_sym_when, + ACTIONS(2900), 1, anon_sym_COLON_COLON, + ACTIONS(2902), 1, anon_sym_EQ_GT, + ACTIONS(2904), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(2914), 1, anon_sym_in, + ACTIONS(2916), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2920), 1, anon_sym_STAR_STAR, + ACTIONS(2922), 1, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36875] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, + STATE(387), 1, + sym_terminator, + STATE(1358), 1, + aux_sym_terminator_repeat1, + STATE(5072), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2189), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2191), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2890), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2894), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2896), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2906), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2908), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2886), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1567), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2910), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2912), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -233623,40 +232784,23 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36947] = 4, + [35948] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 4, + ACTIONS(2337), 3, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1839), 54, + ACTIONS(2339), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -233699,30 +232843,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [37017] = 4, + [36018] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 4, + ACTIONS(2341), 3, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1843), 54, + ACTIONS(2343), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -233765,29 +232909,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [37087] = 4, + [36088] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(273), 3, + ACTIONS(2345), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(275), 55, + ACTIONS(2347), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -233837,23 +232982,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37157] = 4, + [36158] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2439), 3, + ACTIONS(2349), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2441), 55, + ACTIONS(2351), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -233903,23 +233048,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37227] = 4, + [36228] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2694), 3, + ACTIONS(2353), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2696), 55, + ACTIONS(2355), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -233969,23 +233114,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37297] = 4, + [36298] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 3, + ACTIONS(2357), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2453), 55, + ACTIONS(2359), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -234035,23 +233180,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37367] = 4, + [36368] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 3, + ACTIONS(2361), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2457), 55, + ACTIONS(2363), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -234101,17 +233246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37437] = 4, + [36438] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2583), 3, + ACTIONS(2365), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2585), 55, + ACTIONS(2367), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -234167,17 +233312,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37507] = 4, + [36508] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2587), 3, + ACTIONS(2273), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2589), 55, + ACTIONS(2275), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -234233,23 +233378,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37577] = 4, + [36578] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2459), 3, + ACTIONS(2369), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2461), 55, + ACTIONS(2371), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -234299,23 +233444,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37647] = 4, + [36648] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2475), 3, + ACTIONS(2373), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2477), 55, + ACTIONS(2375), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -234365,23 +233510,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37717] = 4, + [36718] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2479), 3, + ACTIONS(2377), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2481), 55, + ACTIONS(2379), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -234431,23 +233576,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37787] = 4, + [36788] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2479), 3, + ACTIONS(2381), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2481), 55, + ACTIONS(2383), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -234497,23 +233642,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37857] = 4, + [36858] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2483), 3, + ACTIONS(2385), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2485), 55, + ACTIONS(2387), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -234563,23 +233708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37927] = 4, + [36928] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2487), 3, + ACTIONS(2389), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2489), 55, + ACTIONS(2391), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -234629,23 +233774,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37997] = 4, + [36998] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2491), 3, + ACTIONS(2393), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2493), 55, + ACTIONS(2395), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -234695,17 +233840,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38067] = 4, + [37068] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2591), 3, + ACTIONS(2397), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2593), 55, + ACTIONS(2399), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -234761,32 +233906,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38137] = 7, + [37138] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(369), 1, - anon_sym_do, - ACTIONS(2929), 1, - sym_newline_before_do, - STATE(2972), 1, - sym_do_block, - ACTIONS(2155), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2401), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2157), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2403), 55, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -234829,18 +233965,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [38213] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37208] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2595), 3, + ACTIONS(2405), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2597), 55, + ACTIONS(2407), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -234896,23 +234038,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38283] = 4, + [37278] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2599), 3, + ACTIONS(2521), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2601), 55, + ACTIONS(2523), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -234962,17 +234104,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38353] = 4, + [37348] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2698), 3, + ACTIONS(2525), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2700), 55, + ACTIONS(2527), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -235028,17 +234170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38423] = 4, + [37418] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2702), 3, + ACTIONS(2529), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2704), 55, + ACTIONS(2531), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -235094,23 +234236,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38493] = 4, + [37488] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(373), 1, + anon_sym_do, + ACTIONS(2928), 1, + sym_newline_before_do, + STATE(2743), 1, + sym_do_block, + ACTIONS(2167), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2603), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2605), 55, - anon_sym_SEMI, + ACTIONS(2169), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -235153,30 +234304,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [38563] = 4, + [37564] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2607), 3, + ACTIONS(2267), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2609), 55, + ACTIONS(2269), 55, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -235219,30 +234365,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [38633] = 4, + [37634] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2611), 3, + ACTIONS(2529), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 55, + ACTIONS(2531), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -235292,23 +234437,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38703] = 4, + [37704] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2747), 3, + ACTIONS(2529), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2749), 55, + ACTIONS(2531), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -235358,19 +234503,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38773] = 4, + [37774] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(373), 1, + anon_sym_do, + ACTIONS(2930), 1, + sym_newline_before_do, + STATE(2476), 1, + sym_do_block, + ACTIONS(2173), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2706), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2708), 55, - anon_sym_SEMI, + ACTIONS(2175), 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, @@ -235417,24 +234571,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [38843] = 4, + [37850] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2617), 3, + ACTIONS(2417), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2619), 55, + ACTIONS(2419), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -235490,17 +234638,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38913] = 4, + [37920] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2621), 3, + ACTIONS(2421), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2623), 55, + ACTIONS(2423), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -235556,118 +234704,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38983] = 33, + [37990] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2888), 1, - anon_sym_COMMA, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(2931), 1, - anon_sym_RPAREN, - STATE(440), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6272), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - STATE(7099), 1, - aux_sym_stab_clause_arguments_with_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [39111] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2625), 3, + ACTIONS(2505), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2627), 55, + ACTIONS(2507), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -235717,17 +234770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [39181] = 4, + [38060] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2629), 3, + ACTIONS(2425), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2631), 55, + ACTIONS(2427), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -235783,23 +234836,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [39251] = 4, + [38130] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2633), 3, + ACTIONS(2493), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2635), 55, + ACTIONS(2495), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -235849,46 +234902,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [39321] = 4, + [38200] = 33, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2637), 3, - sym_not_in, + ACTIONS(1581), 1, aux_sym_terminator_token1, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2639), 55, + ACTIONS(2831), 1, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2837), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, + ACTIONS(2841), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(2849), 1, anon_sym_when, + ACTIONS(2852), 1, anon_sym_COLON_COLON, + ACTIONS(2854), 1, anon_sym_EQ_GT, + ACTIONS(2856), 1, anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(2932), 1, + anon_sym_RPAREN, + STATE(498), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6242), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + STATE(7131), 1, + aux_sym_stab_clause_arguments_with_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2847), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -235898,36 +234997,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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39391] = 4, + [38328] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2247), 3, + ACTIONS(2533), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2249), 55, + ACTIONS(2535), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -235975,29 +235056,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [39461] = 4, + [38398] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2641), 3, + ACTIONS(2537), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2643), 55, + ACTIONS(2539), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -236047,23 +235129,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [39531] = 4, + [38468] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2645), 3, + ACTIONS(2429), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2647), 55, + ACTIONS(2431), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -236113,23 +235195,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [39601] = 4, + [38538] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2649), 3, + ACTIONS(2221), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2651), 55, + ACTIONS(2223), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -236179,22 +235261,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [39671] = 6, + [38608] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2809), 1, - anon_sym_DOT, - ACTIONS(2811), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 3, - sym_newline_before_do, + ACTIONS(2433), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2291), 53, + anon_sym_LBRACK2, + ACTIONS(2435), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -236241,28 +235320,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [39745] = 6, + [38678] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2809), 1, - anon_sym_DOT, - ACTIONS(2811), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 3, - sym_newline_before_do, + ACTIONS(2183), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2361), 53, + anon_sym_LBRACK2, + ACTIONS(2185), 55, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -236309,28 +235387,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [39819] = 6, + [38748] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2809), 1, - anon_sym_DOT, - ACTIONS(2811), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, - sym_newline_before_do, + ACTIONS(2197), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 53, + anon_sym_LBRACK2, + ACTIONS(2199), 55, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -236377,29 +235453,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [39893] = 4, + [38818] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2653), 3, + ACTIONS(2625), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2655), 55, + ACTIONS(2627), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -236449,23 +235525,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [39963] = 4, + [38888] = 22, ACTIONS(5), 1, sym_comment, + ACTIONS(2775), 1, + anon_sym_PIPE, + ACTIONS(2791), 1, + anon_sym_EQ_GT, + ACTIONS(2793), 1, + anon_sym_EQ, + ACTIONS(2803), 1, + anon_sym_in, + ACTIONS(2805), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2807), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2809), 1, + anon_sym_STAR_STAR, + ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(2815), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2657), 3, - sym_not_in, + ACTIONS(2595), 2, + sym_newline_before_do, aux_sym_terminator_token1, + ACTIONS(2777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2795), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2797), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2799), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2781), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2801), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [38994] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2775), 1, + anon_sym_PIPE, + ACTIONS(2787), 1, + anon_sym_when, + ACTIONS(2789), 1, + anon_sym_COLON_COLON, + ACTIONS(2791), 1, + anon_sym_EQ_GT, + ACTIONS(2793), 1, + anon_sym_EQ, + ACTIONS(2803), 1, + anon_sym_in, + ACTIONS(2805), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2807), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2809), 1, + anon_sym_STAR_STAR, + ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(2659), 55, + ACTIONS(2815), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(2777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2795), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2797), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2799), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2781), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2801), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [39104] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2934), 1, + anon_sym_LPAREN, + STATE(2276), 1, + sym_call_arguments_with_parentheses, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2161), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2163), 52, + 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_DOT_DOT, anon_sym_PLUS, @@ -236508,25 +235761,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [40033] = 4, + anon_sym_do, + [39178] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 3, + ACTIONS(2217), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 55, + ACTIONS(2219), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -236574,24 +235823,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [40103] = 4, + [39248] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 3, + ACTIONS(2555), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 55, + ACTIONS(2557), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -236647,17 +235895,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40173] = 4, + [39318] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2277), 3, + ACTIONS(2599), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2279), 55, + ACTIONS(1873), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -236713,19 +235961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40243] = 4, + [39388] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2197), 3, + ACTIONS(2629), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2199), 55, + ACTIONS(2631), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -236773,23 +236020,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [40313] = 4, + [39458] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2281), 3, + ACTIONS(2661), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2283), 55, + ACTIONS(2664), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -236845,24 +236093,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40383] = 4, + [39528] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2936), 1, + anon_sym_COMMA, + STATE(1982), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2285), 3, + ACTIONS(2685), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2287), 55, + ACTIONS(2687), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -236911,24 +236161,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40453] = 4, + [39602] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2938), 1, + anon_sym_COMMA, + STATE(1982), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2661), 3, + ACTIONS(2601), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2663), 55, + ACTIONS(2603), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -236977,17 +236229,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40523] = 4, + [39676] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 3, + ACTIONS(1861), 4, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2291), 55, + ACTIONS(1863), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -237036,30 +236289,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [40593] = 4, + [39746] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2665), 3, + ACTIONS(1865), 4, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2667), 55, + ACTIONS(1867), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237102,30 +236355,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [40663] = 4, + [39816] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2669), 3, + ACTIONS(2259), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2671), 55, + ACTIONS(2261), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237168,24 +236422,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [40733] = 4, + [39888] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 3, + ACTIONS(2201), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 55, + ACTIONS(2203), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -237234,24 +236489,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [40803] = 4, + [39960] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2519), 3, + ACTIONS(2629), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2521), 55, + ACTIONS(2631), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -237307,17 +236561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40873] = 4, + [40030] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2523), 3, + ACTIONS(2633), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2525), 55, + ACTIONS(2635), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -237373,19 +236627,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40943] = 4, + [40100] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2527), 3, + ACTIONS(2529), 3, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2529), 55, + ACTIONS(2531), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -237432,26 +236689,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [41013] = 4, + [40174] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2183), 3, + ACTIONS(2559), 3, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2185), 55, + ACTIONS(2561), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -237498,30 +236757,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [41083] = 4, + [40248] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2443), 3, + ACTIONS(2595), 3, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2445), 55, + ACTIONS(2597), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237564,30 +236825,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [41153] = 4, + [40322] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2447), 3, + ACTIONS(2637), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2449), 55, + ACTIONS(2639), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237637,23 +236897,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41223] = 4, + [40392] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2463), 3, + ACTIONS(2249), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2465), 55, + ACTIONS(2251), 55, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237696,26 +236957,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [41293] = 4, + [40462] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 4, + ACTIONS(2245), 3, sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1827), 54, + ACTIONS(2247), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -237769,18 +237029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41363] = 4, + [40532] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2535), 3, + ACTIONS(2187), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2537), 55, + ACTIONS(2189), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -237828,30 +237089,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [41433] = 4, + [40602] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + STATE(2289), 1, + sym_do_block, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2467), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2167), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2469), 55, - anon_sym_SEMI, + ACTIONS(2169), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237894,27 +237160,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41503] = 4, + anon_sym_do, + [40674] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + STATE(2023), 1, + sym_do_block, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 4, - sym_not_in, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, + ACTIONS(2173), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(1835), 54, - anon_sym_SEMI, + ACTIONS(2175), 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, @@ -237962,51 +237228,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41573] = 4, + anon_sym_do, + [40746] = 24, ACTIONS(5), 1, sym_comment, + ACTIONS(2775), 1, + anon_sym_PIPE, + ACTIONS(2787), 1, + anon_sym_when, + ACTIONS(2789), 1, + anon_sym_COLON_COLON, + ACTIONS(2791), 1, + anon_sym_EQ_GT, + ACTIONS(2793), 1, + anon_sym_EQ, + ACTIONS(2803), 1, + anon_sym_in, + ACTIONS(2805), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2807), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2809), 1, + anon_sym_STAR_STAR, + ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(2815), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2503), 3, - sym_not_in, + ACTIONS(2595), 2, + sym_newline_before_do, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2505), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2777), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2783), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2795), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2797), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2799), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2781), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2801), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -238016,34 +237304,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [40856] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2775), 1, + anon_sym_PIPE, + ACTIONS(2789), 1, + anon_sym_COLON_COLON, + ACTIONS(2791), 1, + anon_sym_EQ_GT, + ACTIONS(2793), 1, + anon_sym_EQ, + ACTIONS(2803), 1, anon_sym_in, + ACTIONS(2805), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2807), 1, anon_sym_SLASH_SLASH, + ACTIONS(2809), 1, + anon_sym_STAR_STAR, + ACTIONS(2811), 1, + anon_sym_DOT, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(2815), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(2777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2783), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2795), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2797), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2799), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2781), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, + ACTIONS(2801), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, - [41643] = 4, + [40964] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2507), 3, + ACTIONS(2641), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2509), 55, + ACTIONS(2643), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -238099,23 +237466,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41713] = 4, + [41034] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2515), 3, + ACTIONS(2429), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2517), 55, + ACTIONS(2431), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -238165,20 +237532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41783] = 5, + [41104] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2933), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2257), 3, + ACTIONS(2259), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2259), 54, + ACTIONS(2261), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -238232,20 +237598,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41855] = 5, + [41174] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2935), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2263), 3, + ACTIONS(2601), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2265), 54, + ACTIONS(2603), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -238299,17 +237664,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41927] = 4, + [41244] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2367), 3, + ACTIONS(2433), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2369), 55, + ACTIONS(2435), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -238365,23 +237730,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41997] = 4, + [41314] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2371), 3, + ACTIONS(2563), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2373), 55, + ACTIONS(2565), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -238431,23 +237796,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42067] = 4, + [41384] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2415), 3, + ACTIONS(2645), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2417), 55, + ACTIONS(2647), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -238497,23 +237862,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42137] = 4, + [41454] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2419), 3, + ACTIONS(2649), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2421), 55, + ACTIONS(2651), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -238563,26 +237928,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42207] = 6, + [41524] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2937), 1, - anon_sym_COMMA, - STATE(2032), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2730), 3, + ACTIONS(1849), 4, sym_not_in, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2732), 53, + ACTIONS(1851), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -238624,33 +237988,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [42281] = 6, + [41594] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(2937), 1, - anon_sym_COMMA, - STATE(1852), 1, - aux_sym_keywords_repeat1, + ACTIONS(2888), 1, + anon_sym_PIPE, + ACTIONS(2898), 1, + anon_sym_when, + ACTIONS(2900), 1, + anon_sym_COLON_COLON, + ACTIONS(2902), 1, + anon_sym_EQ_GT, + ACTIONS(2904), 1, + anon_sym_EQ, + ACTIONS(2914), 1, + anon_sym_in, + ACTIONS(2916), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, + ACTIONS(2941), 1, + aux_sym_terminator_token1, + ACTIONS(2944), 1, + anon_sym_SEMI, + STATE(386), 1, + sym_terminator, + STATE(1358), 1, + aux_sym_terminator_repeat1, + STATE(5073), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2736), 3, + ACTIONS(2890), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2896), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2906), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2908), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2886), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1563), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2910), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2912), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [41714] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(1845), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2738), 53, + ACTIONS(1847), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -238699,19 +238151,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42355] = 4, + [41784] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2253), 3, + ACTIONS(2653), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2255), 55, + ACTIONS(2655), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -238759,29 +238210,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [42425] = 4, + [41854] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2247), 3, - sym_newline_before_do, + ACTIONS(2657), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2249), 53, - anon_sym_LPAREN, + ACTIONS(2659), 55, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -238828,25 +238276,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [42494] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41924] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2225), 3, - sym_newline_before_do, + ACTIONS(1857), 4, sym_not_in, + aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2227), 53, - anon_sym_LPAREN, + ACTIONS(1859), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -238894,91 +238344,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [42563] = 32, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41994] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2559), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(1653), 1, - anon_sym_RPAREN, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2561), 55, anon_sym_SEMI, - ACTIONS(2884), 1, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - STATE(444), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5726), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -238988,116 +238398,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [42688] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, anon_sym_in, - ACTIONS(2915), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(2939), 1, - anon_sym_RPAREN, - STATE(439), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5576), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [42813] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42064] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2595), 3, + ACTIONS(2559), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2597), 54, + ACTIONS(2561), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -239140,34 +238474,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [42882] = 4, + [42134] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2936), 1, + anon_sym_COMMA, + STATE(1981), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1837), 4, - sym_newline_before_do, + ACTIONS(2707), 3, sym_not_in, - aux_sym_quoted_keyword_token1, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1839), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2709), 53, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -239209,29 +238542,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [42951] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42208] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1841), 4, - sym_newline_before_do, + ACTIONS(2333), 3, sym_not_in, - aux_sym_quoted_keyword_token1, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1843), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2335), 55, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -239274,29 +238608,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [43020] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42278] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2599), 3, + ACTIONS(2118), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2124), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2601), 54, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 41, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -239327,43 +238681,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [43089] = 5, + [42361] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2941), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(2947), 1, + anon_sym_COMMA, + STATE(2249), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2257), 3, - sym_newline_before_do, + ACTIONS(2707), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2259), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2709), 52, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -239406,25 +238749,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [43160] = 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42434] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2943), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2263), 3, - sym_newline_before_do, + ACTIONS(2421), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2265), 52, + ACTIONS(2423), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -239472,91 +238814,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [43231] = 32, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42503] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(886), 1, - anon_sym_RPAREN, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(1729), 1, + anon_sym_RPAREN, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(504), 1, + STATE(472), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5451), 1, + STATE(6270), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -239566,23 +238912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [43356] = 4, + [42628] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2165), 3, - sym_newline_before_do, + ACTIONS(2425), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2167), 53, - anon_sym_LPAREN, + ACTIONS(2427), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -239630,19 +238972,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [43425] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42697] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2169), 3, + ACTIONS(2217), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2171), 53, + ACTIONS(2219), 53, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -239696,155 +239042,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [43494] = 4, + [42766] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2603), 3, - sym_not_in, + ACTIONS(1581), 1, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2605), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, + ACTIONS(2120), 1, anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [43563] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(1713), 1, - anon_sym_RPAREN, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(479), 1, + ACTIONS(2949), 1, + anon_sym_RPAREN, + STATE(464), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6312), 1, + STATE(6250), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -239854,23 +239135,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [43688] = 4, + [42891] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2529), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2173), 3, - sym_newline_before_do, + anon_sym_LBRACK2, + ACTIONS(2531), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42960] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2533), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2175), 53, - anon_sym_LPAREN, + ACTIONS(2535), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -239918,91 +239260,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [43757] = 32, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43029] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(1683), 1, + anon_sym_RPAREN, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - ACTIONS(2945), 1, - anon_sym_RPAREN, - STATE(471), 1, + STATE(492), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6128), 1, + STATE(6305), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -240012,23 +239358,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [43882] = 4, + [43154] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2607), 3, + ACTIONS(2537), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2609), 54, + ACTIONS(2539), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -240077,23 +239423,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43951] = 4, + [43223] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2411), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2281), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2413), 54, - anon_sym_SEMI, + ACTIONS(2283), 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_DOT_DOT, anon_sym_PLUS, @@ -240137,23 +239487,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [44020] = 4, + anon_sym_do, + [43292] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2611), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2285), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2613), 54, - anon_sym_SEMI, + ACTIONS(2287), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -240202,24 +239552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [44089] = 4, + anon_sym_do, + [43361] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1845), 4, + ACTIONS(2289), 3, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1847), 52, + ACTIONS(2291), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -240228,6 +239573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -240272,19 +239618,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [44158] = 4, + [43430] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1849), 4, + ACTIONS(2293), 3, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1851), 52, + ACTIONS(2295), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -240293,6 +239638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -240337,27 +239683,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [44227] = 4, + [43499] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2367), 3, - sym_newline_before_do, + ACTIONS(2259), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2369), 53, + ACTIONS(2261), 54, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -240401,19 +239743,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [44296] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43568] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2371), 3, + ACTIONS(2297), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2373), 53, + ACTIONS(2299), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -240467,50 +239813,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [44365] = 4, + [43637] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(882), 1, + anon_sym_RPAREN, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2415), 3, - sym_newline_before_do, - sym_not_in, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2417), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(479), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5431), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -240520,30 +239906,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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [44434] = 4, + [43762] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2419), 3, + ACTIONS(2301), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2421), 53, + ACTIONS(2303), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -240597,18 +239971,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [44503] = 4, + [43831] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2435), 3, + ACTIONS(2417), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2437), 53, + ACTIONS(2419), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -240662,22 +240036,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [44572] = 4, + [43900] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2443), 3, - sym_newline_before_do, + ACTIONS(1845), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2445), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(1847), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -240726,23 +240096,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [44641] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43969] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2447), 3, - sym_newline_before_do, + ACTIONS(1853), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2449), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(1855), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -240791,28 +240161,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [44710] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44038] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(884), 1, + anon_sym_RPAREN, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, + anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(445), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6258), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2463), 3, - sym_newline_before_do, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2847), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2858), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2860), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [44163] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2201), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2465), 53, + ACTIONS(2203), 54, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -240856,91 +240319,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [44779] = 32, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44232] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(860), 1, - anon_sym_RPAREN, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(1795), 1, + anon_sym_RPAREN, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(440), 1, + STATE(512), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6272), 1, + STATE(6359), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -240950,22 +240417,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [44904] = 4, + [44357] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2467), 3, - sym_newline_before_do, + ACTIONS(1849), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2469), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(1851), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -241014,23 +240477,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [44973] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44426] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2471), 3, - sym_newline_before_do, + ACTIONS(1857), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2473), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(1859), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -241079,51 +240542,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [45042] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44495] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2495), 3, - sym_newline_before_do, - sym_not_in, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2497), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(2951), 1, + anon_sym_RPAREN, + STATE(504), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6347), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -241133,34 +240640,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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [45111] = 4, + [44620] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2499), 3, - sym_newline_before_do, + ACTIONS(1861), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2501), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(1863), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -241209,24 +240700,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [45180] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44689] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2479), 3, + ACTIONS(1865), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2481), 54, + ACTIONS(1867), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -241275,28 +240770,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [45249] = 4, + [44758] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2557), 1, + anon_sym_COMMA, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2511), 3, - sym_newline_before_do, + ACTIONS(2661), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2513), 53, + ACTIONS(2664), 53, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -241339,51 +240831,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [45318] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44829] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2531), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2533), 53, + ACTIONS(1763), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(501), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5825), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -241393,102 +240929,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_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [45387] = 32, + [44954] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1769), 1, - anon_sym_RPAREN, - ACTIONS(2104), 1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(511), 1, + ACTIONS(2953), 1, + anon_sym_RPAREN, + STATE(483), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5467), 1, + STATE(5475), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -241498,27 +241022,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [45512] = 4, + [45079] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2497), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2539), 3, - sym_newline_before_do, + anon_sym_LBRACK2, + ACTIONS(2499), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45148] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2501), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2541), 53, + ACTIONS(2503), 54, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -241562,19 +241147,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [45581] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45217] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2543), 3, + ACTIONS(2421), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2545), 53, + ACTIONS(2423), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -241628,90 +241217,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [45650] = 32, + [45286] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(874), 1, + anon_sym_RPAREN, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - ACTIONS(2947), 1, - anon_sym_RPAREN, - STATE(504), 1, + STATE(510), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5451), 1, + STATE(5567), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -241721,19 +241310,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [45775] = 4, + [45411] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2483), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(1861), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2485), 54, - anon_sym_SEMI, + ACTIONS(1863), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -241781,28 +241374,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [45844] = 4, + anon_sym_do, + [45480] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2487), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2425), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2489), 54, - anon_sym_SEMI, + ACTIONS(2427), 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_DOT_DOT, anon_sym_PLUS, @@ -241846,24 +241439,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [45913] = 4, + anon_sym_do, + [45549] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2201), 3, + ACTIONS(1865), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2203), 53, - anon_sym_LPAREN, + ACTIONS(1867), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -241916,50 +241505,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [45982] = 4, + [45618] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2205), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2207), 53, - anon_sym_LPAREN, + ACTIONS(1759), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(505), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5444), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -241969,31 +241598,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [45743] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, + anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, anon_sym_in, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(2955), 1, + anon_sym_RPAREN, + STATE(479), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5431), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2847), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2858), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2860), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [46051] = 4, + ACTIONS(2864), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [45868] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2253), 3, + ACTIONS(2309), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2255), 53, - anon_sym_LPAREN, + ACTIONS(2311), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -242002,6 +241711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -242046,18 +241756,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [46120] = 4, + [45937] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2547), 3, + ACTIONS(2313), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2549), 53, + ACTIONS(2315), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -242111,18 +241821,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [46189] = 4, + [46006] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2551), 3, + ACTIONS(1845), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2553), 53, + ACTIONS(1847), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -242176,18 +241886,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [46258] = 4, + [46075] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2555), 3, + ACTIONS(1853), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2557), 53, + ACTIONS(1855), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -242241,90 +241951,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [46327] = 32, + [46144] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(850), 1, + ACTIONS(922), 1, anon_sym_RPAREN, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(428), 1, + STATE(483), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5508), 1, + STATE(5475), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -242334,18 +242044,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [46452] = 4, + [46269] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2559), 3, + ACTIONS(2317), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2561), 53, + ACTIONS(2319), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -242399,18 +242109,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [46521] = 4, + [46338] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2563), 3, + ACTIONS(2321), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2565), 53, + ACTIONS(2323), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -242464,18 +242174,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [46590] = 4, + [46407] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2567), 3, + ACTIONS(1849), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2569), 53, + ACTIONS(1851), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -242529,18 +242239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [46659] = 4, + [46476] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2571), 3, + ACTIONS(1857), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2573), 53, + ACTIONS(1859), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -242594,83 +242304,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [46728] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2491), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2493), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [46797] = 4, + [46545] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2575), 3, + ACTIONS(1861), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2577), 53, + ACTIONS(1863), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -242724,18 +242369,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [46866] = 4, + [46614] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2579), 3, + ACTIONS(1865), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2581), 53, + ACTIONS(1867), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -242789,90 +242434,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [46935] = 32, + [46683] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(1625), 1, + ACTIONS(890), 1, anon_sym_RPAREN, - ACTIONS(2104), 1, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(432), 1, + STATE(429), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5522), 1, + STATE(5495), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -242882,27 +242527,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [47060] = 4, + [46808] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2583), 3, - sym_newline_before_do, + ACTIONS(2555), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2585), 53, + ACTIONS(2557), 54, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -242946,19 +242587,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [47129] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46877] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2587), 3, + ACTIONS(2325), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2589), 53, + ACTIONS(2327), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -243012,90 +242657,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [47198] = 32, + [46946] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(1651), 1, + anon_sym_RPAREN, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - ACTIONS(2949), 1, - anon_sym_RPAREN, - STATE(428), 1, + STATE(433), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5508), 1, + STATE(5507), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -243105,50 +242750,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [47323] = 4, + [47071] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2591), 3, - sym_newline_before_do, - sym_not_in, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2593), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(2957), 1, + anon_sym_RPAREN, + STATE(429), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5495), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -243158,35 +242843,23 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [47392] = 4, + [47196] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2423), 3, + ACTIONS(2413), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2425), 54, + ACTIONS(2415), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -243235,27 +242908,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47461] = 4, + [47265] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2595), 3, - sym_newline_before_do, + ACTIONS(2485), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2597), 53, + ACTIONS(2487), 54, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -243299,51 +242968,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [47530] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47334] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(872), 1, + anon_sym_RPAREN, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2599), 3, - sym_newline_before_do, - sym_not_in, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2601), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(443), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5785), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -243353,35 +243066,23 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [47599] = 4, + [47459] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 3, + ACTIONS(2417), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2453), 54, + ACTIONS(2419), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -243430,27 +243131,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47668] = 4, + [47528] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2603), 3, - sym_newline_before_do, + ACTIONS(2161), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2605), 53, + ACTIONS(2163), 54, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -243494,28 +243191,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [47737] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47597] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2607), 3, - sym_newline_before_do, + ACTIONS(2571), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2609), 53, + ACTIONS(2573), 54, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -243559,24 +243256,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [47806] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47666] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2213), 3, - sym_newline_before_do, + ACTIONS(2575), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2215), 53, - anon_sym_LPAREN, + ACTIONS(2577), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -243624,19 +243321,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [47875] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47735] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2611), 3, + ACTIONS(2711), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2613), 53, + ACTIONS(2713), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -243690,18 +243391,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [47944] = 4, + [47804] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2747), 3, + ACTIONS(2715), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2749), 53, + ACTIONS(2717), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -243755,27 +243456,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [48013] = 4, + [47873] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2617), 3, - sym_newline_before_do, + ACTIONS(2579), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2619), 53, + ACTIONS(2581), 54, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -243819,19 +243516,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [48082] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47942] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2621), 3, + ACTIONS(2719), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2623), 53, + ACTIONS(2721), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -243885,18 +243586,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [48151] = 4, + [48011] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2625), 3, + ACTIONS(2723), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2627), 53, + ACTIONS(2725), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -243950,27 +243651,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [48220] = 4, + [48080] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2629), 3, - sym_newline_before_do, + ACTIONS(2489), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2631), 53, + ACTIONS(2491), 54, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -244014,19 +243711,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [48289] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48149] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2633), 3, + ACTIONS(2179), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2635), 53, + ACTIONS(2181), 53, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -244035,7 +243737,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -244080,90 +243781,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [48358] = 32, + [48218] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(864), 1, + ACTIONS(902), 1, anon_sym_RPAREN, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(449), 1, + STATE(450), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5568), 1, + STATE(5554), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244173,31 +243874,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [48483] = 4, + [48343] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2637), 3, - sym_newline_before_do, + ACTIONS(2118), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2124), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 2, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2639), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym_terminator_token1, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 40, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -244227,29 +243941,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [48552] = 4, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48428] = 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, + ACTIONS(2233), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2643), 53, + ACTIONS(2235), 53, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -244258,7 +243968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -244303,31 +244012,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [48621] = 4, + [48497] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2145), 1, + anon_sym_in, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, + sym_not_in, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2645), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2647), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2118), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2124), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2143), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 30, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -244347,40 +244082,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [48690] = 4, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48588] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2503), 3, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2505), 54, + ACTIONS(2597), 52, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -244426,38 +244150,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [48759] = 4, + [48663] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2649), 3, - sym_newline_before_do, + ACTIONS(2118), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2124), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 2, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2651), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym_terminator_token1, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 42, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -244489,36 +244221,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [48828] = 4, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48744] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2653), 3, - sym_newline_before_do, + ACTIONS(2118), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2595), 2, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2655), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym_terminator_token1, + ACTIONS(2597), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -244559,94 +244290,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [48897] = 32, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48821] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1669), 1, + ACTIONS(1701), 1, anon_sym_RPAREN, - ACTIONS(2104), 1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(453), 1, + STATE(454), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5580), 1, + STATE(5568), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244656,50 +244389,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [49022] = 4, + [48946] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2133), 1, + anon_sym_EQ_GT, + ACTIONS(2135), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_in, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, + sym_not_in, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2657), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2659), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2118), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2137), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2114), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244709,62 +244457,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [49049] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2135), 1, + anon_sym_EQ, + ACTIONS(2145), 1, anon_sym_in, + ACTIONS(2147), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2151), 1, anon_sym_STAR_STAR, + ACTIONS(2155), 1, anon_sym_DOT, - anon_sym_do, - [49091] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, + sym_not_in, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2661), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2663), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2118), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2137), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2114), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244774,102 +244537,105 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [49160] = 32, + ACTIONS(2597), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49150] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - ACTIONS(2951), 1, + ACTIONS(2959), 1, anon_sym_RPAREN, - STATE(449), 1, + STATE(450), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5568), 1, + STATE(5554), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244879,50 +244645,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [49285] = 4, + [49275] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2145), 1, + anon_sym_in, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, + sym_not_in, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2665), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2667), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2118), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2114), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244932,39 +244705,10 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [49354] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2507), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2509), 54, + ACTIONS(2597), 18, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -244974,85 +244718,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [49423] = 4, + [49372] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2145), 1, + anon_sym_in, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, + sym_not_in, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2669), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2671), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2118), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + ACTIONS(2114), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -245062,43 +244780,10 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [49492] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2221), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2223), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2597), 21, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -245111,13 +244796,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - 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, + [49467] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_in, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, + sym_not_in, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2118), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2124), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2114), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -245127,39 +244852,10 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [49561] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2747), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2749), 54, + ACTIONS(2597), 26, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -245177,58 +244873,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [49630] = 4, + [49560] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2145), 1, + anon_sym_in, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, + sym_not_in, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2229), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2231), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2118), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2124), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 39, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -245257,31 +244948,24 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [49699] = 4, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49649] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2233), 3, + ACTIONS(2413), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2235), 53, - anon_sym_LPAREN, + ACTIONS(2415), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -245290,6 +244974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -245334,92 +245019,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [49768] = 4, + [49718] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2617), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2619), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2118), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(2595), 2, + sym_not_in, + aux_sym_terminator_token1, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [49837] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2621), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2623), 54, + ACTIONS(2597), 41, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -245450,31 +245085,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [49906] = 4, + [49801] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 3, + ACTIONS(2599), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2457), 54, + ACTIONS(1873), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -245529,23 +245156,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [49975] = 4, + [49870] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2625), 3, + ACTIONS(2601), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2627), 54, + ACTIONS(2603), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -245594,17 +245221,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50044] = 4, + [49939] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2459), 3, + ACTIONS(2493), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2461), 54, + ACTIONS(2495), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -245659,23 +245286,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50113] = 4, + [50008] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2515), 3, + ACTIONS(2421), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2517), 54, + ACTIONS(2423), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -245724,23 +245351,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50182] = 4, + [50077] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2519), 3, + ACTIONS(2425), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2521), 54, + ACTIONS(2427), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -245789,46 +245416,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50251] = 4, + [50146] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2475), 3, - sym_not_in, + ACTIONS(1581), 1, aux_sym_terminator_token1, + ACTIONS(1787), 1, + anon_sym_RPAREN, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2477), 54, + ACTIONS(2831), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(425), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6284), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -245838,39 +245509,23 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [50320] = 4, + [50271] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2523), 3, + ACTIONS(2429), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2525), 54, + ACTIONS(2431), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -245919,23 +245574,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50389] = 4, + [50340] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2527), 3, + ACTIONS(2433), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2529), 54, + ACTIONS(2435), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -245984,90 +245639,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50458] = 32, + [50409] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(876), 1, + ACTIONS(906), 1, anon_sym_RPAREN, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(470), 1, + STATE(471), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5629), 1, + STATE(5609), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -246077,46 +245732,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [50583] = 4, + [50534] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2479), 3, - sym_not_in, + ACTIONS(1581), 1, aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2481), 54, + ACTIONS(2831), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(2961), 1, + anon_sym_RPAREN, + STATE(498), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6242), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -246126,39 +245825,27 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [50652] = 4, + [50659] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2329), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2291), 54, - anon_sym_SEMI, + ACTIONS(2331), 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_DOT_DOT, anon_sym_PLUS, @@ -246202,22 +245889,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [50721] = 4, + anon_sym_do, + [50728] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2341), 3, + ACTIONS(2505), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2343), 54, + ACTIONS(2507), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -246272,23 +245955,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50790] = 4, + [50797] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2345), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2333), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2347), 54, - anon_sym_SEMI, + ACTIONS(2335), 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_DOT_DOT, anon_sym_PLUS, @@ -246332,95 +246019,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [50859] = 32, + anon_sym_do, + [50866] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1711), 1, - anon_sym_RPAREN, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2337), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2339), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - STATE(473), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5641), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -246430,18 +246073,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [50984] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [50935] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2629), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2341), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2631), 54, - anon_sym_SEMI, + ACTIONS(2343), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -246490,95 +246149,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [51053] = 32, + anon_sym_do, + [51004] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(1743), 1, + anon_sym_RPAREN, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - ACTIONS(2953), 1, - anon_sym_RPAREN, - STATE(470), 1, + STATE(474), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5629), 1, + STATE(5620), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -246588,46 +246243,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [51178] = 4, + [51129] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2633), 3, - sym_not_in, + ACTIONS(888), 1, + anon_sym_RPAREN, + ACTIONS(1581), 1, aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2635), 54, + ACTIONS(2831), 1, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(426), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5805), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -246637,33 +246336,17 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [51247] = 4, + [51254] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2535), 3, + ACTIONS(163), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2537), 54, + ACTIONS(165), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -246718,46 +246401,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51316] = 4, + [51323] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2637), 3, - sym_not_in, + ACTIONS(1581), 1, aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2639), 54, + ACTIONS(2831), 1, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(2963), 1, + anon_sym_RPAREN, + STATE(471), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5609), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -246767,39 +246494,23 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [51385] = 4, + [51448] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2641), 3, + ACTIONS(2481), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2643), 54, + ACTIONS(2483), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -246848,18 +246559,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51454] = 4, + [51517] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2645), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2345), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2647), 54, - anon_sym_SEMI, + ACTIONS(2347), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -246908,28 +246623,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [51523] = 4, + anon_sym_do, + [51586] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2649), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2241), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2651), 54, - anon_sym_SEMI, + ACTIONS(2243), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -246973,95 +246688,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [51592] = 32, + anon_sym_do, + [51655] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(890), 1, - anon_sym_RPAREN, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(1689), 1, + anon_sym_RPAREN, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(489), 1, + STATE(453), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5685), 1, + STATE(6353), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -247071,92 +246782,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [51717] = 4, + [51780] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2269), 3, - sym_newline_before_do, + ACTIONS(2549), 3, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2271), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [51786] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2273), 3, - sym_newline_before_do, - sym_not_in, anon_sym_LBRACK2, - ACTIONS(2275), 53, + ACTIONS(2551), 54, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -247200,91 +246842,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [51855] = 32, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51849] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1749), 1, - anon_sym_RPAREN, - ACTIONS(2104), 1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(492), 1, + ACTIONS(2965), 1, + anon_sym_RPAREN, + STATE(445), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5695), 1, + STATE(6258), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -247294,18 +246940,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [51980] = 4, + [51974] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2375), 3, + ACTIONS(2349), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2377), 53, + ACTIONS(2351), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -247359,120 +247005,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [52049] = 32, + [52043] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(2955), 1, - anon_sym_RPAREN, - STATE(489), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5685), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [52174] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2379), 3, - sym_newline_before_do, + ACTIONS(2413), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2381), 53, + ACTIONS(2415), 54, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -247516,19 +247065,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [52243] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52112] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2451), 3, + ACTIONS(2245), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2453), 53, + ACTIONS(2247), 53, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -247537,7 +247091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -247582,18 +247135,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [52312] = 4, + [52181] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2455), 3, + ACTIONS(2353), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2457), 53, + ACTIONS(2355), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -247647,46 +247200,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [52381] = 4, + [52250] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2653), 3, - sym_not_in, + ACTIONS(910), 1, + anon_sym_RPAREN, + ACTIONS(1581), 1, aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2655), 54, + ACTIONS(2831), 1, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(490), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5665), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -247696,39 +247293,23 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [52450] = 4, + [52375] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2657), 3, + ACTIONS(2221), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2659), 54, + ACTIONS(2223), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -247777,90 +247358,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52519] = 32, + [52444] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(1645), 1, - anon_sym_RPAREN, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2116), 1, anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2131), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2133), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2135), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2145), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2147), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2149), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, sym_not_in, - STATE(434), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6300), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(2767), 1, + aux_sym_terminator_token1, + ACTIONS(2967), 1, + anon_sym_when, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2118), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2126), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2137), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2114), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2122), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2769), 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(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -247870,23 +247444,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [52644] = 4, + [52555] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2661), 3, + ACTIONS(2417), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2663), 54, + ACTIONS(2419), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -247935,23 +247509,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52713] = 4, + [52624] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2665), 3, + ACTIONS(2559), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2667), 54, + ACTIONS(2561), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -248000,90 +247574,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52782] = 32, + [52693] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(896), 1, - anon_sym_RPAREN, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(1773), 1, + anon_sym_RPAREN, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(507), 1, + STATE(493), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5745), 1, + STATE(5678), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -248093,18 +247667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [52907] = 4, + [52818] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2669), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2357), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2671), 54, - anon_sym_SEMI, + ACTIONS(2359), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -248153,95 +247731,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [52976] = 32, + anon_sym_do, + [52887] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1775), 1, - anon_sym_RPAREN, - ACTIONS(2104), 1, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(510), 1, + ACTIONS(2969), 1, + anon_sym_RPAREN, + STATE(490), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5759), 1, + STATE(5665), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -248251,90 +247825,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [53101] = 32, + [53012] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2361), 3, + sym_newline_before_do, sym_not_in, - ACTIONS(2957), 1, + anon_sym_LBRACK2, + ACTIONS(2363), 53, anon_sym_RPAREN, - STATE(507), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5745), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -248344,110 +247878,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [53226] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_RPAREN, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, anon_sym_in, - ACTIONS(2915), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - STATE(466), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5657), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [53351] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [53081] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 3, + ACTIONS(2559), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 54, + ACTIONS(2561), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -248502,17 +247955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [53420] = 4, + [53150] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, + ACTIONS(2559), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 54, + ACTIONS(2561), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -248567,18 +248020,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [53489] = 4, + [53219] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1825), 3, + ACTIONS(2365), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1827), 53, + ACTIONS(2367), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -248632,18 +248085,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [53558] = 4, + [53288] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1833), 3, + ACTIONS(2273), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1835), 53, + ACTIONS(2275), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -248697,18 +248150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [53627] = 4, + [53357] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1837), 3, + ACTIONS(2369), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1839), 53, + ACTIONS(2371), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -248762,18 +248215,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [53696] = 4, + [53426] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(914), 1, + anon_sym_RPAREN, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, + anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(464), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6250), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2847), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2858), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2860), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [53551] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1841), 3, + ACTIONS(2373), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1843), 53, + ACTIONS(2375), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -248827,18 +248373,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [53765] = 4, + [53620] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1845), 3, + ACTIONS(2377), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1847), 53, + ACTIONS(2379), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -248892,48 +248438,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [53834] = 6, + [53689] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, + ACTIONS(918), 1, + anon_sym_RPAREN, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, + anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(508), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5726), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 2, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(2291), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2839), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -248943,41 +248531,27 @@ 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_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, - [53907] = 6, + [53814] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(2361), 53, - anon_sym_SEMI, + ACTIONS(2381), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2383), 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_DOT_DOT, anon_sym_PLUS, @@ -249020,27 +248594,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [53980] = 6, + anon_sym_DOT, + anon_sym_do, + [53883] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2541), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 53, + anon_sym_LBRACK2, + ACTIONS(2543), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -249087,24 +248655,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [54053] = 4, + [53952] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1849), 3, + ACTIONS(2385), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1851), 53, + ACTIONS(2387), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -249158,46 +248726,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [54122] = 4, + [54021] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2269), 3, - sym_not_in, + ACTIONS(1581), 1, aux_sym_terminator_token1, + ACTIONS(1799), 1, + anon_sym_RPAREN, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2271), 54, + ACTIONS(2831), 1, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(511), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5739), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -249207,34 +248819,22 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [54191] = 4, + [54146] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2727), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2275), 54, - anon_sym_SEMI, + ACTIONS(2729), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -249283,28 +248883,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [54260] = 4, + anon_sym_do, + [54215] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2259), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2377), 54, - anon_sym_SEMI, + ACTIONS(2261), 52, + 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_DOT_DOT, anon_sym_PLUS, @@ -249348,51 +248949,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [54329] = 4, + anon_sym_do, + [54286] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2379), 3, - sym_not_in, + ACTIONS(1581), 1, aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2381), 54, + ACTIONS(2831), 1, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(2971), 1, + anon_sym_RPAREN, + STATE(508), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5726), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -249402,39 +249043,28 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [54398] = 4, + [54411] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2201), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2453), 54, - anon_sym_SEMI, + ACTIONS(2203), 52, + 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_DOT_DOT, anon_sym_PLUS, @@ -249478,23 +249108,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [54467] = 4, + anon_sym_do, + [54482] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2389), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2457), 54, - anon_sym_SEMI, + ACTIONS(2391), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -249543,25 +249173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [54536] = 5, + anon_sym_do, + [54551] = 4, ACTIONS(5), 1, sym_comment, - STATE(2429), 1, - sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2217), 3, + ACTIONS(2393), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2219), 52, + ACTIONS(2395), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -249570,6 +249194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -249614,18 +249239,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [54607] = 4, + [54620] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2591), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2731), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2593), 54, - anon_sym_SEMI, + ACTIONS(2733), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -249674,95 +249303,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [54676] = 32, + anon_sym_do, + [54689] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(856), 1, - anon_sym_RPAREN, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(1803), 1, + anon_sym_RPAREN, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2137), 1, + ACTIONS(2153), 1, anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(2896), 1, + ACTIONS(2849), 1, anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2876), 1, sym_not_in, - STATE(497), 1, + STATE(438), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6345), 1, + STATE(5617), 1, aux_sym_block_repeat2, - STATE(6540), 1, + STATE(6420), 1, aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -249772,90 +249397,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [54801] = 32, + [54814] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2583), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2585), 54, anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(2959), 1, anon_sym_RPAREN, - STATE(436), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6314), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -249865,90 +249446,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [54926] = 32, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [54883] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(904), 1, - anon_sym_RPAREN, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2116), 1, anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2131), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2133), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2135), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2145), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2147), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2149), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, sym_not_in, - STATE(436), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6314), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(2763), 1, + aux_sym_terminator_token1, + ACTIONS(2967), 1, + anon_sym_when, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2118), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, + ACTIONS(2126), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2137), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2114), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2122), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2765), 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(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -249958,23 +249548,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [55051] = 4, + [54994] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2397), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2409), 54, - anon_sym_SEMI, + ACTIONS(2399), 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_DOT_DOT, anon_sym_PLUS, @@ -250018,116 +249612,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [55120] = 4, + anon_sym_do, + [55063] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2355), 3, - sym_not_in, + ACTIONS(1581), 1, aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2357), 54, + ACTIONS(2831), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2837), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(2849), 1, anon_sym_when, + ACTIONS(2852), 1, anon_sym_COLON_COLON, + ACTIONS(2854), 1, anon_sym_EQ_GT, + ACTIONS(2856), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(2866), 1, anon_sym_in, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2872), 1, anon_sym_STAR_STAR, + ACTIONS(2874), 1, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [55189] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(2973), 1, + anon_sym_RPAREN, + STATE(510), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5567), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2217), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2219), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2839), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -250137,106 +249706,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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [55258] = 32, + [55188] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(1707), 1, - anon_sym_RPAREN, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2116), 1, anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2133), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2135), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2145), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2147), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2149), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, sym_not_in, - STATE(486), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5710), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(2595), 1, + aux_sym_terminator_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2118), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2137), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2114), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2122), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -250246,90 +249776,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [55383] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(2104), 1, + ACTIONS(2597), 12, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2137), 1, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [55293] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2116), 1, anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, + ACTIONS(2131), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, + ACTIONS(2133), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, + ACTIONS(2135), 1, anon_sym_EQ, - ACTIONS(2913), 1, + ACTIONS(2145), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(2147), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(2149), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, sym_not_in, - ACTIONS(2961), 1, - anon_sym_RPAREN, - STATE(466), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5657), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2967), 1, + anon_sym_when, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2118), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + ACTIONS(2137), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, + ACTIONS(2114), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2909), 5, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, + ACTIONS(2122), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -250339,92 +249863,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [55508] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2427), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2429), 54, + ACTIONS(2597), 10, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [55577] = 7, + [55402] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(369), 1, - anon_sym_do, - ACTIONS(2963), 1, - sym_newline_before_do, - STATE(3529), 1, - sym_do_block, - ACTIONS(2209), 2, - sym_not_in, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2529), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2211), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2531), 53, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -250471,20 +249935,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [55652] = 4, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [55475] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 3, + ACTIONS(2559), 2, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2361), 54, + ACTIONS(2561), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -250531,25 +250002,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [55721] = 4, + [55548] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 3, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2361), 54, + ACTIONS(2597), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -250596,52 +250069,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [55790] = 4, + [55621] = 24, ACTIONS(5), 1, sym_comment, + ACTIONS(2116), 1, + anon_sym_PIPE, + ACTIONS(2131), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 1, + anon_sym_EQ_GT, + ACTIONS(2135), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_in, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, + sym_not_in, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2967), 1, + anon_sym_when, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2361), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2118), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2137), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2114), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -250651,62 +250149,80 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(2597), 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, - [55859] = 4, + [55730] = 23, ACTIONS(5), 1, sym_comment, + ACTIONS(2116), 1, + anon_sym_PIPE, + ACTIONS(2131), 1, + anon_sym_COLON_COLON, + ACTIONS(2133), 1, + anon_sym_EQ_GT, + ACTIONS(2135), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_in, + ACTIONS(2147), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2149), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2159), 1, + sym_not_in, + ACTIONS(2595), 1, + aux_sym_terminator_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1827), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2118), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2124), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2137), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2139), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2114), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2141), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2122), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2143), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -250716,34 +250232,34 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(2597), 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, - [55928] = 4, + [55837] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2401), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(1835), 54, - anon_sym_SEMI, + ACTIONS(2403), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -250792,29 +250308,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [55997] = 5, + anon_sym_do, + [55906] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2965), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2257), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2405), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2259), 53, - anon_sym_SEMI, + ACTIONS(2407), 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_DOT_DOT, anon_sym_PLUS, @@ -250858,25 +250373,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [56068] = 5, + anon_sym_do, + [55975] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2967), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2263), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2237), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2265), 53, - anon_sym_SEMI, + ACTIONS(2239), 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, @@ -250924,28 +250438,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [56139] = 4, + anon_sym_do, + [56044] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(373), 1, + anon_sym_do, + ACTIONS(2975), 1, + sym_newline_before_do, + STATE(3161), 1, + sym_do_block, + ACTIONS(2229), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1839), 54, - anon_sym_SEMI, + ACTIONS(2231), 51, + 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_DOT_DOT, anon_sym_PLUS, @@ -250989,28 +250507,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [56208] = 4, + [56119] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 3, + ACTIONS(2587), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1843), 54, + ACTIONS(2589), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -251059,18 +250572,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [56277] = 4, + [56188] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2735), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(1847), 54, - anon_sym_SEMI, + ACTIONS(2737), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -251119,28 +250636,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [56346] = 4, + anon_sym_do, + [56257] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(373), 1, + anon_sym_do, + ACTIONS(2977), 1, + sym_newline_before_do, + STATE(3515), 1, + sym_do_block, + ACTIONS(2191), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1851), 54, - anon_sym_SEMI, + ACTIONS(2193), 51, + 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_DOT_DOT, anon_sym_PLUS, @@ -251184,24 +250705,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [56415] = 4, + [56332] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2363), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2213), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2365), 54, - anon_sym_SEMI, + ACTIONS(2215), 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, @@ -251249,121 +250769,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [56484] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(1665), 1, - anon_sym_RPAREN, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - STATE(463), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6097), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [56609] = 4, + anon_sym_do, + [56401] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2367), 3, + ACTIONS(2591), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2369), 54, + ACTIONS(2593), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -251412,109 +250835,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [56678] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2115), 1, - anon_sym_COLON_COLON, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(2119), 1, - anon_sym_EQ, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - ACTIONS(2751), 1, - aux_sym_terminator_token1, - ACTIONS(2969), 1, - anon_sym_when, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2110), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2753), 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(2127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [56789] = 4, + [56470] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2371), 3, + ACTIONS(2595), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2373), 54, + ACTIONS(2597), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -251563,425 +250900,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [56858] = 22, + [56539] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(2119), 1, - anon_sym_EQ, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - ACTIONS(2407), 1, - aux_sym_terminator_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [56963] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2115), 1, - anon_sym_COLON_COLON, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(2119), 1, - anon_sym_EQ, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, + ACTIONS(2595), 3, sym_not_in, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2969), 1, - anon_sym_when, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [57072] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(898), 1, - anon_sym_RPAREN, - ACTIONS(1543), 1, aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2597), 54, anon_sym_SEMI, - ACTIONS(2884), 1, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - STATE(439), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5576), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [57197] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, anon_sym_when, - ACTIONS(2899), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(2971), 1, - anon_sym_RPAREN, - STATE(446), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6175), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [57322] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2115), 1, - anon_sym_COLON_COLON, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(2119), 1, - anon_sym_EQ, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2969), 1, - anon_sym_when, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2127), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -251991,118 +250949,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [57431] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2115), 1, - anon_sym_COLON_COLON, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(2119), 1, - anon_sym_EQ, - ACTIONS(2129), 1, anon_sym_in, - ACTIONS(2131), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [57538] = 4, + [56608] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2415), 3, + ACTIONS(2605), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2417), 54, + ACTIONS(2607), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -252151,23 +251030,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [57607] = 7, + [56677] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(369), 1, - anon_sym_do, - ACTIONS(2973), 1, - sym_newline_before_do, - STATE(3531), 1, - sym_do_block, - ACTIONS(2193), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2195), 51, + ACTIONS(2267), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2269), 53, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -252219,23 +251094,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [57682] = 7, + anon_sym_do, + [56746] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(369), 1, + ACTIONS(373), 1, anon_sym_do, - ACTIONS(2975), 1, + ACTIONS(2979), 1, sym_newline_before_do, - STATE(3533), 1, + STATE(3295), 1, sym_do_block, - ACTIONS(2217), 2, + ACTIONS(2221), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2219), 51, + ACTIONS(2223), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -252287,23 +251163,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [57757] = 4, + [56821] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2419), 3, + ACTIONS(2671), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2421), 54, + ACTIONS(2673), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -252352,204 +251228,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [57826] = 32, + [56890] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(880), 1, - anon_sym_RPAREN, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - STATE(446), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6175), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [57951] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, aux_sym_terminator_token1, - ACTIONS(1655), 1, - anon_sym_RPAREN, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - STATE(450), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6284), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [58076] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2435), 3, + ACTIONS(2739), 3, + sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2437), 54, - anon_sym_SEMI, + ACTIONS(2741), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252598,95 +251292,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [58145] = 32, + anon_sym_do, + [56959] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2743), 3, + sym_newline_before_do, sym_not_in, - ACTIONS(2977), 1, + anon_sym_LBRACK2, + ACTIONS(2745), 53, anon_sym_RPAREN, - STATE(440), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6272), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -252696,23 +251346,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [58270] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [57028] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2443), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2187), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2445), 54, - anon_sym_SEMI, + ACTIONS(2189), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -252756,28 +251422,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [58339] = 4, + anon_sym_do, + [57097] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2447), 3, + ACTIONS(2609), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2449), 54, + ACTIONS(2611), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -252826,23 +251488,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [58408] = 4, + [57166] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2463), 3, + ACTIONS(2595), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2465), 54, + ACTIONS(2597), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -252891,23 +251553,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [58477] = 4, + [57235] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2467), 3, + ACTIONS(2613), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2469), 54, + ACTIONS(2615), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -252956,90 +251618,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [58546] = 32, + [57304] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2617), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(1763), 1, - anon_sym_RPAREN, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2619), 54, anon_sym_SEMI, - ACTIONS(2884), 1, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - STATE(461), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5782), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -253049,23 +251667,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [58671] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57373] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2471), 3, + ACTIONS(2675), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2473), 54, + ACTIONS(2677), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -253114,23 +251748,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [58740] = 4, + [57442] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2495), 3, + ACTIONS(2621), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2497), 54, + ACTIONS(2623), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -253179,90 +251813,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [58809] = 32, + [57511] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(2981), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, + ACTIONS(2701), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, + ACTIONS(2703), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2896), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(2899), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, anon_sym_EQ, - ACTIONS(2913), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(2915), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2921), 1, anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(2979), 1, - anon_sym_RPAREN, - STATE(499), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5546), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, + anon_sym_do, + [57582] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + aux_sym_terminator_token1, + ACTIONS(1845), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1847), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -253272,19 +251932,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [58934] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [57651] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2431), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(1853), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2433), 54, - anon_sym_SEMI, + ACTIONS(1855), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253332,24 +252008,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [59003] = 4, + anon_sym_do, + [57720] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_RPAREN, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, + anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(498), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6242), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2847), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2858), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2860), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [57845] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1825), 4, + ACTIONS(2429), 3, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1827), 52, + ACTIONS(2431), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -253358,6 +252122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -253402,17 +252167,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [59072] = 4, + [57914] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(273), 3, + ACTIONS(2429), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(275), 54, + ACTIONS(2431), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -253467,17 +252232,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [59141] = 4, + [57983] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2694), 3, + ACTIONS(2433), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2696), 54, + ACTIONS(2435), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -253532,19 +252297,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [59210] = 4, + [58052] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2983), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2698), 3, + ACTIONS(2701), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2700), 54, + ACTIONS(2703), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253597,23 +252363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [59279] = 4, + [58123] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1833), 4, - sym_newline_before_do, + ACTIONS(2625), 3, sym_not_in, - aux_sym_quoted_keyword_token1, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1835), 52, + ACTIONS(2627), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253661,18 +252423,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [59348] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [58192] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2702), 3, + ACTIONS(2629), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2704), 54, + ACTIONS(2631), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -253727,23 +252493,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [59417] = 4, + [58261] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2706), 3, + ACTIONS(2711), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2708), 54, + ACTIONS(2713), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -253792,23 +252558,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [59486] = 4, + [58330] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2183), 3, + ACTIONS(2715), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 54, + ACTIONS(2717), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -253857,23 +252623,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [59555] = 4, + [58399] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2189), 3, + ACTIONS(2719), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2191), 54, + ACTIONS(2721), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -253922,109 +252688,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [59624] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2100), 1, - anon_sym_PIPE, - ACTIONS(2115), 1, - anon_sym_COLON_COLON, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(2119), 1, - anon_sym_EQ, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - ACTIONS(2755), 1, - aux_sym_terminator_token1, - ACTIONS(2969), 1, - anon_sym_when, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2110), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2757), 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(2127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [59735] = 4, + [58468] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2714), 3, + ACTIONS(2723), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2716), 54, + ACTIONS(2725), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -254073,26 +252753,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [59804] = 6, + [58537] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2981), 1, - anon_sym_COMMA, - STATE(2252), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2730), 3, + ACTIONS(2727), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2732), 52, + ACTIONS(2729), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254140,26 +252818,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [59877] = 6, + [58606] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2981), 1, - anon_sym_COMMA, - STATE(2253), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2736), 3, + ACTIONS(2731), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2738), 52, + ACTIONS(2733), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254207,26 +252883,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [59950] = 6, + [58675] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_COMMA, - STATE(2253), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 3, + ACTIONS(2735), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 52, + ACTIONS(2737), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -254274,23 +252948,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60023] = 4, + [58744] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2718), 3, + ACTIONS(2739), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2720), 54, + ACTIONS(2741), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -254339,110 +253013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60092] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(868), 1, - anon_sym_RPAREN, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - STATE(499), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5546), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [60217] = 4, + [58813] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2499), 3, + ACTIONS(2743), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2501), 54, + ACTIONS(2745), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -254497,17 +253078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60286] = 4, + [58882] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2511), 3, + ACTIONS(2747), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2513), 54, + ACTIONS(2749), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -254562,82 +253143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60355] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2177), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2179), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [60424] = 4, + [58951] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2531), 3, + ACTIONS(2751), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2533), 54, + ACTIONS(2753), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -254692,17 +253208,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60493] = 4, + [59020] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2539), 3, + ACTIONS(2755), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2541), 54, + ACTIONS(2757), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -254757,110 +253273,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60562] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(1759), 1, - anon_sym_RPAREN, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - STATE(505), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6367), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [60687] = 4, + [59089] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2543), 3, + ACTIONS(2759), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2545), 54, + ACTIONS(2761), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -254915,17 +253338,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60756] = 4, + [59158] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2547), 3, + ACTIONS(2567), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2549), 54, + ACTIONS(2569), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -254980,27 +253403,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60825] = 4, + [59227] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2241), 3, - sym_newline_before_do, + ACTIONS(2277), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2243), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2279), 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_DOT_DOT, anon_sym_PLUS, @@ -255044,117 +253463,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [60894] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2878), 1, - anon_sym_SEMI, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2896), 1, - anon_sym_when, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(2986), 1, - anon_sym_RPAREN, - STATE(497), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6345), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [61019] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59296] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2145), 3, + ACTIONS(2281), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2147), 54, + ACTIONS(2283), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -255203,17 +253533,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61088] = 4, + [59365] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2551), 3, + ACTIONS(2285), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2553), 54, + ACTIONS(2287), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -255268,17 +253598,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61157] = 4, + [59434] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2555), 3, + ACTIONS(2289), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2557), 54, + ACTIONS(2291), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -255333,17 +253663,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61226] = 4, + [59503] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2559), 3, + ACTIONS(2293), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2561), 54, + ACTIONS(2295), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -255398,23 +253728,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61295] = 4, + [59572] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2743), 3, + ACTIONS(2297), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2745), 54, + ACTIONS(2299), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -255463,23 +253793,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61364] = 4, + [59641] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2710), 3, + ACTIONS(2301), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2712), 54, + ACTIONS(2303), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -255528,17 +253858,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61433] = 4, + [59710] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2563), 3, + ACTIONS(2305), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2565), 54, + ACTIONS(2307), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -255593,17 +253923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61502] = 4, + [59779] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2567), 3, + ACTIONS(2309), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2569), 54, + ACTIONS(2311), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -255658,17 +253988,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61571] = 4, + [59848] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2571), 3, + ACTIONS(2313), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2573), 54, + ACTIONS(2315), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -255723,17 +254053,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61640] = 4, + [59917] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2575), 3, + ACTIONS(2317), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2577), 54, + ACTIONS(2319), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -255788,23 +254118,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61709] = 4, + [59986] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 3, + ACTIONS(2321), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 54, + ACTIONS(2323), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -255853,17 +254183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61778] = 4, + [60055] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2579), 3, + ACTIONS(2325), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2581), 54, + ACTIONS(2327), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -255918,17 +254248,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61847] = 4, + [60124] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2583), 3, + ACTIONS(2329), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2585), 54, + ACTIONS(2331), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -255983,23 +254313,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61916] = 4, + [60193] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 3, + ACTIONS(2333), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 54, + ACTIONS(2335), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256048,23 +254378,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61985] = 4, + [60262] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2277), 3, + ACTIONS(2337), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2279), 54, + ACTIONS(2339), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256113,23 +254443,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62054] = 4, + [60331] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2281), 3, + ACTIONS(2341), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2283), 54, + ACTIONS(2343), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256178,23 +254508,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62123] = 4, + [60400] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2673), 3, + ACTIONS(2345), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2675), 54, + ACTIONS(2347), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256243,23 +254573,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62192] = 4, + [60469] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2285), 3, + ACTIONS(2349), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2287), 54, + ACTIONS(2351), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256308,23 +254638,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62261] = 4, + [60538] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 3, + ACTIONS(2353), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2377), 54, + ACTIONS(2355), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256373,28 +254703,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62330] = 5, + [60607] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2183), 3, - sym_newline_before_do, + ACTIONS(2357), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2359), 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_DOT_DOT, anon_sym_PLUS, @@ -256438,21 +254763,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [62401] = 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60676] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2189), 3, + ACTIONS(2433), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2191), 52, + ACTIONS(2435), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -256461,6 +254788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256505,19 +254833,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [62472] = 4, + [60745] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2209), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2381), 54, - anon_sym_SEMI, + ACTIONS(2211), 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, @@ -256565,51 +254897,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [62541] = 4, + anon_sym_do, + [60814] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2383), 3, - sym_not_in, + ACTIONS(1581), 1, aux_sym_terminator_token1, + ACTIONS(1645), 1, + anon_sym_RPAREN, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2385), 54, + ACTIONS(2831), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(434), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5911), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -256619,40 +254991,26 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [62610] = 4, + [60939] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2947), 1, + anon_sym_COMMA, + STATE(2250), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2587), 3, + ACTIONS(2685), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2589), 54, + ACTIONS(2687), 52, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256700,44 +255058,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62679] = 12, + [61012] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, + ACTIONS(2985), 1, + anon_sym_COMMA, + STATE(2250), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2601), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 40, + anon_sym_LBRACK2, + ACTIONS(2603), 52, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -256767,29 +255110,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_DASH_GT, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [62764] = 4, + [61085] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2387), 3, + ACTIONS(2361), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2389), 54, + ACTIONS(2363), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256838,23 +255190,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62833] = 4, + [61154] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2391), 3, + ACTIONS(2365), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2393), 54, + ACTIONS(2367), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256903,23 +255255,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62902] = 4, + [61223] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2395), 3, + ACTIONS(2273), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2397), 54, + ACTIONS(2275), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256968,42 +255320,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62971] = 15, + [61292] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(2129), 1, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, + anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(2131), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(2139), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, + ACTIONS(2876), 1, sym_not_in, - ACTIONS(2407), 1, - aux_sym_terminator_token1, + ACTIONS(2988), 1, + anon_sym_RPAREN, + STATE(426), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5805), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2108), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2106), 6, + ACTIONS(2847), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2858), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2860), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2127), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -257013,58 +255413,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [63062] = 7, + [61417] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2369), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 52, + anon_sym_LBRACK2, + ACTIONS(2371), 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_DOT_DOT, anon_sym_PLUS, @@ -257106,46 +255471,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_DASH_GT, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [63137] = 10, + [61486] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2373), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 42, + anon_sym_LBRACK2, + ACTIONS(2375), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -257177,35 +255530,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_DASH_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [63218] = 8, + [61555] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2407), 2, + ACTIONS(2377), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 50, + anon_sym_LBRACK2, + ACTIONS(2379), 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_DOT_DOT, anon_sym_PLUS, @@ -257246,226 +255600,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [63295] = 21, + [61624] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(2119), 1, - anon_sym_EQ, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - ACTIONS(2407), 1, - aux_sym_terminator_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2098), 4, + ACTIONS(2381), 3, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2383), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 13, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, 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, - [63398] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2119), 1, + anon_sym_EQ_GT, anon_sym_EQ, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2121), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2123), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2125), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [63499] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2127), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -257475,221 +255657,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [63596] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2129), 1, anon_sym_in, - ACTIONS(2131), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [63691] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2139), 1, anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2098), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [63784] = 14, + [61693] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2129), 1, - anon_sym_in, - ACTIONS(2131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2143), 1, - sym_not_in, - ACTIONS(2407), 1, - aux_sym_terminator_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 39, + ACTIONS(2385), 3, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2387), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -257718,48 +255722,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [63873] = 11, + [61762] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2389), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2106), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 41, + anon_sym_LBRACK2, + ACTIONS(2391), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -257790,48 +255789,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [63956] = 11, + [61831] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2135), 1, - anon_sym_STAR_STAR, - ACTIONS(2139), 1, - anon_sym_DOT, - ACTIONS(2141), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2102), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2108), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 2, + ACTIONS(2393), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2106), 6, + anon_sym_LBRACK2, + ACTIONS(2395), 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_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 41, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61900] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2397), 3, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2399), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -257862,29 +255919,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [64039] = 4, + [61969] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2349), 3, + ACTIONS(2401), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1857), 54, + ACTIONS(2403), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -257933,23 +255998,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [64108] = 4, + [62038] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 3, + ACTIONS(2405), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 54, + ACTIONS(2407), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -257998,17 +256063,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [64177] = 4, + [62107] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2399), 3, + ACTIONS(2629), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2401), 54, + ACTIONS(2631), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -258063,17 +256128,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [64246] = 4, + [62176] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, + ACTIONS(2633), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 54, + ACTIONS(2635), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -258128,24 +256193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [64315] = 5, + [62245] = 4, ACTIONS(5), 1, sym_comment, - STATE(2373), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2209), 3, - sym_newline_before_do, + ACTIONS(2637), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2211), 52, + ACTIONS(2639), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258193,91 +256253,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [64386] = 32, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62314] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(854), 1, - anon_sym_RPAREN, - ACTIONS(1543), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2641), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(2141), 1, anon_sym_LBRACK2, - ACTIONS(2878), 1, + ACTIONS(2643), 54, anon_sym_SEMI, - ACTIONS(2884), 1, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2896), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(2899), 1, anon_sym_COLON_COLON, - ACTIONS(2901), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, anon_sym_EQ, - ACTIONS(2913), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(2915), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2921), 1, anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - STATE(471), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6128), 1, - aux_sym_block_repeat2, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62383] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2517), 3, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2519), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -258287,24 +256372,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [64511] = 5, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62452] = 4, ACTIONS(5), 1, sym_comment, - STATE(2418), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2193), 3, - sym_newline_before_do, + ACTIONS(2645), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2195), 52, + ACTIONS(2647), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258352,18 +256448,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [64582] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62521] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2439), 3, + ACTIONS(2649), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2441), 54, + ACTIONS(2651), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -258418,17 +256518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [64651] = 4, + [62590] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2403), 3, + ACTIONS(2653), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2405), 54, + ACTIONS(2655), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -258483,17 +256583,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [64720] = 4, + [62659] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 3, + ACTIONS(2657), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 54, + ACTIONS(2659), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -258548,23 +256648,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [64789] = 4, + [62728] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2197), 3, - sym_newline_before_do, + ACTIONS(2667), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2199), 53, - anon_sym_LPAREN, + ACTIONS(2669), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258612,27 +256708,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [64858] = 7, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62797] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(502), 1, - anon_sym_do, - ACTIONS(2988), 1, - sym_newline_before_do, - STATE(3935), 1, + STATE(2455), 1, sym_do_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2151), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2229), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2153), 49, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2231), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258680,25 +256778,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [64932] = 4, + anon_sym_do, + [62868] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + STATE(2391), 1, + sym_do_block, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 4, + aux_sym_terminator_token1, + ACTIONS(2191), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2381), 52, - anon_sym_SEMI, + ACTIONS(2193), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -258741,21 +256843,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [65000] = 4, + [62939] = 5, ACTIONS(5), 1, sym_comment, + STATE(2305), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2391), 3, + ACTIONS(2221), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2393), 52, + ACTIONS(2223), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -258808,18 +256911,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [65068] = 4, + [63010] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2395), 3, + ACTIONS(2253), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2397), 52, + ACTIONS(2255), 53, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -258872,25 +256976,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [65136] = 4, + [63079] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 4, - sym_newline_before_do, + ACTIONS(2521), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2453), 52, + ACTIONS(2523), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -258933,21 +257035,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [65204] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63148] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2503), 3, + ACTIONS(1849), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2505), 52, + ACTIONS(1851), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259000,25 +257106,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [65272] = 4, + [63217] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 4, + aux_sym_terminator_token1, + ACTIONS(1857), 4, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2457), 52, - anon_sym_SEMI, + ACTIONS(1859), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -259061,21 +257169,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [65340] = 4, + [63286] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2507), 3, + ACTIONS(2263), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2509), 52, + ACTIONS(2265), 53, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259128,18 +257236,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [65408] = 4, + [63355] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2451), 3, + ACTIONS(2249), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2453), 52, + ACTIONS(2251), 53, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259192,25 +257301,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [65476] = 4, + [63424] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2547), 4, + aux_sym_terminator_token1, + ACTIONS(2183), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2549), 52, - anon_sym_SEMI, + ACTIONS(2185), 53, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -259253,23 +257364,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [65544] = 4, + [63493] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2551), 4, + aux_sym_terminator_token1, + ACTIONS(2747), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2553), 52, - anon_sym_SEMI, + ACTIONS(2749), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259317,30 +257429,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [65612] = 6, + [63562] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2990), 1, - anon_sym_LPAREN, - STATE(2553), 1, - sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2145), 3, + ACTIONS(2751), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2147), 50, + ACTIONS(2753), 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_DOT_DOT, anon_sym_PLUS, @@ -259383,28 +257494,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [65684] = 4, + [63631] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2495), 4, - sym_newline_before_do, + ACTIONS(2563), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2497), 52, + ACTIONS(2565), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -259447,25 +257555,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63700] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, + anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(2990), 1, + anon_sym_RPAREN, + STATE(443), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5785), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2847), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2858), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2860), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [63825] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2197), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2199), 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_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [65752] = 4, + [63894] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(876), 1, + anon_sym_RPAREN, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2831), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, + anon_sym_PIPE, + ACTIONS(2849), 1, + anon_sym_when, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + STATE(504), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6347), 1, + aux_sym_block_repeat2, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2515), 3, - sym_newline_before_do, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2847), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2858), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2860), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [64019] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2525), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2517), 52, + ACTIONS(2527), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259513,26 +257872,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [65820] = 6, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64088] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2874), 1, - anon_sym_LPAREN, - STATE(2224), 1, - sym_call_arguments_with_parentheses, - ACTIONS(2145), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2529), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2147), 51, + anon_sym_LBRACK2, + ACTIONS(2531), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259580,18 +257937,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [65892] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64157] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(273), 3, + ACTIONS(2755), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(275), 52, + ACTIONS(2757), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259600,6 +257962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -259644,18 +258007,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [65960] = 4, + [64226] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2694), 3, + ACTIONS(2759), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2696), 52, + ACTIONS(2761), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259664,6 +258027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -259708,18 +258072,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [66028] = 4, + [64295] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2519), 3, + ACTIONS(2567), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2521), 52, + ACTIONS(2569), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259728,6 +258092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -259772,18 +258137,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [66096] = 4, + [64364] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2698), 3, + ACTIONS(2277), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2700), 52, + ACTIONS(2279), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259792,6 +258157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -259836,22 +258202,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [66164] = 4, + [64433] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2702), 3, - sym_newline_before_do, + ACTIONS(2661), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2704), 52, + ACTIONS(2664), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259899,23 +258262,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [66232] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64502] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2706), 3, - sym_newline_before_do, + ACTIONS(2529), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2708), 52, + ACTIONS(2531), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259963,21 +258327,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [66300] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64571] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2555), 4, + aux_sym_terminator_token1, + ACTIONS(2305), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2557), 52, - anon_sym_SEMI, + ACTIONS(2307), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -260025,21 +258395,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [66368] = 4, + [64640] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2455), 3, + ACTIONS(2629), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2457), 52, + ACTIONS(2631), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -260092,26 +258461,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [66436] = 4, + [64708] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2992), 1, + anon_sym_COMMA, + STATE(2421), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2559), 4, + ACTIONS(2685), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2561), 52, + ACTIONS(2687), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -260156,26 +258527,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [66504] = 4, + [64780] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2683), 3, + ACTIONS(2727), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2685), 52, + ACTIONS(2729), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -260218,27 +258588,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [66572] = 4, + [64848] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2499), 4, + aux_sym_terminator_token1, + ACTIONS(2161), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2501), 52, - anon_sym_SEMI, + ACTIONS(2163), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -260281,29 +258653,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [66640] = 4, + [64916] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2399), 3, + ACTIONS(2731), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2401), 52, + ACTIONS(2733), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -260346,69 +258716,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [66708] = 22, + [64984] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, + ACTIONS(2617), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2994), 1, + ACTIONS(2619), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3002), 1, - anon_sym_EQ_GT, - ACTIONS(3004), 1, - anon_sym_EQ, - ACTIONS(3014), 1, - anon_sym_in, - ACTIONS(3016), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, - ACTIONS(3022), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2996), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3006), 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(3008), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2992), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3010), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3012), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -260418,30 +258771,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [66812] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [65052] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2183), 3, + ACTIONS(2645), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2185), 52, + ACTIONS(2647), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -260494,18 +258847,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [66880] = 4, + [65120] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2189), 3, + ACTIONS(2505), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2191), 52, + ACTIONS(2507), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -260558,18 +258911,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [66948] = 4, + [65188] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2714), 3, + ACTIONS(2541), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2716), 52, + ACTIONS(2543), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -260622,81 +258975,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [67016] = 24, + [65256] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, + ACTIONS(2621), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2994), 1, + ACTIONS(2623), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3002), 1, - anon_sym_EQ_GT, - ACTIONS(3004), 1, - anon_sym_EQ, - ACTIONS(3014), 1, - anon_sym_in, - ACTIONS(3016), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, - ACTIONS(3022), 1, - sym_not_in, - ACTIONS(3024), 1, - anon_sym_when, - ACTIONS(3026), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2996), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3006), 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(3008), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2992), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3010), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3012), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -260706,81 +259027,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [67124] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2994), 1, - anon_sym_PIPE, - ACTIONS(3002), 1, - anon_sym_EQ_GT, - ACTIONS(3004), 1, - anon_sym_EQ, - ACTIONS(3014), 1, anon_sym_in, - ACTIONS(3016), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3022), 1, - sym_not_in, - ACTIONS(3024), 1, - anon_sym_when, - ACTIONS(3026), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + anon_sym_DOT, + anon_sym_do, + [65324] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2996), 2, + aux_sym_terminator_token1, + ACTIONS(2599), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(1873), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3006), 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(3008), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2992), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3010), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3012), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -260790,69 +259091,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [67232] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2994), 1, - anon_sym_PIPE, - ACTIONS(3002), 1, - anon_sym_EQ_GT, - ACTIONS(3004), 1, - anon_sym_EQ, - ACTIONS(3014), 1, anon_sym_in, - ACTIONS(3016), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3022), 1, - sym_not_in, - ACTIONS(3026), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + anon_sym_DOT, + anon_sym_do, + [65392] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2996), 2, + aux_sym_terminator_token1, + ACTIONS(2601), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2603), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3006), 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(3008), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2992), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3010), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3012), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -260862,29 +259155,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [67338] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [65460] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2403), 3, + ACTIONS(2425), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2405), 52, + ACTIONS(2427), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -260937,26 +259231,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [67406] = 4, + [65528] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2718), 3, + ACTIONS(2735), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2720), 52, + ACTIONS(2737), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -260999,20 +259292,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [67474] = 4, + [65596] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2407), 3, + ACTIONS(2413), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2409), 52, + ACTIONS(2415), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -261065,25 +259359,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [67542] = 4, + [65664] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2511), 4, + aux_sym_terminator_token1, + ACTIONS(2417), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2513), 52, - anon_sym_SEMI, + ACTIONS(2419), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -261126,28 +259421,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [67610] = 4, + [65732] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2563), 4, + aux_sym_terminator_token1, + ACTIONS(2517), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2565), 52, - anon_sym_SEMI, + ACTIONS(2519), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -261190,21 +259485,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [67678] = 4, + [65800] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2407), 3, + ACTIONS(2521), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2409), 52, + ACTIONS(2523), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -261257,25 +259551,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [67746] = 4, + [65868] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2567), 4, + aux_sym_terminator_token1, + ACTIONS(2525), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2569), 52, - anon_sym_SEMI, + ACTIONS(2527), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -261318,21 +259613,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [67814] = 4, + [65936] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2145), 3, + ACTIONS(2529), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2147), 52, + ACTIONS(2531), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -261385,21 +259679,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [67882] = 6, + [66004] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 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(2409), 51, + ACTIONS(2529), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2531), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -261450,19 +259741,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [67954] = 4, + [66072] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(2529), 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(2359), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2361), 52, + ACTIONS(2531), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -261513,20 +259808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [68022] = 4, + [66144] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2459), 3, + ACTIONS(2653), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2461), 52, + ACTIONS(2655), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -261579,18 +259873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [68090] = 4, + [66212] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2411), 3, + ACTIONS(2657), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2413), 52, + ACTIONS(2659), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -261643,26 +259937,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [68158] = 4, + [66280] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2217), 3, + ACTIONS(2739), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2219), 52, + ACTIONS(2741), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -261705,116 +259998,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [68226] = 4, + [66348] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2743), 3, - sym_newline_before_do, - sym_not_in, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(2745), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3000), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3004), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3012), 1, anon_sym_when, + ACTIONS(3014), 1, anon_sym_COLON_COLON, + ACTIONS(3016), 1, anon_sym_EQ_GT, + ACTIONS(3018), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3028), 1, anon_sym_in, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3034), 1, anon_sym_STAR_STAR, + ACTIONS(3036), 1, anon_sym_DOT, - anon_sym_do, - [68294] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - STATE(2426), 1, - aux_sym_keywords_repeat1, + ACTIONS(3038), 1, + sym_not_in, + STATE(2460), 1, + aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2736), 4, + ACTIONS(2409), 2, sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2738), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3002), 2, anon_sym_SLASH, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3010), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3020), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3022), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2411), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(2998), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3024), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3006), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3026), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -261824,34 +260088,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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [68366] = 6, + [66462] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(2359), 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(2361), 51, + ACTIONS(2421), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2423), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -261902,19 +260150,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [68438] = 4, + [66530] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2673), 3, + ACTIONS(2529), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2675), 52, + ACTIONS(2531), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -261967,25 +260216,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [68506] = 4, + [66598] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2571), 4, + aux_sym_terminator_token1, + ACTIONS(2533), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2573), 52, - anon_sym_SEMI, + ACTIONS(2535), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -262028,28 +260278,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [68574] = 4, + [66666] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2575), 4, + aux_sym_terminator_token1, + ACTIONS(2537), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2577), 52, - anon_sym_SEMI, + ACTIONS(2539), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -262092,51 +260342,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [68642] = 4, + [66734] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2579), 4, - sym_newline_before_do, - sym_not_in, + ACTIONS(2595), 1, aux_sym_terminator_token1, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(2581), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3042), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + ACTIONS(3050), 1, anon_sym_COLON_COLON, + ACTIONS(3052), 1, anon_sym_EQ_GT, + ACTIONS(3054), 1, anon_sym_EQ, + ACTIONS(3064), 1, + anon_sym_in, + ACTIONS(3066), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3072), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3056), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3058), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3040), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3060), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3062), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -262146,31 +260416,29 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [68710] = 4, + ACTIONS(2597), 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, + [66840] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 4, + ACTIONS(2743), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1827), 52, + ACTIONS(2745), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -262223,26 +260491,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [68778] = 4, + [66908] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3074), 1, + anon_sym_COMMA, + STATE(2332), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2583), 4, + aux_sym_terminator_token1, + ACTIONS(2601), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2585), 52, - anon_sym_SEMI, + ACTIONS(2603), 50, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -262284,30 +260555,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [68846] = 4, + [66980] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3077), 1, + anon_sym_COMMA, + STATE(2333), 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(2423), 3, + ACTIONS(2694), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2425), 52, + ACTIONS(2696), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -262351,18 +260623,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [68914] = 4, + [67052] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2587), 4, + ACTIONS(2747), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2589), 52, + ACTIONS(2749), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -262415,18 +260687,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [68982] = 4, + [67120] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2591), 4, + ACTIONS(2751), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2593), 52, + ACTIONS(2753), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -262479,18 +260751,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [69050] = 4, + [67188] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2359), 3, + ACTIONS(2571), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2361), 52, + ACTIONS(2573), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -262543,25 +260815,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [69118] = 4, + [67256] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3080), 1, + anon_sym_LPAREN, + STATE(2817), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2595), 4, + ACTIONS(2161), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2597), 52, + ACTIONS(2163), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -262604,21 +260879,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [69186] = 4, + [67328] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 4, + ACTIONS(2297), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1835), 52, + ACTIONS(2299), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -262671,18 +260945,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [69254] = 4, + [67396] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2599), 4, + ACTIONS(2301), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2601), 52, + ACTIONS(2303), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -262735,26 +261009,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [69322] = 4, + [67464] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2269), 3, + ACTIONS(2755), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 52, + ACTIONS(2757), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -262797,28 +261070,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [69390] = 4, + [67532] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2273), 3, + ACTIONS(2305), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 52, + ACTIONS(2307), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -262861,30 +261134,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [69458] = 6, + [67600] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3032), 1, - anon_sym_COMMA, - STATE(2365), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2730), 4, + ACTIONS(2289), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2732), 50, + ACTIONS(2291), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -262929,44 +261201,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [69530] = 12, + [67668] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3016), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2293), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2996), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 39, + anon_sym_LBRACK2, + ACTIONS(2295), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -262996,107 +261253,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [69614] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3014), 1, - anon_sym_in, - ACTIONS(3016), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, - ACTIONS(3022), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2996), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3012), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [69704] = 7, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [67736] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2309), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 51, + anon_sym_LBRACK2, + ACTIONS(2311), 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_DOT_DOT, anon_sym_PLUS, @@ -263138,45 +261325,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [69778] = 10, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [67804] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2759), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2996), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 41, + anon_sym_LBRACK2, + ACTIONS(2761), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -263208,34 +261383,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [69858] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [67872] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2313), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2996), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2409), 49, + anon_sym_LBRACK2, + ACTIONS(2315), 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_DOT_DOT, anon_sym_PLUS, @@ -263276,70 +261452,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [69934] = 21, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [67940] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3002), 1, - anon_sym_EQ_GT, - ACTIONS(3004), 1, - anon_sym_EQ, - ACTIONS(3014), 1, - anon_sym_in, - ACTIONS(3016), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, - ACTIONS(3022), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2996), 2, + ACTIONS(2317), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2319), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3006), 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(3008), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2992), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3010), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3012), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -263349,76 +261508,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [70036] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3004), 1, - anon_sym_EQ, - ACTIONS(3014), 1, anon_sym_in, - ACTIONS(3016), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3022), 1, - sym_not_in, - ACTIONS(3), 2, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [68008] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2546), 1, + sym_do_block, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2996), 2, + aux_sym_terminator_token1, + ACTIONS(2167), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2169), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3006), 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(3008), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2992), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3010), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3012), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -263428,158 +261573,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [70136] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3014), 1, anon_sym_in, - ACTIONS(3016), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, - ACTIONS(3022), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2996), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3008), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2992), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3010), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3012), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [70232] = 17, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [68078] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3014), 1, - anon_sym_in, - ACTIONS(3016), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, - ACTIONS(3022), 1, - sym_not_in, - ACTIONS(3), 2, + STATE(2547), 1, + sym_do_block, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2996), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 4, + aux_sym_terminator_token1, + ACTIONS(2173), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2175), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3010), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3012), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 20, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -263592,52 +261622,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [70326] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3014), 1, - anon_sym_in, - ACTIONS(3016), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, - ACTIONS(3022), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2996), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2992), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_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(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3012), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -263647,10 +261638,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 25, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [68148] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2711), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2713), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -263668,52 +261691,53 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70418] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3014), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3016), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, - ACTIONS(3022), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2996), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 38, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [68216] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2567), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2569), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -263742,47 +261766,42 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70506] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3018), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [68284] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2723), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2996), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 40, + anon_sym_LBRACK2, + ACTIONS(2725), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -263813,47 +261832,40 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70588] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3018), 1, anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [68352] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2277), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2996), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 40, + anon_sym_LBRACK2, + ACTIONS(2279), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -263884,31 +261896,36 @@ static const uint16_t ts_small_parse_table[] = { 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, - [70670] = 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [68420] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2277), 3, + ACTIONS(2281), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2279), 52, + ACTIONS(2283), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -263951,20 +261968,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [70738] = 4, + [68488] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2603), 4, + ACTIONS(2321), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2605), 52, + ACTIONS(2323), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -264017,18 +262035,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [70806] = 4, + [68556] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2607), 4, + ACTIONS(2325), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2609), 52, + ACTIONS(2327), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -264081,25 +262099,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [70874] = 4, + [68624] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2419), 4, + aux_sym_terminator_token1, + ACTIONS(2649), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2421), 52, - anon_sym_SEMI, + 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_DOT_DOT, anon_sym_PLUS, @@ -264142,24 +262161,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [70942] = 6, + [68692] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, + ACTIONS(456), 1, + anon_sym_do, + ACTIONS(3082), 1, + sym_newline_before_do, + STATE(3979), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 2, + ACTIONS(2167), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2291), 52, + anon_sym_LBRACK2, + ACTIONS(2169), 49, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -264206,30 +262229,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [71014] = 6, + anon_sym_DOT, + [68766] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 2, + ACTIONS(2329), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2361), 52, + anon_sym_LBRACK2, + ACTIONS(2331), 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_DOT_DOT, anon_sym_PLUS, @@ -264272,30 +262291,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [71086] = 6, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [68834] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2333), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 52, + anon_sym_LBRACK2, + ACTIONS(2335), 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_DOT_DOT, anon_sym_PLUS, @@ -264338,31 +262355,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [71158] = 5, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [68902] = 4, ACTIONS(5), 1, sym_comment, - STATE(2557), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2151), 3, + ACTIONS(2337), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2153), 51, - anon_sym_LPAREN, + ACTIONS(2339), 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_DOT_DOT, anon_sym_PLUS, @@ -264408,26 +262422,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [71228] = 4, + [68970] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2281), 3, + ACTIONS(2341), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2283), 52, + ACTIONS(2343), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -264470,28 +262483,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [71296] = 4, + [69038] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2285), 3, + ACTIONS(1849), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2287), 52, + ACTIONS(1851), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -264534,28 +262547,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [71364] = 4, + [69106] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2289), 3, + ACTIONS(2345), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 52, + ACTIONS(2347), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -264598,28 +262611,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [71432] = 5, + [69174] = 4, ACTIONS(5), 1, sym_comment, - STATE(2558), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2155), 3, + ACTIONS(1857), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2157), 51, - anon_sym_LPAREN, + ACTIONS(1859), 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_DOT_DOT, anon_sym_PLUS, @@ -264665,26 +262678,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [71502] = 4, + [69242] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2407), 3, + ACTIONS(2715), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 52, + ACTIONS(2717), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -264727,24 +262739,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [71570] = 6, + [69310] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(3084), 1, anon_sym_COMMA, - STATE(2409), 1, - aux_sym_items_with_trailing_separator_repeat1, + STATE(2419), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2687), 3, + ACTIONS(2707), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2689), 50, + ACTIONS(2709), 50, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -264795,25 +262808,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [71642] = 4, + [69382] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2705), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 4, + ACTIONS(2701), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1843), 52, + ACTIONS(2703), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -264859,30 +262873,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [71710] = 4, + [69452] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3066), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2289), 3, - sym_newline_before_do, + ACTIONS(2595), 2, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2291), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym_terminator_token1, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 39, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -264912,36 +262940,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [69536] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3064), 1, + anon_sym_in, + ACTIONS(3066), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3072), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [71778] = 4, + ACTIONS(3062), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [69626] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2435), 4, - sym_newline_before_do, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2437), 52, + ACTIONS(2597), 51, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -264983,33 +263082,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [71846] = 6, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [69700] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3028), 1, + ACTIONS(2922), 1, anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(2289), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3), 3, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2291), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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, + [69780] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, + aux_sym_terminator_token1, + ACTIONS(3044), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2597), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -265050,33 +263220,513 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [69856] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3052), 1, + anon_sym_EQ_GT, + ACTIONS(3054), 1, + anon_sym_EQ, + ACTIONS(3064), 1, + anon_sym_in, + ACTIONS(3066), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, anon_sym_STAR_STAR, - anon_sym_do, - [71918] = 4, + ACTIONS(3072), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3056), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3058), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3040), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3060), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3062), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [69958] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3054), 1, + anon_sym_EQ, + ACTIONS(3064), 1, + anon_sym_in, + ACTIONS(3066), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3072), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3056), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3058), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3040), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3060), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3062), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [70058] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2289), 3, - sym_newline_before_do, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3064), 1, + anon_sym_in, + ACTIONS(3066), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3072), 1, sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3058), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3040), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3060), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3062), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [70154] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(2291), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3064), 1, + anon_sym_in, + ACTIONS(3066), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3072), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3040), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3060), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3062), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [70248] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3064), 1, + anon_sym_in, + ACTIONS(3066), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3072), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3044), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3040), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3062), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [70340] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3064), 1, + anon_sym_in, + ACTIONS(3066), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3072), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3046), 6, anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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, + [70428] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, + aux_sym_terminator_token1, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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, @@ -265107,36 +263757,101 @@ static const uint16_t ts_small_parse_table[] = { 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, + [70510] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3068), 1, anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, + aux_sym_terminator_token1, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [71986] = 4, + ACTIONS(2597), 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, + [70592] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2341), 3, + ACTIONS(2349), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2343), 52, + ACTIONS(2351), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -265179,28 +263894,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [72054] = 4, + [70660] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2345), 3, + ACTIONS(2353), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2347), 52, + ACTIONS(2355), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -265243,20 +263958,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [72122] = 4, + [70728] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2443), 4, + ACTIONS(2357), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2445), 52, + ACTIONS(2359), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -265309,26 +264025,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [72190] = 4, + [70796] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2427), 3, + ACTIONS(2361), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2429), 52, + ACTIONS(2363), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -265371,112 +264086,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [72258] = 25, + [70864] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2751), 1, - aux_sym_terminator_token1, - ACTIONS(2862), 1, + ACTIONS(2922), 1, anon_sym_DOT, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(2994), 1, - anon_sym_PIPE, - ACTIONS(3002), 1, - anon_sym_EQ_GT, - ACTIONS(3004), 1, - anon_sym_EQ, - ACTIONS(3014), 1, - anon_sym_in, - ACTIONS(3016), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, - ACTIONS(3022), 1, - sym_not_in, - ACTIONS(3024), 1, - anon_sym_when, - ACTIONS(3026), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2996), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3037), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3006), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3008), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2992), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3010), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2753), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3012), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [72368] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2447), 4, - sym_newline_before_do, + ACTIONS(2529), 2, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2449), 52, + ACTIONS(2531), 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_DOT_DOT, anon_sym_PLUS, @@ -265519,32 +264150,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [72436] = 6, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [70936] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3039), 1, - anon_sym_COMMA, - STATE(2409), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 3, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2677), 3, - sym_newline_before_do, + ACTIONS(2559), 2, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2679), 50, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym_terminator_token1, + ACTIONS(2561), 52, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -265586,27 +264216,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [72508] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [71008] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 4, - sym_newline_before_do, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1847), 52, + ACTIONS(2597), 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_DOT_DOT, anon_sym_PLUS, @@ -265649,21 +264282,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [72576] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [71080] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 4, + ACTIONS(2365), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1851), 52, + ACTIONS(2367), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -265716,113 +264351,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [72644] = 27, + [71148] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3043), 1, - anon_sym_PIPE, - ACTIONS(3047), 1, + ACTIONS(3086), 1, anon_sym_COMMA, - ACTIONS(3055), 1, - anon_sym_when, - ACTIONS(3057), 1, - anon_sym_COLON_COLON, - ACTIONS(3059), 1, - anon_sym_EQ_GT, - ACTIONS(3061), 1, - anon_sym_EQ, - ACTIONS(3071), 1, - anon_sym_in, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - sym_not_in, - STATE(2468), 1, + STATE(2333), 1, aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2293), 2, - sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3053), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3063), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3065), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2295), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3041), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3067), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3069), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [72758] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2463), 4, + ACTIONS(2679), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2465), 52, - anon_sym_SEMI, + ACTIONS(2681), 50, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -265864,31 +264415,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [72826] = 6, + [71220] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3083), 1, - anon_sym_COMMA, - STATE(2426), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 4, + aux_sym_terminator_token1, + ACTIONS(2613), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 50, - anon_sym_SEMI, + ACTIONS(2615), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -265930,31 +264479,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [72898] = 6, + [71288] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3086), 1, - anon_sym_COMMA, - STATE(2427), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2687), 4, + aux_sym_terminator_token1, + ACTIONS(2501), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2689), 50, - anon_sym_SEMI, + ACTIONS(2503), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -265996,21 +264543,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [72970] = 4, + [71356] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2375), 3, + ACTIONS(2629), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2377), 52, + ACTIONS(2631), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -266063,18 +264609,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [73038] = 4, + [71424] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2431), 3, + ACTIONS(2633), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2433), 52, + ACTIONS(2635), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -266127,26 +264673,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [73106] = 4, + [71492] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2722), 3, + ACTIONS(2719), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2724), 52, + ACTIONS(2721), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -266189,27 +264734,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [73174] = 7, + [71560] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(596), 1, - anon_sym_do, - ACTIONS(3089), 1, - sym_newline_before_do, - STATE(3717), 1, - sym_do_block, - ACTIONS(2151), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2153), 50, - anon_sym_LPAREN, + ACTIONS(2433), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2435), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -266256,25 +264799,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [73248] = 7, + anon_sym_do, + [71628] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(596), 1, + ACTIONS(664), 1, anon_sym_do, - ACTIONS(3091), 1, + ACTIONS(3088), 1, sym_newline_before_do, - STATE(3718), 1, + STATE(3993), 1, sym_do_block, - ACTIONS(2155), 2, + ACTIONS(2167), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2157), 50, + ACTIONS(2169), 50, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -266325,22 +264868,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [73322] = 4, + [71702] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(664), 1, + anon_sym_do, + ACTIONS(3090), 1, + sym_newline_before_do, + STATE(4009), 1, + sym_do_block, + ACTIONS(2173), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2379), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2381), 52, + ACTIONS(2175), 50, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -266387,20 +264933,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [73390] = 4, + [71776] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2383), 3, + ACTIONS(2429), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2385), 52, + ACTIONS(2431), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -266453,18 +264999,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [73458] = 4, + [71844] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2439), 3, + ACTIONS(2579), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2441), 52, + ACTIONS(2581), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -266517,26 +265063,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [73526] = 4, + [71912] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2387), 3, + ACTIONS(1861), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2389), 52, + ACTIONS(1863), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -266579,27 +265124,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [73594] = 4, + [71980] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2409), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3094), 1, + anon_sym_PIPE, + ACTIONS(3098), 1, + anon_sym_COMMA, + ACTIONS(3106), 1, + anon_sym_when, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(3110), 1, + anon_sym_EQ_GT, + ACTIONS(3112), 1, + anon_sym_EQ, + ACTIONS(3122), 1, + anon_sym_in, + ACTIONS(3124), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3126), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3128), 1, + anon_sym_STAR_STAR, + ACTIONS(3130), 1, + sym_not_in, + STATE(2390), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3104), 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(3114), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3116), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2411), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_do, + ACTIONS(3092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3118), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3100), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3120), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [72094] = 5, ACTIONS(5), 1, sym_comment, + STATE(2827), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2543), 4, + ACTIONS(2167), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2545), 52, + ACTIONS(2169), 50, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -266642,21 +265277,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [73662] = 4, + [72164] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2934), 1, + anon_sym_LPAREN, + STATE(2183), 1, + sym_call_arguments_with_parentheses, + ACTIONS(2161), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2523), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2525), 52, + ACTIONS(2163), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -266708,19 +265345,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [73730] = 4, + [72236] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2527), 3, + ACTIONS(2661), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2529), 52, + ACTIONS(2664), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -266773,25 +265409,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [73798] = 4, + [72304] = 5, ACTIONS(5), 1, sym_comment, + STATE(2828), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2367), 4, + ACTIONS(2173), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2369), 52, + ACTIONS(2175), 50, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -266834,32 +265472,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [73866] = 6, + [72374] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3093), 1, - anon_sym_COMMA, - STATE(2449), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2730), 3, + ACTIONS(1865), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2732), 50, + ACTIONS(1867), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -266901,20 +265535,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [73938] = 4, + [72442] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2710), 3, + ACTIONS(2409), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2712), 52, + ACTIONS(2411), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -266967,26 +265602,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [74006] = 7, + [72510] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(502), 1, - anon_sym_do, - ACTIONS(3095), 1, - sym_newline_before_do, - STATE(3959), 1, - sym_do_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2155), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2667), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2157), 49, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2669), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -267034,18 +265665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [74080] = 4, + anon_sym_do, + [72578] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2371), 4, + ACTIONS(2273), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2373), 52, + ACTIONS(2275), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -267098,26 +265730,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [74148] = 4, + [72646] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2475), 3, + ACTIONS(2369), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2477), 52, + ACTIONS(2371), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -267160,20 +265791,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [74216] = 4, + [72714] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2535), 3, + ACTIONS(2671), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2537), 52, + ACTIONS(2673), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -267226,28 +265858,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [74284] = 6, + [72782] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3097), 1, - anon_sym_LPAREN, - STATE(2831), 1, - sym_call_arguments_with_parentheses, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2145), 5, + ACTIONS(2373), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2147), 49, + ACTIONS(2375), 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_DOT_DOT, anon_sym_PLUS, @@ -267290,28 +265919,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [74356] = 4, + [72850] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2359), 3, + ACTIONS(2377), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 52, + ACTIONS(2379), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -267354,31 +265983,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [74424] = 6, + [72918] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3093), 1, - anon_sym_COMMA, - STATE(2490), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2736), 3, + ACTIONS(2381), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2738), 50, + ACTIONS(2383), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -267420,28 +266047,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [74496] = 4, + [72986] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2479), 3, + ACTIONS(2385), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2481), 52, + ACTIONS(2387), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -267484,113 +266111,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [74564] = 25, + [73054] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2755), 1, - aux_sym_terminator_token1, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2994), 1, - anon_sym_PIPE, - ACTIONS(3002), 1, - anon_sym_EQ_GT, - ACTIONS(3004), 1, - anon_sym_EQ, - ACTIONS(3014), 1, - anon_sym_in, - ACTIONS(3016), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3018), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3020), 1, - anon_sym_STAR_STAR, - ACTIONS(3022), 1, - sym_not_in, - ACTIONS(3024), 1, - anon_sym_when, - ACTIONS(3026), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2996), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3000), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3037), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3006), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3008), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2992), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3010), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2998), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2757), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3012), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [74674] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2479), 3, + ACTIONS(2389), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2481), 52, + ACTIONS(2391), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -267633,27 +266175,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [74742] = 4, + [73122] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2611), 4, + aux_sym_terminator_token1, + ACTIONS(2637), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 52, - anon_sym_SEMI, + 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_DOT_DOT, anon_sym_PLUS, @@ -267696,29 +266240,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [74810] = 4, + [73190] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3084), 1, + anon_sym_COMMA, + STATE(2332), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2747), 4, + aux_sym_terminator_token1, + ACTIONS(2685), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2749), 52, - anon_sym_SEMI, + ACTIONS(2687), 50, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -267760,21 +266306,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [74878] = 4, + [73262] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2363), 3, + ACTIONS(2625), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2365), 52, + ACTIONS(2627), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -267827,26 +266372,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [74946] = 4, + [73330] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3132), 1, + anon_sym_COMMA, + STATE(2421), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2617), 4, + ACTIONS(2601), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2619), 52, + ACTIONS(2603), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -267891,18 +266438,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [75014] = 4, + [73402] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 4, + ACTIONS(2393), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 52, + ACTIONS(2395), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -267955,18 +266502,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [75082] = 4, + [73470] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 4, + ACTIONS(2397), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 52, + ACTIONS(2399), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -268019,26 +266566,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [75150] = 4, + [73538] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2483), 3, + ACTIONS(2401), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2485), 52, + ACTIONS(2403), 52, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -268081,28 +266627,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [75218] = 4, + [73606] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3135), 1, + anon_sym_COMMA, + STATE(2425), 1, + aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2531), 4, + ACTIONS(2694), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2533), 52, + ACTIONS(2696), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -268147,18 +266696,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [75286] = 4, + [73678] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2621), 4, + ACTIONS(2405), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2623), 52, + ACTIONS(2407), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -268211,84 +266760,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [75354] = 27, + [73746] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2293), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2549), 3, sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3101), 1, + ACTIONS(2551), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3105), 1, + anon_sym_SLASH, anon_sym_COMMA, - ACTIONS(3113), 1, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3115), 1, anon_sym_COLON_COLON, - ACTIONS(3117), 1, anon_sym_EQ_GT, - ACTIONS(3119), 1, anon_sym_EQ, - ACTIONS(3129), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3131), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3137), 1, + anon_sym_DOT, + anon_sym_do, + [73814] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2583), 3, + sym_newline_before_do, sym_not_in, - STATE(2421), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3103), 2, + anon_sym_LBRACK2, + ACTIONS(2585), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3109), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 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(3121), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3123), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2295), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_do, - ACTIONS(3099), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3125), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3107), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3127), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -268298,18 +266876,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [75468] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73882] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2293), 3, + ACTIONS(2641), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2295), 52, + ACTIONS(2643), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -268362,25 +266952,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [75536] = 4, + [73950] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2625), 4, + aux_sym_terminator_token1, + ACTIONS(2587), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2627), 52, - anon_sym_SEMI, + ACTIONS(2589), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -268423,28 +267014,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [75604] = 4, + [74018] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2629), 4, + aux_sym_terminator_token1, + ACTIONS(2221), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2631), 52, - anon_sym_SEMI, + ACTIONS(2223), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -268487,28 +267078,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [75672] = 4, + [74086] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2467), 4, + aux_sym_terminator_token1, + ACTIONS(2675), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2469), 52, - anon_sym_SEMI, + ACTIONS(2677), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -268551,21 +267142,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [75740] = 4, + [74154] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2415), 4, + ACTIONS(2285), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2417), 52, + ACTIONS(2287), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -268618,28 +267208,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [75808] = 6, + [74222] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3139), 1, - anon_sym_COMMA, - STATE(2427), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2677), 4, + aux_sym_terminator_token1, + ACTIONS(2559), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2679), 50, - anon_sym_SEMI, + ACTIONS(2561), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -268681,26 +267270,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [75880] = 5, + [74290] = 4, ACTIONS(5), 1, sym_comment, - STATE(2841), 1, - sym_do_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2151), 5, + aux_sym_terminator_token1, + ACTIONS(2559), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2153), 50, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2561), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268749,23 +267336,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [75950] = 5, + [74358] = 6, ACTIONS(5), 1, sym_comment, - STATE(2842), 1, - sym_do_block, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2155), 5, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(2559), 2, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2157), 50, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2561), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268812,27 +267401,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [76020] = 4, + [74430] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2633), 4, + aux_sym_terminator_token1, + ACTIONS(2559), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2635), 52, - anon_sym_SEMI, + ACTIONS(2561), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -268875,21 +267464,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [76088] = 4, + [74498] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2487), 3, + ACTIONS(2563), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2489), 52, + ACTIONS(2565), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -268942,48 +267530,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [76156] = 4, + [74566] = 24, 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, + ACTIONS(2595), 1, aux_sym_terminator_token1, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(2639), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3042), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + ACTIONS(3050), 1, anon_sym_COLON_COLON, + ACTIONS(3052), 1, anon_sym_EQ_GT, + ACTIONS(3054), 1, anon_sym_EQ, + ACTIONS(3064), 1, + anon_sym_in, + ACTIONS(3066), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3072), 1, + sym_not_in, + ACTIONS(3138), 1, + anon_sym_when, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3056), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3058), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3040), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3060), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3062), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -268993,38 +267614,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [74674] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3042), 1, + anon_sym_PIPE, + ACTIONS(3050), 1, + anon_sym_COLON_COLON, + ACTIONS(3052), 1, + anon_sym_EQ_GT, + ACTIONS(3054), 1, + anon_sym_EQ, + ACTIONS(3064), 1, anon_sym_in, + ACTIONS(3066), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3072), 1, + sym_not_in, + ACTIONS(3138), 1, + anon_sym_when, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3056), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3058), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3040), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3060), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [76224] = 4, + ACTIONS(2597), 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(3062), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [74782] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(456), 1, + anon_sym_do, + ACTIONS(3140), 1, + sym_newline_before_do, + STATE(3987), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2641), 4, - sym_newline_before_do, + ACTIONS(2173), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2643), 52, + ACTIONS(2175), 49, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -269067,21 +267764,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [76292] = 4, + [74856] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2491), 3, + ACTIONS(2509), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2493), 52, + ACTIONS(2511), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -269134,25 +267829,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [76360] = 4, + [74924] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2645), 4, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 2, sym_newline_before_do, sym_not_in, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2647), 52, - anon_sym_SEMI, + ACTIONS(2597), 51, 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_DOT_DOT, anon_sym_PLUS, @@ -269195,28 +267894,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_do, - [76428] = 4, + [74996] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2649), 4, + aux_sym_terminator_token1, + ACTIONS(163), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2651), 52, - anon_sym_SEMI, + ACTIONS(165), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -269259,21 +267957,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [76496] = 4, + [75064] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 4, + ACTIONS(1845), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2377), 52, + ACTIONS(1847), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -269326,25 +268023,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [76564] = 4, + [75132] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2653), 4, + aux_sym_terminator_token1, + ACTIONS(2513), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2655), 52, - anon_sym_SEMI, + ACTIONS(2515), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -269387,51 +268085,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [76632] = 4, + [75200] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2471), 4, - sym_newline_before_do, - sym_not_in, + ACTIONS(2767), 1, aux_sym_terminator_token1, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(2473), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3042), 1, anon_sym_PIPE, + ACTIONS(3050), 1, + anon_sym_COLON_COLON, + ACTIONS(3052), 1, + anon_sym_EQ_GT, + ACTIONS(3054), 1, + anon_sym_EQ, + ACTIONS(3064), 1, + anon_sym_in, + ACTIONS(3066), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3072), 1, + sym_not_in, + ACTIONS(3138), 1, + anon_sym_when, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3044), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3048), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3142), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3056), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3058), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3040), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3060), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2769), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3062), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -269441,35 +268172,22 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [76700] = 5, + [75310] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2261), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2257), 4, + aux_sym_terminator_token1, + ACTIONS(2605), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2259), 51, - anon_sym_SEMI, + ACTIONS(2607), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269516,28 +268234,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [76770] = 4, + [75378] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2657), 4, + aux_sym_terminator_token1, + ACTIONS(2481), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2659), 52, - anon_sym_SEMI, + ACTIONS(2483), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -269580,28 +268298,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [76838] = 4, + [75446] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2539), 4, + aux_sym_terminator_token1, + ACTIONS(2485), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2541), 52, - anon_sym_SEMI, + ACTIONS(2487), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -269644,28 +268362,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [76906] = 4, + [75514] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2661), 4, + aux_sym_terminator_token1, + ACTIONS(2489), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2663), 52, - anon_sym_SEMI, + ACTIONS(2491), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -269708,21 +268426,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [76974] = 4, + [75582] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2355), 3, + ACTIONS(2493), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2357), 52, + ACTIONS(2495), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -269775,22 +268492,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [77042] = 4, + [75650] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2992), 1, + anon_sym_COMMA, + STATE(2301), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2707), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2709), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [75722] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3144), 1, + anon_sym_LPAREN, + STATE(2542), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2349), 3, + ACTIONS(2161), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1857), 52, + ACTIONS(2163), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269837,27 +268621,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [77110] = 4, + [75794] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2665), 4, + aux_sym_terminator_token1, + ACTIONS(2609), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2667), 52, - anon_sym_SEMI, + 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_DOT_DOT, anon_sym_PLUS, @@ -269900,21 +268686,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [77178] = 4, + [75862] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2351), 3, + ACTIONS(2591), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2353), 52, + ACTIONS(2593), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -269967,26 +268752,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [77246] = 5, + [75930] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2267), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2263), 4, + ACTIONS(1853), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2265), 51, + ACTIONS(1855), 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_DOT_DOT, anon_sym_PLUS, @@ -270032,29 +268816,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [77316] = 6, + [75998] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3141), 1, - anon_sym_COMMA, - STATE(2490), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2351), 3, + ACTIONS(2413), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 50, + ACTIONS(2415), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270096,20 +268877,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [77388] = 4, + [76066] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2669), 4, + ACTIONS(2417), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2671), 52, + ACTIONS(2419), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -270162,26 +268944,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [77456] = 4, + [76134] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3146), 1, + anon_sym_COMMA, + STATE(2425), 1, + aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 4, + ACTIONS(2679), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1839), 52, + ACTIONS(2681), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270226,81 +269010,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [77524] = 25, + [76206] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2259), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2261), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2838), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(2840), 1, anon_sym_COLON_COLON, - ACTIONS(2842), 1, anon_sym_EQ_GT, - ACTIONS(2844), 1, anon_sym_EQ, - ACTIONS(2854), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(2856), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2862), 1, anon_sym_DOT, - ACTIONS(2864), 1, + anon_sym_do, + [76274] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2763), 1, + aux_sym_terminator_token1, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(2866), 1, + ACTIONS(3042), 1, + anon_sym_PIPE, + ACTIONS(3050), 1, + anon_sym_COLON_COLON, + ACTIONS(3052), 1, + anon_sym_EQ_GT, + ACTIONS(3054), 1, + anon_sym_EQ, + ACTIONS(3064), 1, + anon_sym_in, + ACTIONS(3066), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3072), 1, sym_not_in, - ACTIONS(3144), 1, - aux_sym_terminator_token1, + ACTIONS(3138), 1, + anon_sym_when, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2830), 2, + ACTIONS(3044), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2834), 2, + ACTIONS(3048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2836), 2, + ACTIONS(3142), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2846), 3, + ACTIONS(3056), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2848), 3, + ACTIONS(3058), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2826), 4, + ACTIONS(3040), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2850), 5, + ACTIONS(3060), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2832), 6, + ACTIONS(3046), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3146), 6, + ACTIONS(2765), 7, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(2852), 9, + ACTIONS(3062), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -270310,17 +269159,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [77633] = 4, + [76384] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2435), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2437), 52, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2597), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -270329,7 +269179,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270373,21 +269222,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [77700] = 4, + anon_sym_do, + [76452] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2443), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2421), 4, + sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(2423), 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_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [76520] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2425), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2445), 52, + anon_sym_LBRACK2, + ACTIONS(2427), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -270435,18 +269348,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [77767] = 4, + anon_sym_do, + [76588] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2447), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2449), 52, + ACTIONS(2555), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2557), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -270455,7 +269371,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270499,17 +269414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [77834] = 4, + anon_sym_do, + [76656] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2463), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2465), 52, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2597), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -270518,7 +269435,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270562,21 +269478,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [77901] = 4, + anon_sym_do, + [76724] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2467), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2429), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2469), 52, + anon_sym_LBRACK2, + ACTIONS(2431), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -270624,18 +269540,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [77968] = 4, + anon_sym_do, + [76792] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2471), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2433), 4, + sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, + ACTIONS(2435), 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_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [76860] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2473), 52, + ACTIONS(2575), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2577), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -270644,7 +269627,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270688,17 +269670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78035] = 4, + anon_sym_do, + [76928] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2495), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2497), 52, + ACTIONS(2201), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2203), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -270707,7 +269691,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270751,17 +269734,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78102] = 4, + anon_sym_do, + [76996] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2499), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2501), 52, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2597), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -270770,7 +269755,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270814,17 +269798,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78169] = 4, + anon_sym_do, + [77064] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2511), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2513), 52, + ACTIONS(2497), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2499), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -270833,7 +269819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270877,17 +269862,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78236] = 4, + anon_sym_do, + [77132] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(2531), 2, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3042), 1, + anon_sym_PIPE, + ACTIONS(3052), 1, + anon_sym_EQ_GT, + ACTIONS(3054), 1, + anon_sym_EQ, + ACTIONS(3064), 1, + anon_sym_in, + ACTIONS(3066), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3068), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3070), 1, + anon_sym_STAR_STAR, + ACTIONS(3072), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3044), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3048), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3056), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3058), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3040), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3060), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3046), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3062), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [77236] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2888), 1, + anon_sym_PIPE, + ACTIONS(2898), 1, + anon_sym_when, + ACTIONS(2900), 1, + anon_sym_COLON_COLON, + ACTIONS(2902), 1, + anon_sym_EQ_GT, + ACTIONS(2904), 1, + anon_sym_EQ, + ACTIONS(2914), 1, + anon_sym_in, + ACTIONS(2916), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, + ACTIONS(3148), 1, + aux_sym_terminator_token1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2890), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2896), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2906), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2908), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2886), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2910), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3150), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2912), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [77345] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2217), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2533), 52, + ACTIONS(2219), 52, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -270896,7 +270049,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270940,17 +270092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78303] = 4, + [77412] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2539), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2541), 52, + ACTIONS(1861), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1863), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -270959,7 +270112,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -271003,17 +270155,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78370] = 4, + [77479] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2543), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2545), 52, + ACTIONS(1865), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1867), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271022,7 +270175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -271066,18 +270218,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78437] = 4, + [77546] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2201), 2, + ACTIONS(2711), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2203), 52, - anon_sym_LPAREN, + ACTIONS(2713), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271086,6 +270237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -271129,18 +270281,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78504] = 4, + [77613] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2205), 2, + ACTIONS(2715), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2207), 52, - anon_sym_LPAREN, + ACTIONS(2717), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271149,6 +270300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -271192,18 +270344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78571] = 4, + [77680] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2253), 2, + ACTIONS(2719), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2255), 52, - anon_sym_LPAREN, + ACTIONS(2721), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271212,6 +270363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -271255,82 +270407,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78638] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3148), 1, - anon_sym_LPAREN, - STATE(3394), 1, - sym_call_arguments_with_parentheses, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2145), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2147), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [78709] = 4, + [77747] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2547), 2, + ACTIONS(2723), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2549), 52, + ACTIONS(2725), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271383,17 +270470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78776] = 4, + [77814] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2551), 2, + ACTIONS(2727), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2553), 52, + ACTIONS(2729), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271446,17 +270533,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78843] = 4, + [77881] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2555), 2, + ACTIONS(2731), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2557), 52, + ACTIONS(2733), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271509,17 +270596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78910] = 4, + [77948] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2559), 2, + ACTIONS(2735), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2561), 52, + ACTIONS(2737), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271572,17 +270659,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [78977] = 4, + [78015] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2563), 2, + ACTIONS(2739), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2565), 52, + ACTIONS(2741), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271635,17 +270722,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79044] = 4, + [78082] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2567), 2, + ACTIONS(2743), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2569), 52, + ACTIONS(2745), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271698,17 +270785,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79111] = 4, + [78149] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2571), 2, + ACTIONS(2747), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2573), 52, + ACTIONS(2749), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271761,17 +270848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79178] = 4, + [78216] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2575), 2, + ACTIONS(2751), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2577), 52, + ACTIONS(2753), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271824,17 +270911,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79245] = 4, + [78283] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2579), 2, + ACTIONS(2755), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2581), 52, + ACTIONS(2757), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271887,17 +270974,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79312] = 4, + [78350] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2583), 2, + ACTIONS(2759), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2585), 52, + ACTIONS(2761), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271950,17 +271037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79379] = 4, + [78417] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2587), 2, + ACTIONS(2567), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2589), 52, + ACTIONS(2569), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -272013,17 +271100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79446] = 4, + [78484] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2591), 2, + ACTIONS(2277), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2593), 52, + ACTIONS(2279), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -272076,17 +271163,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79513] = 4, + [78551] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2595), 2, + ACTIONS(2281), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2597), 52, + ACTIONS(2283), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -272139,17 +271226,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79580] = 4, + [78618] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2599), 2, + ACTIONS(2249), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2601), 52, + ACTIONS(2251), 52, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -272158,7 +271246,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -272202,27 +271289,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79647] = 4, + [78685] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2603), 2, - sym_not_in, - anon_sym_LBRACK2, + ACTIONS(3152), 1, + anon_sym_LPAREN, + STATE(2960), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2605), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2161), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2163), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -272265,17 +271353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79714] = 4, + anon_sym_do, + [78756] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2607), 2, + ACTIONS(2245), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2609), 52, + ACTIONS(2247), 52, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -272284,7 +271374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -272328,17 +271417,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79781] = 4, + [78823] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2213), 2, + ACTIONS(2187), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2215), 52, + ACTIONS(2189), 52, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -272391,17 +271480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79848] = 4, + [78890] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2611), 2, + ACTIONS(2285), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2613), 52, + ACTIONS(2287), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -272454,17 +271543,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79915] = 4, + [78957] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2747), 2, + ACTIONS(2289), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2749), 52, + ACTIONS(2291), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -272517,372 +271606,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79982] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(3011), 1, - sym_do_block, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2151), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2153), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [80051] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(3019), 1, - sym_do_block, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2155), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2157), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [80120] = 22, + [79024] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3101), 1, - anon_sym_PIPE, - ACTIONS(3117), 1, - anon_sym_EQ_GT, - ACTIONS(3119), 1, - anon_sym_EQ, - ACTIONS(3129), 1, - anon_sym_in, - ACTIONS(3131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, - anon_sym_STAR_STAR, - ACTIONS(3137), 1, + ACTIONS(2293), 2, sym_not_in, - ACTIONS(3103), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3109), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3099), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3107), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 9, + ACTIONS(2295), 52, anon_sym_RPAREN, + anon_sym_LBRACE, 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(3127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [80223] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3101), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3113), 1, - anon_sym_when, - ACTIONS(3115), 1, - anon_sym_COLON_COLON, - ACTIONS(3117), 1, - anon_sym_EQ_GT, - ACTIONS(3119), 1, - anon_sym_EQ, - ACTIONS(3129), 1, - anon_sym_in, - ACTIONS(3131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, - anon_sym_STAR_STAR, - ACTIONS(3137), 1, - sym_not_in, - ACTIONS(3103), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3109), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3099), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3107), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [80330] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3101), 1, - anon_sym_PIPE, - ACTIONS(3113), 1, anon_sym_when, - ACTIONS(3115), 1, anon_sym_COLON_COLON, - ACTIONS(3117), 1, anon_sym_EQ_GT, - ACTIONS(3119), 1, anon_sym_EQ, - ACTIONS(3129), 1, - anon_sym_in, - ACTIONS(3131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, - anon_sym_STAR_STAR, - ACTIONS(3137), 1, - sym_not_in, - ACTIONS(3103), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3121), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3123), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3099), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3125), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3107), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3127), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -272892,99 +271658,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [80437] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3101), 1, - anon_sym_PIPE, - ACTIONS(3115), 1, - anon_sym_COLON_COLON, - ACTIONS(3117), 1, - anon_sym_EQ_GT, - ACTIONS(3119), 1, - anon_sym_EQ, - ACTIONS(3129), 1, anon_sym_in, - ACTIONS(3131), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, - anon_sym_STAR_STAR, - ACTIONS(3137), 1, - sym_not_in, - ACTIONS(3103), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3099), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3107), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 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(3127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [80542] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [79091] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2617), 2, + ACTIONS(2297), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2619), 52, + ACTIONS(2299), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273037,17 +271732,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [80609] = 4, + [79158] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2621), 2, + ACTIONS(2301), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2623), 52, + ACTIONS(2303), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273100,17 +271795,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [80676] = 4, + [79225] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2625), 2, + ACTIONS(2305), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2627), 52, + ACTIONS(2307), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273163,17 +271858,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [80743] = 4, + [79292] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2629), 2, + ACTIONS(2309), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2631), 52, + ACTIONS(2311), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273226,17 +271921,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [80810] = 4, + [79359] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2633), 2, + ACTIONS(2313), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2635), 52, + ACTIONS(2315), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273289,17 +271984,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [80877] = 4, + [79426] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2637), 2, + ACTIONS(2317), 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, + ACTIONS(2319), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273352,17 +272047,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [80944] = 4, + [79493] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2641), 2, + ACTIONS(2321), 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, + ACTIONS(2323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273415,17 +272110,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [81011] = 4, + [79560] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2645), 2, + ACTIONS(2325), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2647), 52, + ACTIONS(2327), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273478,17 +272173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [81078] = 4, + [79627] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2649), 2, + ACTIONS(2329), 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, + ACTIONS(2331), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273541,17 +272236,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [81145] = 4, + [79694] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2653), 2, + ACTIONS(2333), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2655), 52, + ACTIONS(2335), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273604,17 +272299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [81212] = 4, + [79761] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2657), 2, + ACTIONS(2337), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2659), 52, + ACTIONS(2339), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273667,27 +272362,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [81279] = 4, + [79828] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2661), 2, - sym_not_in, - anon_sym_LBRACK2, + STATE(2972), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2663), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2167), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2169), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -273730,27 +272425,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [81346] = 4, + anon_sym_do, + [79897] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2665), 2, - sym_not_in, - anon_sym_LBRACK2, + STATE(3058), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2667), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2173), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2175), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -273793,49 +272489,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [81413] = 4, + anon_sym_do, + [79966] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(2669), 2, - sym_not_in, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, + ACTIONS(3094), 1, + anon_sym_PIPE, + ACTIONS(3110), 1, + anon_sym_EQ_GT, + ACTIONS(3112), 1, + anon_sym_EQ, + ACTIONS(3122), 1, + anon_sym_in, + ACTIONS(3124), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3126), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3128), 1, + anon_sym_STAR_STAR, + ACTIONS(3130), 1, + sym_not_in, + ACTIONS(3096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2671), 52, + ACTIONS(3114), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3116), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3118), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3100), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 9, 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_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(3120), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [80069] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3094), 1, + anon_sym_PIPE, + ACTIONS(3106), 1, + anon_sym_when, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(3110), 1, anon_sym_EQ_GT, + ACTIONS(3112), 1, anon_sym_EQ, + ACTIONS(3122), 1, + anon_sym_in, + ACTIONS(3124), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3126), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3128), 1, + anon_sym_STAR_STAR, + ACTIONS(3130), 1, + sym_not_in, + ACTIONS(3096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3114), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3116), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3118), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3100), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3120), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -273845,60 +272654,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [80176] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3094), 1, + anon_sym_PIPE, + ACTIONS(3106), 1, + anon_sym_when, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(3110), 1, + anon_sym_EQ_GT, + ACTIONS(3112), 1, + anon_sym_EQ, + ACTIONS(3122), 1, anon_sym_in, + ACTIONS(3124), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3126), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - anon_sym_DOT, - [81480] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2221), 2, + ACTIONS(3130), 1, sym_not_in, - anon_sym_LBRACK2, + ACTIONS(3096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2223), 52, - anon_sym_LPAREN, + ACTIONS(3114), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3116), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3118), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3100), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 7, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, + anon_sym_do, + ACTIONS(3120), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [80283] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3094), 1, + anon_sym_PIPE, + ACTIONS(3108), 1, anon_sym_COLON_COLON, + ACTIONS(3110), 1, anon_sym_EQ_GT, + ACTIONS(3112), 1, anon_sym_EQ, + ACTIONS(3122), 1, + anon_sym_in, + ACTIONS(3124), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3126), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3128), 1, + anon_sym_STAR_STAR, + ACTIONS(3130), 1, + sym_not_in, + ACTIONS(3096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3114), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3116), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3118), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3100), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3120), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -273908,29 +272819,17 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [81547] = 4, + [80388] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2229), 2, + ACTIONS(2341), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2231), 52, - anon_sym_LPAREN, + ACTIONS(2343), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273939,6 +272838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273982,18 +272882,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [81614] = 4, + [80455] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2233), 2, + ACTIONS(2345), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2235), 52, - anon_sym_LPAREN, + ACTIONS(2347), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -274002,6 +272901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -274045,21 +272945,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [81681] = 5, + [80522] = 4, ACTIONS(5), 1, sym_comment, - STATE(3540), 1, - sym_do_block, + ACTIONS(2241), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2209), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2211), 50, + ACTIONS(2243), 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, @@ -274106,28 +273007,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [81750] = 5, + [80589] = 4, ACTIONS(5), 1, sym_comment, - STATE(2980), 1, - sym_do_block, + ACTIONS(2349), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2193), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2195), 50, + ACTIONS(2351), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -274170,28 +273070,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [81819] = 5, + [80656] = 4, ACTIONS(5), 1, sym_comment, - STATE(2981), 1, - sym_do_block, + ACTIONS(2353), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2217), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2219), 50, + ACTIONS(2355), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -274234,27 +273133,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [81888] = 4, + [80723] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2357), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2225), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2227), 51, - anon_sym_LPAREN, + ACTIONS(2359), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -274297,27 +273196,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [81955] = 4, + [80790] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2361), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2165), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2167), 51, - anon_sym_LPAREN, + ACTIONS(2363), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -274360,27 +273259,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [82022] = 4, + [80857] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2365), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2169), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2171), 51, - anon_sym_LPAREN, + ACTIONS(2367), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -274423,27 +273322,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [82089] = 4, + [80924] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2273), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2173), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2175), 51, - anon_sym_LPAREN, + ACTIONS(2275), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -274486,27 +273385,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [82156] = 4, + [80991] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2369), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2201), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2203), 51, - anon_sym_LPAREN, + ACTIONS(2371), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -274549,27 +273448,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [82223] = 4, + [81058] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2373), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2205), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2207), 51, - anon_sym_LPAREN, + ACTIONS(2375), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -274612,27 +273511,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [82290] = 4, + [81125] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2377), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2253), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2255), 51, - anon_sym_LPAREN, + ACTIONS(2379), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -274675,27 +273574,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [82357] = 4, + [81192] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2381), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2213), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2215), 51, - anon_sym_LPAREN, + ACTIONS(2383), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -274738,27 +273637,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [82424] = 4, + [81259] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2385), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2221), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2223), 51, - anon_sym_LPAREN, + ACTIONS(2387), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -274801,27 +273700,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [82491] = 4, + [81326] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2389), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2229), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2231), 51, - anon_sym_LPAREN, + ACTIONS(2391), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -274864,27 +273763,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [82558] = 4, + [81393] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2393), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2233), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2235), 51, - anon_sym_LPAREN, + ACTIONS(2395), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -274927,92 +273826,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [82625] = 6, + [81460] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3150), 1, - anon_sym_LPAREN, - STATE(3031), 1, - sym_call_arguments_with_parentheses, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2145), 3, - sym_newline_before_do, + ACTIONS(2397), 2, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2147), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [82696] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1825), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1827), 50, + ACTIONS(2399), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -275055,27 +273889,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [82763] = 4, + [81527] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2401), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1833), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1835), 50, + ACTIONS(2403), 52, 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_DOT_DOT, anon_sym_PLUS, @@ -275118,28 +273952,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [82830] = 5, + [81594] = 4, ACTIONS(5), 1, sym_comment, - STATE(3056), 1, - sym_do_block, + ACTIONS(2405), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2151), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2153), 50, - anon_sym_LPAREN, + ACTIONS(2407), 52, + 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_DOT_DOT, anon_sym_PLUS, @@ -275183,23 +274016,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [82899] = 5, + [81661] = 4, ACTIONS(5), 1, sym_comment, - STATE(3057), 1, - sym_do_block, + ACTIONS(2237), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2155), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2157), 50, + ACTIONS(2239), 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, @@ -275247,22 +274079,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [82968] = 4, + [81728] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2213), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1837), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1839), 50, + ACTIONS(2215), 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, @@ -275309,23 +274141,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [83035] = 4, + [81795] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2267), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1841), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1843), 50, + ACTIONS(2269), 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, @@ -275372,23 +274204,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [83102] = 5, + [81862] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3152), 1, - aux_sym_sigil_token3, + STATE(3243), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2257), 3, + ACTIONS(2229), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2259), 50, + ACTIONS(2231), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -275439,20 +274269,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83171] = 5, + [81931] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3154), 1, - aux_sym_sigil_token3, + STATE(3245), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2263), 3, + ACTIONS(2191), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2265), 50, + ACTIONS(2193), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -275503,19 +274333,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83240] = 4, + [82000] = 5, ACTIONS(5), 1, sym_comment, + STATE(3246), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1845), 4, + ACTIONS(2221), 3, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1847), 50, + ACTIONS(2223), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -275566,19 +274397,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83307] = 4, + [82069] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1849), 4, + ACTIONS(2253), 3, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1851), 50, + ACTIONS(2255), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -275629,24 +274460,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83374] = 4, + [82136] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2367), 3, + ACTIONS(2183), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2369), 51, + ACTIONS(2185), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275692,24 +274523,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83441] = 4, + [82203] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2371), 3, + ACTIONS(2197), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2373), 51, + ACTIONS(2199), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275755,24 +274586,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83508] = 4, + [82270] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2415), 3, + ACTIONS(2217), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2417), 51, + ACTIONS(2219), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275818,24 +274649,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83575] = 4, + [82337] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2419), 3, + ACTIONS(2249), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2421), 51, + ACTIONS(2251), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275881,24 +274712,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83642] = 4, + [82404] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2435), 3, + ACTIONS(2245), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2437), 51, + ACTIONS(2247), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275944,24 +274775,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83709] = 4, + [82471] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2443), 3, + ACTIONS(2187), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2445), 51, + ACTIONS(2189), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276007,24 +274838,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83776] = 4, + [82538] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2447), 3, + ACTIONS(2241), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2449), 51, + ACTIONS(2243), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276070,24 +274901,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83843] = 4, + [82605] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2463), 3, + ACTIONS(2237), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2465), 51, + ACTIONS(2239), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276133,24 +274964,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83910] = 4, + [82672] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2467), 3, + ACTIONS(2213), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2469), 51, + ACTIONS(2215), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276196,24 +275027,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83977] = 4, + [82739] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2471), 3, + ACTIONS(2267), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2473), 51, + ACTIONS(2269), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276259,24 +275090,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84044] = 4, + [82806] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3154), 1, + anon_sym_LPAREN, + STATE(3387), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2495), 3, + ACTIONS(2161), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2497), 51, - anon_sym_RPAREN, + ACTIONS(2163), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276319,27 +275152,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84111] = 4, + anon_sym_DOT_DOT_DOT_GT, + [82877] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2499), 3, + ACTIONS(1845), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2501), 51, + ACTIONS(1847), 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_DOT_DOT, anon_sym_PLUS, @@ -276385,24 +275218,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84178] = 4, + [82944] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2511), 3, + ACTIONS(1853), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2513), 51, + ACTIONS(1855), 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_DOT_DOT, anon_sym_PLUS, @@ -276448,24 +275281,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84245] = 4, + [83011] = 5, ACTIONS(5), 1, sym_comment, + STATE(3501), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2531), 3, + ACTIONS(2167), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2533), 51, - anon_sym_RPAREN, + ACTIONS(2169), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276508,27 +275342,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84312] = 4, + anon_sym_DOT_DOT_DOT_GT, + [83080] = 5, ACTIONS(5), 1, sym_comment, + STATE(3506), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2539), 3, + ACTIONS(2173), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2541), 51, - anon_sym_RPAREN, + ACTIONS(2175), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276571,27 +275406,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84379] = 4, + anon_sym_DOT_DOT_DOT_GT, + [83149] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2543), 3, + ACTIONS(1849), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2545), 51, + ACTIONS(1851), 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_DOT_DOT, anon_sym_PLUS, @@ -276637,24 +275472,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84446] = 4, + [83216] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2547), 3, + ACTIONS(1857), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2549), 51, + ACTIONS(1859), 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_DOT_DOT, anon_sym_PLUS, @@ -276700,24 +275535,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84513] = 4, + [83283] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3156), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2551), 3, + ACTIONS(2701), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2553), 51, + ACTIONS(2703), 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_DOT_DOT, anon_sym_PLUS, @@ -276763,24 +275599,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84580] = 4, + [83352] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2555), 3, + ACTIONS(1861), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2557), 51, + ACTIONS(1863), 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_DOT_DOT, anon_sym_PLUS, @@ -276826,24 +275662,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84647] = 4, + [83419] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2559), 3, + ACTIONS(1865), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2561), 51, + ACTIONS(1867), 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_DOT_DOT, anon_sym_PLUS, @@ -276889,18 +275725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84714] = 4, + [83486] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2563), 3, + ACTIONS(2711), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2565), 51, + ACTIONS(2713), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -276952,18 +275788,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84781] = 4, + [83553] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2567), 3, + ACTIONS(2715), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2569), 51, + ACTIONS(2717), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277015,18 +275851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84848] = 4, + [83620] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2571), 3, + ACTIONS(2719), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2573), 51, + ACTIONS(2721), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277078,18 +275914,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84915] = 4, + [83687] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2575), 3, + ACTIONS(2723), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2577), 51, + ACTIONS(2725), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277141,18 +275977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84982] = 4, + [83754] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2579), 3, + ACTIONS(2727), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2581), 51, + ACTIONS(2729), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277204,18 +276040,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85049] = 4, + [83821] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2583), 3, + ACTIONS(2731), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2585), 51, + ACTIONS(2733), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277267,18 +276103,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85116] = 4, + [83888] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2587), 3, + ACTIONS(2735), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2589), 51, + ACTIONS(2737), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277330,18 +276166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85183] = 4, + [83955] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2591), 3, + ACTIONS(2739), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2593), 51, + ACTIONS(2741), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277393,18 +276229,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85250] = 4, + [84022] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2595), 3, + ACTIONS(2743), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2597), 51, + ACTIONS(2745), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277456,18 +276292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85317] = 4, + [84089] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2599), 3, + ACTIONS(2747), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2601), 51, + ACTIONS(2749), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277519,18 +276355,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85384] = 4, + [84156] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2603), 3, + ACTIONS(2751), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2605), 51, + ACTIONS(2753), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277582,18 +276418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85451] = 4, + [84223] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2607), 3, + ACTIONS(2755), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2609), 51, + ACTIONS(2757), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277645,18 +276481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85518] = 4, + [84290] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2611), 3, + ACTIONS(2759), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2613), 51, + ACTIONS(2761), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277708,18 +276544,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85585] = 4, + [84357] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2747), 3, + ACTIONS(2567), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2749), 51, + ACTIONS(2569), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277771,18 +276607,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85652] = 4, + [84424] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2617), 3, + ACTIONS(2277), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2619), 51, + ACTIONS(2279), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277834,18 +276670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85719] = 4, + [84491] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2621), 3, + ACTIONS(2281), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2623), 51, + ACTIONS(2283), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277897,18 +276733,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85786] = 4, + [84558] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2625), 3, + ACTIONS(2285), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2627), 51, + ACTIONS(2287), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277960,18 +276796,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85853] = 4, + [84625] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2629), 3, + ACTIONS(2289), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2631), 51, + ACTIONS(2291), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -278023,18 +276859,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85920] = 4, + [84692] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2633), 3, + ACTIONS(2293), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2635), 51, + ACTIONS(2295), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -278086,18 +276922,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85987] = 4, + [84759] = 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, + ACTIONS(2297), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2639), 51, + ACTIONS(2299), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -278149,18 +276985,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86054] = 4, + [84826] = 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, + ACTIONS(2301), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2643), 51, + ACTIONS(2303), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -278212,18 +277048,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86121] = 4, + [84893] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2645), 3, + ACTIONS(2305), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2647), 51, + ACTIONS(2307), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -278275,18 +277111,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86188] = 4, + [84960] = 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, + ACTIONS(2309), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2651), 51, + ACTIONS(2311), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -278338,18 +277174,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86255] = 4, + [85027] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2653), 3, + ACTIONS(2313), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2655), 51, + ACTIONS(2315), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -278401,18 +277237,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86322] = 4, + [85094] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2657), 3, + ACTIONS(2317), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2659), 51, + ACTIONS(2319), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -278464,18 +277300,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86389] = 4, + [85161] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2661), 3, + ACTIONS(2321), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2663), 51, + ACTIONS(2323), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -278527,18 +277363,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86456] = 4, + [85228] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2665), 3, + ACTIONS(2325), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2667), 51, + ACTIONS(2327), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -278590,18 +277426,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86523] = 4, + [85295] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2669), 3, + ACTIONS(2329), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2671), 51, + ACTIONS(2331), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -278651,244 +277487,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [86590] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(544), 1, - anon_sym_do, - ACTIONS(3156), 1, - sym_newline_before_do, - STATE(4481), 1, - sym_do_block, - ACTIONS(2151), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2153), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [86663] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(544), 1, - anon_sym_do, - ACTIONS(3158), 1, - sym_newline_before_do, - STATE(4099), 1, - sym_do_block, - ACTIONS(2155), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2157), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [86736] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3043), 1, - anon_sym_PIPE, - ACTIONS(3055), 1, - anon_sym_when, - ACTIONS(3057), 1, - anon_sym_COLON_COLON, - ACTIONS(3059), 1, - anon_sym_EQ_GT, - ACTIONS(3061), 1, - anon_sym_EQ, - ACTIONS(3071), 1, - anon_sym_in, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2687), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3053), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3063), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3065), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3041), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2689), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - ACTIONS(3067), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3069), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [86845] = 5, + [85362] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2183), 5, + aux_sym_terminator_token1, + ACTIONS(2333), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 49, - anon_sym_SEMI, + ACTIONS(2335), 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_DOT_DOT, anon_sym_PLUS, @@ -278931,28 +277549,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86914] = 5, + [85429] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2189), 5, + aux_sym_terminator_token1, + ACTIONS(2337), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2191), 49, - anon_sym_SEMI, + ACTIONS(2339), 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_DOT_DOT, anon_sym_PLUS, @@ -278995,27 +277612,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86983] = 4, + [85496] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2241), 5, + aux_sym_terminator_token1, + ACTIONS(2341), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2243), 50, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2343), 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_DOT_DOT, anon_sym_PLUS, @@ -279058,27 +277675,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87050] = 4, + [85563] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2197), 5, + aux_sym_terminator_token1, + ACTIONS(2345), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2199), 50, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2347), 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_DOT_DOT, anon_sym_PLUS, @@ -279121,114 +277738,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87117] = 27, + [85630] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2293), 1, - sym_newline_before_do, - ACTIONS(3162), 1, - anon_sym_PIPE, - ACTIONS(3166), 1, - anon_sym_COMMA, - ACTIONS(3174), 1, - anon_sym_when, - ACTIONS(3176), 1, - anon_sym_COLON_COLON, - ACTIONS(3178), 1, - anon_sym_EQ_GT, - ACTIONS(3180), 1, - anon_sym_EQ, - ACTIONS(3190), 1, - anon_sym_in, - ACTIONS(3192), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, - anon_sym_STAR_STAR, - ACTIONS(3198), 1, - anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(3202), 1, - sym_not_in, - STATE(2744), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3164), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3170), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3172), 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(2295), 3, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3182), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3184), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3160), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3186), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3168), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3188), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [87230] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2759), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2257), 4, + ACTIONS(2349), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2259), 50, - anon_sym_SEMI, + ACTIONS(2351), 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_DOT_DOT, anon_sym_PLUS, @@ -279271,28 +277801,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87299] = 5, + [85697] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2761), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2263), 4, + aux_sym_terminator_token1, + ACTIONS(2353), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2265), 50, - anon_sym_SEMI, + ACTIONS(2355), 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_DOT_DOT, anon_sym_PLUS, @@ -279335,30 +277864,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87368] = 7, + [85764] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(596), 1, - anon_sym_do, - ACTIONS(3204), 1, - sym_newline_before_do, - STATE(4170), 1, - sym_do_block, - ACTIONS(2209), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2211), 49, + ACTIONS(2357), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2359), 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_DOT_DOT, anon_sym_PLUS, @@ -279403,28 +277929,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [87441] = 7, + anon_sym_do, + [85831] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(596), 1, - anon_sym_do, - ACTIONS(3206), 1, - sym_newline_before_do, - STATE(4172), 1, - sym_do_block, - ACTIONS(2193), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2195), 49, + ACTIONS(2361), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2363), 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_DOT_DOT, anon_sym_PLUS, @@ -279469,28 +277992,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [87514] = 7, + anon_sym_do, + [85898] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(596), 1, - anon_sym_do, - ACTIONS(3208), 1, - sym_newline_before_do, - STATE(4173), 1, - sym_do_block, - ACTIONS(2217), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2219), 49, + ACTIONS(2365), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2367), 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_DOT_DOT, anon_sym_PLUS, @@ -279535,19 +278055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [87587] = 4, + anon_sym_do, + [85965] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2367), 4, + aux_sym_terminator_token1, + ACTIONS(2273), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2369), 51, - anon_sym_SEMI, + ACTIONS(2275), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -279596,21 +278116,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87654] = 4, + [86032] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2371), 4, + aux_sym_terminator_token1, + ACTIONS(2369), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2373), 51, - anon_sym_SEMI, + ACTIONS(2371), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -279659,21 +278179,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87721] = 4, + [86099] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2415), 4, + aux_sym_terminator_token1, + ACTIONS(2373), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2417), 51, - anon_sym_SEMI, + ACTIONS(2375), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -279722,21 +278242,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87788] = 4, + [86166] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2419), 4, + aux_sym_terminator_token1, + ACTIONS(2377), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2421), 51, - anon_sym_SEMI, + ACTIONS(2379), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -279785,21 +278305,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87855] = 4, + [86233] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2435), 4, + aux_sym_terminator_token1, + ACTIONS(2381), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2437), 51, - anon_sym_SEMI, + ACTIONS(2383), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -279848,21 +278368,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87922] = 4, + [86300] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2443), 4, + aux_sym_terminator_token1, + ACTIONS(2385), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2445), 51, - anon_sym_SEMI, + ACTIONS(2387), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -279911,21 +278431,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87989] = 4, + [86367] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2447), 4, + aux_sym_terminator_token1, + ACTIONS(2389), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2449), 51, - anon_sym_SEMI, + ACTIONS(2391), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -279974,21 +278494,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88056] = 4, + [86434] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2463), 4, + aux_sym_terminator_token1, + ACTIONS(2393), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2465), 51, - anon_sym_SEMI, + ACTIONS(2395), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -280037,21 +278557,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88123] = 4, + [86501] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2467), 4, + aux_sym_terminator_token1, + ACTIONS(2397), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2469), 51, - anon_sym_SEMI, + ACTIONS(2399), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -280100,21 +278620,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88190] = 4, + [86568] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2471), 4, + aux_sym_terminator_token1, + ACTIONS(2401), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2473), 51, - anon_sym_SEMI, + ACTIONS(2403), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -280163,21 +278683,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88257] = 4, + [86635] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2495), 4, + aux_sym_terminator_token1, + ACTIONS(2405), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2497), 51, - anon_sym_SEMI, + ACTIONS(2407), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -280226,28 +278746,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88324] = 4, + [86702] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2499), 4, + ACTIONS(606), 1, + anon_sym_do, + ACTIONS(3158), 1, sym_newline_before_do, + STATE(4131), 1, + sym_do_block, + ACTIONS(2167), 2, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2501), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2169), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -280290,27 +278815,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [88391] = 4, + [86775] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2511), 4, + ACTIONS(606), 1, + anon_sym_do, + ACTIONS(3160), 1, sym_newline_before_do, + STATE(4134), 1, + sym_do_block, + ACTIONS(2173), 2, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2513), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2175), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -280353,112 +278881,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [88458] = 4, + [86848] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2531), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(2533), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3000), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3012), 1, anon_sym_when, + ACTIONS(3014), 1, anon_sym_COLON_COLON, + ACTIONS(3016), 1, anon_sym_EQ_GT, + ACTIONS(3018), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3028), 1, anon_sym_in, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3034), 1, anon_sym_STAR_STAR, + ACTIONS(3036), 1, anon_sym_DOT, - anon_sym_do, - [88525] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(3038), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2539), 4, + ACTIONS(2694), 2, sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2541), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3002), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3010), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3020), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3022), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2998), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2696), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3024), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3006), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3026), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -280468,37 +278965,26 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [88592] = 4, + [86957] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2543), 4, + ACTIONS(2259), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2545), 51, + ACTIONS(2261), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -280543,25 +279029,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [88659] = 4, + [87026] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2547), 4, + ACTIONS(2201), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2549), 51, + ACTIONS(2203), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -280606,25 +279093,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [88726] = 4, + [87095] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2551), 4, + ACTIONS(2263), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2553), 51, + ACTIONS(2265), 50, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -280669,25 +279156,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [88793] = 4, + [87162] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2771), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2555), 4, + ACTIONS(2701), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2557), 51, + ACTIONS(2703), 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_DOT_DOT, anon_sym_PLUS, @@ -280732,25 +279220,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [88860] = 4, + [87231] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2559), 4, + ACTIONS(2233), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2561), 51, + ACTIONS(2235), 50, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -280795,18 +279283,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [88927] = 4, + [87298] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2563), 4, + ACTIONS(2711), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2565), 51, + ACTIONS(2713), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -280858,18 +279346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [88994] = 4, + [87365] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2567), 4, + ACTIONS(2715), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2569), 51, + ACTIONS(2717), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -280921,18 +279409,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89061] = 4, + [87432] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2571), 4, + ACTIONS(2719), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2573), 51, + ACTIONS(2721), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -280984,18 +279472,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89128] = 4, + [87499] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2575), 4, + ACTIONS(2723), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2577), 51, + ACTIONS(2725), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281047,18 +279535,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89195] = 4, + [87566] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2579), 4, + ACTIONS(2727), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2581), 51, + ACTIONS(2729), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281110,18 +279598,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89262] = 4, + [87633] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2583), 4, + ACTIONS(2731), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2585), 51, + ACTIONS(2733), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281173,18 +279661,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89329] = 4, + [87700] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2587), 4, + ACTIONS(2735), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2589), 51, + ACTIONS(2737), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281236,18 +279724,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89396] = 4, + [87767] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2591), 4, + ACTIONS(2739), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2593), 51, + ACTIONS(2741), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281299,18 +279787,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89463] = 4, + [87834] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2595), 4, + ACTIONS(2743), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2597), 51, + ACTIONS(2745), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281362,18 +279850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89530] = 4, + [87901] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2599), 4, + ACTIONS(2747), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2601), 51, + ACTIONS(2749), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281425,18 +279913,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89597] = 4, + [87968] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2603), 4, + ACTIONS(2751), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2605), 51, + ACTIONS(2753), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281488,18 +279976,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89664] = 4, + [88035] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2607), 4, + ACTIONS(2755), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2609), 51, + ACTIONS(2757), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281551,18 +280039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89731] = 4, + [88102] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2611), 4, + ACTIONS(2759), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 51, + ACTIONS(2761), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281614,18 +280102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89798] = 4, + [88169] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2747), 4, + ACTIONS(2567), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2749), 51, + ACTIONS(2569), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281677,18 +280165,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89865] = 4, + [88236] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2617), 4, + ACTIONS(2277), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2619), 51, + ACTIONS(2279), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281740,18 +280228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89932] = 4, + [88303] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2621), 4, + ACTIONS(2281), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2623), 51, + ACTIONS(2283), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281803,18 +280291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89999] = 4, + [88370] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2625), 4, + ACTIONS(2285), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2627), 51, + ACTIONS(2287), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281866,18 +280354,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [90066] = 4, + [88437] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2629), 4, + ACTIONS(2289), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2631), 51, + ACTIONS(2291), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281929,18 +280417,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [90133] = 4, + [88504] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2633), 4, + ACTIONS(2293), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2635), 51, + ACTIONS(2295), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -281992,18 +280480,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [90200] = 4, + [88571] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2637), 4, + ACTIONS(2297), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2639), 51, + ACTIONS(2299), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -282055,18 +280543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [90267] = 4, + [88638] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2641), 4, + ACTIONS(2301), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2643), 51, + ACTIONS(2303), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -282118,18 +280606,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [90334] = 4, + [88705] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2645), 4, + ACTIONS(2305), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2647), 51, + ACTIONS(2307), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -282181,18 +280669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [90401] = 4, + [88772] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2649), 4, + ACTIONS(2309), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2651), 51, + ACTIONS(2311), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -282244,18 +280732,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [90468] = 4, + [88839] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2653), 4, + ACTIONS(2313), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2655), 51, + ACTIONS(2315), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -282307,18 +280795,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [90535] = 4, + [88906] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2657), 4, + ACTIONS(2317), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2659), 51, + ACTIONS(2319), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -282370,18 +280858,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [90602] = 4, + [88973] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2661), 4, + ACTIONS(2321), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2663), 51, + ACTIONS(2323), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -282433,18 +280921,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [90669] = 4, + [89040] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2665), 4, + ACTIONS(2325), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2667), 51, + ACTIONS(2327), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -282496,18 +280984,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [90736] = 4, + [89107] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2669), 4, + ACTIONS(2329), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2671), 51, + ACTIONS(2331), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -282559,168 +281047,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [90803] = 25, + [89174] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3043), 1, - anon_sym_PIPE, - ACTIONS(3055), 1, - anon_sym_when, - ACTIONS(3057), 1, - anon_sym_COLON_COLON, - ACTIONS(3059), 1, - anon_sym_EQ_GT, - ACTIONS(3061), 1, - anon_sym_EQ, - ACTIONS(3071), 1, - anon_sym_in, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2751), 2, + ACTIONS(2333), 4, sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3053), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3063), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3065), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3041), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2753), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3067), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3069), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [90912] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2269), 2, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2271), 52, - 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [90979] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2273), 2, - sym_not_in, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2275), 52, + ACTIONS(2335), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -282769,84 +281109,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [91046] = 4, + anon_sym_do, + [89241] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2375), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2377), 52, - 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [91113] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2379), 2, + ACTIONS(2337), 4, + sym_newline_before_do, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2381), 52, + anon_sym_LBRACK2, + ACTIONS(2339), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -282895,25 +281172,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [91180] = 5, + anon_sym_do, + [89308] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2759), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2257), 4, + ACTIONS(2341), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2259), 50, + ACTIONS(2343), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -282958,26 +281236,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [91249] = 5, + [89375] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2761), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2263), 4, + ACTIONS(2345), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2265), 50, + ACTIONS(2347), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -283022,22 +281299,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [91318] = 4, + [89442] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2451), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2349), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2453), 52, + anon_sym_LBRACK2, + ACTIONS(2351), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283086,21 +281361,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [91385] = 4, + anon_sym_do, + [89509] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2455), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2353), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2457), 52, + anon_sym_LBRACK2, + ACTIONS(2355), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283149,19 +281424,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [91452] = 4, + anon_sym_do, + [89576] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2367), 4, + ACTIONS(2357), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2369), 51, + ACTIONS(2359), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283211,20 +281488,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [91519] = 4, + [89643] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2371), 4, + ACTIONS(2361), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2373), 51, + ACTIONS(2363), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283274,20 +281551,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [91586] = 4, + [89710] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2415), 4, + ACTIONS(2365), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2417), 51, + ACTIONS(2367), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283337,20 +281614,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [91653] = 4, + [89777] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2419), 4, + ACTIONS(2273), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2421), 51, + ACTIONS(2275), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283400,20 +281677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [91720] = 4, + [89844] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2435), 4, + ACTIONS(2369), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2437), 51, + ACTIONS(2371), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283463,20 +281740,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [91787] = 4, + [89911] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2443), 4, + ACTIONS(2373), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2445), 51, + ACTIONS(2375), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283526,20 +281803,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [91854] = 4, + [89978] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2447), 4, + ACTIONS(2377), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2449), 51, + ACTIONS(2379), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283589,20 +281866,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [91921] = 4, + [90045] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2463), 4, + ACTIONS(2381), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2465), 51, + ACTIONS(2383), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283652,20 +281929,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [91988] = 4, + [90112] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2467), 4, + ACTIONS(2385), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2469), 51, + ACTIONS(2387), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283715,20 +281992,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [92055] = 4, + [90179] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2471), 4, + ACTIONS(2389), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2473), 51, + ACTIONS(2391), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283778,20 +282055,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [92122] = 4, + [90246] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2495), 4, + ACTIONS(2393), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2497), 51, + ACTIONS(2395), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283841,20 +282118,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [92189] = 4, + [90313] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2499), 4, + ACTIONS(2397), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2501), 51, + ACTIONS(2399), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283904,20 +282181,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [92256] = 4, + [90380] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2511), 4, + ACTIONS(2401), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2513), 51, + ACTIONS(2403), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283967,20 +282244,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [92323] = 4, + [90447] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2531), 4, + ACTIONS(2405), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2533), 51, + ACTIONS(2407), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284030,237 +282307,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [92390] = 4, + [90514] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2539), 4, + ACTIONS(2409), 1, sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2541), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3164), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, + ACTIONS(3168), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3176), 1, anon_sym_when, + ACTIONS(3178), 1, anon_sym_COLON_COLON, + ACTIONS(3180), 1, anon_sym_EQ_GT, + ACTIONS(3182), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3192), 1, anon_sym_in, + ACTIONS(3194), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3198), 1, anon_sym_STAR_STAR, + ACTIONS(3200), 1, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [92457] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2543), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, + ACTIONS(3202), 1, anon_sym_LBRACK2, - ACTIONS(2545), 51, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3204), 1, + sym_not_in, + STATE(2730), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3166), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3172), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3174), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [92524] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2547), 4, - sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2549), 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_DOT_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, + ACTIONS(2411), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3184), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3186), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3162), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3188), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [92591] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2551), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2553), 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_DOT_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_EQ, - anon_sym_GT_EQ, + ACTIONS(3190), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -284270,37 +282393,28 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [92658] = 4, + [90627] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2555), 4, + ACTIONS(664), 1, + anon_sym_do, + ACTIONS(3206), 1, sym_newline_before_do, + STATE(4360), 1, + sym_do_block, + ACTIONS(2229), 2, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2557), 51, - anon_sym_SEMI, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2231), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -284343,27 +282457,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [92725] = 4, + [90700] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(664), 1, + anon_sym_do, + ACTIONS(3208), 1, + sym_newline_before_do, + STATE(4372), 1, + sym_do_block, + ACTIONS(2191), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2559), 4, + aux_sym_terminator_token1, + ACTIONS(2193), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [90773] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(664), 1, + anon_sym_do, + ACTIONS(3210), 1, sym_newline_before_do, + STATE(4373), 1, + sym_do_block, + ACTIONS(2221), 2, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2561), 51, - anon_sym_SEMI, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2223), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -284406,22 +282589,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [92792] = 4, + [90846] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2413), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2563), 4, - sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2565), 51, - anon_sym_SEMI, + ACTIONS(2415), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284470,21 +282654,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [92859] = 4, + [90913] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2417), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2567), 4, - sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2569), 51, - anon_sym_SEMI, + ACTIONS(2419), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284533,21 +282717,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [92926] = 4, + [90980] = 25, ACTIONS(5), 1, sym_comment, + ACTIONS(2477), 1, + anon_sym_LBRACK2, + ACTIONS(3000), 1, + anon_sym_PIPE, + ACTIONS(3012), 1, + anon_sym_when, + ACTIONS(3014), 1, + anon_sym_COLON_COLON, + ACTIONS(3016), 1, + anon_sym_EQ_GT, + ACTIONS(3018), 1, + anon_sym_EQ, + ACTIONS(3028), 1, + anon_sym_in, + ACTIONS(3030), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3032), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3034), 1, + anon_sym_STAR_STAR, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3038), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2571), 4, + ACTIONS(2763), 2, sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2573), 51, + ACTIONS(3002), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3010), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3020), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3022), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2998), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2765), 5, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3024), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3006), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3026), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [91089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2421), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2423), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284596,21 +282864,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [92993] = 4, + [91156] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2425), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2575), 4, - sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2577), 51, - anon_sym_SEMI, + ACTIONS(2427), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284659,26 +282927,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [93060] = 4, + [91223] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2771), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2579), 4, + ACTIONS(2701), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2581), 51, + ACTIONS(2703), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -284724,19 +282991,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [93127] = 4, + [91292] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2429), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2583), 4, - sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2585), 51, - anon_sym_SEMI, + ACTIONS(2431), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284785,21 +283054,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [93194] = 4, + [91359] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2433), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2587), 4, - sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2589), 51, - anon_sym_SEMI, + ACTIONS(2435), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284848,20 +283117,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [93261] = 4, + [91426] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2591), 4, + ACTIONS(2711), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2593), 51, + ACTIONS(2713), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -284913,18 +283180,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [93328] = 4, + [91493] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2595), 4, + ACTIONS(2715), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2597), 51, + ACTIONS(2717), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -284976,18 +283243,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [93395] = 4, + [91560] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2599), 4, + ACTIONS(2719), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2601), 51, + ACTIONS(2721), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285039,18 +283306,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [93462] = 4, + [91627] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2603), 4, + ACTIONS(2723), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2605), 51, + ACTIONS(2725), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285102,18 +283369,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [93529] = 4, + [91694] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2607), 4, + ACTIONS(2727), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2609), 51, + ACTIONS(2729), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285165,18 +283432,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [93596] = 4, + [91761] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2611), 4, + ACTIONS(2731), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 51, + ACTIONS(2733), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285228,18 +283495,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [93663] = 4, + [91828] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2747), 4, + ACTIONS(2735), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2749), 51, + ACTIONS(2737), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285291,18 +283558,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [93730] = 4, + [91895] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2617), 4, + ACTIONS(2739), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2619), 51, + ACTIONS(2741), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285354,18 +283621,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [93797] = 4, + [91962] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2621), 4, + ACTIONS(2743), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2623), 51, + ACTIONS(2745), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285417,18 +283684,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [93864] = 4, + [92029] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2625), 4, + ACTIONS(2747), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2627), 51, + ACTIONS(2749), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285480,18 +283747,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [93931] = 4, + [92096] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2629), 4, + ACTIONS(2751), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2631), 51, + ACTIONS(2753), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285543,18 +283810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [93998] = 4, + [92163] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2633), 4, + ACTIONS(2755), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2635), 51, + ACTIONS(2757), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285606,18 +283873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [94065] = 4, + [92230] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2637), 4, + ACTIONS(2759), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2639), 51, + ACTIONS(2761), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285669,18 +283936,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [94132] = 4, + [92297] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2641), 4, + ACTIONS(2567), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2643), 51, + ACTIONS(2569), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285732,18 +283999,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [94199] = 4, + [92364] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2645), 4, + ACTIONS(2277), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2647), 51, + ACTIONS(2279), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285795,18 +284062,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [94266] = 4, + [92431] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2649), 4, + ACTIONS(2281), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2651), 51, + ACTIONS(2283), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285858,18 +284125,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [94333] = 4, + [92498] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2653), 4, + ACTIONS(2285), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2655), 51, + ACTIONS(2287), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285921,18 +284188,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [94400] = 4, + [92565] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2657), 4, + ACTIONS(2289), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2659), 51, + ACTIONS(2291), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285984,18 +284251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [94467] = 4, + [92632] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2661), 4, + ACTIONS(2293), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2663), 51, + ACTIONS(2295), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -286047,18 +284314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [94534] = 4, + [92699] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2665), 4, + ACTIONS(2297), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2667), 51, + ACTIONS(2299), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -286110,18 +284377,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [94601] = 4, + [92766] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2669), 4, + ACTIONS(2301), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2671), 51, + ACTIONS(2303), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -286173,24 +284440,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [94668] = 4, + [92833] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2177), 3, + ACTIONS(2305), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2179), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2307), 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_DOT_DOT, anon_sym_PLUS, @@ -286233,30 +284500,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [94735] = 6, + anon_sym_end, + [92900] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3210), 1, - anon_sym_COMMA, - STATE(2777), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2677), 3, + ACTIONS(2309), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2679), 49, - anon_sym_RPAREN, + ACTIONS(2311), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -286298,46 +284563,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [94806] = 12, + anon_sym_end, + [92967] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2856), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2313), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 38, + anon_sym_LBRACK2, + ACTIONS(2315), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -286367,106 +284617,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [94889] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2854), 1, - anon_sym_in, - ACTIONS(2856), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2852), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 28, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - 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_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, anon_sym_end, - anon_sym_rescue, - [94978] = 7, + [93034] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2317), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 50, + anon_sym_LBRACK2, + ACTIONS(2319), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -286507,44 +284688,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_after, - anon_sym_catch, - anon_sym_else, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, anon_sym_end, - anon_sym_rescue, - [95051] = 10, + [93101] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2321), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 40, + anon_sym_LBRACK2, + ACTIONS(2323), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -286576,34 +284745,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_after, - anon_sym_catch, - anon_sym_else, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, anon_sym_end, - anon_sym_rescue, - [95130] = 8, + [93168] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2325), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2409), 48, + anon_sym_LBRACK2, + ACTIONS(2327), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -286643,70 +284813,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, anon_sym_end, - anon_sym_rescue, - [95205] = 21, + [93235] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2842), 1, - anon_sym_EQ_GT, - ACTIONS(2844), 1, - anon_sym_EQ, - ACTIONS(2854), 1, - anon_sym_in, - ACTIONS(2856), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2830), 2, + ACTIONS(2329), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2331), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2846), 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(2848), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2826), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2850), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2852), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -286716,160 +284868,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 11, - anon_sym_SEMI, - anon_sym_PIPE, - 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, - [95306] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2844), 1, - anon_sym_EQ, - ACTIONS(2854), 1, anon_sym_in, - ACTIONS(2856), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2846), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2848), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2826), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2850), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2852), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 12, - anon_sym_SEMI, - anon_sym_PIPE, - 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_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, anon_sym_end, - anon_sym_rescue, - [95405] = 18, + [93302] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2854), 1, - anon_sym_in, - ACTIONS(2856), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2848), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2826), 4, + ACTIONS(2333), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2335), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2850), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2852), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 16, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -286879,58 +284912,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [95500] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2854), 1, - anon_sym_in, - ACTIONS(2856), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2826), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2850), 5, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2852), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -286940,141 +284931,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_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, - [95593] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2854), 1, anon_sym_in, - ACTIONS(2856), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2826), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2852), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 24, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - 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_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, anon_sym_end, - anon_sym_rescue, - [95684] = 14, + [93369] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2854), 1, - anon_sym_in, - ACTIONS(2856), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 37, + ACTIONS(2337), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2339), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -287103,46 +284994,41 @@ static const uint16_t ts_small_parse_table[] = { 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, - [95771] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2858), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2862), 1, anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, + anon_sym_do, + anon_sym_end, + [93436] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2341), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 39, + anon_sym_LBRACK2, + ACTIONS(2343), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -287173,46 +285059,39 @@ static const uint16_t ts_small_parse_table[] = { 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, - [95852] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2858), 1, anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2862), 1, anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, + anon_sym_do, + anon_sym_end, + [93503] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2345), 4, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 39, + anon_sym_LBRACK2, + ACTIONS(2347), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -287243,113 +285122,35 @@ static const uint16_t ts_small_parse_table[] = { 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, - [95933] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2687), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3101), 1, - anon_sym_PIPE, - ACTIONS(3113), 1, - anon_sym_when, - ACTIONS(3115), 1, - anon_sym_COLON_COLON, - ACTIONS(3117), 1, - anon_sym_EQ_GT, - ACTIONS(3119), 1, - anon_sym_EQ, - ACTIONS(3129), 1, - anon_sym_in, - ACTIONS(3131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, - anon_sym_STAR_STAR, - ACTIONS(3137), 1, - sym_not_in, - ACTIONS(3103), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3111), 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(3121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3099), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2689), 5, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(3125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3107), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [96042] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [93570] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2241), 3, + ACTIONS(2349), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2243), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2351), 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_DOT_DOT, anon_sym_PLUS, @@ -287392,30 +285193,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [96109] = 6, + anon_sym_end, + [93637] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_COMMA, - STATE(2765), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2730), 3, + ACTIONS(2353), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2732), 49, - anon_sym_RPAREN, + ACTIONS(2355), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -287457,24 +285256,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [96180] = 4, + anon_sym_end, + [93704] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2419), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2357), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2421), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2359), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -287523,28 +285320,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [96247] = 7, + anon_sym_do, + anon_sym_end, + [93771] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(650), 1, - anon_sym_do, - ACTIONS(3214), 1, - sym_newline_before_do, - STATE(4340), 1, - sym_do_block, - ACTIONS(2155), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2361), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2157), 49, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(2363), 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_DOT_DOT, anon_sym_PLUS, @@ -287588,22 +285383,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [96320] = 4, + anon_sym_do, + anon_sym_end, + [93838] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1825), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2365), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(1827), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2367), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -287652,21 +285446,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [96387] = 4, + anon_sym_do, + anon_sym_end, + [93905] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1833), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2273), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(1835), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2275), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -287715,27 +285509,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [96454] = 6, + anon_sym_do, + anon_sym_end, + [93972] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_COMMA, - STATE(2776), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2736), 3, + ACTIONS(2369), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2738), 49, - anon_sym_RPAREN, + ACTIONS(2371), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -287777,84 +285571,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [96525] = 25, + anon_sym_end, + [94039] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2751), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2373), 4, sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(3101), 1, + ACTIONS(2375), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3113), 1, - anon_sym_when, - ACTIONS(3115), 1, - anon_sym_COLON_COLON, - ACTIONS(3117), 1, - anon_sym_EQ_GT, - ACTIONS(3119), 1, - anon_sym_EQ, - ACTIONS(3129), 1, - anon_sym_in, - ACTIONS(3131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, - anon_sym_STAR_STAR, - ACTIONS(3137), 1, - sym_not_in, - ACTIONS(3103), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3109), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 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(3121), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3123), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3099), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2753), 5, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(3125), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3107), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3127), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -287864,21 +285624,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [96634] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [94106] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1837), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2377), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(1839), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2379), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -287927,21 +285698,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [96701] = 4, + anon_sym_do, + anon_sym_end, + [94173] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1841), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2381), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(1843), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2383), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -287990,67 +285761,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [96768] = 22, + anon_sym_do, + anon_sym_end, + [94240] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2828), 1, - anon_sym_PIPE, - ACTIONS(2842), 1, - anon_sym_EQ_GT, - ACTIONS(2844), 1, - anon_sym_EQ, - ACTIONS(2854), 1, - anon_sym_in, - ACTIONS(2856), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2830), 2, + ACTIONS(2385), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2387), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2846), 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(2848), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2826), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2850), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2852), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -288060,91 +285813,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 10, - anon_sym_SEMI, - 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, - [96871] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2828), 1, - anon_sym_PIPE, - ACTIONS(2838), 1, - anon_sym_when, - ACTIONS(2840), 1, - anon_sym_COLON_COLON, - ACTIONS(2842), 1, - anon_sym_EQ_GT, - ACTIONS(2844), 1, - anon_sym_EQ, - ACTIONS(2854), 1, anon_sym_in, - ACTIONS(2856), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2862), 1, anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, + anon_sym_do, + anon_sym_end, + [94307] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2830), 2, + ACTIONS(2389), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2391), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2846), 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(2848), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2826), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2850), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(2852), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -288154,80 +285876,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [96978] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2828), 1, - anon_sym_PIPE, - ACTIONS(2838), 1, - anon_sym_when, - ACTIONS(2840), 1, - anon_sym_COLON_COLON, - ACTIONS(2842), 1, - anon_sym_EQ_GT, - ACTIONS(2844), 1, - anon_sym_EQ, - ACTIONS(2854), 1, anon_sym_in, - ACTIONS(2856), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2862), 1, anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, + anon_sym_do, + anon_sym_end, + [94374] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2830), 2, + ACTIONS(2393), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2395), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2846), 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(2848), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2826), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2850), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(2852), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -288237,79 +285939,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [97085] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2828), 1, - anon_sym_PIPE, - ACTIONS(2840), 1, - anon_sym_COLON_COLON, - ACTIONS(2842), 1, - anon_sym_EQ_GT, - ACTIONS(2844), 1, - anon_sym_EQ, - ACTIONS(2854), 1, anon_sym_in, - ACTIONS(2856), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2862), 1, anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, + anon_sym_do, + anon_sym_end, + [94441] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2830), 2, + ACTIONS(2397), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2399), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2846), 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(2848), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2826), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2850), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 9, - anon_sym_SEMI, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2852), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -288319,21 +286002,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [97190] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [94508] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1845), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2401), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(1847), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2403), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -288382,21 +286076,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [97257] = 4, + anon_sym_do, + anon_sym_end, + [94575] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1849), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2405), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(1851), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2407), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -288445,22 +286139,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [97324] = 4, + anon_sym_do, + anon_sym_end, + [94642] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2247), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2249), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2209), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2211), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -288507,23 +286201,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [97391] = 6, + anon_sym_do, + [94709] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3216), 1, + ACTIONS(3212), 1, anon_sym_COMMA, - STATE(2776), 1, - aux_sym_keywords_repeat1, + STATE(2765), 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(2351), 3, + ACTIONS(2679), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2353), 49, + ACTIONS(2681), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -288573,30 +286269,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [97462] = 6, + [94780] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3219), 1, - anon_sym_COMMA, - STATE(2777), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 3, + ACTIONS(2916), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2687), 3, - sym_newline_before_do, + ACTIONS(2595), 2, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2689), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + aux_sym_terminator_token1, + ACTIONS(2890), 2, anon_sym_SLASH, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2894), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 38, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -288626,38 +286335,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [94863] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2914), 1, + anon_sym_in, + ACTIONS(2916), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2890), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [97533] = 4, + ACTIONS(2912), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 28, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [94952] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 5, - sym_newline_before_do, + ACTIONS(2595), 2, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2271), 50, + ACTIONS(2597), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -288698,32 +286475,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [97600] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [95025] = 10, ACTIONS(5), 1, sym_comment, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 5, - sym_newline_before_do, + ACTIONS(2595), 2, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2275), 50, + ACTIONS(2890), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 40, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -288755,35 +286544,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [97667] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [95104] = 8, ACTIONS(5), 1, sym_comment, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 5, - sym_newline_before_do, + ACTIONS(2595), 2, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2377), 50, + ACTIONS(2890), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2597), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -288823,52 +286611,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [97734] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [95179] = 21, ACTIONS(5), 1, sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2902), 1, + anon_sym_EQ_GT, + ACTIONS(2904), 1, + anon_sym_EQ, + ACTIONS(2914), 1, + anon_sym_in, + ACTIONS(2916), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2381), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2890), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2894), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2906), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2908), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2886), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2910), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2912), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 11, + anon_sym_SEMI, + anon_sym_PIPE, 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, + [95280] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2904), 1, anon_sym_EQ, + ACTIONS(2914), 1, + anon_sym_in, + ACTIONS(2916), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2890), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2906), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2908), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2886), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2910), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2912), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -288878,41 +286762,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 12, + anon_sym_SEMI, + anon_sym_PIPE, + 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, + [95379] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2914), 1, anon_sym_in, + ACTIONS(2916), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2890), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2908), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2886), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2910), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [97801] = 4, + ACTIONS(2912), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_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, + [95474] = 17, ACTIONS(5), 1, sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2914), 1, + anon_sym_in, + ACTIONS(2916), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, + ACTIONS(2890), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2886), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2910), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2912), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_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, + [95567] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, aux_sym_terminator_token1, + ACTIONS(2914), 1, + anon_sym_in, + ACTIONS(2916), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(2453), 50, - anon_sym_SEMI, + ACTIONS(2926), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2890), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2886), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2912), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 24, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + 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, + [95658] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2914), 1, + anon_sym_in, + ACTIONS(2916), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2890), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2894), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 37, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -288941,41 +287071,46 @@ 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_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [95745] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2920), 1, anon_sym_STAR_STAR, + ACTIONS(2922), 1, anon_sym_DOT, - anon_sym_do, - [97868] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(2924), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 5, - sym_newline_before_do, + ACTIONS(2595), 2, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2457), 50, + ACTIONS(2890), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 39, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -289006,17 +287141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [97935] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [95826] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(2197), 2, @@ -289079,48 +287209,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [98002] = 4, + [95893] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(1825), 5, + ACTIONS(2694), 1, sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(1827), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3094), 1, anon_sym_PIPE, + ACTIONS(3106), 1, + anon_sym_when, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(3110), 1, + anon_sym_EQ_GT, + ACTIONS(3112), 1, + anon_sym_EQ, + ACTIONS(3122), 1, + anon_sym_in, + ACTIONS(3124), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3126), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3128), 1, + anon_sym_STAR_STAR, + ACTIONS(3130), 1, + sym_not_in, + ACTIONS(3096), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3104), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3114), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3116), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2696), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3118), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3100), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3120), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -289130,37 +287293,24 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [98069] = 4, + [96002] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 5, + aux_sym_terminator_token1, + ACTIONS(2263), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1835), 50, - anon_sym_SEMI, + ACTIONS(2265), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -289203,27 +287353,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [98136] = 4, + [96069] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3214), 1, + anon_sym_COMMA, + STATE(2754), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2269), 3, + ACTIONS(2707), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2271), 51, + ACTIONS(2709), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -289268,19 +287421,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [98203] = 4, + [96140] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(1845), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2273), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2275), 51, + ACTIONS(1847), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -289328,23 +287483,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [98270] = 4, + [96207] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(1853), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1839), 50, - anon_sym_SEMI, + ACTIONS(1855), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -289393,26 +287547,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [98337] = 4, + [96274] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(1841), 5, + ACTIONS(626), 1, + anon_sym_do, + ACTIONS(3216), 1, sym_newline_before_do, + STATE(4220), 1, + sym_do_block, + ACTIONS(2167), 2, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1843), 50, - anon_sym_SEMI, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2169), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -289456,25 +287612,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [98404] = 4, + anon_sym_DOT_DOT_DOT_GT, + [96347] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(626), 1, + anon_sym_do, + ACTIONS(3218), 1, + sym_newline_before_do, + STATE(4223), 1, + sym_do_block, + ACTIONS(2173), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2375), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2377), 51, - anon_sym_RPAREN, + ACTIONS(2175), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -289517,22 +287677,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [98471] = 4, + anon_sym_DOT_DOT_DOT_GT, + [96420] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(1849), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2379), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2381), 51, + ACTIONS(1851), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -289580,23 +287741,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [98538] = 4, + [96487] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(1857), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1847), 50, - anon_sym_SEMI, + ACTIONS(1859), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -289645,49 +287805,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [98605] = 4, + [96554] = 22, ACTIONS(5), 1, sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2888), 1, + anon_sym_PIPE, + ACTIONS(2902), 1, + anon_sym_EQ_GT, + ACTIONS(2904), 1, + anon_sym_EQ, + ACTIONS(2914), 1, + anon_sym_in, + ACTIONS(2916), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1851), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2890), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2894), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2906), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2908), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2886), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2910), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2912), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -289697,37 +287875,38 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [98672] = 4, + ACTIONS(2597), 10, + anon_sym_SEMI, + 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, + [96657] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3214), 1, + anon_sym_COMMA, + STATE(2762), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2451), 3, + ACTIONS(2685), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2453), 51, + ACTIONS(2687), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -289772,47 +287951,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [98739] = 4, + [96728] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2455), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2457), 51, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2888), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 1, anon_sym_when, + ACTIONS(2900), 1, anon_sym_COLON_COLON, + ACTIONS(2902), 1, anon_sym_EQ_GT, + ACTIONS(2904), 1, anon_sym_EQ, + ACTIONS(2914), 1, + anon_sym_in, + ACTIONS(2916), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2890), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2906), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2908), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2886), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2910), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(2912), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -289822,61 +288034,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [96835] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2888), 1, + anon_sym_PIPE, + ACTIONS(2898), 1, + anon_sym_when, + ACTIONS(2900), 1, + anon_sym_COLON_COLON, + ACTIONS(2902), 1, + anon_sym_EQ_GT, + ACTIONS(2904), 1, + anon_sym_EQ, + ACTIONS(2914), 1, anon_sym_in, + ACTIONS(2916), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2920), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(2922), 1, anon_sym_DOT, - anon_sym_do, - [98806] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2271), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2890), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2894), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2906), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2908), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2886), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2910), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 8, + anon_sym_SEMI, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2912), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [96942] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2888), 1, + anon_sym_PIPE, + ACTIONS(2900), 1, anon_sym_COLON_COLON, + ACTIONS(2902), 1, anon_sym_EQ_GT, + ACTIONS(2904), 1, anon_sym_EQ, + ACTIONS(2914), 1, + anon_sym_in, + ACTIONS(2916), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2890), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2906), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2908), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2886), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2910), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 9, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2912), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -289886,32 +288199,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [97047] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2763), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3094), 1, + anon_sym_PIPE, + ACTIONS(3106), 1, + anon_sym_when, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(3110), 1, + anon_sym_EQ_GT, + ACTIONS(3112), 1, + anon_sym_EQ, + ACTIONS(3122), 1, anon_sym_in, + ACTIONS(3124), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3126), 1, anon_sym_SLASH_SLASH, + ACTIONS(3128), 1, + anon_sym_STAR_STAR, + ACTIONS(3130), 1, + sym_not_in, + ACTIONS(3096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3104), 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(3114), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3116), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2765), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3118), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3100), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [98873] = 4, + ACTIONS(3120), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [97156] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(1861), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 4, - sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2275), 51, - anon_sym_SEMI, + ACTIONS(1863), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -289960,21 +288346,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [98940] = 4, + [97223] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(1865), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 4, - sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2377), 51, - anon_sym_SEMI, + ACTIONS(1867), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -290023,26 +288409,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [99007] = 4, + [97290] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2179), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 4, - sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2381), 51, - anon_sym_SEMI, + ACTIONS(2181), 52, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -290086,27 +288472,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [99074] = 4, + [97357] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3220), 1, + anon_sym_COMMA, + STATE(2762), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 4, + aux_sym_terminator_token1, + ACTIONS(2601), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2453), 51, - anon_sym_SEMI, + ACTIONS(2603), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -290148,22 +288534,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [99141] = 4, + [97428] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 4, + ACTIONS(2413), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2457), 51, + ACTIONS(2415), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -290213,18 +288600,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [99208] = 4, + [97495] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 4, + ACTIONS(2417), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 51, + ACTIONS(2419), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -290275,26 +288663,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [99275] = 4, + [97562] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3223), 1, + anon_sym_COMMA, + STATE(2765), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 4, + aux_sym_terminator_token1, + ACTIONS(2694), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 51, - anon_sym_SEMI, + ACTIONS(2696), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -290336,21 +288725,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [99342] = 4, + [97633] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 4, + ACTIONS(2421), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2377), 51, + ACTIONS(2423), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -290401,19 +288791,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [99409] = 4, + [97700] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 4, + ACTIONS(2425), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2381), 51, + ACTIONS(2427), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -290464,19 +288854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [99476] = 4, + [97767] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 4, + ACTIONS(2429), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2453), 51, + ACTIONS(2431), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -290527,19 +288917,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [99543] = 4, + [97834] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 4, + ACTIONS(2433), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2457), 51, + ACTIONS(2435), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -290590,151 +288980,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [99610] = 4, + [97901] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1825), 3, - sym_newline_before_do, + ACTIONS(2233), 2, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1827), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [99677] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1833), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(1835), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [99744] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1837), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(1839), 51, + ACTIONS(2235), 52, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -290777,85 +289042,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [99811] = 4, + [97968] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1841), 3, + ACTIONS(1845), 5, sym_newline_before_do, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(1843), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [99878] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(1845), 3, - sym_newline_before_do, - sym_not_in, anon_sym_LBRACK2, - ACTIONS(1847), 51, - anon_sym_RPAREN, + ACTIONS(1847), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -290903,22 +289104,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [99945] = 4, + [98035] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1849), 3, + ACTIONS(1853), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1851), 51, - anon_sym_RPAREN, + ACTIONS(1855), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -290966,28 +289167,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [100012] = 4, + [98102] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 6, + aux_sym_terminator_token1, + ACTIONS(2413), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1827), 49, - anon_sym_SEMI, + ACTIONS(2415), 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_DOT_DOT, anon_sym_PLUS, @@ -291030,27 +289229,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [100079] = 4, + [98169] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 6, + aux_sym_terminator_token1, + ACTIONS(2417), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1835), 49, - anon_sym_SEMI, + ACTIONS(2419), 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_DOT_DOT, anon_sym_PLUS, @@ -291093,22 +289292,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [100146] = 4, + [98236] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 4, + ACTIONS(1849), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1827), 51, + ACTIONS(1851), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291158,20 +289358,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100213] = 4, + [98303] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 4, + ACTIONS(1857), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1835), 51, + ACTIONS(1859), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291221,19 +289421,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100280] = 4, + [98370] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 4, + aux_sym_terminator_token1, + ACTIONS(2421), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1839), 51, - anon_sym_SEMI, + ACTIONS(2423), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -291282,21 +289481,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [100347] = 4, + [98437] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 4, + aux_sym_terminator_token1, + ACTIONS(2425), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1843), 51, - anon_sym_SEMI, + ACTIONS(2427), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -291345,22 +289544,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [100414] = 4, + [98504] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 4, + ACTIONS(1861), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1847), 51, + ACTIONS(1863), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291410,20 +289610,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100481] = 4, + [98571] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 4, + ACTIONS(1865), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1851), 51, + ACTIONS(1867), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291473,19 +289673,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100548] = 4, + [98638] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 4, + aux_sym_terminator_token1, + ACTIONS(2429), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1827), 51, - anon_sym_SEMI, + ACTIONS(2431), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291533,22 +289733,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [100615] = 4, + [98705] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 4, + aux_sym_terminator_token1, + ACTIONS(2433), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1835), 51, - anon_sym_SEMI, + ACTIONS(2435), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291596,22 +289796,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [100682] = 4, + [98772] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 4, + ACTIONS(2413), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1839), 51, + ACTIONS(2415), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291661,20 +289862,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [100749] = 4, + [98839] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 4, + ACTIONS(2417), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1843), 51, + ACTIONS(2419), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291724,20 +289925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [100816] = 4, + [98906] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 4, + ACTIONS(2421), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1847), 51, + ACTIONS(2423), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291787,20 +289988,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [100883] = 4, + [98973] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 4, + ACTIONS(2425), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1851), 51, + ACTIONS(2427), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291850,84 +290051,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [100950] = 27, + [99040] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3224), 1, - anon_sym_PIPE, - ACTIONS(3228), 1, - anon_sym_COMMA, - ACTIONS(3236), 1, - anon_sym_when, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3240), 1, - anon_sym_EQ_GT, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3252), 1, - anon_sym_in, - ACTIONS(3254), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, - anon_sym_STAR_STAR, - ACTIONS(3260), 1, - anon_sym_DOT, - ACTIONS(3262), 1, - sym_not_in, - STATE(2840), 1, - aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2293), 2, + ACTIONS(2429), 4, sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(3226), 2, + anon_sym_LBRACK2, + ACTIONS(2431), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3232), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2295), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_do, - ACTIONS(3244), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3246), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3222), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3248), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3230), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3250), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -291937,26 +290102,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [101063] = 5, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [99107] = 4, ACTIONS(5), 1, sym_comment, - STATE(3251), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2209), 5, + ACTIONS(2433), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2211), 49, + ACTIONS(2435), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -292001,26 +290177,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101132] = 5, + [99174] = 4, ACTIONS(5), 1, sym_comment, - STATE(3254), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2193), 5, + ACTIONS(2413), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2195), 49, + ACTIONS(2415), 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_DOT_DOT, anon_sym_PLUS, @@ -292065,26 +290239,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101201] = 5, + anon_sym_end, + [99241] = 4, ACTIONS(5), 1, sym_comment, - STATE(3255), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2217), 5, + ACTIONS(2417), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2219), 49, + ACTIONS(2419), 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_DOT_DOT, anon_sym_PLUS, @@ -292129,25 +290302,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101270] = 4, + anon_sym_end, + [99308] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2225), 5, + ACTIONS(2421), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2227), 50, + ACTIONS(2423), 51, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -292192,25 +290365,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101337] = 4, + anon_sym_end, + [99375] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 6, + ACTIONS(2425), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1839), 49, + ACTIONS(2427), 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_DOT_DOT, anon_sym_PLUS, @@ -292255,25 +290428,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101404] = 4, + anon_sym_end, + [99442] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 6, + ACTIONS(2429), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1843), 49, + ACTIONS(2431), 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_DOT_DOT, anon_sym_PLUS, @@ -292318,110 +290491,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101471] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2828), 1, - anon_sym_PIPE, - ACTIONS(2838), 1, - anon_sym_when, - ACTIONS(2840), 1, - anon_sym_COLON_COLON, - ACTIONS(2842), 1, - anon_sym_EQ_GT, - ACTIONS(2844), 1, - anon_sym_EQ, - ACTIONS(2854), 1, - anon_sym_in, - ACTIONS(2856), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, - ACTIONS(3264), 1, - aux_sym_terminator_token1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2836), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2846), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2848), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2826), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2850), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3266), 6, - anon_sym_SEMI, - anon_sym_after, - anon_sym_catch, - anon_sym_else, anon_sym_end, - anon_sym_rescue, - ACTIONS(2852), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [101580] = 5, + [99509] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3268), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2257), 5, + ACTIONS(2433), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2259), 49, + ACTIONS(2435), 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_DOT_DOT, anon_sym_PLUS, @@ -292466,26 +290554,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101649] = 5, + anon_sym_end, + [99576] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3270), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2263), 5, + aux_sym_terminator_token1, + ACTIONS(1845), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2265), 49, - anon_sym_SEMI, + ACTIONS(1847), 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_DOT_DOT, anon_sym_PLUS, @@ -292528,27 +290615,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [101718] = 4, + [99643] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2165), 5, + aux_sym_terminator_token1, + ACTIONS(1853), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2167), 50, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(1855), 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_DOT_DOT, anon_sym_PLUS, @@ -292591,30 +290678,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [101785] = 6, + [99710] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3272), 1, - anon_sym_COMMA, - STATE(2909), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2677), 4, + aux_sym_terminator_token1, + ACTIONS(1849), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2679), 49, - anon_sym_SEMI, + ACTIONS(1851), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -292656,27 +290741,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [101856] = 4, + [99777] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2169), 5, + aux_sym_terminator_token1, + ACTIONS(1857), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2171), 50, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(1859), 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_DOT_DOT, anon_sym_PLUS, @@ -292719,27 +290804,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [101923] = 4, + [99844] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2173), 5, + aux_sym_terminator_token1, + ACTIONS(1861), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2175), 50, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(1863), 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_DOT_DOT, anon_sym_PLUS, @@ -292782,85 +290867,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [101990] = 27, + [99911] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3276), 1, - anon_sym_PIPE, - ACTIONS(3280), 1, - anon_sym_COMMA, - ACTIONS(3288), 1, - anon_sym_when, - ACTIONS(3290), 1, - anon_sym_COLON_COLON, - ACTIONS(3292), 1, - anon_sym_EQ_GT, - ACTIONS(3294), 1, - anon_sym_EQ, - ACTIONS(3304), 1, - anon_sym_in, - ACTIONS(3306), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, - anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, - sym_not_in, - STATE(2940), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2293), 2, - sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3278), 2, + ACTIONS(1865), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(1867), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3284), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3286), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2295), 3, - anon_sym_SEMI, - anon_sym_do, - anon_sym_end, - ACTIONS(3296), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3298), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3274), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3300), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3282), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3302), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -292870,25 +290920,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [102103] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [99978] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 6, + ACTIONS(1845), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1847), 49, + ACTIONS(1847), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -292933,25 +290996,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102170] = 4, + [100045] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 6, + ACTIONS(1853), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1851), 49, + ACTIONS(1855), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -292996,20 +291059,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102237] = 4, + [100112] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2367), 5, + ACTIONS(1849), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2369), 50, + ACTIONS(1851), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -293059,20 +291122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102304] = 4, + [100179] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2371), 5, + ACTIONS(1857), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2373), 50, + ACTIONS(1859), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -293122,20 +291185,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102371] = 4, + [100246] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2415), 5, + ACTIONS(1861), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2417), 50, + ACTIONS(1863), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -293185,20 +291248,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102438] = 4, + [100313] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2419), 5, + ACTIONS(1865), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2421), 50, + ACTIONS(1867), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -293248,19 +291311,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102505] = 4, + [100380] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2435), 5, + ACTIONS(1845), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2437), 50, + ACTIONS(1847), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -293311,19 +291373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102572] = 4, + anon_sym_end, + [100447] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2443), 5, + ACTIONS(1853), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2445), 50, + ACTIONS(1855), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -293374,19 +291436,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102639] = 4, + anon_sym_end, + [100514] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2447), 5, + ACTIONS(1849), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2449), 50, + ACTIONS(1851), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -293437,19 +291499,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102706] = 4, + anon_sym_end, + [100581] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2463), 5, + ACTIONS(1857), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2465), 50, + ACTIONS(1859), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -293500,19 +291562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102773] = 4, + anon_sym_end, + [100648] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2467), 5, + ACTIONS(1861), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2469), 50, + ACTIONS(1863), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -293563,19 +291625,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102840] = 4, + anon_sym_end, + [100715] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2471), 5, + ACTIONS(1865), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2473), 50, + ACTIONS(1867), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -293626,25 +291688,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102907] = 4, + anon_sym_end, + [100782] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2495), 5, + ACTIONS(1845), 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(2497), 50, + ACTIONS(1847), 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_DOT_DOT, anon_sym_PLUS, @@ -293689,25 +291752,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102974] = 4, + [100849] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2499), 5, + ACTIONS(1853), 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(2501), 50, + ACTIONS(1855), 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_DOT_DOT, anon_sym_PLUS, @@ -293752,25 +291815,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103041] = 4, + [100916] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3228), 1, + anon_sym_PIPE, + ACTIONS(3232), 1, + anon_sym_COMMA, + ACTIONS(3240), 1, + anon_sym_when, + ACTIONS(3242), 1, + anon_sym_COLON_COLON, + ACTIONS(3244), 1, + anon_sym_EQ_GT, + ACTIONS(3246), 1, + anon_sym_EQ, + ACTIONS(3256), 1, + anon_sym_in, + ACTIONS(3258), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + sym_not_in, + STATE(2826), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2409), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3230), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3238), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2411), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_do, + ACTIONS(3248), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3250), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3226), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3252), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3254), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [101029] = 5, ACTIONS(5), 1, sym_comment, + STATE(3336), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2511), 5, + ACTIONS(2229), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2513), 50, + ACTIONS(2231), 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_DOT_DOT, anon_sym_PLUS, @@ -293815,25 +291965,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103108] = 4, + [101098] = 5, ACTIONS(5), 1, sym_comment, + STATE(3339), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2531), 5, + ACTIONS(2191), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2533), 50, + ACTIONS(2193), 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_DOT_DOT, anon_sym_PLUS, @@ -293878,25 +292029,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103175] = 4, + [101167] = 5, ACTIONS(5), 1, sym_comment, + STATE(3340), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2539), 5, + ACTIONS(2221), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2541), 50, + ACTIONS(2223), 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_DOT_DOT, anon_sym_PLUS, @@ -293941,25 +292093,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103242] = 4, + [101236] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2543), 5, + ACTIONS(2253), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2545), 50, + ACTIONS(2255), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -294004,21 +292156,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103309] = 4, + [101303] = 25, ACTIONS(5), 1, sym_comment, + ACTIONS(2888), 1, + anon_sym_PIPE, + ACTIONS(2898), 1, + anon_sym_when, + ACTIONS(2900), 1, + anon_sym_COLON_COLON, + ACTIONS(2902), 1, + anon_sym_EQ_GT, + ACTIONS(2904), 1, + anon_sym_EQ, + ACTIONS(2914), 1, + anon_sym_in, + ACTIONS(2916), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2918), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, + sym_not_in, + ACTIONS(3268), 1, + aux_sym_terminator_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2201), 5, + ACTIONS(2890), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2894), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2896), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2906), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2908), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2886), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2910), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3270), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2912), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [101412] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(1849), 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(2203), 50, + ACTIONS(1851), 49, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -294067,21 +292303,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103376] = 4, + [101479] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2205), 5, + ACTIONS(1857), 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(2207), 50, + ACTIONS(1859), 49, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -294130,21 +292366,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103443] = 4, + [101546] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3272), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2253), 5, + ACTIONS(2701), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2255), 50, + ACTIONS(2703), 49, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -294193,25 +292430,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103510] = 4, + [101615] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3276), 1, + anon_sym_PIPE, + ACTIONS(3280), 1, + anon_sym_COMMA, + ACTIONS(3288), 1, + anon_sym_when, + ACTIONS(3290), 1, + anon_sym_COLON_COLON, + ACTIONS(3292), 1, + anon_sym_EQ_GT, + ACTIONS(3294), 1, + anon_sym_EQ, + ACTIONS(3304), 1, + anon_sym_in, + ACTIONS(3306), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3308), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3310), 1, + anon_sym_STAR_STAR, + ACTIONS(3312), 1, + anon_sym_DOT, + ACTIONS(3314), 1, + sym_not_in, + STATE(2924), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2409), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3278), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3284), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3286), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2411), 3, + anon_sym_SEMI, + anon_sym_do, + anon_sym_end, + ACTIONS(3296), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3298), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3274), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3300), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3282), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [101728] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2547), 5, + ACTIONS(2183), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2549), 50, + ACTIONS(2185), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -294256,25 +292579,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103577] = 4, + [101795] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3316), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2679), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2681), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101866] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2551), 5, + ACTIONS(2197), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2553), 50, + ACTIONS(2199), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -294319,25 +292707,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103644] = 4, + [101933] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2555), 5, + ACTIONS(2217), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2557), 50, + ACTIONS(2219), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -294382,25 +292770,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103711] = 4, + [102000] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2559), 5, + ACTIONS(1861), 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(2561), 50, + ACTIONS(1863), 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_DOT_DOT, anon_sym_PLUS, @@ -294445,25 +292833,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103778] = 4, + [102067] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2563), 5, + ACTIONS(1865), 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(2565), 50, + ACTIONS(1867), 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_DOT_DOT, anon_sym_PLUS, @@ -294508,19 +292896,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103845] = 4, + [102134] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2567), 5, + ACTIONS(2711), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2569), 50, + ACTIONS(2713), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -294571,19 +292959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103912] = 4, + [102201] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2571), 5, + ACTIONS(2715), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2573), 50, + ACTIONS(2717), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -294634,19 +293022,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103979] = 4, + [102268] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2575), 5, + ACTIONS(2719), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2577), 50, + ACTIONS(2721), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -294697,19 +293085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104046] = 4, + [102335] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2579), 5, + ACTIONS(2723), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2581), 50, + ACTIONS(2725), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -294760,19 +293148,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104113] = 4, + [102402] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2583), 5, + ACTIONS(2727), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2585), 50, + ACTIONS(2729), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -294823,19 +293211,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104180] = 4, + [102469] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2587), 5, + ACTIONS(2731), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2589), 50, + ACTIONS(2733), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -294886,19 +293274,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104247] = 4, + [102536] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2591), 5, + ACTIONS(2735), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2593), 50, + ACTIONS(2737), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -294949,19 +293337,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104314] = 4, + [102603] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2595), 5, + ACTIONS(2739), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2597), 50, + ACTIONS(2741), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -295012,19 +293400,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104381] = 4, + [102670] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2599), 5, + ACTIONS(2743), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2601), 50, + ACTIONS(2745), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -295075,19 +293463,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104448] = 4, + [102737] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2603), 5, + ACTIONS(2747), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2605), 50, + ACTIONS(2749), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -295138,19 +293526,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104515] = 4, + [102804] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2607), 5, + ACTIONS(2751), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2609), 50, + ACTIONS(2753), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -295201,25 +293589,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104582] = 4, + [102871] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2213), 5, + ACTIONS(2755), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2215), 50, + ACTIONS(2757), 50, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -295264,19 +293652,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104649] = 4, + [102938] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2611), 5, + ACTIONS(2759), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 50, + ACTIONS(2761), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -295327,19 +293715,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104716] = 4, + [103005] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2747), 5, + ACTIONS(2567), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2749), 50, + ACTIONS(2569), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -295390,19 +293778,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104783] = 4, + [103072] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2617), 5, + ACTIONS(2277), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2619), 50, + ACTIONS(2279), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -295453,19 +293841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104850] = 4, + [103139] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2621), 5, + ACTIONS(2281), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2623), 50, + ACTIONS(2283), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -295516,25 +293904,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104917] = 4, + [103206] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2625), 5, + ACTIONS(2249), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2627), 50, + ACTIONS(2251), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -295579,25 +293967,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104984] = 4, + [103273] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2629), 5, + ACTIONS(2245), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2631), 50, + ACTIONS(2247), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -295642,25 +294030,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105051] = 4, + [103340] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2633), 5, + ACTIONS(2187), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2635), 50, + ACTIONS(2189), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -295705,19 +294093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105118] = 4, + [103407] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2637), 5, + ACTIONS(2285), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2639), 50, + ACTIONS(2287), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -295768,19 +294156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105185] = 4, + [103474] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2641), 5, + ACTIONS(2289), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2643), 50, + ACTIONS(2291), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -295831,19 +294219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105252] = 4, + [103541] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2645), 5, + ACTIONS(2293), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2647), 50, + ACTIONS(2295), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -295894,19 +294282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105319] = 4, + [103608] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2649), 5, + ACTIONS(2297), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2651), 50, + ACTIONS(2299), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -295957,19 +294345,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105386] = 4, + [103675] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2653), 5, + ACTIONS(2301), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2655), 50, + ACTIONS(2303), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -296020,19 +294408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105453] = 4, + [103742] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2657), 5, + ACTIONS(2305), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2659), 50, + ACTIONS(2307), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -296083,19 +294471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105520] = 4, + [103809] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2661), 5, + ACTIONS(2309), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2663), 50, + ACTIONS(2311), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -296146,19 +294534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105587] = 4, + [103876] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2665), 5, + ACTIONS(2313), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2667), 50, + ACTIONS(2315), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -296209,19 +294597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105654] = 4, + [103943] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2669), 5, + ACTIONS(2317), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2671), 50, + ACTIONS(2319), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -296272,25 +294660,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105721] = 4, + [104010] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2221), 5, + ACTIONS(2321), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2223), 50, + ACTIONS(2323), 50, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -296335,25 +294723,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105788] = 4, + [104077] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2229), 5, + ACTIONS(2325), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2231), 50, + ACTIONS(2327), 50, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -296398,25 +294786,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105855] = 4, + [104144] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2233), 5, + ACTIONS(2329), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2235), 50, + ACTIONS(2331), 50, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -296461,199 +294849,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105922] = 25, + [104211] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2755), 1, - aux_sym_terminator_token1, - ACTIONS(2828), 1, - anon_sym_PIPE, - ACTIONS(2838), 1, - anon_sym_when, - ACTIONS(2840), 1, - anon_sym_COLON_COLON, - ACTIONS(2842), 1, - anon_sym_EQ_GT, - ACTIONS(2844), 1, - anon_sym_EQ, - ACTIONS(2854), 1, - anon_sym_in, - ACTIONS(2856), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2858), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2860), 1, - anon_sym_STAR_STAR, - ACTIONS(2862), 1, - anon_sym_DOT, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(2866), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2830), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2834), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2836), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2846), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2848), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2826), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2850), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2757), 6, - anon_sym_SEMI, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2832), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2852), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [106031] = 27, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3318), 1, - anon_sym_PIPE, - ACTIONS(3322), 1, - anon_sym_COMMA, - ACTIONS(3330), 1, - anon_sym_when, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, - ACTIONS(3334), 1, - anon_sym_EQ_GT, - ACTIONS(3336), 1, - anon_sym_EQ, - ACTIONS(3346), 1, - anon_sym_in, - ACTIONS(3348), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, - anon_sym_STAR_STAR, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3358), 1, - sym_not_in, - STATE(2938), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2295), 2, - anon_sym_SEMI, - anon_sym_do, - ACTIONS(3320), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3328), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2293), 3, - sym_newline_before_do, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3338), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3340), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3316), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3342), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3344), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [106144] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(502), 1, - anon_sym_do, - ACTIONS(3360), 1, + ACTIONS(2333), 5, sym_newline_before_do, - STATE(4343), 1, - sym_do_block, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2209), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2211), 48, + ACTIONS(2335), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -296697,29 +294911,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [106217] = 7, + anon_sym_do, + [104278] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(502), 1, - anon_sym_do, - ACTIONS(3362), 1, - sym_newline_before_do, - STATE(4360), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2193), 4, + ACTIONS(2337), 5, + sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2195), 48, + ACTIONS(2339), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -296763,29 +294974,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [106290] = 7, + anon_sym_do, + [104345] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(502), 1, - anon_sym_do, - ACTIONS(3364), 1, - sym_newline_before_do, - STATE(4361), 1, - sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2217), 4, + ACTIONS(2341), 5, + sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2219), 48, + ACTIONS(2343), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -296829,27 +295037,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [106363] = 5, + anon_sym_do, + [104412] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(2183), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2345), 5, + sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2185), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2347), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -296893,23 +295100,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [106432] = 5, + anon_sym_do, + [104479] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(2189), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2241), 5, + sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2191), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2243), 50, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -296957,28 +295163,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [106501] = 6, + anon_sym_do, + [104546] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3366), 1, - anon_sym_COMMA, - STATE(2910), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2730), 5, + ACTIONS(2349), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2732), 48, + ACTIONS(2351), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -297022,28 +295227,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [106572] = 6, + [104613] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3368), 1, - anon_sym_COMMA, - STATE(2909), 1, - aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2687), 4, + ACTIONS(2353), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2689), 49, + ACTIONS(2355), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -297087,28 +295290,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [106643] = 6, + [104680] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3366), 1, - anon_sym_COMMA, - STATE(2918), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2736), 5, + ACTIONS(2357), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2738), 48, + ACTIONS(2359), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -297152,25 +295353,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [106714] = 5, + [104747] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2183), 3, + ACTIONS(2361), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 50, - anon_sym_RPAREN, + ACTIONS(2363), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -297213,28 +295414,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [106783] = 5, + [104814] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2189), 3, + ACTIONS(2365), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2191), 50, - anon_sym_RPAREN, + ACTIONS(2367), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -297277,31 +295477,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [106852] = 6, + [104881] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_COMMA, - STATE(2917), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2730), 4, + ACTIONS(2273), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2732), 49, + ACTIONS(2275), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -297345,81 +295542,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [106923] = 25, + [104948] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3043), 1, - anon_sym_PIPE, - ACTIONS(3055), 1, - anon_sym_when, - ACTIONS(3057), 1, - anon_sym_COLON_COLON, - ACTIONS(3059), 1, - anon_sym_EQ_GT, - ACTIONS(3061), 1, - anon_sym_EQ, - ACTIONS(3071), 1, - anon_sym_in, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2755), 2, + ACTIONS(2369), 5, sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3045), 2, + anon_sym_LBRACK2, + ACTIONS(2371), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3053), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3063), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3065), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3041), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2757), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3067), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3069), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -297429,27 +295593,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [107032] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [105015] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3079), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 3, + ACTIONS(2373), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2291), 50, + anon_sym_LBRACK2, + ACTIONS(2375), 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_DOT_DOT, anon_sym_PLUS, @@ -297492,29 +295666,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - [107103] = 6, + [105082] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3079), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 3, + ACTIONS(2377), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2361), 50, + anon_sym_LBRACK2, + ACTIONS(2379), 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_DOT_DOT, anon_sym_PLUS, @@ -297557,30 +295729,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - [107174] = 6, + [105149] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_COMMA, - STATE(2935), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2736), 4, + ACTIONS(2381), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2738), 49, + ACTIONS(2383), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -297624,28 +295794,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [107245] = 6, + [105216] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3373), 1, - anon_sym_COMMA, - STATE(2918), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 5, + ACTIONS(2385), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 48, + ACTIONS(2387), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -297689,28 +295857,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [107316] = 6, + [105283] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3376), 1, - anon_sym_COMMA, - STATE(2919), 1, - aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2687), 5, + ACTIONS(2389), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2689), 48, + ACTIONS(2391), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -297754,46 +295920,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [107387] = 12, + [105350] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2393), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 37, + anon_sym_LBRACK2, + ACTIONS(2395), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -297823,45 +295972,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_DASH_GT, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [107470] = 15, + [105417] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3071), 1, + ACTIONS(2767), 1, + aux_sym_terminator_token1, + ACTIONS(2888), 1, + anon_sym_PIPE, + ACTIONS(2898), 1, + anon_sym_when, + ACTIONS(2900), 1, + anon_sym_COLON_COLON, + ACTIONS(2902), 1, + anon_sym_EQ_GT, + ACTIONS(2904), 1, + anon_sym_EQ, + ACTIONS(2914), 1, anon_sym_in, - ACTIONS(3073), 1, + ACTIONS(2916), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, + ACTIONS(2918), 1, anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, + ACTIONS(2920), 1, anon_sym_STAR_STAR, - ACTIONS(3079), 1, + ACTIONS(2922), 1, anon_sym_DOT, - ACTIONS(3081), 1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(2926), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3045), 2, + ACTIONS(2890), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3051), 2, + ACTIONS(2894), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3049), 6, + ACTIONS(2896), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2906), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2908), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2886), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2910), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2769), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2892), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3069), 9, + ACTIONS(2912), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -297871,57 +296067,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [107559] = 7, + [105526] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, + ACTIONS(2397), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 49, + anon_sym_LBRACK2, + ACTIONS(2399), 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_DOT_DOT, anon_sym_PLUS, @@ -297963,44 +296127,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_DASH_GT, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [107632] = 10, + [105593] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2401), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 39, + anon_sym_LBRACK2, + ACTIONS(2403), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -298032,33 +296184,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_DASH_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [107711] = 8, + [105660] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2407), 3, + ACTIONS(2405), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 47, + anon_sym_LBRACK2, + ACTIONS(2407), 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_DOT_DOT, anon_sym_PLUS, @@ -298099,146 +296252,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [107786] = 21, + [105727] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3059), 1, - anon_sym_EQ_GT, - ACTIONS(3061), 1, - anon_sym_EQ, - ACTIONS(3071), 1, - anon_sym_in, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2237), 5, sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3065), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3041), 4, + anon_sym_LBRACK2, + ACTIONS(2239), 50, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3067), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3069), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 10, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_do, - [107887] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3061), 1, + anon_sym_EQ_GT, anon_sym_EQ, - ACTIONS(3071), 1, - anon_sym_in, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3065), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3041), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3067), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3069), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -298248,157 +296307,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [107986] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3071), 1, anon_sym_in, - ACTIONS(3073), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3065), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3041), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3067), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3069), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [108081] = 17, + [105794] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3071), 1, - anon_sym_in, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2213), 5, sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3041), 4, + anon_sym_LBRACK2, + ACTIONS(2215), 50, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3067), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3069), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 18, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -298411,50 +296354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_DASH_GT, - anon_sym_do, - [108174] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3071), 1, - anon_sym_in, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3041), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_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(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3069), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -298464,73 +296370,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [108265] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3071), 1, anon_sym_in, - ACTIONS(3073), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3079), 1, anon_sym_DOT, - ACTIONS(3081), 1, - sym_not_in, + anon_sym_do, + [105861] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2267), 5, sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 36, + anon_sym_LBRACK2, + ACTIONS(2269), 50, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -298559,192 +296433,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, - anon_sym_do, - [108352] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3075), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 38, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [105928] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3320), 1, anon_sym_PIPE, + ACTIONS(3324), 1, anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3332), 1, anon_sym_when, + ACTIONS(3334), 1, anon_sym_COLON_COLON, + ACTIONS(3336), 1, anon_sym_EQ_GT, + ACTIONS(3338), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3348), 1, anon_sym_in, + ACTIONS(3350), 1, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - anon_sym_do, - [108433] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3075), 1, + ACTIONS(3352), 1, anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, + ACTIONS(3354), 1, anon_sym_STAR_STAR, - ACTIONS(3079), 1, + ACTIONS(3356), 1, anon_sym_DOT, + ACTIONS(3358), 1, + anon_sym_LBRACK2, + ACTIONS(3360), 1, + sym_not_in, + STATE(2923), 1, + aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3045), 2, + ACTIONS(2411), 2, + anon_sym_SEMI, + anon_sym_do, + ACTIONS(3322), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3051), 2, + ACTIONS(3328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 38, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(3330), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - anon_sym_do, - [108514] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3079), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 3, + ACTIONS(2409), 3, sym_newline_before_do, - sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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, + ACTIONS(3340), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3342), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3318), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3344), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3346), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -298754,32 +296531,25 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_do, - [108585] = 4, + [106041] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(456), 1, + anon_sym_do, + ACTIONS(3362), 1, + sym_newline_before_do, + STATE(4455), 1, + sym_do_block, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2247), 3, - sym_newline_before_do, + ACTIONS(2229), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2249), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2231), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298826,31 +296596,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [108652] = 6, + [106114] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3379), 1, - anon_sym_COMMA, - STATE(2935), 1, - aux_sym_keywords_repeat1, + ACTIONS(456), 1, + anon_sym_do, + ACTIONS(3364), 1, + sym_newline_before_do, + STATE(4286), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 4, - sym_newline_before_do, + ACTIONS(2191), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 49, + ACTIONS(2193), 48, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -298893,22 +296663,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [108723] = 4, + [106187] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(456), 1, + anon_sym_do, + ACTIONS(3366), 1, + sym_newline_before_do, + STATE(4287), 1, + sym_do_block, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2177), 5, - sym_newline_before_do, + ACTIONS(2221), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2179), 50, + ACTIONS(2223), 48, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298956,21 +296729,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [108790] = 4, + [106260] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(2259), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2197), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2199), 51, - anon_sym_LPAREN, + ACTIONS(2261), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299017,31 +296792,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [108857] = 6, + [106329] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3382), 1, - anon_sym_COMMA, - STATE(2919), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 2, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(2201), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2677), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2679), 48, - anon_sym_SEMI, + ACTIONS(2203), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -299084,27 +296857,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [108928] = 4, + [106398] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3368), 1, + anon_sym_COMMA, + STATE(2895), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2247), 5, + ACTIONS(2707), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2249), 50, + ACTIONS(2709), 48, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -299148,23 +296922,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [108995] = 6, + [106469] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3370), 1, anon_sym_COMMA, - STATE(2941), 1, + STATE(2894), 1, aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2677), 4, + ACTIONS(2694), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2679), 49, + ACTIONS(2696), 49, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299212,23 +296987,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [109066] = 6, + [106540] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - STATE(2941), 1, - aux_sym_items_with_trailing_separator_repeat1, + STATE(2903), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2687), 4, + ACTIONS(2685), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2689), 49, + ACTIONS(2687), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -299277,27 +297052,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [109137] = 4, + [106611] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2367), 2, - sym_not_in, - anon_sym_LBRACK2, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2369), 52, + ACTIONS(2259), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2261), 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, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -299340,23 +297113,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [109204] = 4, + anon_sym_do, + [106680] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1825), 3, + ACTIONS(2201), 3, + sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1827), 51, + ACTIONS(2203), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299403,28 +297177,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [109271] = 4, + anon_sym_do, + [106749] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3373), 1, + anon_sym_COMMA, + STATE(2902), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1833), 3, + ACTIONS(2707), 4, + sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1835), 51, + ACTIONS(2709), 49, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -299467,81 +297244,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [109338] = 25, + anon_sym_do, + [106820] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2755), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3101), 1, + ACTIONS(3000), 1, anon_sym_PIPE, - ACTIONS(3113), 1, + ACTIONS(3012), 1, anon_sym_when, - ACTIONS(3115), 1, + ACTIONS(3014), 1, anon_sym_COLON_COLON, - ACTIONS(3117), 1, + ACTIONS(3016), 1, anon_sym_EQ_GT, - ACTIONS(3119), 1, + ACTIONS(3018), 1, anon_sym_EQ, - ACTIONS(3129), 1, + ACTIONS(3028), 1, anon_sym_in, - ACTIONS(3131), 1, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3137), 1, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3038), 1, sym_not_in, - ACTIONS(3103), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2767), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3109), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3111), 2, + ACTIONS(3010), 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(3121), 3, + ACTIONS(3020), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3123), 3, + ACTIONS(3022), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3099), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2757), 5, + ACTIONS(2769), 5, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_do, - ACTIONS(3125), 5, + ACTIONS(3024), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3107), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3127), 9, + ACTIONS(3026), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -299551,26 +297329,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [109447] = 4, + [106929] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2415), 2, - sym_not_in, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2529), 3, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2417), 52, + ACTIONS(2531), 50, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, @@ -299613,23 +297392,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [109514] = 4, + anon_sym_DASH_GT, + anon_sym_do, + [107000] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2225), 2, - sym_not_in, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2559), 3, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2227), 52, - anon_sym_LPAREN, + ACTIONS(2561), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299676,28 +297457,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [109581] = 4, + anon_sym_DASH_GT, + anon_sym_do, + [107071] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3373), 1, + anon_sym_COMMA, + STATE(2920), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1837), 3, + ACTIONS(2685), 4, + sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1839), 51, + ACTIONS(2687), 49, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -299740,27 +297523,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [109648] = 4, + anon_sym_do, + [107142] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3375), 1, + anon_sym_COMMA, + STATE(2903), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1841), 3, + ACTIONS(2601), 5, + sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1843), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2603), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -299803,43 +297588,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [109715] = 12, + anon_sym_do, + [107213] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3131), 1, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3103), 2, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3109), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(3107), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 37, + ACTIONS(2597), 37, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299873,44 +297658,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_DASH_GT, anon_sym_do, - [109798] = 15, + [107296] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3129), 1, + ACTIONS(3028), 1, anon_sym_in, - ACTIONS(3131), 1, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3137), 1, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3038), 1, sym_not_in, - ACTIONS(3103), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3109), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3107), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3127), 9, + ACTIONS(3026), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -299920,10 +297706,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 27, + ACTIONS(2597), 27, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299947,108 +297732,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DASH_GT, anon_sym_do, - [109887] = 22, + [107385] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3043), 1, - anon_sym_PIPE, - ACTIONS(3059), 1, - anon_sym_EQ_GT, - ACTIONS(3061), 1, - anon_sym_EQ, - ACTIONS(3071), 1, - anon_sym_in, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3079), 1, + ACTIONS(3036), 1, anon_sym_DOT, - ACTIONS(3081), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3065), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3041), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3067), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3069), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [109990] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3135), 1, - anon_sym_STAR_STAR, - ACTIONS(2407), 2, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 49, + ACTIONS(2597), 49, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -300094,40 +297798,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, + anon_sym_DASH_GT, anon_sym_do, - [110063] = 10, + [107458] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3135), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3103), 2, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3109), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(3107), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 39, + ACTIONS(2597), 39, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -300163,30 +297867,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, anon_sym_do, - [110142] = 8, + [107537] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3135), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3103), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(3002), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 47, + ACTIONS(2597), 47, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -300230,81 +297934,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, + anon_sym_DASH_GT, anon_sym_do, - [110217] = 24, + [107612] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3043), 1, - anon_sym_PIPE, - ACTIONS(3055), 1, - anon_sym_when, - ACTIONS(3057), 1, - anon_sym_COLON_COLON, - ACTIONS(3059), 1, + ACTIONS(3016), 1, anon_sym_EQ_GT, - ACTIONS(3061), 1, + ACTIONS(3018), 1, anon_sym_EQ, - ACTIONS(3071), 1, + ACTIONS(3028), 1, anon_sym_in, - ACTIONS(3073), 1, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3079), 1, + ACTIONS(3036), 1, anon_sym_DOT, - ACTIONS(3081), 1, + ACTIONS(3038), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3045), 2, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3051), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3063), 3, + ACTIONS(3020), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3065), 3, + ACTIONS(3022), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3041), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 5, + ACTIONS(3024), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3049), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 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(3069), 9, + ACTIONS(3026), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -300314,231 +298005,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [110324] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_LBRACK2, - ACTIONS(3043), 1, - anon_sym_PIPE, - ACTIONS(3055), 1, - anon_sym_when, - ACTIONS(3057), 1, - anon_sym_COLON_COLON, - ACTIONS(3059), 1, - anon_sym_EQ_GT, - ACTIONS(3061), 1, - anon_sym_EQ, - ACTIONS(3071), 1, - anon_sym_in, - ACTIONS(3073), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, - anon_sym_STAR_STAR, - ACTIONS(3079), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3065), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3041), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3067), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 7, + ACTIONS(2597), 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, - ACTIONS(3069), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [110431] = 23, + [107713] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3043), 1, - anon_sym_PIPE, - ACTIONS(3057), 1, - anon_sym_COLON_COLON, - ACTIONS(3059), 1, - anon_sym_EQ_GT, - ACTIONS(3061), 1, + ACTIONS(3018), 1, anon_sym_EQ, - ACTIONS(3071), 1, + ACTIONS(3028), 1, anon_sym_in, - ACTIONS(3073), 1, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3075), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3077), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3079), 1, + ACTIONS(3036), 1, anon_sym_DOT, - ACTIONS(3081), 1, + ACTIONS(3038), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3045), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3063), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3065), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3041), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3067), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3049), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3069), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [110536] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3117), 1, - anon_sym_EQ_GT, - ACTIONS(3119), 1, - anon_sym_EQ, - ACTIONS(3129), 1, - anon_sym_in, - ACTIONS(3131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, - anon_sym_STAR_STAR, - ACTIONS(3137), 1, - sym_not_in, - ACTIONS(3103), 2, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3109), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3121), 3, + ACTIONS(3020), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3123), 3, + ACTIONS(3022), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3099), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3125), 5, + ACTIONS(3024), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3107), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3127), 9, + ACTIONS(3026), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -300548,148 +298083,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 10, + ACTIONS(2597), 11, + anon_sym_SEMI, 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_DASH_GT, anon_sym_do, - [110637] = 20, + [107812] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3119), 1, - anon_sym_EQ, - ACTIONS(3129), 1, + ACTIONS(3028), 1, anon_sym_in, - ACTIONS(3131), 1, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3137), 1, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3038), 1, sym_not_in, - ACTIONS(3103), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3121), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3123), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3099), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3125), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3107), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3127), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [110736] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 2, sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3129), 1, - anon_sym_in, - ACTIONS(3131), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, - anon_sym_STAR_STAR, - ACTIONS(3137), 1, - sym_not_in, - ACTIONS(3103), 2, + aux_sym_terminator_token1, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3109), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3123), 3, + ACTIONS(3022), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3099), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3125), 5, + ACTIONS(3024), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3107), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3127), 9, + ACTIONS(3026), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -300699,10 +298156,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 15, + ACTIONS(2597), 15, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -300714,55 +298170,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + anon_sym_DASH_GT, anon_sym_do, - [110831] = 17, + [107907] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3129), 1, + ACTIONS(3028), 1, anon_sym_in, - ACTIONS(3131), 1, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3137), 1, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3038), 1, sym_not_in, - ACTIONS(3103), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3109), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3099), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3125), 5, + ACTIONS(3024), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3107), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3127), 9, + ACTIONS(3026), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -300772,10 +298229,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 18, + ACTIONS(2597), 18, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -300790,49 +298246,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + anon_sym_DASH_GT, anon_sym_do, - [110924] = 16, + [108000] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3129), 1, + ACTIONS(3028), 1, anon_sym_in, - ACTIONS(3131), 1, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3137), 1, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3038), 1, sym_not_in, - ACTIONS(3103), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3109), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3099), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3107), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3127), 9, + ACTIONS(3026), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -300842,10 +298299,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 23, + ACTIONS(2597), 23, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -300865,47 +298321,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, anon_sym_do, - [111015] = 14, + [108091] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3129), 1, + ACTIONS(3028), 1, anon_sym_in, - ACTIONS(3131), 1, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3133), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3137), 1, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3038), 1, sym_not_in, - ACTIONS(3103), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3109), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3107), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, + ACTIONS(2597), 36, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -300938,42 +298394,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, anon_sym_do, - [111102] = 11, + [108178] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3133), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3103), 2, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3109), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(3107), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 38, + ACTIONS(2597), 38, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -301008,42 +298464,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, anon_sym_do, - [111183] = 11, + [108259] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3133), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3135), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3103), 2, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3109), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(3107), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 38, + ACTIONS(2597), 38, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -301078,24 +298534,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, anon_sym_do, - [111264] = 5, + [108340] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3389), 1, - aux_sym_sigil_token3, - ACTIONS(2257), 2, - sym_not_in, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3036), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2259), 51, + ACTIONS(2597), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -301142,29 +298599,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [111333] = 5, + anon_sym_DASH_GT, + anon_sym_do, + [108411] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3391), 1, - aux_sym_sigil_token3, - ACTIONS(2263), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3378), 1, + anon_sym_COMMA, + STATE(2918), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2694), 5, + sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2265), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2696), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -301207,85 +298665,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [111402] = 4, + anon_sym_do, + [108482] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2165), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2167), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [111469] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2169), 2, + ACTIONS(2179), 3, + sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2171), 52, + ACTIONS(2181), 51, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -301332,28 +298726,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [111536] = 4, + anon_sym_do, + [108549] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2371), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3381), 1, + anon_sym_COMMA, + STATE(2920), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2601), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2373), 52, + anon_sym_LBRACK2, + ACTIONS(2603), 49, + anon_sym_SEMI, 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -301396,22 +298793,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [111603] = 4, + anon_sym_do, + [108620] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2173), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2209), 5, + sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2175), 52, + anon_sym_LBRACK2, + ACTIONS(2211), 50, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -301459,22 +298856,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [111670] = 4, + anon_sym_do, + [108687] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1845), 3, + ACTIONS(2233), 3, + sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1847), 51, + ACTIONS(2235), 51, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -301521,88 +298917,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [111737] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3393), 1, - anon_sym_COMMA, - STATE(2975), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2730), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2732), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [111808] = 6, + [108754] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3393), 1, + ACTIONS(3384), 1, anon_sym_COMMA, - STATE(2976), 1, - aux_sym_keywords_repeat1, + STATE(2918), 1, + aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2736), 4, + ACTIONS(2679), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2738), 49, + ACTIONS(2681), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -301651,23 +298985,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [111879] = 6, + [108825] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3386), 1, anon_sym_COMMA, - STATE(2976), 1, - aux_sym_keywords_repeat1, + STATE(2926), 1, + aux_sym_items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 4, + ACTIONS(2679), 4, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 49, + ACTIONS(2681), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -301717,22 +299050,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [111950] = 4, + [108896] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1849), 3, + ACTIONS(2179), 5, + sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1851), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2181), 50, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -301780,29 +299112,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [112017] = 7, + anon_sym_do, + [108963] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(650), 1, - anon_sym_do, - ACTIONS(3398), 1, + ACTIONS(3388), 1, + anon_sym_COMMA, + STATE(2926), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2694), 4, sym_newline_before_do, - STATE(4339), 1, - sym_do_block, - ACTIONS(2151), 2, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(2696), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [109034] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3391), 1, + anon_sym_COMMA, + STATE(2928), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2685), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2153), 49, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(2687), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -301845,27 +299241,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [112090] = 4, + anon_sym_do, + anon_sym_end, + [109105] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2217), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3393), 1, + anon_sym_COMMA, + STATE(2928), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2601), 4, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2219), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2603), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -301908,19 +299306,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [112156] = 4, + anon_sym_do, + anon_sym_end, + [109176] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2427), 3, - sym_newline_before_do, + ACTIONS(1845), 3, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2429), 50, + ACTIONS(1847), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -301967,22 +299370,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [112222] = 4, + [109243] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2431), 3, - sym_newline_before_do, + ACTIONS(1853), 3, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2433), 50, + ACTIONS(1855), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -302029,20 +299433,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, + [109310] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2767), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3094), 1, + anon_sym_PIPE, + ACTIONS(3106), 1, + anon_sym_when, + ACTIONS(3108), 1, + anon_sym_COLON_COLON, + ACTIONS(3110), 1, + anon_sym_EQ_GT, + ACTIONS(3112), 1, + anon_sym_EQ, + ACTIONS(3122), 1, + anon_sym_in, + ACTIONS(3124), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3126), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3128), 1, + anon_sym_STAR_STAR, + ACTIONS(3130), 1, + sym_not_in, + ACTIONS(3096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3102), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3104), 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(3114), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3116), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2769), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_do, - [112288] = 4, + ACTIONS(3118), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3100), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3120), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [109419] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2483), 2, + ACTIONS(2253), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2485), 51, + ACTIONS(2255), 52, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -302094,41 +299581,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [112354] = 12, + [109486] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(3306), 1, + ACTIONS(3124), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, + ACTIONS(3126), 1, anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3278), 2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3096), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3284), 2, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - sym_not_in, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3282), 6, + ACTIONS(3100), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_SEMI, + ACTIONS(2597), 37, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -302163,44 +299652,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_do, - anon_sym_end, - [112436] = 15, + [109569] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(3304), 1, + ACTIONS(3122), 1, anon_sym_in, - ACTIONS(3306), 1, + ACTIONS(3124), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, + ACTIONS(3126), 1, anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, + ACTIONS(3130), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3278), 2, + ACTIONS(3096), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3284), 2, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3282), 6, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3100), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3302), 9, + ACTIONS(3120), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -302210,8 +299698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 26, - anon_sym_SEMI, + ACTIONS(2597), 27, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -302236,69 +299726,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_do, - anon_sym_end, - [112524] = 22, + [109658] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3224), 1, + ACTIONS(3000), 1, anon_sym_PIPE, - ACTIONS(3240), 1, + ACTIONS(3016), 1, anon_sym_EQ_GT, - ACTIONS(3242), 1, + ACTIONS(3018), 1, anon_sym_EQ, - ACTIONS(3252), 1, + ACTIONS(3028), 1, anon_sym_in, - ACTIONS(3254), 1, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3260), 1, + ACTIONS(3036), 1, anon_sym_DOT, - ACTIONS(3262), 1, + ACTIONS(3038), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3226), 2, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3232), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3244), 3, + ACTIONS(3020), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3246), 3, + ACTIONS(3022), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3222), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3248), 5, + ACTIONS(3024), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3230), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 8, + ACTIONS(2597), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, @@ -302306,8 +299795,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_do, - ACTIONS(3250), 9, + ACTIONS(3026), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -302317,24 +299807,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [112626] = 7, + [109761] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(3310), 1, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 3, + ACTIONS(2595), 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(2409), 48, - anon_sym_SEMI, + ACTIONS(2597), 49, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -302381,38 +299873,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_do, - anon_sym_end, - [112698] = 10, + [109834] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(3310), 1, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3278), 2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3096), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3284), 2, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - sym_not_in, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3282), 6, + ACTIONS(3100), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 38, - anon_sym_SEMI, + ACTIONS(2597), 39, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -302449,28 +299942,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, anon_sym_do, - anon_sym_end, - [112776] = 8, + [109913] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(3310), 1, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3278), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2407), 3, + ACTIONS(2595), 2, sym_newline_before_do, sym_not_in, + ACTIONS(3096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 46, - anon_sym_SEMI, + ACTIONS(2597), 47, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -302515,80 +300009,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_do, - anon_sym_end, - [112850] = 24, + [109988] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3224), 1, + ACTIONS(3000), 1, anon_sym_PIPE, - ACTIONS(3236), 1, + ACTIONS(3012), 1, anon_sym_when, - ACTIONS(3238), 1, + ACTIONS(3014), 1, anon_sym_COLON_COLON, - ACTIONS(3240), 1, + ACTIONS(3016), 1, anon_sym_EQ_GT, - ACTIONS(3242), 1, + ACTIONS(3018), 1, anon_sym_EQ, - ACTIONS(3252), 1, + ACTIONS(3028), 1, anon_sym_in, - ACTIONS(3254), 1, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3260), 1, + ACTIONS(3036), 1, anon_sym_DOT, - ACTIONS(3262), 1, + ACTIONS(3038), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3226), 2, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3232), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3244), 3, + ACTIONS(3020), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3246), 3, + ACTIONS(3022), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3222), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3248), 5, + ACTIONS(3024), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(3230), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3250), 9, + ACTIONS(2597), 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(3026), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -302598,79 +300092,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [112956] = 24, + [110095] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3224), 1, + ACTIONS(3000), 1, anon_sym_PIPE, - ACTIONS(3236), 1, + ACTIONS(3012), 1, anon_sym_when, - ACTIONS(3238), 1, + ACTIONS(3014), 1, anon_sym_COLON_COLON, - ACTIONS(3240), 1, + ACTIONS(3016), 1, anon_sym_EQ_GT, - ACTIONS(3242), 1, + ACTIONS(3018), 1, anon_sym_EQ, - ACTIONS(3252), 1, + ACTIONS(3028), 1, anon_sym_in, - ACTIONS(3254), 1, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3260), 1, + ACTIONS(3036), 1, anon_sym_DOT, - ACTIONS(3262), 1, + ACTIONS(3038), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3226), 2, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3232), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3244), 3, + ACTIONS(3020), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3246), 3, + ACTIONS(3022), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3222), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3248), 5, + ACTIONS(3024), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(3230), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3250), 9, + ACTIONS(2597), 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(3026), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -302680,78 +300175,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [113062] = 23, + [110202] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2477), 1, anon_sym_LBRACK2, - ACTIONS(3224), 1, + ACTIONS(3000), 1, anon_sym_PIPE, - ACTIONS(3238), 1, + ACTIONS(3014), 1, anon_sym_COLON_COLON, - ACTIONS(3240), 1, + ACTIONS(3016), 1, anon_sym_EQ_GT, - ACTIONS(3242), 1, + ACTIONS(3018), 1, anon_sym_EQ, - ACTIONS(3252), 1, + ACTIONS(3028), 1, anon_sym_in, - ACTIONS(3254), 1, + ACTIONS(3030), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, + ACTIONS(3032), 1, anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, + ACTIONS(3034), 1, anon_sym_STAR_STAR, - ACTIONS(3260), 1, + ACTIONS(3036), 1, anon_sym_DOT, - ACTIONS(3262), 1, + ACTIONS(3038), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3226), 2, + ACTIONS(3002), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3232), 2, + ACTIONS(3008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3244), 3, + ACTIONS(3020), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3246), 3, + ACTIONS(3022), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3222), 4, + ACTIONS(2998), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3248), 5, + ACTIONS(3024), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3230), 6, + ACTIONS(3006), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 7, + ACTIONS(2597), 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(3250), 9, + ACTIONS(3026), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -302761,76 +300257,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [113166] = 21, + [110307] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(3292), 1, + ACTIONS(3110), 1, anon_sym_EQ_GT, - ACTIONS(3294), 1, + ACTIONS(3112), 1, anon_sym_EQ, - ACTIONS(3304), 1, + ACTIONS(3122), 1, anon_sym_in, - ACTIONS(3306), 1, + ACTIONS(3124), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, + ACTIONS(3126), 1, anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, + ACTIONS(3130), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3278), 2, + ACTIONS(3096), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3284), 2, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3296), 3, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3114), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3298), 3, + ACTIONS(3116), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3274), 4, + ACTIONS(3092), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3300), 5, + ACTIONS(3118), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3282), 6, + ACTIONS(3100), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 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(3302), 9, + ACTIONS(3120), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -302840,64 +300326,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [113266] = 20, + ACTIONS(2597), 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, + [110408] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(3294), 1, + ACTIONS(3112), 1, anon_sym_EQ, - ACTIONS(3304), 1, + ACTIONS(3122), 1, anon_sym_in, - ACTIONS(3306), 1, + ACTIONS(3124), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, + ACTIONS(3126), 1, anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, + ACTIONS(3130), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3278), 2, + ACTIONS(3096), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3284), 2, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3296), 3, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3114), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3298), 3, + ACTIONS(3116), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3274), 4, + ACTIONS(3092), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3300), 5, + ACTIONS(3118), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3282), 6, + ACTIONS(3100), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3302), 9, + ACTIONS(3120), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -302907,8 +300404,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 10, - anon_sym_SEMI, + ACTIONS(2597), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -302917,59 +300416,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_do, - anon_sym_end, - [113364] = 18, + [110507] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(3304), 1, + ACTIONS(3122), 1, anon_sym_in, - ACTIONS(3306), 1, + ACTIONS(3124), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, + ACTIONS(3126), 1, anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, + ACTIONS(3130), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3278), 2, + ACTIONS(3096), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3284), 2, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3298), 3, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3116), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3274), 4, + ACTIONS(3092), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3300), 5, + ACTIONS(3118), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3282), 6, + ACTIONS(3100), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3302), 9, + ACTIONS(3120), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -302979,8 +300477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 14, - anon_sym_SEMI, + ACTIONS(2597), 15, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -302993,55 +300493,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_PIPE, anon_sym_or, anon_sym_do, - anon_sym_end, - [113458] = 17, + [110602] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(3304), 1, + ACTIONS(3122), 1, anon_sym_in, - ACTIONS(3306), 1, + ACTIONS(3124), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, + ACTIONS(3126), 1, anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, + ACTIONS(3130), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3278), 2, + ACTIONS(3096), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3284), 2, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3274), 4, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3092), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3300), 5, + ACTIONS(3118), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3282), 6, + ACTIONS(3100), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3302), 9, + ACTIONS(3120), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -303051,8 +300550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 17, - anon_sym_SEMI, + ACTIONS(2597), 18, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -303068,49 +300569,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_and, anon_sym_do, - anon_sym_end, - [113550] = 16, + [110695] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(3304), 1, + ACTIONS(3122), 1, anon_sym_in, - ACTIONS(3306), 1, + ACTIONS(3124), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, + ACTIONS(3126), 1, anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, + ACTIONS(3130), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3278), 2, + ACTIONS(3096), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3284), 2, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3274), 4, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3092), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3282), 6, + ACTIONS(3100), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3302), 9, + ACTIONS(3120), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -303120,8 +300620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 22, - anon_sym_SEMI, + ACTIONS(2597), 23, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -303142,112 +300644,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_do, - anon_sym_end, - [113640] = 14, + [110786] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(3304), 1, + ACTIONS(3122), 1, anon_sym_in, - ACTIONS(3306), 1, + ACTIONS(3124), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, + ACTIONS(3126), 1, anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, + ACTIONS(3130), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3278), 2, + ACTIONS(3096), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3284), 2, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3282), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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, - [113726] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3308), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, - anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3278), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(3282), 6, + ACTIONS(3100), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 37, - anon_sym_SEMI, + ACTIONS(2597), 36, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -303280,348 +300716,46 @@ 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_do, - anon_sym_end, - [113806] = 11, + [110873] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3308), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, - anon_sym_STAR_STAR, - ACTIONS(3312), 1, + ACTIONS(2994), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3278), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(3282), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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, - [113886] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2439), 3, - sym_newline_before_do, - sym_not_in, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(2441), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, + ACTIONS(3126), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [113952] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1845), 4, + ACTIONS(2595), 2, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1847), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3096), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [114018] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1849), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1851), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [114084] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2459), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2461), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, + ACTIONS(3100), 6, anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [114150] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2475), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2477), 50, + ACTIONS(2597), 38, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -303652,349 +300786,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_do, - [114216] = 4, + [110954] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2479), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2481), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(2994), 1, anon_sym_DOT, - anon_sym_do, - [114282] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2479), 3, - sym_newline_before_do, - sym_not_in, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(2481), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, + ACTIONS(3126), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3128), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [114348] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2483), 3, + ACTIONS(2595), 2, sym_newline_before_do, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2485), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3096), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [114414] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2487), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2489), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + ACTIONS(3102), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [114480] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2491), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2493), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, + ACTIONS(3100), 6, anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [114546] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2165), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2167), 50, - anon_sym_LPAREN, + ACTIONS(2597), 38, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -304025,35 +300856,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [114612] = 4, + [111035] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2169), 3, - sym_newline_before_do, + ACTIONS(1849), 3, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2171), 50, - anon_sym_LPAREN, + ACTIONS(1851), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -304096,20 +300920,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [114678] = 4, + [111102] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2503), 3, - sym_newline_before_do, + ACTIONS(1857), 3, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2505), 50, + ACTIONS(1859), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -304156,22 +300982,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [114744] = 4, + [111169] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3396), 1, + aux_sym_sigil_token3, + ACTIONS(2701), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2507), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2509), 50, + ACTIONS(2703), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -304218,22 +301046,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [114810] = 4, + [111238] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2183), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2247), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2249), 50, + ACTIONS(2185), 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, @@ -304281,26 +301110,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [114876] = 4, + [111305] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3391), 1, + anon_sym_COMMA, + STATE(2927), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2515), 3, + ACTIONS(2707), 4, sym_newline_before_do, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2517), 50, - anon_sym_RPAREN, + ACTIONS(2709), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -304342,30 +301172,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [114942] = 4, + anon_sym_end, + [111376] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2918), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2920), 1, + anon_sym_STAR_STAR, + ACTIONS(2922), 1, + anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2519), 3, - sym_newline_before_do, + ACTIONS(2595), 2, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2521), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + aux_sym_terminator_token1, + ACTIONS(2890), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2894), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2892), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 39, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -304396,29 +301240,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [115008] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [111457] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2523), 3, + ACTIONS(2481), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2525), 50, + ACTIONS(2483), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -304469,24 +301307,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [115074] = 4, + [111523] = 5, ACTIONS(5), 1, sym_comment, + STATE(3734), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2527), 3, + ACTIONS(2229), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2529), 50, - anon_sym_RPAREN, + ACTIONS(2231), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -304528,28 +301368,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [115140] = 4, + [111591] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2173), 3, + ACTIONS(2429), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2175), 50, - anon_sym_LPAREN, + ACTIONS(2431), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -304591,20 +301429,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [115206] = 4, + [111657] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2535), 3, + ACTIONS(2433), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2537), 50, + ACTIONS(2435), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -304655,26 +301494,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [115272] = 4, + [111723] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2349), 2, - sym_not_in, - anon_sym_LBRACK2, + STATE(3862), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1857), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2191), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2193), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -304717,26 +301556,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [115338] = 4, + anon_sym_do, + [111791] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2351), 2, - sym_not_in, - anon_sym_LBRACK2, + STATE(3951), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2353), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2221), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2223), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -304779,28 +301619,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [115404] = 6, + anon_sym_do, + [111859] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3400), 1, - anon_sym_COMMA, - STATE(3023), 1, - aux_sym_keywords_repeat1, - ACTIONS(2351), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2353), 49, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2253), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2255), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -304843,25 +301681,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [115474] = 4, + anon_sym_do, + [111925] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3398), 1, + anon_sym_COMMA, + STATE(3074), 1, + aux_sym_keywords_repeat1, + ACTIONS(2685), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2367), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2369), 50, + ACTIONS(2687), 49, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -304904,48 +301746,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [115540] = 4, + [111995] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3228), 1, + anon_sym_PIPE, + ACTIONS(3240), 1, + anon_sym_when, + ACTIONS(3242), 1, + anon_sym_COLON_COLON, + ACTIONS(3244), 1, + anon_sym_EQ_GT, + ACTIONS(3246), 1, + anon_sym_EQ, + ACTIONS(3256), 1, + anon_sym_in, + ACTIONS(3258), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2371), 3, + ACTIONS(2763), 2, sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2373), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + aux_sym_terminator_token1, + ACTIONS(3230), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3236), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3238), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3248), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3250), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2765), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3226), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3252), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3254), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -304955,37 +301829,24 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [115606] = 4, + [112103] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2415), 3, + ACTIONS(2249), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2417), 50, + ACTIONS(2251), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -305029,19 +301890,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [115672] = 4, + anon_sym_DOT_DOT_DOT_GT, + [112169] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2269), 3, + ACTIONS(2245), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2271), 50, - anon_sym_RPAREN, + ACTIONS(2247), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -305088,22 +301950,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [115738] = 4, + anon_sym_DOT_DOT_DOT_GT, + [112235] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2273), 3, + ACTIONS(2187), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2275), 50, - anon_sym_RPAREN, + ACTIONS(2189), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -305150,26 +302012,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [115804] = 4, + anon_sym_DOT_DOT_DOT_GT, + [112301] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3400), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2419), 3, + ACTIONS(2701), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2421), 50, + ACTIONS(2703), 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_DOT_DOT, @@ -305215,20 +302078,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [115870] = 5, + [112369] = 4, ACTIONS(5), 1, sym_comment, - STATE(3582), 1, - sym_do_block, + ACTIONS(2433), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2209), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2211), 49, + ACTIONS(2435), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -305276,22 +302140,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [115938] = 5, + [112435] = 4, ACTIONS(5), 1, sym_comment, - STATE(3585), 1, - sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2193), 3, + ACTIONS(2241), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2195), 49, + ACTIONS(2243), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -305341,23 +302202,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [116006] = 4, + [112501] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2435), 3, + ACTIONS(2183), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2437), 50, + ACTIONS(2185), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -305403,25 +302264,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [116072] = 5, + [112567] = 4, ACTIONS(5), 1, sym_comment, - STATE(3586), 1, - sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2217), 3, + ACTIONS(2197), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2219), 49, + ACTIONS(2199), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -305465,19 +302326,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [116140] = 4, + [112633] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2225), 3, + ACTIONS(2237), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2227), 50, + ACTIONS(2239), 50, anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, @@ -305528,25 +302388,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [116206] = 4, + [112699] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2443), 3, + ACTIONS(2213), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2445), 50, + ACTIONS(2215), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -305590,25 +302449,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [116272] = 4, + anon_sym_DOT_DOT_DOT_GT, + [112765] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2447), 3, + ACTIONS(2267), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2449), 50, + ACTIONS(2269), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -305652,46 +302511,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [116338] = 4, + anon_sym_DOT_DOT_DOT_GT, + [112831] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2375), 3, + ACTIONS(2409), 1, sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2377), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3404), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3408), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3416), 1, anon_sym_when, + ACTIONS(3418), 1, anon_sym_COLON_COLON, + ACTIONS(3420), 1, anon_sym_EQ_GT, + ACTIONS(3422), 1, anon_sym_EQ, + ACTIONS(3432), 1, + anon_sym_in, + ACTIONS(3434), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3436), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3438), 1, + anon_sym_STAR_STAR, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(3444), 1, + sym_not_in, + STATE(3014), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(2411), 2, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3414), 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(3424), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3426), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3402), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3428), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3430), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -305701,32 +302597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [116404] = 4, + [112943] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2379), 3, + ACTIONS(1845), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2381), 50, - anon_sym_RPAREN, + ACTIONS(1847), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -305773,28 +302656,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [116470] = 4, + anon_sym_DOT_DOT_DOT_GT, + [113009] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2463), 3, + ACTIONS(1853), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2465), 50, + ACTIONS(1855), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -305838,25 +302720,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [116536] = 4, + anon_sym_DOT_DOT_DOT_GT, + [113075] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2467), 3, + ACTIONS(2179), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2469), 50, + ACTIONS(2181), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -305900,45 +302782,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [116602] = 12, + anon_sym_DOT_DOT_DOT_GT, + [113141] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3192), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, - anon_sym_STAR_STAR, - ACTIONS(3198), 1, - anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, + ACTIONS(606), 1, + anon_sym_do, + ACTIONS(3446), 1, sym_newline_before_do, + STATE(4569), 1, + sym_do_block, + ACTIONS(2229), 2, sym_not_in, - ACTIONS(3164), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3170), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3168), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_RPAREN, + ACTIONS(2231), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -305968,45 +302838,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_DASH_GT, - anon_sym_do, - [116684] = 15, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [113213] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3190), 1, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3228), 1, + anon_sym_PIPE, + ACTIONS(3240), 1, + anon_sym_when, + ACTIONS(3242), 1, + anon_sym_COLON_COLON, + ACTIONS(3244), 1, + anon_sym_EQ_GT, + ACTIONS(3246), 1, + anon_sym_EQ, + ACTIONS(3256), 1, anon_sym_in, - ACTIONS(3192), 1, + ACTIONS(3258), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, + ACTIONS(3260), 1, anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, + ACTIONS(3262), 1, anon_sym_STAR_STAR, - ACTIONS(3198), 1, + ACTIONS(3264), 1, anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(3202), 1, + ACTIONS(3266), 1, sym_not_in, - ACTIONS(3164), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2767), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3230), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3170), 2, + ACTIONS(3236), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3168), 6, + ACTIONS(3238), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3248), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3250), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2769), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3226), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3252), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3234), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3188), 9, + ACTIONS(3254), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -306016,56 +302931,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [116772] = 7, + [113321] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3196), 1, - anon_sym_STAR_STAR, - ACTIONS(3198), 1, - anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, + ACTIONS(606), 1, + anon_sym_do, + ACTIONS(3448), 1, sym_newline_before_do, + STATE(4588), 1, + sym_do_block, + ACTIONS(2191), 2, sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 48, - anon_sym_RPAREN, + ACTIONS(2193), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -306106,43 +302994,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_DASH_GT, - anon_sym_do, - [116844] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3196), 1, anon_sym_STAR_STAR, - ACTIONS(3198), 1, anon_sym_DOT, - ACTIONS(3200), 1, + [113393] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3164), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3170), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2529), 3, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(3168), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 38, + ACTIONS(2531), 49, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -306174,33 +303052,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_DASH_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_do, - [116922] = 8, + [113463] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3196), 1, - anon_sym_STAR_STAR, - ACTIONS(3198), 1, - anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, + ACTIONS(606), 1, + anon_sym_do, + ACTIONS(3450), 1, sym_newline_before_do, + STATE(4590), 1, + sym_do_block, + ACTIONS(2221), 2, sym_not_in, - ACTIONS(3164), 2, - anon_sym_SLASH, - anon_sym_STAR, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 46, - anon_sym_RPAREN, + ACTIONS(2223), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -306240,78 +303122,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_DASH_GT, - anon_sym_do, - [116996] = 21, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [113535] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3178), 1, + ACTIONS(3320), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_when, + ACTIONS(3334), 1, + anon_sym_COLON_COLON, + ACTIONS(3336), 1, anon_sym_EQ_GT, - ACTIONS(3180), 1, + ACTIONS(3338), 1, anon_sym_EQ, - ACTIONS(3190), 1, + ACTIONS(3348), 1, anon_sym_in, - ACTIONS(3192), 1, + ACTIONS(3350), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, + ACTIONS(3352), 1, anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, + ACTIONS(3354), 1, anon_sym_STAR_STAR, - ACTIONS(3198), 1, + ACTIONS(3356), 1, anon_sym_DOT, - ACTIONS(3200), 1, + ACTIONS(3358), 1, anon_sym_LBRACK2, - ACTIONS(3202), 1, + ACTIONS(3360), 1, sym_not_in, - ACTIONS(3164), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3322), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3170), 2, + ACTIONS(3328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(3330), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2763), 3, + sym_newline_before_do, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3182), 3, + ACTIONS(2765), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3340), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3184), 3, + ACTIONS(3342), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3160), 4, + ACTIONS(3318), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3186), 5, + ACTIONS(3344), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3168), 6, + ACTIONS(3326), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 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(3188), 9, + ACTIONS(3346), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -306321,64 +303208,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [117096] = 20, + [113643] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3180), 1, - anon_sym_EQ, - ACTIONS(3190), 1, - anon_sym_in, - ACTIONS(3192), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, - anon_sym_STAR_STAR, - ACTIONS(3198), 1, - anon_sym_DOT, - ACTIONS(3200), 1, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(3202), 1, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2559), 3, + sym_newline_before_do, sym_not_in, - ACTIONS(3164), 2, + aux_sym_terminator_token1, + ACTIONS(2561), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3170), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3182), 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(3184), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3160), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3186), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3168), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3188), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -306388,154 +303261,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [117194] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3190), 1, anon_sym_in, - ACTIONS(3192), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, - anon_sym_STAR_STAR, - ACTIONS(3198), 1, - anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(3202), 1, - sym_not_in, - ACTIONS(3164), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3170), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3184), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3160), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3186), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3168), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3188), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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_STAR, + anon_sym_STAR_STAR, anon_sym_do, - [117288] = 17, + [113713] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3190), 1, - anon_sym_in, - ACTIONS(3192), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, - anon_sym_STAR_STAR, - ACTIONS(3198), 1, - anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(3202), 1, - sym_not_in, - ACTIONS(3164), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3170), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3160), 4, + ACTIONS(1849), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1851), 49, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3186), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3168), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3188), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 17, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -306548,50 +303305,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_DASH_GT, - anon_sym_do, - [117380] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3190), 1, - anon_sym_in, - ACTIONS(3192), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, - anon_sym_STAR_STAR, - ACTIONS(3198), 1, - anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(3202), 1, - sym_not_in, - ACTIONS(3164), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3170), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3160), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_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(3168), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3188), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -306601,71 +303321,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [117470] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3190), 1, anon_sym_in, - ACTIONS(3192), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3198), 1, anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(3202), 1, - sym_not_in, - ACTIONS(3164), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3170), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [113779] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3168), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_RPAREN, + ACTIONS(1857), 4, + sym_newline_before_do, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1859), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -306694,29 +303383,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [117556] = 6, + anon_sym_DOT_DOT_DOT_GT, + [113845] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3403), 1, - anon_sym_COMMA, - STATE(3052), 1, - aux_sym_keywords_repeat1, + ACTIONS(3452), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2351), 3, + ACTIONS(2701), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2353), 48, + ACTIONS(2703), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -306760,62 +303458,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [117626] = 11, + anon_sym_DOT_DOT_DOT_GT, + [113913] = 22, ACTIONS(5), 1, sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3164), 1, + anon_sym_PIPE, + ACTIONS(3180), 1, + anon_sym_EQ_GT, + ACTIONS(3182), 1, + anon_sym_EQ, + ACTIONS(3192), 1, + anon_sym_in, ACTIONS(3194), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(3196), 1, - anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, ACTIONS(3198), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, + ACTIONS(3204), 1, sym_not_in, - ACTIONS(3164), 2, + ACTIONS(3166), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3170), 2, + ACTIONS(3172), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3168), 6, + ACTIONS(3184), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3186), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3162), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3188), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3170), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 37, + ACTIONS(2597), 8, 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_DASH_GT, + anon_sym_do, + ACTIONS(3190), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [114015] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3164), 1, + anon_sym_PIPE, + ACTIONS(3176), 1, + anon_sym_when, + ACTIONS(3178), 1, + anon_sym_COLON_COLON, + ACTIONS(3180), 1, anon_sym_EQ_GT, + ACTIONS(3182), 1, anon_sym_EQ, + ACTIONS(3192), 1, + anon_sym_in, + ACTIONS(3194), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, + anon_sym_LBRACK2, + ACTIONS(3204), 1, + sym_not_in, + ACTIONS(3166), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3172), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3184), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3186), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3162), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3188), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2597), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3190), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -306825,47 +303621,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [114121] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3164), 1, + anon_sym_PIPE, + ACTIONS(3176), 1, + anon_sym_when, + ACTIONS(3178), 1, + anon_sym_COLON_COLON, + ACTIONS(3180), 1, + anon_sym_EQ_GT, + ACTIONS(3182), 1, + anon_sym_EQ, + ACTIONS(3192), 1, anon_sym_in, + ACTIONS(3194), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, + anon_sym_LBRACK2, + ACTIONS(3204), 1, + sym_not_in, + ACTIONS(3166), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3172), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3184), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3186), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3162), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3188), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2597), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_DASH_GT, anon_sym_do, - [117706] = 11, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3190), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [114227] = 23, ACTIONS(5), 1, sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3164), 1, + anon_sym_PIPE, + ACTIONS(3178), 1, + anon_sym_COLON_COLON, + ACTIONS(3180), 1, + anon_sym_EQ_GT, + ACTIONS(3182), 1, + anon_sym_EQ, + ACTIONS(3192), 1, + anon_sym_in, ACTIONS(3194), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(3196), 1, - anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, ACTIONS(3198), 1, - anon_sym_DOT, + anon_sym_STAR_STAR, ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, + ACTIONS(3204), 1, sym_not_in, - ACTIONS(3164), 2, + ACTIONS(3166), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3170), 2, + ACTIONS(3172), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3168), 6, + ACTIONS(3184), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3186), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3162), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3188), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3170), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 37, + ACTIONS(2597), 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(3190), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [114331] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + ACTIONS(2597), 49, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -306896,21 +303839,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_do, - [117786] = 4, + [114401] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2165), 3, + ACTIONS(1861), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2167), 50, - anon_sym_LPAREN, + ACTIONS(1863), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -306960,19 +303910,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [117852] = 4, + [114467] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2169), 3, + ACTIONS(1865), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2171), 50, - anon_sym_LPAREN, + ACTIONS(1867), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -307022,23 +303972,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [117918] = 4, + [114533] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2173), 3, + ACTIONS(2711), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2175), 50, - anon_sym_LPAREN, + ACTIONS(2713), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -307084,25 +304034,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [117984] = 4, + [114599] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2471), 3, + ACTIONS(2715), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2473), 50, + ACTIONS(2717), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307146,25 +304095,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [118050] = 4, + anon_sym_DOT_DOT_DOT_GT, + [114665] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2495), 3, + ACTIONS(2719), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2497), 50, + ACTIONS(2721), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307208,23 +304157,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [118116] = 4, + anon_sym_DOT_DOT_DOT_GT, + [114731] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2451), 3, + ACTIONS(2723), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2453), 50, - anon_sym_RPAREN, + ACTIONS(2725), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -307267,26 +304217,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [118182] = 4, + anon_sym_DOT_DOT_DOT_GT, + [114797] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2455), 3, + ACTIONS(2727), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2457), 50, - anon_sym_RPAREN, + ACTIONS(2729), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -307329,28 +304279,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [118248] = 4, + anon_sym_DOT_DOT_DOT_GT, + [114863] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2499), 3, + ACTIONS(2731), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2501), 50, + ACTIONS(2733), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307394,25 +304343,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [118314] = 4, + anon_sym_DOT_DOT_DOT_GT, + [114929] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2511), 3, + ACTIONS(2735), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2513), 50, + ACTIONS(2737), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307456,25 +304405,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [118380] = 4, + anon_sym_DOT_DOT_DOT_GT, + [114995] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2531), 3, + ACTIONS(2739), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2533), 50, + ACTIONS(2741), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307518,25 +304467,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [118446] = 4, + anon_sym_DOT_DOT_DOT_GT, + [115061] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2539), 3, + ACTIONS(2743), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2541), 50, + ACTIONS(2745), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307580,25 +304529,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [118512] = 4, + anon_sym_DOT_DOT_DOT_GT, + [115127] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2543), 3, + ACTIONS(2747), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2545), 50, + ACTIONS(2749), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307642,27 +304591,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [118578] = 6, + anon_sym_DOT_DOT_DOT_GT, + [115193] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3406), 1, - anon_sym_COMMA, - STATE(3067), 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(2687), 3, + ACTIONS(2751), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2689), 48, + ACTIONS(2753), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_GT_GT, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307706,25 +304653,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [118648] = 4, + anon_sym_DOT_DOT_DOT_GT, + [115259] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2201), 3, + ACTIONS(2755), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2203), 50, - anon_sym_LPAREN, + ACTIONS(2757), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307768,23 +304715,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [118714] = 4, + anon_sym_DOT_DOT_DOT_GT, + [115325] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2722), 3, + ACTIONS(2759), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2724), 50, - anon_sym_RPAREN, + ACTIONS(2761), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -307827,26 +304775,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [118780] = 4, + anon_sym_DOT_DOT_DOT_GT, + [115391] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2683), 3, + ACTIONS(2567), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2685), 50, - anon_sym_RPAREN, + ACTIONS(2569), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -307889,244 +304837,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [118846] = 22, + anon_sym_DOT_DOT_DOT_GT, + [115457] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3276), 1, - anon_sym_PIPE, - ACTIONS(3292), 1, - anon_sym_EQ_GT, - ACTIONS(3294), 1, - anon_sym_EQ, - ACTIONS(3304), 1, - anon_sym_in, - ACTIONS(3306), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, - anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, - sym_not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3278), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3296), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3298), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3274), 4, + ACTIONS(2277), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2279), 50, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3300), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3282), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3302), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [118948] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3288), 1, - anon_sym_when, - ACTIONS(3290), 1, - anon_sym_COLON_COLON, - ACTIONS(3292), 1, - anon_sym_EQ_GT, - ACTIONS(3294), 1, - anon_sym_EQ, - ACTIONS(3304), 1, - anon_sym_in, - ACTIONS(3306), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, - anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3278), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3284), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3296), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3298), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3274), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3300), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_do, - anon_sym_end, - ACTIONS(3282), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3302), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [119054] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3276), 1, - anon_sym_PIPE, - ACTIONS(3288), 1, anon_sym_when, - ACTIONS(3290), 1, anon_sym_COLON_COLON, - ACTIONS(3292), 1, anon_sym_EQ_GT, - ACTIONS(3294), 1, anon_sym_EQ, - ACTIONS(3304), 1, - anon_sym_in, - ACTIONS(3306), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, - anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3278), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3296), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3298), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3274), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3300), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - anon_sym_end, - ACTIONS(3282), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3302), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -308136,106 +304889,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [119160] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3276), 1, - anon_sym_PIPE, - ACTIONS(3290), 1, - anon_sym_COLON_COLON, - ACTIONS(3292), 1, - anon_sym_EQ_GT, - ACTIONS(3294), 1, - anon_sym_EQ, - ACTIONS(3304), 1, anon_sym_in, - ACTIONS(3306), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, - anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3278), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3296), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3298), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3274), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3300), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3282), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - anon_sym_end, - ACTIONS(3302), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [119264] = 4, + anon_sym_DOT_DOT_DOT_GT, + [115523] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2205), 3, + ACTIONS(2281), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2207), 50, - anon_sym_LPAREN, + ACTIONS(2283), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308279,24 +304963,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [119330] = 4, + anon_sym_DOT_DOT_DOT_GT, + [115589] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2710), 3, + ACTIONS(2209), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2712), 50, - anon_sym_RPAREN, + ACTIONS(2211), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308338,112 +305024,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [119396] = 27, + [115655] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2293), 1, - sym_newline_before_do, - ACTIONS(3411), 1, - anon_sym_PIPE, - ACTIONS(3415), 1, + ACTIONS(3454), 1, anon_sym_COMMA, - ACTIONS(3423), 1, - anon_sym_when, - ACTIONS(3425), 1, - anon_sym_COLON_COLON, - ACTIONS(3427), 1, - anon_sym_EQ_GT, - ACTIONS(3429), 1, - anon_sym_EQ, - ACTIONS(3439), 1, - anon_sym_in, - ACTIONS(3441), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(3451), 1, - sym_not_in, - STATE(3096), 1, + STATE(3193), 1, aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(2295), 2, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(3413), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3419), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3421), 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(3431), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3433), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3409), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3435), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3417), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3437), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [119508] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2197), 3, + ACTIONS(2679), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2199), 50, - anon_sym_LPAREN, + ACTIONS(2681), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308487,28 +305090,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [119574] = 7, + [115725] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(650), 1, - anon_sym_do, - ACTIONS(3453), 1, - sym_newline_before_do, - STATE(4613), 1, - sym_do_block, - ACTIONS(2209), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2211), 48, + ACTIONS(2285), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2287), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -308552,28 +305150,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, + anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [119646] = 7, + [115791] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(650), 1, - anon_sym_do, - ACTIONS(3455), 1, - sym_newline_before_do, - STATE(4615), 1, - sym_do_block, - ACTIONS(2193), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2195), 48, + ACTIONS(2289), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2291), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -308617,26 +305212,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, + anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [119718] = 4, + [115857] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2253), 3, + ACTIONS(2293), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2255), 50, - anon_sym_LPAREN, + ACTIONS(2295), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308680,25 +305275,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [119784] = 4, + anon_sym_DOT_DOT_DOT_GT, + [115923] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2547), 3, + ACTIONS(2297), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2549), 50, + ACTIONS(2299), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308742,25 +305337,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [119850] = 4, + anon_sym_DOT_DOT_DOT_GT, + [115989] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2551), 3, + ACTIONS(2301), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2553), 50, + ACTIONS(2303), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308804,27 +305399,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [119916] = 7, + anon_sym_DOT_DOT_DOT_GT, + [116055] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(650), 1, - anon_sym_do, - ACTIONS(3457), 1, - sym_newline_before_do, - STATE(4616), 1, - sym_do_block, - ACTIONS(2217), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2219), 48, + ACTIONS(2305), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2307), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -308868,26 +305460,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, + anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [119988] = 4, + [116121] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2555), 3, + ACTIONS(2309), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2557), 50, + ACTIONS(2311), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308931,25 +305523,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [120054] = 4, + anon_sym_DOT_DOT_DOT_GT, + [116187] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2559), 3, + ACTIONS(2313), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2561), 50, + ACTIONS(2315), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308993,25 +305585,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [120120] = 4, + anon_sym_DOT_DOT_DOT_GT, + [116253] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2563), 3, + ACTIONS(2317), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2565), 50, + ACTIONS(2319), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -309055,25 +305647,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [120186] = 4, + anon_sym_DOT_DOT_DOT_GT, + [116319] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2567), 3, + ACTIONS(2321), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2569), 50, + ACTIONS(2323), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -309117,25 +305709,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [120252] = 4, + anon_sym_DOT_DOT_DOT_GT, + [116385] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2571), 3, + ACTIONS(2325), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2573), 50, + ACTIONS(2327), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -309179,23 +305771,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [120318] = 4, + anon_sym_DOT_DOT_DOT_GT, + [116451] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2201), 3, + ACTIONS(2329), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2203), 50, - anon_sym_LPAREN, + ACTIONS(2331), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -309241,23 +305834,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [120384] = 4, + [116517] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2205), 3, + ACTIONS(2333), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2207), 50, - anon_sym_LPAREN, + ACTIONS(2335), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -309303,23 +305896,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [120450] = 4, + [116583] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2253), 3, + ACTIONS(2337), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2255), 50, - anon_sym_LPAREN, + ACTIONS(2339), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -309365,25 +305958,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [120516] = 4, + [116649] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2575), 3, + ACTIONS(2341), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2577), 50, + ACTIONS(2343), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -309427,25 +306019,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [120582] = 4, + anon_sym_DOT_DOT_DOT_GT, + [116715] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2579), 3, + ACTIONS(2345), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2581), 50, + ACTIONS(2347), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -309489,23 +306081,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [120648] = 4, + anon_sym_DOT_DOT_DOT_GT, + [116781] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2177), 3, + ACTIONS(2349), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2179), 50, - anon_sym_LPAREN, + ACTIONS(2351), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -309551,26 +306144,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [120714] = 6, + [116847] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3459), 1, - anon_sym_COMMA, - STATE(3266), 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(2677), 3, + ACTIONS(2353), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2679), 48, + ACTIONS(2355), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -309615,25 +306206,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [120784] = 4, + [116913] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2583), 3, + ACTIONS(2357), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2585), 50, + ACTIONS(2359), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -309677,23 +306267,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [120850] = 4, + anon_sym_DOT_DOT_DOT_GT, + [116979] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2349), 3, + ACTIONS(2361), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1857), 50, - anon_sym_RPAREN, + ACTIONS(2363), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -309736,26 +306327,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [120916] = 4, + anon_sym_DOT_DOT_DOT_GT, + [117045] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2351), 3, + ACTIONS(2365), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2353), 50, - anon_sym_RPAREN, + ACTIONS(2367), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -309798,28 +306389,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [120982] = 4, + anon_sym_DOT_DOT_DOT_GT, + [117111] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2587), 3, + ACTIONS(2273), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2589), 50, + ACTIONS(2275), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -309863,25 +306453,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [121048] = 4, + anon_sym_DOT_DOT_DOT_GT, + [117177] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2591), 3, + ACTIONS(2369), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2593), 50, + ACTIONS(2371), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -309925,25 +306515,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [121114] = 4, + anon_sym_DOT_DOT_DOT_GT, + [117243] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2595), 3, + ACTIONS(2373), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2597), 50, + ACTIONS(2375), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -309987,25 +306577,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [121180] = 4, + anon_sym_DOT_DOT_DOT_GT, + [117309] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2599), 3, + ACTIONS(2377), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2601), 50, + ACTIONS(2379), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310049,25 +306639,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [121246] = 4, + anon_sym_DOT_DOT_DOT_GT, + [117375] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2603), 3, + ACTIONS(2381), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2605), 50, + ACTIONS(2383), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310111,25 +306701,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [121312] = 4, + anon_sym_DOT_DOT_DOT_GT, + [117441] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2607), 3, + ACTIONS(2385), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2609), 50, + ACTIONS(2387), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310173,25 +306763,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [121378] = 4, + anon_sym_DOT_DOT_DOT_GT, + [117507] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2213), 3, + ACTIONS(2389), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2215), 50, - anon_sym_LPAREN, + ACTIONS(2391), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310235,25 +306825,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [121444] = 4, + anon_sym_DOT_DOT_DOT_GT, + [117573] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2611), 3, + ACTIONS(2393), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2613), 50, + ACTIONS(2395), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310297,23 +306887,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [121510] = 4, + anon_sym_DOT_DOT_DOT_GT, + [117639] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2241), 3, + ACTIONS(2397), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2243), 50, - anon_sym_LPAREN, + ACTIONS(2399), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -310359,25 +306950,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [121576] = 4, + [117705] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2747), 3, + ACTIONS(2401), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2749), 50, + ACTIONS(2403), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310421,25 +307011,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [121642] = 4, + anon_sym_DOT_DOT_DOT_GT, + [117771] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2269), 3, + ACTIONS(2405), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2271), 50, + ACTIONS(2407), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310483,25 +307073,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [121708] = 4, + anon_sym_DOT_DOT_DOT_GT, + [117837] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2661), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2273), 3, - sym_newline_before_do, + ACTIONS(2664), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [117903] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2413), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 50, + ACTIONS(2415), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310543,25 +307196,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [121774] = 4, + [117969] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2417), 3, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2419), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [118035] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2375), 3, + ACTIONS(2263), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2377), 50, + ACTIONS(2265), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -310607,25 +307322,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [121840] = 4, + [118101] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2379), 3, - sym_newline_before_do, + ACTIONS(2421), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2381), 50, + ACTIONS(2423), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310667,27 +307382,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [121906] = 4, + [118167] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2451), 3, - sym_newline_before_do, + ACTIONS(2425), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2453), 50, + ACTIONS(2427), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310729,27 +307444,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [121972] = 4, + [118233] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2455), 3, - sym_newline_before_do, + ACTIONS(2429), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2457), 50, + ACTIONS(2431), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310791,27 +307506,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [122038] = 4, + [118299] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2617), 3, - sym_newline_before_do, + ACTIONS(2433), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2619), 50, + ACTIONS(2435), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310853,27 +307568,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [122104] = 4, + [118365] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3144), 1, + anon_sym_LPAREN, + STATE(2671), 1, + sym_call_arguments_with_parentheses, + ACTIONS(2161), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2621), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2623), 50, + ACTIONS(2163), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310915,27 +307632,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [122170] = 4, + [118435] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2625), 3, + ACTIONS(2541), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2627), 50, + ACTIONS(2543), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310979,25 +307696,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [122236] = 4, + [118501] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2629), 3, + ACTIONS(2661), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2631), 50, + ACTIONS(2664), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -311041,24 +307758,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [122302] = 4, + [118567] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2213), 3, + ACTIONS(2217), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2215), 50, + ACTIONS(2219), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -311102,25 +307820,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [122368] = 4, + [118633] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3456), 1, + anon_sym_COMMA, + STATE(3123), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2633), 3, + ACTIONS(2707), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2635), 50, + ACTIONS(2709), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -311165,25 +307884,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [122434] = 4, + [118703] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2637), 3, - sym_newline_before_do, + ACTIONS(1845), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2639), 50, + ACTIONS(1847), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -311225,27 +307944,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [122500] = 4, + [118769] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2641), 3, - sym_newline_before_do, + ACTIONS(1853), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2643), 50, + ACTIONS(1855), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -311287,49 +308006,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [122566] = 4, + [118835] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(9), 1, aux_sym_terminator_token1, - ACTIONS(2645), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2647), 50, - anon_sym_LT, - anon_sym_GT, + ACTIONS(11), 1, + anon_sym_SEMI, + ACTIONS(1655), 1, + ts_builtin_sym_end, + ACTIONS(3460), 1, anon_sym_PIPE, + ACTIONS(3470), 1, + anon_sym_when, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + ACTIONS(3474), 1, + anon_sym_EQ_GT, + ACTIONS(3476), 1, + anon_sym_EQ, + ACTIONS(3486), 1, + anon_sym_in, + ACTIONS(3488), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3490), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3492), 1, + anon_sym_STAR_STAR, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LBRACK2, + ACTIONS(3498), 1, + sym_not_in, + STATE(491), 1, + sym_terminator, + STATE(1375), 1, + aux_sym_terminator_repeat1, + STATE(5587), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3462), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3466), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3468), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3478), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3480), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3482), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3464), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3484), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -311339,37 +308095,28 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [122632] = 4, + [118951] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3080), 1, + anon_sym_LPAREN, + STATE(2889), 1, + sym_call_arguments_with_parentheses, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2649), 3, - sym_newline_before_do, + ACTIONS(2161), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2651), 50, + ACTIONS(2163), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -311412,26 +308159,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [122698] = 4, + [119021] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2599), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2653), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2655), 50, + ACTIONS(1873), 51, + 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_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -311474,26 +308221,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [122764] = 4, + [119087] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2657), 3, - sym_newline_before_do, + ACTIONS(1849), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2659), 50, + ACTIONS(1851), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -311535,20 +308281,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [122830] = 4, + [119153] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2269), 3, - sym_newline_before_do, + ACTIONS(1857), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 50, + ACTIONS(1859), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -311596,26 +308343,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [122896] = 4, + [119219] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2273), 3, + ACTIONS(2509), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 50, + ACTIONS(2511), 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_DOT_DOT, anon_sym_PLUS, @@ -311660,24 +308407,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [122962] = 4, + [119285] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2601), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2375), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2377), 50, + ACTIONS(2603), 51, + 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_DOT_DOT, anon_sym_PLUS, @@ -311721,29 +308469,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [123028] = 4, + [119351] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3258), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2379), 3, + ACTIONS(3230), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2381), 50, + aux_sym_terminator_token1, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 36, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -311773,35 +308538,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_do, + [119433] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3256), 1, + anon_sym_in, + ACTIONS(3258), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3230), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3254), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, - anon_sym_DOT_DOT_DOT_GT, - [123094] = 4, + [119521] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2451), 3, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2453), 50, + aux_sym_terminator_token1, + ACTIONS(2597), 48, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -311843,31 +308676,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [123160] = 4, + [119593] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2455), 3, + ACTIONS(3230), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2457), 50, + aux_sym_terminator_token1, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 38, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -311899,35 +308744,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [123226] = 4, + [119671] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2661), 3, + ACTIONS(3230), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2663), 50, + aux_sym_terminator_token1, + ACTIONS(2597), 46, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -311967,29 +308810,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [123292] = 4, + [119745] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3500), 1, + anon_sym_COMMA, + STATE(3074), 1, + aux_sym_keywords_repeat1, + ACTIONS(2601), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2665), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2667), 50, + ACTIONS(2603), 49, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -312032,48 +308875,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [123358] = 4, + [119815] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3244), 1, + anon_sym_EQ_GT, + ACTIONS(3246), 1, + anon_sym_EQ, + ACTIONS(3256), 1, + anon_sym_in, + ACTIONS(3258), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2669), 3, + ACTIONS(2595), 2, sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2671), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + aux_sym_terminator_token1, + ACTIONS(3230), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3236), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3248), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3250), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3226), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3252), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3254), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -312083,40 +308954,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [119915] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3246), 1, + anon_sym_EQ, + ACTIONS(3256), 1, anon_sym_in, + ACTIONS(3258), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3230), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3248), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3250), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3226), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3252), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3254), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, - [123424] = 4, + [120013] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3256), 1, + anon_sym_in, + ACTIONS(3258), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2221), 3, + ACTIONS(2595), 2, sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2223), 50, - anon_sym_LPAREN, + aux_sym_terminator_token1, + ACTIONS(3230), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3250), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3226), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3252), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3254), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 14, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -312126,16 +309107,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + anon_sym_do, + [120107] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3256), 1, + anon_sym_in, + ACTIONS(3258), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3230), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3226), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3252), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3254), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -312145,40 +309165,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [120199] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3256), 1, anon_sym_in, + ACTIONS(3258), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3230), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3226), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3254), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, - [123490] = 4, + [120289] = 14, ACTIONS(5), 1, sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3256), 1, + anon_sym_in, + ACTIONS(3258), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(273), 5, + ACTIONS(2595), 2, sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(275), 49, + ACTIONS(3230), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -312207,102 +309328,45 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [123556] = 4, + [120375] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3260), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2694), 5, + ACTIONS(3230), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2696), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, + ACTIONS(3234), 6, anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [123622] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2229), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2231), 50, - anon_sym_LPAREN, + ACTIONS(2597), 37, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -312333,162 +309397,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [123688] = 4, + [120455] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2233), 3, - sym_newline_before_do, - sym_not_in, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(2235), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3262), 1, anon_sym_STAR_STAR, + ACTIONS(3264), 1, anon_sym_DOT, - anon_sym_do, - [123754] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1825), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(1827), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3230), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3236), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [123820] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1833), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(1835), 50, + ACTIONS(2597), 37, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -312519,35 +309466,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [123886] = 4, + [120535] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2487), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(1861), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2489), 51, + anon_sym_LBRACK2, + ACTIONS(1863), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -312590,26 +309527,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [123952] = 4, + [120601] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2491), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(1865), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2493), 51, + anon_sym_LBRACK2, + ACTIONS(1867), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -312652,19 +309589,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [124018] = 4, + [120667] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1837), 3, + ACTIONS(2711), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1839), 50, + ACTIONS(2713), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -312715,18 +309653,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [124084] = 4, + [120733] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1841), 3, + ACTIONS(2715), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1843), 50, + ACTIONS(2717), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -312777,24 +309715,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [124150] = 4, + [120799] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(273), 3, + ACTIONS(2719), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(275), 50, - anon_sym_RPAREN, + ACTIONS(2721), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -312836,27 +309775,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [124216] = 4, + [120865] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2221), 3, + ACTIONS(2723), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2223), 50, - anon_sym_LPAREN, + ACTIONS(2725), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -312900,19 +309839,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [124282] = 4, + [120931] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1845), 3, + ACTIONS(2727), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1847), 50, + ACTIONS(2729), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -312963,18 +309901,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [124348] = 4, + [120997] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1849), 3, + ACTIONS(2731), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1851), 50, + ACTIONS(2733), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -313025,24 +309963,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [124414] = 4, + [121063] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2229), 3, + ACTIONS(2735), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2231), 50, - anon_sym_LPAREN, + ACTIONS(2737), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313086,25 +310025,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [124480] = 4, + [121129] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2233), 3, + ACTIONS(2739), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2235), 50, - anon_sym_LPAREN, + ACTIONS(2741), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313148,26 +310087,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [124546] = 4, + [121195] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2698), 5, + aux_sym_terminator_token1, + ACTIONS(2743), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2700), 49, - anon_sym_SEMI, + ACTIONS(2745), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313211,25 +310149,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [124612] = 4, + [121261] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2702), 5, + aux_sym_terminator_token1, + ACTIONS(2747), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2704), 49, - anon_sym_SEMI, + ACTIONS(2749), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313273,25 +310211,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [124678] = 4, + [121327] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2706), 5, + aux_sym_terminator_token1, + ACTIONS(2751), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2708), 49, - anon_sym_SEMI, + ACTIONS(2753), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313335,25 +310273,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [124744] = 4, + [121393] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2183), 5, + aux_sym_terminator_token1, + ACTIONS(2755), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 49, - anon_sym_SEMI, + ACTIONS(2757), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313397,25 +310335,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [124810] = 4, + [121459] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2189), 5, + aux_sym_terminator_token1, + ACTIONS(2759), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2191), 49, - anon_sym_SEMI, + ACTIONS(2761), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313459,25 +310397,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [124876] = 4, + [121525] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2714), 5, + aux_sym_terminator_token1, + ACTIONS(2567), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, + anon_sym_LBRACK2, + ACTIONS(2569), 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_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [121591] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, + ACTIONS(2277), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2716), 49, - anon_sym_SEMI, + ACTIONS(2279), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313521,25 +310521,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [124942] = 4, + [121657] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2718), 5, + aux_sym_terminator_token1, + ACTIONS(2281), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, + anon_sym_LBRACK2, + ACTIONS(2283), 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_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [121723] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, + ACTIONS(2249), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2720), 49, - anon_sym_SEMI, + ACTIONS(2251), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313583,20 +310645,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [125008] = 4, + [121789] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2145), 5, + aux_sym_terminator_token1, + ACTIONS(2245), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, + anon_sym_LBRACK2, + ACTIONS(2247), 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_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [121855] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, + ACTIONS(2233), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2147), 49, - anon_sym_SEMI, + ACTIONS(2235), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -313645,82 +310768,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [125074] = 27, + anon_sym_DOT_DOT_DOT_GT, + [121921] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2293), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2187), 3, sym_newline_before_do, - ACTIONS(3463), 1, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2189), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3467), 1, + anon_sym_SLASH, anon_sym_COMMA, - ACTIONS(3475), 1, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3477), 1, anon_sym_COLON_COLON, - ACTIONS(3479), 1, anon_sym_EQ_GT, - ACTIONS(3481), 1, anon_sym_EQ, - ACTIONS(3491), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3493), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3499), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(3503), 1, - sym_not_in, - STATE(3205), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(2295), 2, - anon_sym_GT_GT, anon_sym_do, - ACTIONS(3465), 2, + [121987] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2285), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2287), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3473), 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(3483), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3485), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3461), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3487), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3489), 9, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [122053] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2289), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2291), 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_DOT_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_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -313730,24 +310943,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [125186] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [122119] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2694), 3, + ACTIONS(2293), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2696), 50, - anon_sym_RPAREN, + ACTIONS(2295), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313789,28 +311015,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [125252] = 4, + [122185] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2743), 5, + aux_sym_terminator_token1, + ACTIONS(2297), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2745), 49, - anon_sym_SEMI, + ACTIONS(2299), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313854,27 +311079,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [125318] = 7, + [122251] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(544), 1, - anon_sym_do, - ACTIONS(3505), 1, - sym_newline_before_do, - STATE(4602), 1, - sym_do_block, - ACTIONS(2209), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2211), 48, + ACTIONS(2301), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2303), 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_DOT_DOT, @@ -313919,27 +311140,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [125390] = 7, + anon_sym_do, + [122317] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(544), 1, - anon_sym_do, - ACTIONS(3507), 1, - sym_newline_before_do, - STATE(4484), 1, - sym_do_block, - ACTIONS(2193), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2195), 48, + ACTIONS(2305), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2307), 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_DOT_DOT, @@ -313984,24 +311202,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [125462] = 4, + anon_sym_do, + [122383] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2698), 3, + ACTIONS(2309), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2700), 50, - anon_sym_RPAREN, + ACTIONS(2311), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314043,30 +311263,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [125528] = 7, + [122449] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(544), 1, - anon_sym_do, - ACTIONS(3509), 1, - sym_newline_before_do, - STATE(4675), 1, - sym_do_block, - ACTIONS(2217), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2219), 48, + ACTIONS(2313), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2315), 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_DOT_DOT, @@ -314111,24 +311326,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [125600] = 4, + anon_sym_do, + [122515] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1825), 3, + ACTIONS(2317), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1827), 50, + ACTIONS(2319), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314172,25 +311389,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [125666] = 4, + [122581] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1833), 3, + ACTIONS(2321), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1835), 50, + ACTIONS(2323), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314234,25 +311451,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [125732] = 4, + [122647] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1837), 3, + ACTIONS(2325), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1839), 50, + ACTIONS(2327), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314296,25 +311513,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [125798] = 4, + [122713] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1841), 3, + ACTIONS(2329), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1843), 50, + ACTIONS(2331), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314358,25 +311575,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [125864] = 4, + [122779] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1845), 3, + ACTIONS(2333), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1847), 50, + ACTIONS(2335), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314420,25 +311637,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [125930] = 4, + [122845] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1849), 3, + ACTIONS(2337), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1851), 50, + ACTIONS(2339), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314482,27 +311699,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [125996] = 6, + [122911] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3511), 1, - anon_sym_COMMA, - STATE(3215), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2730), 3, + ACTIONS(2341), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2732), 48, + ACTIONS(2343), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314546,20 +311761,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [126066] = 4, + [122977] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1825), 4, + ACTIONS(2409), 3, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1827), 49, + ACTIONS(2411), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -314606,27 +311820,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [126132] = 4, + [123043] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1833), 4, + ACTIONS(2345), 3, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1835), 49, + ACTIONS(2347), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314670,26 +311885,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [126198] = 4, + [123109] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 5, + aux_sym_terminator_token1, + ACTIONS(2241), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 49, - anon_sym_SEMI, + ACTIONS(2243), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314733,25 +311947,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [126264] = 4, + [123175] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3456), 1, + anon_sym_COMMA, + STATE(3192), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 5, + aux_sym_terminator_token1, + ACTIONS(2685), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 49, - anon_sym_SEMI, + ACTIONS(2687), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314795,25 +312011,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [126330] = 4, + [123245] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2277), 5, + aux_sym_terminator_token1, + ACTIONS(2349), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2279), 49, - anon_sym_SEMI, + ACTIONS(2351), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314857,25 +312073,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [126396] = 4, + [123311] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2281), 5, + aux_sym_terminator_token1, + ACTIONS(2353), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2283), 49, - anon_sym_SEMI, + ACTIONS(2355), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314919,25 +312135,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [126462] = 4, + [123377] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2285), 5, + aux_sym_terminator_token1, + ACTIONS(2357), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2287), 49, - anon_sym_SEMI, + ACTIONS(2359), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314981,25 +312197,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [126528] = 4, + [123443] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 5, + aux_sym_terminator_token1, + ACTIONS(2361), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 49, - anon_sym_SEMI, + ACTIONS(2363), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -315043,111 +312259,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [126594] = 25, + [123509] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3318), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_when, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, - ACTIONS(3334), 1, - anon_sym_EQ_GT, - ACTIONS(3336), 1, - anon_sym_EQ, - ACTIONS(3346), 1, - anon_sym_in, - ACTIONS(3348), 1, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3306), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, + ACTIONS(3308), 1, anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, + ACTIONS(3310), 1, anon_sym_STAR_STAR, - ACTIONS(3354), 1, + ACTIONS(3312), 1, anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3358), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, + ACTIONS(3278), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3326), 2, + ACTIONS(3284), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3328), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2755), 3, + ACTIONS(2595), 3, sym_newline_before_do, - ts_builtin_sym_end, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2757), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(3338), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3340), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3316), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3342), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3324), 6, + ACTIONS(3282), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3344), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [126702] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2289), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2291), 49, + ACTIONS(2597), 36, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -315177,91 +312327,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [126768] = 25, + anon_sym_end, + [123591] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(3224), 1, - anon_sym_PIPE, - ACTIONS(3236), 1, - anon_sym_when, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3240), 1, - anon_sym_EQ_GT, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3252), 1, + ACTIONS(3304), 1, anon_sym_in, - ACTIONS(3254), 1, + ACTIONS(3306), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, + ACTIONS(3308), 1, anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, + ACTIONS(3310), 1, anon_sym_STAR_STAR, - ACTIONS(3260), 1, + ACTIONS(3312), 1, anon_sym_DOT, - ACTIONS(3262), 1, + ACTIONS(3314), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2755), 2, + ACTIONS(2595), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3226), 2, + ACTIONS(3278), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3232), 2, + ACTIONS(3284), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3244), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3246), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2757), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(3222), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3248), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3230), 6, + ACTIONS(3282), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3250), 9, + ACTIONS(3302), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -315271,31 +312375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [126876] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3260), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2289), 3, - sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(2291), 49, + ACTIONS(2597), 26, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -315315,100 +312400,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_do, - [126946] = 25, + anon_sym_end, + [123679] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3318), 1, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3228), 1, anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_when, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, - ACTIONS(3334), 1, + ACTIONS(3244), 1, anon_sym_EQ_GT, - ACTIONS(3336), 1, + ACTIONS(3246), 1, anon_sym_EQ, - ACTIONS(3346), 1, + ACTIONS(3256), 1, anon_sym_in, - ACTIONS(3348), 1, + ACTIONS(3258), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, + ACTIONS(3260), 1, anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, + ACTIONS(3262), 1, anon_sym_STAR_STAR, - ACTIONS(3354), 1, + ACTIONS(3264), 1, anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3358), 1, + ACTIONS(3266), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3230), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3326), 2, + ACTIONS(3236), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3328), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2751), 3, - sym_newline_before_do, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(2753), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(3338), 3, + ACTIONS(3248), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3340), 3, + ACTIONS(3250), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3316), 4, + ACTIONS(3226), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3342), 5, + ACTIONS(3252), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3324), 6, + ACTIONS(3234), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3344), 9, + ACTIONS(2597), 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(3254), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -315418,23 +312482,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [127054] = 6, + [123781] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(3260), 1, + ACTIONS(3310), 1, + anon_sym_STAR_STAR, + ACTIONS(3312), 1, anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 3, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2361), 49, + ACTIONS(2597), 48, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -315480,29 +312545,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_do, - [127124] = 4, + anon_sym_end, + [123853] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3310), 1, + anon_sym_STAR_STAR, + ACTIONS(3312), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1837), 4, + ACTIONS(3278), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3284), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1839), 49, + aux_sym_terminator_token1, + ACTIONS(3282), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 38, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -315534,33 +312613,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [127190] = 4, + anon_sym_end, + [123931] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3310), 1, + anon_sym_STAR_STAR, + ACTIONS(3312), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1841), 4, + ACTIONS(3278), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1843), 49, + aux_sym_terminator_token1, + ACTIONS(2597), 46, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -315601,52 +312679,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [127256] = 5, + anon_sym_end, + [124005] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3513), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2257), 3, - sym_newline_before_do, - sym_not_in, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(2259), 49, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3228), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3240), 1, anon_sym_when, + ACTIONS(3242), 1, anon_sym_COLON_COLON, + ACTIONS(3244), 1, anon_sym_EQ_GT, + ACTIONS(3246), 1, anon_sym_EQ, + ACTIONS(3256), 1, + anon_sym_in, + ACTIONS(3258), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3230), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3248), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3250), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3226), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3252), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2597), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3254), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -315656,60 +312763,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [124111] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3228), 1, + anon_sym_PIPE, + ACTIONS(3240), 1, + anon_sym_when, + ACTIONS(3242), 1, + anon_sym_COLON_COLON, + ACTIONS(3244), 1, + anon_sym_EQ_GT, + ACTIONS(3246), 1, + anon_sym_EQ, + ACTIONS(3256), 1, anon_sym_in, + ACTIONS(3258), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3262), 1, anon_sym_STAR_STAR, + ACTIONS(3264), 1, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [127324] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3515), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3266), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2263), 3, + ACTIONS(2595), 2, sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2265), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + aux_sym_terminator_token1, + ACTIONS(3230), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3236), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3248), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3250), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3226), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3252), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2597), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3254), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -315719,90 +312845,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [124217] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3228), 1, + anon_sym_PIPE, + ACTIONS(3242), 1, + anon_sym_COLON_COLON, + ACTIONS(3244), 1, + anon_sym_EQ_GT, + ACTIONS(3246), 1, + anon_sym_EQ, + ACTIONS(3256), 1, anon_sym_in, + ACTIONS(3258), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3230), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3236), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3248), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3250), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3226), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3252), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(2597), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [127392] = 22, + ACTIONS(3254), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [124321] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3162), 1, - anon_sym_PIPE, - ACTIONS(3178), 1, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3292), 1, anon_sym_EQ_GT, - ACTIONS(3180), 1, + ACTIONS(3294), 1, anon_sym_EQ, - ACTIONS(3190), 1, + ACTIONS(3304), 1, anon_sym_in, - ACTIONS(3192), 1, + ACTIONS(3306), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, + ACTIONS(3308), 1, anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, + ACTIONS(3310), 1, anon_sym_STAR_STAR, - ACTIONS(3198), 1, + ACTIONS(3312), 1, anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(3202), 1, + ACTIONS(3314), 1, sym_not_in, - ACTIONS(3164), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3278), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3170), 2, + ACTIONS(3284), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3182), 3, + ACTIONS(3296), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3184), 3, + ACTIONS(3298), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3160), 4, + ACTIONS(3274), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3186), 5, + ACTIONS(3300), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3168), 6, + ACTIONS(3282), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 8, - anon_sym_RPAREN, + ACTIONS(2597), 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_DASH_GT, anon_sym_do, - ACTIONS(3188), 9, + anon_sym_end, + ACTIONS(3302), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -315812,79 +313005,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [127494] = 24, + [124421] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3162), 1, - anon_sym_PIPE, - ACTIONS(3174), 1, - anon_sym_when, - ACTIONS(3176), 1, - anon_sym_COLON_COLON, - ACTIONS(3178), 1, - anon_sym_EQ_GT, - ACTIONS(3180), 1, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3294), 1, anon_sym_EQ, - ACTIONS(3190), 1, + ACTIONS(3304), 1, anon_sym_in, - ACTIONS(3192), 1, + ACTIONS(3306), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, + ACTIONS(3308), 1, anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, + ACTIONS(3310), 1, anon_sym_STAR_STAR, - ACTIONS(3198), 1, + ACTIONS(3312), 1, anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(3202), 1, + ACTIONS(3314), 1, sym_not_in, - ACTIONS(3164), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3278), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3170), 2, + ACTIONS(3284), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3182), 3, + ACTIONS(3296), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3184), 3, + ACTIONS(3298), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3160), 4, + ACTIONS(3274), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3186), 5, + ACTIONS(3300), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3168), 6, + ACTIONS(3282), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3188), 9, + ACTIONS(3302), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -315894,79 +313072,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [127600] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3162), 1, + ACTIONS(2597), 10, + anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3174), 1, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3176), 1, anon_sym_COLON_COLON, - ACTIONS(3178), 1, anon_sym_EQ_GT, - ACTIONS(3180), 1, - anon_sym_EQ, - ACTIONS(3190), 1, + anon_sym_do, + anon_sym_end, + [124519] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3304), 1, anon_sym_in, - ACTIONS(3192), 1, + ACTIONS(3306), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, + ACTIONS(3308), 1, anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, + ACTIONS(3310), 1, anon_sym_STAR_STAR, - ACTIONS(3198), 1, + ACTIONS(3312), 1, anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(3202), 1, + ACTIONS(3314), 1, sym_not_in, - ACTIONS(3164), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3278), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3170), 2, + ACTIONS(3284), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3182), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3184), 3, + ACTIONS(3298), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3160), 4, + ACTIONS(3274), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3186), 5, + ACTIONS(3300), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3168), 6, + ACTIONS(3282), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3188), 9, + ACTIONS(3302), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -315976,78 +313144,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [127706] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3162), 1, + ACTIONS(2597), 14, + anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3176), 1, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(3178), 1, anon_sym_EQ_GT, - ACTIONS(3180), 1, anon_sym_EQ, - ACTIONS(3190), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + anon_sym_end, + [124613] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3304), 1, anon_sym_in, - ACTIONS(3192), 1, + ACTIONS(3306), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, + ACTIONS(3308), 1, anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, + ACTIONS(3310), 1, anon_sym_STAR_STAR, - ACTIONS(3198), 1, + ACTIONS(3312), 1, anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(3202), 1, + ACTIONS(3314), 1, sym_not_in, - ACTIONS(3164), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3278), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3170), 2, + ACTIONS(3284), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3182), 3, + ACTIONS(3274), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3300), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3282), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, - ACTIONS(3184), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3160), 4, + anon_sym_do, + anon_sym_end, + [124705] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3304), 1, + anon_sym_in, + ACTIONS(3306), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3308), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3310), 1, + anon_sym_STAR_STAR, + ACTIONS(3312), 1, + anon_sym_DOT, + ACTIONS(3314), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3278), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3284), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3274), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3186), 5, + ACTIONS(3282), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, - ACTIONS(3168), 6, + anon_sym_do, + anon_sym_end, + [124795] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3304), 1, + anon_sym_in, + ACTIONS(3306), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3308), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3310), 1, + anon_sym_STAR_STAR, + ACTIONS(3312), 1, + anon_sym_DOT, + ACTIONS(3314), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3278), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3284), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3282), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 7, - anon_sym_RPAREN, + ACTIONS(2597), 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_DASH_GT, - anon_sym_do, - ACTIONS(3188), 9, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -316057,31 +313378,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [127810] = 6, + anon_sym_do, + anon_sym_end, + [124881] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2813), 1, anon_sym_LBRACK2, + ACTIONS(3308), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3310), 1, + anon_sym_STAR_STAR, + ACTIONS(3312), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 4, + ACTIONS(3278), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3284), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2291), 48, + ACTIONS(3282), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 37, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -316112,34 +313447,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_do, + anon_sym_end, + [124961] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3308), 1, anon_sym_SLASH_SLASH, + ACTIONS(3310), 1, + anon_sym_STAR_STAR, + ACTIONS(3312), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3278), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3284), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, + aux_sym_terminator_token1, + ACTIONS(3282), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(2597), 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, - [127880] = 4, + anon_sym_end, + [125041] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 5, + aux_sym_terminator_token1, + ACTIONS(2365), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 49, - anon_sym_SEMI, + ACTIONS(2367), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -316183,25 +313580,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [127946] = 4, + [125107] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2341), 5, + aux_sym_terminator_token1, + ACTIONS(2273), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2343), 49, - anon_sym_SEMI, + ACTIONS(2275), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -316245,25 +313642,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [128012] = 4, + [125173] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2345), 5, + aux_sym_terminator_token1, + ACTIONS(2369), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2347), 49, - anon_sym_SEMI, + ACTIONS(2371), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -316307,28 +313704,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [128078] = 6, + [125239] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3260), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, + aux_sym_terminator_token1, + ACTIONS(2373), 3, sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, - ACTIONS(2409), 49, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2375), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -316370,24 +313764,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [128148] = 4, + [125305] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2177), 3, + ACTIONS(2377), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2179), 50, - anon_sym_LPAREN, + ACTIONS(2379), 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_DOT_DOT, @@ -316433,25 +313828,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [128214] = 4, + [125371] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2355), 5, + aux_sym_terminator_token1, + ACTIONS(2381), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2357), 49, - anon_sym_SEMI, + ACTIONS(2383), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -316495,26 +313890,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [128280] = 6, + [125437] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3517), 1, - anon_sym_COMMA, - STATE(3067), 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(2677), 3, + ACTIONS(2385), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2679), 48, + ACTIONS(2387), 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_DOT_DOT, anon_sym_PLUS, @@ -316559,24 +313952,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [128350] = 4, + [125503] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1845), 4, + ACTIONS(2389), 3, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1847), 49, + ACTIONS(2391), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -316620,26 +314014,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [128416] = 4, + [125569] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2217), 5, + aux_sym_terminator_token1, + ACTIONS(2393), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2219), 49, - anon_sym_SEMI, + ACTIONS(2395), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -316683,24 +314076,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [128482] = 4, + [125635] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1849), 4, + ACTIONS(2397), 3, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1851), 49, + ACTIONS(2399), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -316744,26 +314138,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [128548] = 4, + [125701] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 5, + aux_sym_terminator_token1, + ACTIONS(2401), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 49, - anon_sym_SEMI, + ACTIONS(2403), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -316807,25 +314200,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [128614] = 4, + [125767] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 5, + aux_sym_terminator_token1, + ACTIONS(2405), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 49, - anon_sym_SEMI, + ACTIONS(2407), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -316869,28 +314262,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [128680] = 6, + [125833] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 4, + aux_sym_terminator_token1, + ACTIONS(2237), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(2361), 48, - anon_sym_SEMI, + anon_sym_LBRACK2, + ACTIONS(2239), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -316932,113 +314322,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_do, - [128750] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1519), 1, - anon_sym_end, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3519), 1, - aux_sym_terminator_token1, - ACTIONS(3522), 1, - anon_sym_SEMI, - ACTIONS(3527), 1, - anon_sym_PIPE, - ACTIONS(3537), 1, - anon_sym_when, - ACTIONS(3539), 1, - anon_sym_COLON_COLON, - ACTIONS(3541), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, - anon_sym_EQ, - ACTIONS(3553), 1, - anon_sym_in, - ACTIONS(3555), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, - anon_sym_STAR_STAR, - ACTIONS(3561), 1, anon_sym_DOT, - ACTIONS(3563), 1, - sym_not_in, - STATE(408), 1, - sym_terminator, - STATE(1386), 1, - aux_sym_terminator_repeat1, - STATE(5775), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3529), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3533), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3535), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - 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(3525), 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(3531), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3551), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [128866] = 4, + anon_sym_do, + [125899] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 5, + aux_sym_terminator_token1, + ACTIONS(2213), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 49, - anon_sym_SEMI, + ACTIONS(2215), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -317082,25 +314386,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [128932] = 4, + [125965] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2363), 5, + aux_sym_terminator_token1, + ACTIONS(2267), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2365), 49, - anon_sym_SEMI, + ACTIONS(2269), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -317144,26 +314448,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [128998] = 6, + [126031] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3511), 1, - anon_sym_COMMA, - STATE(3260), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2736), 3, + ACTIONS(163), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2738), 48, + ACTIONS(165), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -317205,26 +314507,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [129068] = 4, + [126097] = 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(2367), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2369), 50, + 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, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -317268,25 +314572,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [129134] = 4, + [126163] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2371), 3, + ACTIONS(2485), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2373), 50, + ACTIONS(2487), 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_DOT_DOT, anon_sym_PLUS, @@ -317329,110 +314631,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [129200] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1527), 1, - anon_sym_end, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3527), 1, - anon_sym_PIPE, - ACTIONS(3537), 1, - anon_sym_when, - ACTIONS(3539), 1, - anon_sym_COLON_COLON, - ACTIONS(3541), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, - anon_sym_EQ, - ACTIONS(3553), 1, - anon_sym_in, - ACTIONS(3555), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, - anon_sym_STAR_STAR, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3563), 1, - sym_not_in, - ACTIONS(3565), 1, - aux_sym_terminator_token1, - ACTIONS(3568), 1, - anon_sym_SEMI, - STATE(407), 1, - sym_terminator, - STATE(1386), 1, - aux_sym_terminator_repeat1, - STATE(6365), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3529), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3533), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3535), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - 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(3525), 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(3531), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3551), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [129316] = 4, + [126229] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 5, + aux_sym_terminator_token1, + ACTIONS(2489), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2377), 49, - anon_sym_SEMI, + ACTIONS(2491), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317479,25 +314693,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [129382] = 4, + [126295] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2415), 3, + ACTIONS(2493), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2417), 50, + ACTIONS(2495), 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_DOT_DOT, anon_sym_PLUS, @@ -317540,23 +314755,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [129448] = 4, + [126361] = 25, ACTIONS(5), 1, sym_comment, + ACTIONS(3320), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_when, + ACTIONS(3334), 1, + anon_sym_COLON_COLON, + ACTIONS(3336), 1, + anon_sym_EQ_GT, + ACTIONS(3338), 1, + anon_sym_EQ, + ACTIONS(3348), 1, + anon_sym_in, + ACTIONS(3350), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3352), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3354), 1, + anon_sym_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, + anon_sym_LBRACK2, + ACTIONS(3360), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 5, + ACTIONS(3322), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3330), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2694), 3, sym_newline_before_do, - sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2381), 49, + ACTIONS(2696), 3, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3340), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3342), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3318), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3344), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3346), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [126469] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2667), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2669), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317604,21 +314903,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [129514] = 4, + [126535] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2671), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2383), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2385), 49, - anon_sym_SEMI, + ACTIONS(2673), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317666,21 +314965,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [129580] = 4, + [126601] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2645), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2387), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2389), 49, - anon_sym_SEMI, + ACTIONS(2647), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317728,24 +315027,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [129646] = 4, + [126667] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2419), 3, + ACTIONS(2259), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2421), 50, + ACTIONS(2261), 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_DOT_DOT, anon_sym_PLUS, @@ -317788,26 +315086,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [129712] = 4, + [126733] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2435), 3, + ACTIONS(2201), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2437), 50, + ACTIONS(2203), 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_DOT_DOT, anon_sym_PLUS, @@ -317850,23 +315148,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [129778] = 4, + [126799] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2391), 5, + aux_sym_terminator_token1, + ACTIONS(2497), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2393), 49, - anon_sym_SEMI, + ACTIONS(2499), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317913,22 +315210,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [129844] = 4, + [126865] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2395), 5, + aux_sym_terminator_token1, + ACTIONS(2501), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2397), 49, - anon_sym_SEMI, + ACTIONS(2503), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317975,22 +315272,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [129910] = 4, + [126931] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2399), 5, + aux_sym_terminator_token1, + ACTIONS(2161), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2401), 49, - anon_sym_SEMI, + ACTIONS(2163), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -318037,22 +315334,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [129976] = 4, + [126997] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2675), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2403), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2405), 49, - anon_sym_SEMI, + ACTIONS(2677), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -318100,47 +315399,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [130042] = 12, + [127063] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3348), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, - anon_sym_STAR_STAR, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 4, + aux_sym_terminator_token1, + ACTIONS(2505), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_SEMI, + anon_sym_LBRACK2, + ACTIONS(2507), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -318170,94 +315449,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_do, - [130124] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3346), 1, - anon_sym_in, - ACTIONS(3348), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, - anon_sym_STAR_STAR, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3358), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3320), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3344), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - [130212] = 4, + [127129] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2541), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2409), 49, - anon_sym_SEMI, + ACTIONS(2543), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -318304,27 +315520,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [130278] = 7, + [127195] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3352), 1, - anon_sym_STAR_STAR, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(2649), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 4, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 47, - anon_sym_SEMI, + ACTIONS(2651), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -318370,43 +315583,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_do, - [130350] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3352), 1, anon_sym_STAR_STAR, - ACTIONS(3354), 1, anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + [127261] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 4, + aux_sym_terminator_token1, + ACTIONS(1845), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 37, - anon_sym_SEMI, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1847), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -318438,33 +315638,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [130428] = 8, + [127327] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3352), 1, - anon_sym_STAR_STAR, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2407), 4, + aux_sym_terminator_token1, + ACTIONS(1853), 4, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(2409), 45, - anon_sym_SEMI, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1855), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -318504,21 +315705,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [130502] = 4, + [127393] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 5, + aux_sym_terminator_token1, + ACTIONS(2517), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 49, - anon_sym_SEMI, + ACTIONS(2519), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -318565,78 +315768,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [130568] = 21, + [127459] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_EQ_GT, - ACTIONS(3336), 1, - anon_sym_EQ, - ACTIONS(3346), 1, - anon_sym_in, - ACTIONS(3348), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, - anon_sym_STAR_STAR, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3358), 1, - sym_not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, + aux_sym_terminator_token1, + ACTIONS(2521), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2523), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3338), 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(3340), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3316), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3342), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3344), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -318646,75 +315820,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [130668] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3336), 1, - anon_sym_EQ, - ACTIONS(3346), 1, anon_sym_in, - ACTIONS(3348), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3354), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3358), 1, - sym_not_in, - ACTIONS(3), 2, + anon_sym_do, + [127525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, + aux_sym_terminator_token1, + ACTIONS(2525), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2527), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3338), 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(3340), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3316), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3342), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3344), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -318724,59 +315882,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [130766] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3346), 1, anon_sym_in, - ACTIONS(3348), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3354), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3358), 1, - sym_not_in, - ACTIONS(3), 2, + anon_sym_do, + [127591] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, + aux_sym_terminator_token1, + ACTIONS(2529), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2531), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3340), 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(3316), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3342), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3344), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -318786,69 +315944,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 13, - 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_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [127657] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2767), 1, + sym_newline_before_do, + ACTIONS(3164), 1, anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3176), 1, anon_sym_when, + ACTIONS(3178), 1, anon_sym_COLON_COLON, + ACTIONS(3180), 1, anon_sym_EQ_GT, + ACTIONS(3182), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_do, - [130860] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3346), 1, + ACTIONS(3192), 1, anon_sym_in, - ACTIONS(3348), 1, + ACTIONS(3194), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, + ACTIONS(3196), 1, anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, + ACTIONS(3198), 1, anon_sym_STAR_STAR, - ACTIONS(3354), 1, + ACTIONS(3200), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3202), 1, anon_sym_LBRACK2, - ACTIONS(3358), 1, + ACTIONS(3204), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3320), 2, + ACTIONS(3166), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3326), 2, + ACTIONS(3172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - ts_builtin_sym_end, + ACTIONS(3174), 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(3316), 4, + ACTIONS(3184), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3186), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2769), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3162), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3342), 5, + ACTIONS(3188), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3324), 6, + ACTIONS(3170), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3344), 9, + ACTIONS(3190), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -318858,79 +316040,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [130952] = 16, + [127765] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3346), 1, - anon_sym_in, - ACTIONS(3348), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, - anon_sym_STAR_STAR, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3358), 1, - sym_not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3316), 4, + ACTIONS(2529), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2531), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3344), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 21, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -318948,50 +316078,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_do, - [131042] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3346), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3348), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3354), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(3356), 1, + anon_sym_do, + [127831] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, anon_sym_LBRACK2, - ACTIONS(3358), 1, + ACTIONS(2529), 2, + sym_newline_before_do, sym_not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 34, - anon_sym_SEMI, + ACTIONS(2531), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -319020,45 +316154,39 @@ 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_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_do, - [131128] = 11, + [127901] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3350), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, - anon_sym_STAR_STAR, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 4, + aux_sym_terminator_token1, + ACTIONS(2529), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_SEMI, + anon_sym_LBRACK2, + ACTIONS(2531), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -319089,45 +316217,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_do, - [131208] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3350), 1, anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3354), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + anon_sym_do, + [127967] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 4, + aux_sym_terminator_token1, + ACTIONS(2533), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_SEMI, + anon_sym_LBRACK2, + ACTIONS(2535), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -319158,24 +316279,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - [131288] = 6, + [128033] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 4, + aux_sym_terminator_token1, + ACTIONS(2537), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(2409), 48, - anon_sym_SEMI, + anon_sym_LBRACK2, + ACTIONS(2539), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -319222,26 +316349,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - [131358] = 4, + [128099] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3398), 1, + anon_sym_COMMA, + STATE(2963), 1, + aux_sym_keywords_repeat1, + ACTIONS(2707), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2411), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2413), 49, - anon_sym_SEMI, + ACTIONS(2709), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -319284,21 +316416,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [131424] = 4, + [128169] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2555), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2683), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2685), 49, - anon_sym_SEMI, + ACTIONS(2557), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -319346,25 +316478,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [131490] = 4, + [128235] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3503), 1, + anon_sym_COMMA, + STATE(3192), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2443), 3, + ACTIONS(2601), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2445), 50, + ACTIONS(2603), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -319408,25 +316542,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [131556] = 4, + [128305] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3506), 1, + anon_sym_COMMA, + STATE(3193), 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(2447), 3, + ACTIONS(2694), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2449), 50, + ACTIONS(2696), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -319470,24 +316606,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [131622] = 4, + [128375] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2463), 3, + ACTIONS(2509), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2465), 50, + ACTIONS(2511), 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_DOT_DOT, anon_sym_PLUS, @@ -319530,23 +316665,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [131688] = 4, + [128441] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2423), 5, + aux_sym_terminator_token1, + ACTIONS(2513), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2425), 49, - anon_sym_SEMI, + ACTIONS(2515), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -319593,49 +316727,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [131754] = 4, + [128507] = 22, ACTIONS(5), 1, sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3276), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_EQ_GT, + ACTIONS(3294), 1, + anon_sym_EQ, + ACTIONS(3304), 1, + anon_sym_in, + ACTIONS(3306), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3308), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3310), 1, + anon_sym_STAR_STAR, + ACTIONS(3312), 1, + anon_sym_DOT, + ACTIONS(3314), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 5, + ACTIONS(2595), 2, sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2409), 49, - anon_sym_SEMI, + ACTIONS(3278), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3284), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3296), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3298), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3274), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3300), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3282), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [128609] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3276), 1, anon_sym_PIPE, + ACTIONS(3288), 1, + anon_sym_when, + ACTIONS(3290), 1, + anon_sym_COLON_COLON, + ACTIONS(3292), 1, + anon_sym_EQ_GT, + ACTIONS(3294), 1, + anon_sym_EQ, + ACTIONS(3304), 1, + anon_sym_in, + ACTIONS(3306), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3308), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3310), 1, + anon_sym_STAR_STAR, + ACTIONS(3312), 1, + anon_sym_DOT, + ACTIONS(3314), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3278), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3284), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3296), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3298), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3274), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3300), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2597), 6, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_do, + anon_sym_end, + ACTIONS(3282), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [128715] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3276), 1, + anon_sym_PIPE, + ACTIONS(3288), 1, anon_sym_when, + ACTIONS(3290), 1, anon_sym_COLON_COLON, + ACTIONS(3292), 1, anon_sym_EQ_GT, + ACTIONS(3294), 1, anon_sym_EQ, + ACTIONS(3304), 1, + anon_sym_in, + ACTIONS(3306), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3308), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3310), 1, + anon_sym_STAR_STAR, + ACTIONS(3312), 1, + anon_sym_DOT, + ACTIONS(3314), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3278), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3284), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3296), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3298), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3274), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3300), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2597), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + anon_sym_end, + ACTIONS(3282), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3302), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -319645,37 +316974,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [128821] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3276), 1, + anon_sym_PIPE, + ACTIONS(3290), 1, + anon_sym_COLON_COLON, + ACTIONS(3292), 1, + anon_sym_EQ_GT, + ACTIONS(3294), 1, + anon_sym_EQ, + ACTIONS(3304), 1, anon_sym_in, + ACTIONS(3306), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3308), 1, anon_sym_SLASH_SLASH, + ACTIONS(3310), 1, + anon_sym_STAR_STAR, + ACTIONS(3312), 1, + anon_sym_DOT, + ACTIONS(3314), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_newline_before_do, + aux_sym_terminator_token1, + ACTIONS(3278), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3284), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3296), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3298), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3274), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3300), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3282), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(2597), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_do, - [131820] = 4, + anon_sym_end, + ACTIONS(3302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [128925] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2247), 3, + ACTIONS(2555), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2249), 50, - anon_sym_LPAREN, + ACTIONS(2557), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -319717,49 +317114,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [131886] = 4, + [128991] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2427), 5, + ACTIONS(2409), 1, sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2429), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3511), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3515), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3523), 1, anon_sym_when, + ACTIONS(3525), 1, anon_sym_COLON_COLON, + ACTIONS(3527), 1, anon_sym_EQ_GT, + ACTIONS(3529), 1, anon_sym_EQ, + ACTIONS(3539), 1, + anon_sym_in, + ACTIONS(3541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3545), 1, + anon_sym_STAR_STAR, + ACTIONS(3547), 1, + anon_sym_DOT, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + ACTIONS(3551), 1, + sym_not_in, + STATE(3214), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(2411), 2, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(3513), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3519), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3521), 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(3531), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3533), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3509), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3535), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3517), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3537), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -319769,32 +317202,23 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [131952] = 4, + [129103] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2431), 5, + ACTIONS(626), 1, + anon_sym_do, + ACTIONS(3553), 1, sym_newline_before_do, + STATE(4703), 1, + sym_do_block, + ACTIONS(2229), 2, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2433), 49, - anon_sym_SEMI, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2231), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -319842,24 +317266,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [132018] = 4, + anon_sym_DOT_DOT_DOT_GT, + [129175] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(626), 1, + anon_sym_do, + ACTIONS(3555), 1, + sym_newline_before_do, + STATE(4706), 1, + sym_do_block, + ACTIONS(2191), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2467), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2469), 50, + ACTIONS(2193), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -319903,25 +317331,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [132084] = 4, + [129247] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2471), 3, + ACTIONS(2549), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2473), 50, + ACTIONS(2551), 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_DOT_DOT, anon_sym_PLUS, @@ -319964,23 +317391,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [132150] = 4, + [129313] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2439), 5, + ACTIONS(626), 1, + anon_sym_do, + ACTIONS(3557), 1, sym_newline_before_do, + STATE(4707), 1, + sym_do_block, + ACTIONS(2221), 2, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2441), 49, - anon_sym_SEMI, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2223), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -320028,81 +317458,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [132216] = 25, + anon_sym_DOT_DOT_DOT_GT, + [129385] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2221), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3276), 1, + ACTIONS(2223), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3288), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3290), 1, anon_sym_COLON_COLON, - ACTIONS(3292), 1, anon_sym_EQ_GT, - ACTIONS(3294), 1, anon_sym_EQ, - ACTIONS(3304), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3306), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3312), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(3314), 1, + anon_sym_do, + [129451] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2625), 2, sym_not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2687), 2, - sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3278), 2, + ACTIONS(2627), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3284), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3286), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3296), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3298), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2689), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_end, - ACTIONS(3274), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3300), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3282), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3302), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -320112,26 +317572,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [132324] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [129517] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3571), 1, - anon_sym_COMMA, - STATE(3260), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2351), 3, + ACTIONS(2559), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2353), 48, + ACTIONS(2561), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -320173,26 +317642,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [132394] = 4, + [129583] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2495), 3, + ACTIONS(2559), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2497), 50, + ACTIONS(2561), 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_DOT_DOT, anon_sym_PLUS, @@ -320235,26 +317704,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [132460] = 4, + [129649] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, + anon_sym_LBRACK2, + ACTIONS(2559), 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(2499), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2501), 50, + ACTIONS(2561), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -320297,23 +317769,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [132526] = 4, + [129719] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 5, + aux_sym_terminator_token1, + ACTIONS(2559), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2453), 49, - anon_sym_SEMI, + ACTIONS(2561), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -320360,22 +317830,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [132592] = 4, + [129785] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 5, + aux_sym_terminator_token1, + ACTIONS(2563), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2457), 49, - anon_sym_SEMI, + ACTIONS(2565), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -320422,82 +317892,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [132658] = 25, + [129851] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2687), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2209), 3, sym_newline_before_do, - ACTIONS(3162), 1, - anon_sym_PIPE, - ACTIONS(3174), 1, - anon_sym_when, - ACTIONS(3176), 1, - anon_sym_COLON_COLON, - ACTIONS(3178), 1, - anon_sym_EQ_GT, - ACTIONS(3180), 1, - anon_sym_EQ, - ACTIONS(3190), 1, - anon_sym_in, - ACTIONS(3192), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, - anon_sym_STAR_STAR, - ACTIONS(3198), 1, - anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(3202), 1, sym_not_in, - ACTIONS(3164), 2, + anon_sym_LBRACK2, + ACTIONS(2211), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3170), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3172), 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(3182), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3184), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2689), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3160), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3186), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3168), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3188), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -320507,22 +317944,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [132766] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [129917] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3574), 1, + ACTIONS(3559), 1, anon_sym_COMMA, - STATE(3266), 1, + STATE(3346), 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(2687), 3, + ACTIONS(2679), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2689), 48, + ACTIONS(2681), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -320571,23 +318021,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [132836] = 4, + [129987] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2511), 3, + ACTIONS(2599), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2513), 50, + ACTIONS(1873), 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_DOT_DOT, anon_sym_PLUS, @@ -320630,26 +318080,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [132902] = 4, + [130053] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2531), 3, + ACTIONS(2601), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2533), 50, + ACTIONS(2603), 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_DOT_DOT, anon_sym_PLUS, @@ -320692,27 +318142,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [132968] = 4, + [130119] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2539), 3, + ACTIONS(1849), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2541), 50, + ACTIONS(1851), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -320756,25 +318207,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [133034] = 4, + [130185] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2543), 3, + ACTIONS(1857), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2545), 50, + ACTIONS(1859), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -320818,19 +318269,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [133100] = 4, + [130251] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2702), 3, + ACTIONS(2571), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2704), 50, + ACTIONS(2573), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -320881,147 +318331,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [133166] = 4, + [130317] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2547), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2549), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [133232] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2459), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2461), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [133298] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2551), 3, + ACTIONS(2575), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2553), 50, + ACTIONS(2577), 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_DOT_DOT, anon_sym_PLUS, @@ -321064,26 +318390,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [133364] = 4, + [130383] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2555), 3, + ACTIONS(2579), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2557), 50, + ACTIONS(2581), 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_DOT_DOT, anon_sym_PLUS, @@ -321126,26 +318452,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [133430] = 4, + [130449] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2559), 3, + ACTIONS(2263), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2561), 50, + ACTIONS(2265), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -321191,23 +318517,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [133496] = 4, + [130515] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2563), 3, + ACTIONS(2583), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2565), 50, + ACTIONS(2585), 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_DOT_DOT, anon_sym_PLUS, @@ -321250,27 +318576,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [133562] = 4, + [130581] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2567), 3, + ACTIONS(2413), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2569), 50, + ACTIONS(2415), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -321314,25 +318641,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [133628] = 4, + [130647] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2571), 3, + ACTIONS(2417), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2573), 50, + ACTIONS(2419), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -321376,25 +318703,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [133694] = 4, + [130713] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2575), 3, + ACTIONS(2421), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2577), 50, + ACTIONS(2423), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -321438,25 +318765,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [133760] = 4, + [130779] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2579), 3, + ACTIONS(2425), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2581), 50, + ACTIONS(2427), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -321500,25 +318827,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [133826] = 4, + [130845] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2583), 3, + ACTIONS(2429), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2585), 50, + ACTIONS(2431), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -321562,108 +318889,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [133892] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3276), 1, - anon_sym_PIPE, - ACTIONS(3288), 1, - anon_sym_when, - ACTIONS(3290), 1, - anon_sym_COLON_COLON, - ACTIONS(3292), 1, - anon_sym_EQ_GT, - ACTIONS(3294), 1, - anon_sym_EQ, - ACTIONS(3304), 1, - anon_sym_in, - ACTIONS(3306), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, - anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2751), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3278), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3286), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3296), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3298), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2753), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_end, - ACTIONS(3274), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3300), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3282), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3302), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [134000] = 4, + [130911] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2587), 3, + ACTIONS(2433), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2589), 50, + ACTIONS(2435), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -321707,21 +318951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [134066] = 4, + [130977] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2475), 5, + aux_sym_terminator_token1, + ACTIONS(2587), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2477), 49, - anon_sym_SEMI, + ACTIONS(2589), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -321768,82 +319010,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [134132] = 25, + [131043] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3276), 1, - anon_sym_PIPE, - ACTIONS(3288), 1, - anon_sym_when, - ACTIONS(3290), 1, - anon_sym_COLON_COLON, - ACTIONS(3292), 1, - anon_sym_EQ_GT, - ACTIONS(3294), 1, - anon_sym_EQ, - ACTIONS(3304), 1, - anon_sym_in, - ACTIONS(3306), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3308), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3310), 1, - anon_sym_STAR_STAR, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3314), 1, - sym_not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2755), 2, - sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3278), 2, + ACTIONS(2591), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2593), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3284), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3286), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3296), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3298), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2757), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_end, - ACTIONS(3274), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3300), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3282), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3302), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -321853,20 +319062,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [134240] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [131109] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2479), 5, + aux_sym_terminator_token1, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2481), 49, - anon_sym_SEMI, + ACTIONS(2597), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -321913,22 +319134,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [134306] = 4, + [131175] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2479), 5, + aux_sym_terminator_token1, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2481), 49, - anon_sym_SEMI, + ACTIONS(2597), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -321975,22 +319196,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [134372] = 4, + [131241] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2483), 5, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 2, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2485), 49, - anon_sym_SEMI, + ACTIONS(2597), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -322037,22 +319261,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_do, - [134438] = 4, + [131311] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2487), 5, + aux_sym_terminator_token1, + ACTIONS(2605), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2489), 49, - anon_sym_SEMI, + ACTIONS(2607), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -322099,22 +319322,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [134504] = 4, + [131377] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2653), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2491), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2493), 49, - anon_sym_SEMI, + ACTIONS(2655), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -322162,19 +319387,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [134570] = 4, + [131443] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2591), 3, + ACTIONS(2413), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2593), 50, + ACTIONS(2415), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -322225,18 +319449,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [134636] = 4, + [131509] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2595), 3, + ACTIONS(2417), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2597), 50, + ACTIONS(2419), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -322287,24 +319511,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [134702] = 4, + [131575] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2503), 5, + aux_sym_terminator_token1, + ACTIONS(2421), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2505), 49, - anon_sym_SEMI, + ACTIONS(2423), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -322349,23 +319572,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134768] = 4, + anon_sym_DOT_DOT_DOT_GT, + [131641] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2407), 3, + ACTIONS(2425), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2409), 50, - anon_sym_RPAREN, + ACTIONS(2427), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -322408,27 +319632,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [134834] = 4, + anon_sym_DOT_DOT_DOT_GT, + [131707] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2507), 5, + aux_sym_terminator_token1, + ACTIONS(2429), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2509), 49, - anon_sym_SEMI, + ACTIONS(2431), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -322473,18 +319696,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134900] = 4, + anon_sym_DOT_DOT_DOT_GT, + [131773] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2599), 3, + ACTIONS(2433), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2601), 50, + ACTIONS(2435), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -322535,20 +319759,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [134966] = 4, + [131839] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2515), 5, + aux_sym_terminator_token1, + ACTIONS(2609), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2517), 49, - anon_sym_SEMI, + ACTIONS(2611), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -322595,22 +319818,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135032] = 4, + [131905] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2519), 5, + aux_sym_terminator_token1, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2521), 49, - anon_sym_SEMI, + ACTIONS(2597), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -322657,25 +319880,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135098] = 4, + [131971] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2603), 3, + ACTIONS(2613), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2605), 50, + ACTIONS(2615), 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_DOT_DOT, anon_sym_PLUS, @@ -322718,26 +319942,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [135164] = 4, + [132037] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2607), 3, + ACTIONS(2617), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2609), 50, + ACTIONS(2619), 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_DOT_DOT, anon_sym_PLUS, @@ -322780,26 +320004,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [135230] = 4, + [132103] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2657), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2611), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2613), 50, + ACTIONS(2659), 51, + 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_DOT_DOT, anon_sym_PLUS, @@ -322843,26 +320069,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [135296] = 4, + [132169] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2747), 3, + ACTIONS(1845), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2749), 50, + ACTIONS(1847), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -322906,25 +320131,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [135362] = 4, + [132235] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2617), 3, + ACTIONS(1853), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2619), 50, + ACTIONS(1855), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -322968,8 +320193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [135428] = 4, + [132301] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -322981,11 +320205,11 @@ static const uint16_t ts_small_parse_table[] = { sym_not_in, anon_sym_LBRACK2, ACTIONS(2623), 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_DOT_DOT, anon_sym_PLUS, @@ -323028,27 +320252,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [135494] = 4, + [132367] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2625), 3, + ACTIONS(1849), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2627), 50, + ACTIONS(1851), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -323092,25 +320317,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [135560] = 4, + [132433] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2629), 3, + ACTIONS(1857), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2631), 50, + ACTIONS(1859), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -323154,25 +320379,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [135626] = 4, + [132499] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2633), 3, + ACTIONS(1861), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2635), 50, + ACTIONS(1863), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -323216,25 +320441,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [135692] = 4, + [132565] = 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, + ACTIONS(1865), 4, sym_newline_before_do, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2639), 50, + ACTIONS(1867), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -323278,25 +320503,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [135758] = 4, + [132631] = 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, + ACTIONS(1861), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2643), 50, + ACTIONS(1863), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -323340,25 +320565,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [135824] = 4, + [132697] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2645), 3, + ACTIONS(1865), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2647), 50, + ACTIONS(1867), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -323402,24 +320627,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [135890] = 4, + [132763] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2649), 3, + ACTIONS(163), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2651), 50, + ACTIONS(165), 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_DOT_DOT, anon_sym_PLUS, @@ -323464,24 +320689,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [135956] = 4, + [132829] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2653), 3, + ACTIONS(2481), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2655), 50, + ACTIONS(2483), 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_DOT_DOT, anon_sym_PLUS, @@ -323526,24 +320751,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [136022] = 4, + [132895] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2657), 3, + ACTIONS(2485), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2659), 50, + ACTIONS(2487), 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_DOT_DOT, anon_sym_PLUS, @@ -323588,24 +320813,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [136088] = 4, + [132961] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2661), 3, + ACTIONS(2489), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2663), 50, + ACTIONS(2491), 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_DOT_DOT, anon_sym_PLUS, @@ -323650,20 +320875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [136154] = 4, + [133027] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2523), 5, + ACTIONS(2493), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2525), 49, + ACTIONS(2495), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -323713,19 +320937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [136220] = 4, + [133093] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2527), 5, + ACTIONS(2259), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2529), 49, + ACTIONS(2261), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -323775,23 +320999,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [136286] = 4, + [133159] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2665), 3, + ACTIONS(2201), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2667), 50, + ACTIONS(2203), 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_DOT_DOT, anon_sym_PLUS, @@ -323836,20 +321061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [136352] = 4, + [133225] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2535), 5, + ACTIONS(2497), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2537), 49, + ACTIONS(2499), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -323899,23 +321123,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [136418] = 4, + [133291] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2669), 3, + ACTIONS(2501), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2671), 50, + ACTIONS(2503), 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_DOT_DOT, anon_sym_PLUS, @@ -323960,25 +321185,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [136484] = 4, + [133357] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 3, + ACTIONS(2161), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 51, + ACTIONS(2163), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -324021,21 +321245,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [136550] = 4, + anon_sym_do, + [133423] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(1845), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2275), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1847), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -324083,27 +321306,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [136616] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [133489] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2241), 3, + ACTIONS(1853), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2243), 50, - anon_sym_LPAREN, + ACTIONS(1855), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -324147,19 +321370,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [136682] = 4, + anon_sym_DOT_DOT_DOT_GT, + [133555] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(1849), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2377), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1851), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -324207,21 +321430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [136748] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [133621] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(1857), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2381), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1859), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -324269,21 +321492,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [136814] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [133687] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(1861), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2453), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1863), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -324331,26 +321554,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [136880] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [133753] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2597), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133819] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 3, + ACTIONS(2505), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2457), 51, + ACTIONS(2507), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -324393,23 +321679,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [136946] = 6, + anon_sym_do, + [133885] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2990), 1, - anon_sym_LPAREN, - STATE(2636), 1, - sym_call_arguments_with_parentheses, - ACTIONS(2145), 2, + ACTIONS(3561), 1, + anon_sym_COMMA, + STATE(3304), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2707), 3, + sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, + ACTIONS(2709), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [133955] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2147), 49, + ACTIONS(2625), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2627), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -324459,167 +321806,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [137016] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9), 1, - aux_sym_terminator_token1, - ACTIONS(11), 1, - anon_sym_SEMI, - ACTIONS(1575), 1, - ts_builtin_sym_end, - ACTIONS(3579), 1, - anon_sym_PIPE, - ACTIONS(3589), 1, - anon_sym_when, - ACTIONS(3591), 1, - anon_sym_COLON_COLON, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - ACTIONS(3595), 1, - anon_sym_EQ, - ACTIONS(3605), 1, - anon_sym_in, - ACTIONS(3607), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, - anon_sym_STAR_STAR, - ACTIONS(3613), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3617), 1, - sym_not_in, - STATE(508), 1, - sym_terminator, - STATE(1390), 1, - aux_sym_terminator_repeat1, - STATE(5564), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3581), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3585), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3587), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3597), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3599), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3577), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3601), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3583), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3603), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [137132] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2673), 5, - sym_newline_before_do, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2675), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [137198] = 4, + [134021] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2706), 3, + ACTIONS(2629), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2708), 50, + ACTIONS(2631), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -324670,21 +321869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [137264] = 4, + [134087] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2459), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2461), 51, + ACTIONS(2629), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2631), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -324731,28 +321928,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [137330] = 6, + anon_sym_do, + [134153] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COMMA, - STATE(3537), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2730), 3, + ACTIONS(2633), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2732), 48, + ACTIONS(2635), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -324794,26 +321990,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [137400] = 4, + [134219] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 3, + ACTIONS(2413), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1827), 51, + ACTIONS(2415), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -324856,26 +322053,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [137466] = 4, + anon_sym_do, + [134285] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 3, + ACTIONS(2417), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1835), 51, + ACTIONS(2419), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -324918,23 +322115,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [137532] = 4, + anon_sym_do, + [134351] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2475), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2517), 5, + sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2477), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2519), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -324982,19 +322178,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [137598] = 4, + anon_sym_do, + [134417] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2722), 5, + ACTIONS(2521), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2724), 49, + ACTIONS(2523), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -325044,22 +322241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [137664] = 6, + [134483] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3097), 1, - anon_sym_LPAREN, - STATE(2904), 1, - sym_call_arguments_with_parentheses, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2145), 4, + ACTIONS(2525), 5, + sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2147), 48, + ACTIONS(2527), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -325108,21 +322302,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [137734] = 4, + anon_sym_do, + [134549] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2523), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2529), 5, + sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2525), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2531), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -325170,84 +322364,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [137800] = 29, + anon_sym_do, + [134615] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(9), 1, - aux_sym_terminator_token1, - ACTIONS(11), 1, - anon_sym_SEMI, - ACTIONS(1725), 1, - ts_builtin_sym_end, - ACTIONS(3579), 1, + ACTIONS(3320), 1, anon_sym_PIPE, - ACTIONS(3589), 1, + ACTIONS(3332), 1, anon_sym_when, - ACTIONS(3591), 1, + ACTIONS(3334), 1, anon_sym_COLON_COLON, - ACTIONS(3593), 1, + ACTIONS(3336), 1, anon_sym_EQ_GT, - ACTIONS(3595), 1, + ACTIONS(3338), 1, anon_sym_EQ, - ACTIONS(3605), 1, + ACTIONS(3348), 1, anon_sym_in, - ACTIONS(3607), 1, + ACTIONS(3350), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, + ACTIONS(3352), 1, anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, + ACTIONS(3354), 1, anon_sym_STAR_STAR, - ACTIONS(3613), 1, + ACTIONS(3356), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3358), 1, anon_sym_LBRACK2, - ACTIONS(3617), 1, + ACTIONS(3360), 1, sym_not_in, - STATE(414), 1, - sym_terminator, - STATE(1390), 1, - aux_sym_terminator_repeat1, - STATE(5636), 1, - aux_sym_source_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3581), 2, + ACTIONS(3322), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3585), 2, + ACTIONS(3328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3587), 2, + ACTIONS(3330), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3597), 3, + ACTIONS(2767), 3, + sym_newline_before_do, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(2769), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3340), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3599), 3, + ACTIONS(3342), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3577), 4, + ACTIONS(3318), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3601), 5, + ACTIONS(3344), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3583), 6, + ACTIONS(3326), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3603), 9, + ACTIONS(3346), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -325257,26 +322448,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [137916] = 5, + [134723] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2183), 3, + ACTIONS(2529), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 49, + ACTIONS(2531), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -325320,26 +322510,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [137984] = 5, + [134789] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2189), 3, + ACTIONS(2529), 4, sym_newline_before_do, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2191), 49, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(2531), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -325381,23 +322573,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [138052] = 4, + [134859] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2527), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2529), 5, + sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2529), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2531), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -325445,19 +322635,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [138118] = 4, + anon_sym_do, + [134925] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2293), 5, + ACTIONS(2533), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2295), 49, + ACTIONS(2535), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -325507,24 +322698,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [138184] = 4, + [134991] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 3, + ACTIONS(2537), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1839), 51, + ACTIONS(2539), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -325567,26 +322758,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [138250] = 4, + anon_sym_do, + [135057] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2637), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(1843), 51, - anon_sym_SEMI, + 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_DOT_DOT, anon_sym_PLUS, @@ -325631,18 +322821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [138316] = 4, + anon_sym_do, + [135123] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2293), 3, + ACTIONS(2641), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2295), 50, + ACTIONS(2643), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -325693,84 +322884,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [138382] = 29, + [135189] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(1519), 1, - anon_sym_RPAREN, - ACTIONS(2864), 1, + ACTIONS(1563), 1, + anon_sym_end, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3621), 1, + ACTIONS(3563), 1, aux_sym_terminator_token1, - ACTIONS(3624), 1, + ACTIONS(3566), 1, anon_sym_SEMI, - ACTIONS(3629), 1, + ACTIONS(3571), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + ACTIONS(3581), 1, anon_sym_when, - ACTIONS(3641), 1, + ACTIONS(3583), 1, anon_sym_COLON_COLON, - ACTIONS(3643), 1, + ACTIONS(3585), 1, anon_sym_EQ_GT, - ACTIONS(3645), 1, + ACTIONS(3587), 1, anon_sym_EQ, - ACTIONS(3655), 1, + ACTIONS(3597), 1, anon_sym_in, - ACTIONS(3657), 1, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3665), 1, + ACTIONS(3607), 1, sym_not_in, - STATE(411), 1, + STATE(409), 1, sym_terminator, - STATE(1394), 1, + STATE(1378), 1, aux_sym_terminator_repeat1, - STATE(6298), 1, + STATE(6282), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3631), 2, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3635), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3637), 2, + ACTIONS(3579), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3647), 3, + ACTIONS(3589), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3649), 3, + ACTIONS(3591), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3627), 4, + ACTIONS(3569), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3651), 5, + ACTIONS(3593), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3633), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3653), 9, + ACTIONS(3595), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -325780,17 +322971,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [138498] = 4, + [135305] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2673), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2549), 5, + sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2551), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [135371] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2617), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2675), 51, + ACTIONS(2619), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -325842,19 +323095,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [138564] = 4, + [135437] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2183), 3, + ACTIONS(2221), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 50, - anon_sym_RPAREN, + ACTIONS(2223), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -325901,21 +323155,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [138630] = 4, + [135503] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2189), 3, + ACTIONS(2645), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2191), 50, + ACTIONS(2647), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -325966,80 +323219,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [138696] = 25, + [135569] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(2751), 1, - sym_newline_before_do, - ACTIONS(3162), 1, + ACTIONS(1567), 1, + anon_sym_end, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3571), 1, anon_sym_PIPE, - ACTIONS(3174), 1, + ACTIONS(3581), 1, anon_sym_when, - ACTIONS(3176), 1, + ACTIONS(3583), 1, anon_sym_COLON_COLON, - ACTIONS(3178), 1, + ACTIONS(3585), 1, anon_sym_EQ_GT, - ACTIONS(3180), 1, + ACTIONS(3587), 1, anon_sym_EQ, - ACTIONS(3190), 1, + ACTIONS(3597), 1, anon_sym_in, - ACTIONS(3192), 1, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(3198), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(3202), 1, + ACTIONS(3607), 1, sym_not_in, - ACTIONS(3164), 2, + ACTIONS(3609), 1, + aux_sym_terminator_token1, + ACTIONS(3612), 1, + anon_sym_SEMI, + STATE(412), 1, + sym_terminator, + STATE(1378), 1, + aux_sym_terminator_repeat1, + STATE(6304), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3170), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3172), 2, + ACTIONS(3579), 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(3182), 3, + ACTIONS(3589), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3184), 3, + ACTIONS(3591), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2753), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3160), 4, + ACTIONS(3569), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3186), 5, + ACTIONS(3593), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3168), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3188), 9, + ACTIONS(3595), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -326049,46 +323306,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [138804] = 12, + [135685] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3254), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, - anon_sym_STAR_STAR, - ACTIONS(3260), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3226), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3232), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2559), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3230), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 36, + anon_sym_LBRACK2, + ACTIONS(2561), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -326118,20 +323357,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [138886] = 4, + [135751] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2710), 5, + ACTIONS(2559), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2712), 49, + ACTIONS(2561), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -326181,159 +323430,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [138952] = 22, + [135817] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3318), 1, - anon_sym_PIPE, - ACTIONS(3334), 1, - anon_sym_EQ_GT, - ACTIONS(3336), 1, - anon_sym_EQ, - ACTIONS(3346), 1, - anon_sym_in, - ACTIONS(3348), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, - anon_sym_STAR_STAR, - ACTIONS(3354), 1, - anon_sym_DOT, ACTIONS(3356), 1, - anon_sym_LBRACK2, + anon_sym_DOT, ACTIONS(3358), 1, - sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2559), 4, sym_newline_before_do, + sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3338), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3340), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3316), 4, + ACTIONS(2561), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3342), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 7, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(3344), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [139054] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3318), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_when, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, - ACTIONS(3334), 1, anon_sym_EQ_GT, - ACTIONS(3336), 1, anon_sym_EQ, - ACTIONS(3346), 1, - anon_sym_in, - ACTIONS(3348), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, - anon_sym_STAR_STAR, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3358), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3320), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3338), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3340), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3316), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(3342), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3344), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -326343,160 +323483,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [139160] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3318), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_when, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, - ACTIONS(3334), 1, - anon_sym_EQ_GT, - ACTIONS(3336), 1, - anon_sym_EQ, - ACTIONS(3346), 1, anon_sym_in, - ACTIONS(3348), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, - anon_sym_STAR_STAR, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3358), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3320), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3338), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3340), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3316), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(3342), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3344), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [139266] = 23, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [135887] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3318), 1, - anon_sym_PIPE, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, - ACTIONS(3334), 1, - anon_sym_EQ_GT, - ACTIONS(3336), 1, - anon_sym_EQ, - ACTIONS(3346), 1, - anon_sym_in, - ACTIONS(3348), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, - anon_sym_STAR_STAR, - ACTIONS(3354), 1, - anon_sym_DOT, - ACTIONS(3356), 1, - anon_sym_LBRACK2, - ACTIONS(3358), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3320), 2, + ACTIONS(2559), 5, + sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2561), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3326), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, - sym_newline_before_do, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3338), 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(3340), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3316), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3342), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - ACTIONS(3324), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3344), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -326506,59 +323544,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [139370] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3252), 1, anon_sym_in, - ACTIONS(3254), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3260), 1, anon_sym_DOT, - ACTIONS(3262), 1, - sym_not_in, + anon_sym_do, + [135953] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2563), 5, sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3226), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3232), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3230), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3250), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 26, + anon_sym_LBRACK2, + ACTIONS(2565), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -326578,25 +323597,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [139458] = 4, + [136019] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3561), 1, + anon_sym_COMMA, + STATE(3342), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2714), 3, + ACTIONS(2685), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2716), 50, - anon_sym_RPAREN, + ACTIONS(2687), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -326638,23 +323679,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [139524] = 5, + anon_sym_DOT_DOT_DOT_GT, + [136089] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2933), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2257), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2649), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2259), 50, - anon_sym_SEMI, + ACTIONS(2651), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -326704,21 +323743,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [139592] = 5, + anon_sym_do, + [136155] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2935), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(2621), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2263), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2265), 50, - anon_sym_SEMI, + ACTIONS(2623), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -326765,27 +323805,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [139660] = 7, + [136221] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3258), 1, - anon_sym_STAR_STAR, - ACTIONS(3260), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, + ACTIONS(2421), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 48, + anon_sym_LBRACK2, + ACTIONS(2423), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -326831,43 +323865,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [139732] = 10, + [136287] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3258), 1, - anon_sym_STAR_STAR, - ACTIONS(3260), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3226), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3232), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2425), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3230), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 38, + anon_sym_LBRACK2, + ACTIONS(2427), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -326899,32 +323921,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [139810] = 8, + [136353] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3258), 1, - anon_sym_STAR_STAR, - ACTIONS(3260), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3226), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2407), 3, + ACTIONS(2571), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 46, + anon_sym_LBRACK2, + ACTIONS(2573), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -326965,20 +323988,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [139884] = 4, + [136419] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2718), 3, + ACTIONS(2575), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2720), 50, - anon_sym_RPAREN, + ACTIONS(2577), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -327025,79 +324052,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [139950] = 21, + [136485] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3240), 1, - anon_sym_EQ_GT, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3252), 1, - anon_sym_in, - ACTIONS(3254), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, - anon_sym_STAR_STAR, - ACTIONS(3260), 1, - anon_sym_DOT, - ACTIONS(3262), 1, - sym_not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3226), 2, + ACTIONS(2653), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2655), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3232), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3244), 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(3246), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3222), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3248), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3230), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3250), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -327107,64 +324103,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [140050] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3252), 1, anon_sym_in, - ACTIONS(3254), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3260), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(3262), 1, - sym_not_in, + anon_sym_do, + [136551] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2579), 5, sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3226), 2, + anon_sym_LBRACK2, + ACTIONS(2581), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3232), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3244), 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(3246), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3222), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3248), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3230), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3250), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -327174,69 +324166,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [140148] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3252), 1, anon_sym_in, - ACTIONS(3254), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3260), 1, anon_sym_DOT, - ACTIONS(3262), 1, - sym_not_in, + anon_sym_do, + [136617] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2583), 5, sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3226), 2, + anon_sym_LBRACK2, + ACTIONS(2585), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3232), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3246), 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(3222), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3248), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3230), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3250), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -327246,34 +324228,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [140242] = 4, + [136683] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2349), 5, + ACTIONS(2587), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1857), 49, + ACTIONS(2589), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -327323,19 +324302,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [140308] = 4, + [136749] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 5, + ACTIONS(2591), 5, sym_newline_before_do, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 49, + ACTIONS(2593), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -327385,66 +324364,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [140374] = 17, + [136815] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3252), 1, - anon_sym_in, - ACTIONS(3254), 1, + ACTIONS(3350), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, + ACTIONS(3352), 1, anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, + ACTIONS(3354), 1, anon_sym_STAR_STAR, - ACTIONS(3260), 1, + ACTIONS(3356), 1, anon_sym_DOT, - ACTIONS(3262), 1, - sym_not_in, + ACTIONS(3358), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3226), 2, + ACTIONS(3322), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3232), 2, + ACTIONS(3328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3222), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3248), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3230), 6, + ACTIONS(2595), 4, + sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3326), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3250), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 17, + ACTIONS(2597), 35, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -327459,49 +324416,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_do, - [140466] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3252), 1, - anon_sym_in, - ACTIONS(3254), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, - anon_sym_STAR_STAR, - ACTIONS(3260), 1, - anon_sym_DOT, - ACTIONS(3262), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3226), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3232), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3222), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_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(3230), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3250), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -327511,68 +324432,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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_in, anon_sym_do, - [140556] = 14, + [136897] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3252), 1, + ACTIONS(3348), 1, anon_sym_in, - ACTIONS(3254), 1, + ACTIONS(3350), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, + ACTIONS(3352), 1, anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, + ACTIONS(3354), 1, anon_sym_STAR_STAR, - ACTIONS(3260), 1, + ACTIONS(3356), 1, anon_sym_DOT, - ACTIONS(3262), 1, + ACTIONS(3358), 1, + anon_sym_LBRACK2, + ACTIONS(3360), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3226), 2, + ACTIONS(3322), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3232), 2, + ACTIONS(3328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3230), 6, + ACTIONS(2595), 3, + sym_newline_before_do, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3326), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 35, + ACTIONS(3346), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 25, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -327596,54 +324506,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, anon_sym_do, - [140642] = 11, + [136985] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3256), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, - anon_sym_STAR_STAR, - ACTIONS(3260), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3226), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3232), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2595), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3230), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 37, + anon_sym_LBRACK2, + ACTIONS(2597), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -327674,25 +324559,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [140722] = 4, + [137051] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(3354), 1, + anon_sym_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2367), 3, + ACTIONS(2595), 4, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2369), 51, + ACTIONS(2597), 47, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -327734,43 +324633,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [140788] = 11, + anon_sym_do, + [137123] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3256), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, + ACTIONS(3354), 1, anon_sym_STAR_STAR, - ACTIONS(3260), 1, + ACTIONS(3356), 1, anon_sym_DOT, + ACTIONS(3358), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3226), 2, + ACTIONS(3322), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3232), 2, + ACTIONS(3328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2595), 4, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3230), 6, + ACTIONS(3326), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 37, + ACTIONS(2597), 37, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -327805,25 +324700,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_do, - [140868] = 4, + [137201] = 8, ACTIONS(5), 1, sym_comment, + ACTIONS(3354), 1, + anon_sym_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 3, + ACTIONS(3322), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2595), 4, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1847), 51, + ACTIONS(2597), 45, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -327864,28 +324767,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [140934] = 4, + anon_sym_do, + [137275] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 3, + ACTIONS(2595), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1851), 51, + ACTIONS(2597), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -327928,49 +324828,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [141000] = 4, + anon_sym_do, + [137341] = 21, ACTIONS(5), 1, sym_comment, + ACTIONS(3336), 1, + anon_sym_EQ_GT, + ACTIONS(3338), 1, + anon_sym_EQ, + ACTIONS(3348), 1, + anon_sym_in, + ACTIONS(3350), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3352), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3354), 1, + anon_sym_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, + anon_sym_LBRACK2, + ACTIONS(3360), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2371), 3, - sym_not_in, + ACTIONS(3322), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_newline_before_do, + ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2373), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3340), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3342), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3318), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3344), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 8, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_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_do, + ACTIONS(3346), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [137441] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3338), 1, anon_sym_EQ, + ACTIONS(3348), 1, + anon_sym_in, + ACTIONS(3350), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3352), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3354), 1, + anon_sym_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, + anon_sym_LBRACK2, + ACTIONS(3360), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3322), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_newline_before_do, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3340), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3342), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3318), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3344), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3346), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -327980,41 +324987,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [137539] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3348), 1, anon_sym_in, + ACTIONS(3350), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3352), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3354), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3356), 1, anon_sym_DOT, - [141066] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2503), 2, - sym_not_in, + ACTIONS(3358), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3360), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(3322), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_newline_before_do, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2505), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3342), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3318), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3344), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3346), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 13, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -328024,16 +325062,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + anon_sym_do, + [137633] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3348), 1, + anon_sym_in, + ACTIONS(3350), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3352), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3354), 1, + anon_sym_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, + anon_sym_LBRACK2, + ACTIONS(3360), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3322), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_newline_before_do, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3318), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3344), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3346), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -328043,40 +325121,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [137725] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3348), 1, anon_sym_in, + ACTIONS(3350), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3352), 1, anon_sym_SLASH_SLASH, + ACTIONS(3354), 1, + anon_sym_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, + anon_sym_LBRACK2, + ACTIONS(3360), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3322), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_newline_before_do, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3318), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [141132] = 4, + ACTIONS(3346), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [137815] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(2535), 2, - sym_not_in, + ACTIONS(3348), 1, + anon_sym_in, + ACTIONS(3350), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3352), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3354), 1, + anon_sym_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3360), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(3322), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_newline_before_do, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2537), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 34, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -328105,38 +325283,45 @@ 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_do, + [137901] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3352), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3354), 1, anon_sym_STAR_STAR, + ACTIONS(3356), 1, anon_sym_DOT, - [141198] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3358), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2145), 3, + ACTIONS(3322), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 4, sym_newline_before_do, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2147), 50, - anon_sym_RPAREN, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 36, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -328167,104 +325352,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_do, - [141264] = 6, + [137981] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_COMMA, - STATE(3493), 1, - aux_sym_keywords_repeat1, - ACTIONS(2730), 2, - sym_not_in, + ACTIONS(3352), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3354), 1, + anon_sym_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2732), 49, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3322), 2, anon_sym_SLASH, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3328), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(2595), 4, + sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [141334] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2710), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2712), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2597), 36, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -328295,30 +325421,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [141400] = 4, + anon_sym_do, + [138061] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2507), 2, - sym_not_in, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 4, + sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2509), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2597), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -328365,20 +325485,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [141466] = 4, + anon_sym_do, + [138131] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2743), 3, + ACTIONS(2605), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2745), 50, - anon_sym_RPAREN, + ACTIONS(2607), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -328425,21 +325546,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [141532] = 4, + [138197] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2673), 3, + ACTIONS(2657), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2675), 50, + ACTIONS(2659), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -328490,26 +325610,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [141598] = 5, + [138263] = 4, ACTIONS(5), 1, sym_comment, - STATE(3934), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2209), 3, + ACTIONS(2513), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2211), 49, + ACTIONS(2515), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -328553,109 +325672,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [141666] = 4, + [138329] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2415), 3, - sym_not_in, - aux_sym_terminator_token1, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(2417), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3276), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3288), 1, anon_sym_when, + ACTIONS(3290), 1, anon_sym_COLON_COLON, + ACTIONS(3292), 1, anon_sym_EQ_GT, + ACTIONS(3294), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3304), 1, anon_sym_in, + ACTIONS(3306), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3308), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3310), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3312), 1, anon_sym_DOT, - [141732] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(3314), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2419), 3, - sym_not_in, + ACTIONS(2694), 2, + sym_newline_before_do, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2421), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3278), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3284), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3286), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3296), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3298), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2696), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(3274), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3300), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3282), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3302), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -328665,36 +325755,24 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [141798] = 4, + [138437] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2435), 3, + ACTIONS(2609), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2437), 51, + ACTIONS(2611), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -328737,26 +325815,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [141864] = 4, + anon_sym_do, + [138503] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2443), 3, + ACTIONS(2595), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2445), 51, + ACTIONS(2597), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -328799,22 +325877,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [141930] = 5, + anon_sym_do, + [138569] = 4, ACTIONS(5), 1, sym_comment, - STATE(3938), 1, - sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2193), 3, + ACTIONS(2179), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2195), 49, + ACTIONS(2181), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -328864,24 +325941,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [141998] = 4, + [138635] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2447), 3, + ACTIONS(2613), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2449), 51, + ACTIONS(2615), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -328924,26 +326001,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [142064] = 4, + anon_sym_do, + [138701] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2463), 3, + ACTIONS(2617), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2465), 51, + ACTIONS(2619), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -328986,26 +326063,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [142130] = 4, + anon_sym_do, + [138767] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2467), 3, + ACTIONS(2621), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2469), 51, + ACTIONS(2623), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -329048,27 +326125,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [142196] = 4, + anon_sym_do, + [138833] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3615), 1, + anon_sym_COMMA, + STATE(3342), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2471), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2601), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2473), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2603), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -329110,26 +326188,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [142262] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [138903] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2495), 3, + ACTIONS(2429), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2497), 51, + ACTIONS(2431), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -329172,26 +326251,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [142328] = 4, + anon_sym_do, + [138969] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2499), 3, + ACTIONS(2433), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2501), 51, + ACTIONS(2435), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -329234,50 +326313,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [142394] = 4, + anon_sym_do, + [139035] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2479), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2481), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2694), 1, + sym_newline_before_do, + ACTIONS(3164), 1, anon_sym_PIPE, + ACTIONS(3176), 1, + anon_sym_when, + ACTIONS(3178), 1, + anon_sym_COLON_COLON, + ACTIONS(3180), 1, + anon_sym_EQ_GT, + ACTIONS(3182), 1, + anon_sym_EQ, + ACTIONS(3192), 1, + anon_sym_in, + ACTIONS(3194), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, + anon_sym_LBRACK2, + ACTIONS(3204), 1, + sym_not_in, + ACTIONS(3166), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3172), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3174), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3184), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3186), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2696), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3162), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3188), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3190), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -329287,36 +326398,26 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [142460] = 4, + [139143] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3618), 1, + anon_sym_COMMA, + STATE(3346), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2511), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2694), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2513), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2696), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -329358,111 +326459,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [142526] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [139213] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2531), 3, - sym_not_in, - aux_sym_terminator_token1, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(2533), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3276), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3288), 1, anon_sym_when, + ACTIONS(3290), 1, anon_sym_COLON_COLON, + ACTIONS(3292), 1, anon_sym_EQ_GT, + ACTIONS(3294), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3304), 1, anon_sym_in, + ACTIONS(3306), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3308), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3310), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3312), 1, anon_sym_DOT, - [142592] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(3314), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2539), 3, - sym_not_in, + ACTIONS(2763), 2, + sym_newline_before_do, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2541), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3278), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3284), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3286), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3296), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3298), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2765), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(3274), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3300), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3282), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3302), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -329472,36 +326545,24 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [142658] = 4, + [139321] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2543), 3, + ACTIONS(2625), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2545), 51, + ACTIONS(2627), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -329544,82 +326605,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [142724] = 25, + anon_sym_do, + [139387] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(3224), 1, + ACTIONS(3276), 1, anon_sym_PIPE, - ACTIONS(3236), 1, + ACTIONS(3288), 1, anon_sym_when, - ACTIONS(3238), 1, + ACTIONS(3290), 1, anon_sym_COLON_COLON, - ACTIONS(3240), 1, + ACTIONS(3292), 1, anon_sym_EQ_GT, - ACTIONS(3242), 1, + ACTIONS(3294), 1, anon_sym_EQ, - ACTIONS(3252), 1, + ACTIONS(3304), 1, anon_sym_in, - ACTIONS(3254), 1, + ACTIONS(3306), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, + ACTIONS(3308), 1, anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, + ACTIONS(3310), 1, anon_sym_STAR_STAR, - ACTIONS(3260), 1, + ACTIONS(3312), 1, anon_sym_DOT, - ACTIONS(3262), 1, + ACTIONS(3314), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2687), 2, + ACTIONS(2767), 2, sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(3226), 2, + ACTIONS(3278), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3232), 2, + ACTIONS(3284), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3234), 2, + ACTIONS(3286), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3244), 3, + ACTIONS(3296), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3246), 3, + ACTIONS(3298), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2689), 4, + ACTIONS(2769), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_do, - ACTIONS(3222), 4, + anon_sym_end, + ACTIONS(3274), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3248), 5, + ACTIONS(3300), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3230), 6, + ACTIONS(3282), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3250), 9, + ACTIONS(3302), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -329629,26 +326690,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [142832] = 5, + [139495] = 4, ACTIONS(5), 1, sym_comment, - STATE(3961), 1, - sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2217), 3, + ACTIONS(2667), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2219), 49, + ACTIONS(2669), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -329690,26 +326749,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [142900] = 4, + [139561] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2547), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2671), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2549), 51, - anon_sym_SEMI, + ACTIONS(2673), 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_DOT_DOT, anon_sym_PLUS, @@ -329754,24 +326813,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [142966] = 4, + anon_sym_do, + [139627] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2629), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2551), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2631), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [139693] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2675), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2553), 51, - anon_sym_SEMI, + ACTIONS(2677), 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_DOT_DOT, anon_sym_PLUS, @@ -329816,24 +326937,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [143032] = 4, + anon_sym_do, + [139759] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2555), 3, + ACTIONS(2629), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2557), 51, + ACTIONS(2631), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -329876,26 +326998,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [143098] = 4, + anon_sym_do, + [139825] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2559), 3, + ACTIONS(2629), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2561), 51, + ACTIONS(2631), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -329938,26 +327060,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [143164] = 4, + anon_sym_do, + [139891] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2563), 3, + ACTIONS(2633), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2565), 51, + ACTIONS(2635), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330000,26 +327122,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [143230] = 4, + anon_sym_do, + [139957] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2567), 3, + ACTIONS(2637), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2569), 51, + ACTIONS(2639), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330062,26 +327184,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [143296] = 4, + anon_sym_do, + [140023] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2571), 3, + ACTIONS(2641), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2573), 51, + ACTIONS(2643), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330124,26 +327246,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [143362] = 4, + anon_sym_do, + [140089] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2575), 3, + ACTIONS(2645), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2577), 51, + ACTIONS(2647), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330186,21 +327308,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [143428] = 4, + anon_sym_do, + [140155] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1825), 4, + ACTIONS(2233), 3, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1827), 49, + ACTIONS(2235), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -330250,24 +327372,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [143494] = 4, + [140221] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2579), 3, + ACTIONS(2649), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2581), 51, + ACTIONS(2651), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330310,26 +327432,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [143560] = 4, + anon_sym_do, + [140287] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2583), 3, + ACTIONS(2653), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2585), 51, + ACTIONS(2655), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [140353] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2657), 5, + sym_newline_before_do, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2659), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330372,26 +327556,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [143626] = 4, + anon_sym_do, + [140419] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2629), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2587), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2589), 51, - anon_sym_SEMI, + ACTIONS(2631), 51, 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_DOT_DOT, anon_sym_PLUS, @@ -330434,26 +327619,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [143692] = 4, + [140485] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2633), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2591), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2593), 51, - anon_sym_SEMI, + ACTIONS(2635), 51, 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_DOT_DOT, anon_sym_PLUS, @@ -330496,26 +327681,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [143758] = 4, + [140551] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2595), 3, + ACTIONS(2667), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2597), 51, + ACTIONS(2669), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330558,26 +327742,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [143824] = 4, + anon_sym_do, + [140617] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2599), 3, + ACTIONS(2671), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2601), 51, + ACTIONS(2673), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330620,26 +327804,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [143890] = 4, + anon_sym_do, + [140683] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2603), 3, + ACTIONS(2675), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2605), 51, + ACTIONS(2677), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330682,26 +327866,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [143956] = 4, + anon_sym_do, + [140749] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2607), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2413), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2609), 51, - anon_sym_SEMI, + ACTIONS(2415), 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_DOT_DOT, anon_sym_PLUS, @@ -330746,25 +327929,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [144022] = 4, + anon_sym_do, + [140815] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1833), 4, + ACTIONS(2417), 3, sym_newline_before_do, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1835), 49, + ACTIONS(2419), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -330806,84 +327989,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [144088] = 27, + [140881] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(2293), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3671), 1, + ACTIONS(9), 1, + aux_sym_terminator_token1, + ACTIONS(11), 1, + anon_sym_SEMI, + ACTIONS(1739), 1, + ts_builtin_sym_end, + ACTIONS(3460), 1, anon_sym_PIPE, - ACTIONS(3675), 1, - anon_sym_COMMA, - ACTIONS(3683), 1, + ACTIONS(3470), 1, anon_sym_when, - ACTIONS(3685), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - ACTIONS(3687), 1, + ACTIONS(3474), 1, anon_sym_EQ_GT, - ACTIONS(3689), 1, + ACTIONS(3476), 1, anon_sym_EQ, - ACTIONS(3699), 1, + ACTIONS(3486), 1, anon_sym_in, - ACTIONS(3701), 1, + ACTIONS(3488), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, + ACTIONS(3490), 1, anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, + ACTIONS(3492), 1, anon_sym_STAR_STAR, - ACTIONS(3707), 1, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LBRACK2, + ACTIONS(3498), 1, sym_not_in, - STATE(3427), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(2295), 2, - anon_sym_LBRACE, - anon_sym_do, - ACTIONS(3673), 2, + STATE(431), 1, + sym_terminator, + STATE(1375), 1, + aux_sym_terminator_repeat1, + STATE(5441), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3462), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3679), 2, + ACTIONS(3466), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3681), 2, + ACTIONS(3468), 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(3691), 3, + ACTIONS(3478), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3693), 3, + ACTIONS(3480), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3669), 4, + ACTIONS(3458), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3695), 5, + ACTIONS(3482), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3677), 6, + ACTIONS(3464), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3697), 9, + ACTIONS(3484), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -330893,27 +328079,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [144200] = 6, + [140997] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3709), 1, - anon_sym_COMMA, - STATE(3429), 1, - aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2677), 3, + ACTIONS(2259), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2679), 48, - anon_sym_LBRACE, + ACTIONS(2261), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -330957,25 +328142,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [144270] = 4, + [141065] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2611), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2201), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2613), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2203), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -331017,29 +328203,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [144336] = 6, + anon_sym_do, + [141133] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3711), 1, - anon_sym_COMMA, - STATE(3429), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2687), 3, + ACTIONS(2409), 5, sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2689), 48, - anon_sym_LBRACE, + ACTIONS(2411), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -331083,47 +328267,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [144406] = 4, + [141199] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2747), 3, - sym_not_in, - aux_sym_terminator_token1, + ACTIONS(1563), 1, + anon_sym_RPAREN, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(2749), 51, + ACTIONS(3621), 1, + aux_sym_terminator_token1, + ACTIONS(3624), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3629), 1, anon_sym_PIPE, + ACTIONS(3639), 1, + anon_sym_when, + ACTIONS(3641), 1, + anon_sym_COLON_COLON, + ACTIONS(3643), 1, + anon_sym_EQ_GT, + ACTIONS(3645), 1, + anon_sym_EQ, + ACTIONS(3655), 1, + anon_sym_in, + ACTIONS(3657), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3659), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3661), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3665), 1, + sym_not_in, + STATE(408), 1, + sym_terminator, + STATE(1377), 1, + aux_sym_terminator_repeat1, + STATE(6303), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3631), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3637), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3647), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3627), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3633), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3653), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -331133,36 +328354,25 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [144472] = 4, + [141315] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2541), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2617), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2619), 51, - anon_sym_SEMI, + ACTIONS(2543), 51, 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_DOT_DOT, anon_sym_PLUS, @@ -331205,49 +328415,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [144538] = 4, + [141381] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2621), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2623), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2763), 1, + sym_newline_before_do, + ACTIONS(3164), 1, anon_sym_PIPE, + ACTIONS(3176), 1, + anon_sym_when, + ACTIONS(3178), 1, + anon_sym_COLON_COLON, + ACTIONS(3180), 1, + anon_sym_EQ_GT, + ACTIONS(3182), 1, + anon_sym_EQ, + ACTIONS(3192), 1, + anon_sym_in, + ACTIONS(3194), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, + anon_sym_LBRACK2, + ACTIONS(3204), 1, + sym_not_in, + ACTIONS(3166), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3172), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3174), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3184), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3186), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2765), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3162), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3188), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3190), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -331257,36 +328499,24 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [144604] = 4, + [141489] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2625), 3, + ACTIONS(2555), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2627), 51, + ACTIONS(2557), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -331329,49 +328559,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [144670] = 4, + anon_sym_do, + [141555] = 22, ACTIONS(5), 1, sym_comment, + ACTIONS(3320), 1, + anon_sym_PIPE, + ACTIONS(3336), 1, + anon_sym_EQ_GT, + ACTIONS(3338), 1, + anon_sym_EQ, + ACTIONS(3348), 1, + anon_sym_in, + ACTIONS(3350), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3352), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3354), 1, + anon_sym_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, + anon_sym_LBRACK2, + ACTIONS(3360), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2629), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2631), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3322), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3328), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2595), 3, + sym_newline_before_do, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3340), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3342), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3318), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3344), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3346), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -331381,59 +328641,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [141657] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3320), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, + anon_sym_when, + ACTIONS(3334), 1, + anon_sym_COLON_COLON, + ACTIONS(3336), 1, + anon_sym_EQ_GT, + ACTIONS(3338), 1, + anon_sym_EQ, + ACTIONS(3348), 1, anon_sym_in, + ACTIONS(3350), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3352), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3354), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3356), 1, anon_sym_DOT, - [144736] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(3358), 1, + anon_sym_LBRACK2, + ACTIONS(3360), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2633), 3, - sym_not_in, + ACTIONS(3322), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_newline_before_do, + ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2635), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3340), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3342), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3318), 4, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2597), 5, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(3344), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3346), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [141763] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3320), 1, + anon_sym_PIPE, + ACTIONS(3332), 1, anon_sym_when, + ACTIONS(3334), 1, anon_sym_COLON_COLON, + ACTIONS(3336), 1, anon_sym_EQ_GT, + ACTIONS(3338), 1, anon_sym_EQ, + ACTIONS(3348), 1, + anon_sym_in, + ACTIONS(3350), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3352), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3354), 1, + anon_sym_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, + anon_sym_LBRACK2, + ACTIONS(3360), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3322), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_newline_before_do, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3340), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3342), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3318), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2597), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(3344), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3346), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -331443,36 +328805,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [141869] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3320), 1, + anon_sym_PIPE, + ACTIONS(3334), 1, + anon_sym_COLON_COLON, + ACTIONS(3336), 1, + anon_sym_EQ_GT, + ACTIONS(3338), 1, + anon_sym_EQ, + ACTIONS(3348), 1, anon_sym_in, + ACTIONS(3350), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3352), 1, anon_sym_SLASH_SLASH, + ACTIONS(3354), 1, + anon_sym_STAR_STAR, + ACTIONS(3356), 1, + anon_sym_DOT, + ACTIONS(3358), 1, + anon_sym_LBRACK2, + ACTIONS(3360), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3322), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_newline_before_do, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3340), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3342), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3318), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3344), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2597), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(3326), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [144802] = 4, + ACTIONS(3346), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [141973] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2878), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2637), 3, + ACTIONS(2701), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2639), 51, + ACTIONS(2703), 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_DOT_DOT, anon_sym_PLUS, @@ -331517,24 +328949,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [144868] = 4, + [142041] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2641), 3, + ACTIONS(2599), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2643), 51, + ACTIONS(1873), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -331577,26 +329009,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [144934] = 4, + anon_sym_do, + [142107] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2645), 3, + ACTIONS(2601), 5, + sym_newline_before_do, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2647), 51, + ACTIONS(2603), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -331639,88 +329071,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [145000] = 4, + anon_sym_do, + [142173] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + STATE(4024), 1, + sym_do_block, + ACTIONS(3), 3, 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [145066] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2653), 3, + ACTIONS(2229), 3, + sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2655), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2231), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -331763,88 +329133,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [145132] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [142241] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + STATE(4027), 1, + sym_do_block, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2657), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2659), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [145198] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2661), 3, + ACTIONS(2191), 3, + sym_newline_before_do, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2663), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2193), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -331887,88 +329196,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [145264] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [142309] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2665), 3, + ACTIONS(2637), 2, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2667), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [145330] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2669), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2671), 51, - anon_sym_SEMI, + 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, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332011,21 +329260,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [145396] = 4, + [142375] = 5, ACTIONS(5), 1, sym_comment, + STATE(4029), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2277), 3, + ACTIONS(2221), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2279), 50, - anon_sym_RPAREN, + ACTIONS(2223), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -332072,22 +329321,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145462] = 4, + anon_sym_DOT_DOT_DOT_GT, + [142443] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2281), 3, + ACTIONS(2253), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2283), 50, - anon_sym_RPAREN, + ACTIONS(2255), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -332134,20 +329383,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145528] = 4, + anon_sym_DOT_DOT_DOT_GT, + [142509] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(273), 2, + 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(275), 51, + ACTIONS(2643), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -332199,17 +329448,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [145594] = 4, + [142575] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2694), 2, + ACTIONS(2429), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2696), 51, + ACTIONS(2431), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -332261,25 +329510,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [145660] = 4, + [142641] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2698), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2711), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2700), 51, + anon_sym_LBRACK2, + ACTIONS(2713), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332322,26 +329570,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [145726] = 4, + [142707] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2702), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2715), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2704), 51, + anon_sym_LBRACK2, + ACTIONS(2717), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332384,26 +329632,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [145792] = 4, + [142773] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2706), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2719), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2708), 51, + anon_sym_LBRACK2, + ACTIONS(2721), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332446,26 +329694,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [145858] = 4, + [142839] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2183), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2723), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2185), 51, + anon_sym_LBRACK2, + ACTIONS(2725), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332508,26 +329756,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [145924] = 4, + [142905] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2189), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2727), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2191), 51, + anon_sym_LBRACK2, + ACTIONS(2729), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332570,26 +329818,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [145990] = 4, + [142971] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2714), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2731), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2716), 51, + anon_sym_LBRACK2, + ACTIONS(2733), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332632,22 +329880,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [146056] = 4, + [143037] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2718), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2720), 51, + ACTIONS(2421), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2423), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -332694,85 +329941,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [146122] = 29, + anon_sym_do, + [143103] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1527), 1, - anon_sym_RPAREN, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3629), 1, - anon_sym_PIPE, - ACTIONS(3639), 1, - anon_sym_when, - ACTIONS(3641), 1, - anon_sym_COLON_COLON, - ACTIONS(3643), 1, - anon_sym_EQ_GT, - ACTIONS(3645), 1, - anon_sym_EQ, - ACTIONS(3655), 1, - anon_sym_in, - ACTIONS(3657), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, - anon_sym_STAR_STAR, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3665), 1, - sym_not_in, - ACTIONS(3714), 1, - aux_sym_terminator_token1, - ACTIONS(3717), 1, - anon_sym_SEMI, - STATE(410), 1, - sym_terminator, - STATE(1394), 1, - aux_sym_terminator_repeat1, - STATE(6282), 1, - aux_sym_source_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3631), 2, + ACTIONS(2735), 3, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2737), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3635), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3637), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3647), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3627), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3633), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3653), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -332782,25 +329994,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [146238] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [143169] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2145), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2739), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2147), 51, + anon_sym_LBRACK2, + ACTIONS(2741), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332843,24 +330066,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [146304] = 4, + [143235] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2285), 3, - sym_newline_before_do, + ACTIONS(2743), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2287), 50, + ACTIONS(2745), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332905,49 +330130,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [146370] = 4, + [143301] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2743), 2, - sym_not_in, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3228), 1, + anon_sym_PIPE, + ACTIONS(3240), 1, + anon_sym_when, + ACTIONS(3242), 1, + anon_sym_COLON_COLON, + ACTIONS(3244), 1, + anon_sym_EQ_GT, + ACTIONS(3246), 1, + anon_sym_EQ, + ACTIONS(3256), 1, + anon_sym_in, + ACTIONS(3258), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3260), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3262), 1, + anon_sym_STAR_STAR, + ACTIONS(3264), 1, + anon_sym_DOT, + ACTIONS(3266), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2694), 2, + sym_newline_before_do, aux_sym_terminator_token1, - ACTIONS(2745), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3230), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3236), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3238), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3248), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3250), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2696), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3226), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3252), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3234), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3254), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -332957,34 +330213,24 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [146436] = 4, + [143409] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2289), 3, - sym_newline_before_do, + ACTIONS(2747), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 50, + ACTIONS(2749), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333029,81 +330275,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [146502] = 25, + [143475] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2755), 1, - sym_newline_before_do, - ACTIONS(3162), 1, - anon_sym_PIPE, - ACTIONS(3174), 1, - anon_sym_when, - ACTIONS(3176), 1, - anon_sym_COLON_COLON, - ACTIONS(3178), 1, - anon_sym_EQ_GT, - ACTIONS(3180), 1, - anon_sym_EQ, - ACTIONS(3190), 1, - anon_sym_in, - ACTIONS(3192), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3194), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3196), 1, - anon_sym_STAR_STAR, - ACTIONS(3198), 1, - anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(3202), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2751), 3, sym_not_in, - ACTIONS(3164), 2, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2753), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3170), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3172), 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(3182), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3184), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2757), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(3160), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3186), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3168), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3188), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -333113,24 +330325,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [146610] = 5, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [143541] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2183), 3, - sym_newline_before_do, + ACTIONS(2755), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 49, + ACTIONS(2757), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333173,27 +330397,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [146678] = 5, + [143607] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2189), 3, - sym_newline_before_do, + ACTIONS(2759), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2191), 49, + ACTIONS(2761), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333236,30 +330459,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [146746] = 6, + [143673] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3720), 1, - anon_sym_COMMA, - STATE(3485), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2730), 3, + ACTIONS(2567), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2732), 49, + ACTIONS(2569), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -333303,23 +330523,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [146816] = 4, + [143739] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2289), 3, - sym_newline_before_do, + ACTIONS(2277), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 50, + ACTIONS(2279), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333364,26 +330585,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [146882] = 4, + [143805] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2269), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2281), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2271), 51, + anon_sym_LBRACK2, + ACTIONS(2283), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333426,22 +330645,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [146948] = 4, + [143871] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2273), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2275), 51, + ACTIONS(2425), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2427), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -333488,26 +330706,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [147014] = 4, + anon_sym_do, + [143937] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2277), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2285), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2279), 51, + anon_sym_LBRACK2, + ACTIONS(2287), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333550,26 +330769,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [147080] = 4, + [144003] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2281), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2289), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2283), 51, + anon_sym_LBRACK2, + ACTIONS(2291), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333612,26 +330831,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [147146] = 4, + [144069] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2285), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2293), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2287), 51, + anon_sym_LBRACK2, + ACTIONS(2295), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333674,26 +330893,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [147212] = 4, + [144135] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2289), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2297), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2291), 51, + anon_sym_LBRACK2, + ACTIONS(2299), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333736,27 +330955,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [147278] = 6, + [144201] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3198), 1, - anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(2289), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2301), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2291), 49, + anon_sym_LBRACK2, + ACTIONS(2303), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333800,26 +331018,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_do, - [147348] = 4, + anon_sym_DOT, + [144267] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2289), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2305), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2291), 51, + anon_sym_LBRACK2, + ACTIONS(2307), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333862,27 +331079,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [147414] = 6, + [144333] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3312), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 3, - sym_newline_before_do, + ACTIONS(2309), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2291), 49, + anon_sym_LBRACK2, + ACTIONS(2311), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333925,51 +331141,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_do, - anon_sym_end, - [147484] = 6, + anon_sym_DASH_GT, + anon_sym_DOT, + [144399] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3312), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2359), 3, + ACTIONS(2409), 1, sym_newline_before_do, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(2361), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3669), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3673), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3681), 1, anon_sym_when, + ACTIONS(3683), 1, anon_sym_COLON_COLON, + ACTIONS(3685), 1, anon_sym_EQ_GT, + ACTIONS(3687), 1, anon_sym_EQ, + ACTIONS(3697), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(3705), 1, + sym_not_in, + STATE(3421), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(2411), 2, + anon_sym_LBRACE, + anon_sym_do, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3679), 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(3689), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3691), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3667), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3693), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3695), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -333979,38 +331228,24 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - anon_sym_end, - [147554] = 6, + [144511] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3312), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, - sym_newline_before_do, + ACTIONS(2313), 3, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 49, + anon_sym_LBRACK2, + ACTIONS(2315), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -334053,31 +331288,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_do, - anon_sym_end, - [147624] = 6, + anon_sym_DASH_GT, + anon_sym_DOT, + [144577] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2289), 1, - sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, + ACTIONS(3707), 1, + anon_sym_COMMA, + STATE(3426), 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(2291), 50, - anon_sym_RPAREN, + ACTIONS(2679), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2681), 48, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334119,25 +331352,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [147694] = 4, + anon_sym_DOT, + anon_sym_do, + [144647] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2289), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2317), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2291), 51, + anon_sym_LBRACK2, + ACTIONS(2319), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -334180,26 +331414,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [147760] = 4, + [144713] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2341), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2321), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2343), 51, + anon_sym_LBRACK2, + ACTIONS(2323), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -334242,27 +331476,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [147826] = 4, + [144779] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2345), 2, - sym_not_in, - anon_sym_LBRACK2, + ACTIONS(3709), 1, + anon_sym_COMMA, + STATE(3425), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2347), 51, - anon_sym_RPAREN, + ACTIONS(2685), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2687), 48, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334305,26 +331541,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [147892] = 4, + anon_sym_do, + [144849] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2355), 2, - sym_not_in, - anon_sym_LBRACK2, + ACTIONS(3711), 1, + anon_sym_COMMA, + STATE(3425), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2357), 51, - anon_sym_RPAREN, + ACTIONS(2601), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2603), 48, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334367,24 +331605,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [147958] = 4, + anon_sym_do, + [144919] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3714), 1, + anon_sym_COMMA, + STATE(3426), 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(2289), 3, + ACTIONS(2694), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2291), 50, - anon_sym_RPAREN, + ACTIONS(2696), 48, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334426,26 +331668,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [148024] = 4, + [144989] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2341), 3, - sym_newline_before_do, + ACTIONS(2325), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2343), 50, + ACTIONS(2327), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -334490,26 +331732,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [148090] = 4, + [145055] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2329), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2361), 51, + anon_sym_LBRACK2, + ACTIONS(2331), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -334552,28 +331792,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [148156] = 6, + [145121] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3720), 1, - anon_sym_COMMA, - STATE(3520), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2736), 3, + ACTIONS(2333), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2738), 49, + ACTIONS(2335), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334617,25 +331856,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [148226] = 4, + [145187] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2337), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2361), 51, + anon_sym_LBRACK2, + ACTIONS(2339), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -334678,29 +331916,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [148292] = 6, + [145253] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 1, - sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2341), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2361), 50, + anon_sym_LBRACK2, + ACTIONS(2343), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -334743,25 +331978,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [148362] = 4, + anon_sym_DASH_GT, + anon_sym_DOT, + [145319] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2345), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(2347), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [145385] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2349), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2361), 51, + anon_sym_LBRACK2, + ACTIONS(2351), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -334804,26 +332102,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [148428] = 4, + [145451] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2363), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2353), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(2355), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [145517] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2357), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2365), 51, + anon_sym_LBRACK2, + ACTIONS(2359), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -334866,24 +332226,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [148494] = 4, + [145583] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2345), 3, - sym_newline_before_do, + ACTIONS(2361), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2347), 50, + ACTIONS(2363), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -334928,88 +332290,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [148560] = 4, + [145649] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2225), 3, - sym_newline_before_do, + ACTIONS(2365), 3, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2227), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [148626] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2375), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2377), 51, + anon_sym_LBRACK2, + ACTIONS(2367), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335052,29 +332350,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [148692] = 6, + [145715] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3667), 1, - anon_sym_COMMA, - STATE(3023), 1, - aux_sym_keywords_repeat1, - ACTIONS(2736), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2273), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2738), 49, + anon_sym_LBRACK2, + ACTIONS(2275), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -335116,107 +332412,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [148762] = 25, + [145781] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_LBRACK2, - ACTIONS(3224), 1, - anon_sym_PIPE, - ACTIONS(3236), 1, - anon_sym_when, - ACTIONS(3238), 1, - anon_sym_COLON_COLON, - ACTIONS(3240), 1, - anon_sym_EQ_GT, - ACTIONS(3242), 1, - anon_sym_EQ, - ACTIONS(3252), 1, - anon_sym_in, - ACTIONS(3254), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3256), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3258), 1, - anon_sym_STAR_STAR, - ACTIONS(3260), 1, - anon_sym_DOT, - ACTIONS(3262), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2751), 2, - sym_newline_before_do, - aux_sym_terminator_token1, - ACTIONS(3226), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3232), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3234), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3244), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3246), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2753), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(3222), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3248), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3230), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3250), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [148870] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2355), 3, - sym_newline_before_do, + ACTIONS(2369), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2357), 50, + ACTIONS(2371), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335261,26 +332476,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [148936] = 4, + [145847] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2379), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2373), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2381), 51, + anon_sym_LBRACK2, + ACTIONS(2375), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335323,27 +332536,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [149002] = 5, + [145913] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3726), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2257), 3, - sym_newline_before_do, + ACTIONS(2377), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2259), 49, + ACTIONS(2379), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -335385,28 +332598,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [149070] = 5, + [145979] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3728), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2263), 3, - sym_newline_before_do, + ACTIONS(2381), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2265), 49, + ACTIONS(2383), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -335448,25 +332660,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [149138] = 4, + [146045] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2217), 3, - sym_newline_before_do, + ACTIONS(2385), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2219), 50, + ACTIONS(2387), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335511,26 +332724,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [149204] = 4, + [146111] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2515), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2389), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2517), 51, + anon_sym_LBRACK2, + ACTIONS(2391), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335573,24 +332784,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [149270] = 4, + [146177] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2359), 3, - sym_newline_before_do, + ACTIONS(2393), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 50, + ACTIONS(2395), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335635,26 +332848,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [149336] = 4, + [146243] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2383), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2397), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2385), 51, + anon_sym_LBRACK2, + ACTIONS(2399), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335697,24 +332908,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [149402] = 4, + [146309] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2359), 3, - sym_newline_before_do, + ACTIONS(2401), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2361), 50, + ACTIONS(2403), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335759,27 +332972,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [149468] = 6, + [146375] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3198), 1, - anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(2359), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2405), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2361), 49, + anon_sym_LBRACK2, + ACTIONS(2407), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335823,20 +333033,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_do, - [149538] = 4, + anon_sym_DOT, + [146441] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(163), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2359), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2361), 50, + ACTIONS(165), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -335883,22 +333095,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [149604] = 4, + [146507] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2481), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2363), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2365), 50, + ACTIONS(2483), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -335945,28 +333157,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [149670] = 4, + [146573] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2485), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1837), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1839), 49, + ACTIONS(2487), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -336009,26 +333220,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [149736] = 4, + [146639] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2489), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1841), 4, - sym_newline_before_do, - sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1843), 49, + ACTIONS(2491), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -336071,20 +333282,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [149802] = 4, + [146705] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2493), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2383), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2385), 50, + ACTIONS(2495), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336131,22 +333343,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [149868] = 4, + [146771] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2259), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2387), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2389), 50, + ACTIONS(2261), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336193,22 +333405,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [149934] = 4, + [146837] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2201), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2391), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2393), 50, + ACTIONS(2203), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336255,20 +333467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [150000] = 4, + [146903] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2387), 2, + ACTIONS(2497), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2389), 51, + ACTIONS(2499), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -336320,19 +333530,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [150066] = 4, + [146969] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2501), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2395), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2397), 50, + ACTIONS(2503), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336379,22 +333591,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [150132] = 4, + [147035] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2161), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2399), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2401), 50, + ACTIONS(2163), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336441,20 +333653,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [150198] = 4, + [147101] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1567), 1, + anon_sym_RPAREN, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3639), 1, + anon_sym_when, + ACTIONS(3641), 1, + anon_sym_COLON_COLON, + ACTIONS(3643), 1, + anon_sym_EQ_GT, + ACTIONS(3645), 1, + anon_sym_EQ, + ACTIONS(3655), 1, + anon_sym_in, + ACTIONS(3657), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3659), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3661), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3665), 1, + sym_not_in, + ACTIONS(3717), 1, + aux_sym_terminator_token1, + ACTIONS(3720), 1, + anon_sym_SEMI, + STATE(410), 1, + sym_terminator, + STATE(1377), 1, + aux_sym_terminator_repeat1, + STATE(5824), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3631), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3637), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3647), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3649), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3627), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3651), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3633), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3653), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [147217] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2391), 2, + ACTIONS(2505), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2393), 51, + ACTIONS(2507), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -336506,21 +333803,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [150264] = 4, + [147283] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2395), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2397), 51, + ACTIONS(2661), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2664), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336567,22 +333862,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [150330] = 4, + anon_sym_do, + [147349] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2399), 2, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2259), 3, + sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, + ACTIONS(2261), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [147417] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2401), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2201), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2203), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336630,26 +333989,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [150396] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [147485] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2403), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3723), 1, + anon_sym_COMMA, + STATE(3482), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2707), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2405), 51, + anon_sym_LBRACK2, + ACTIONS(2709), 49, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -336691,22 +334053,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [150462] = 4, + [147555] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 2, - sym_not_in, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3312), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2529), 3, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2531), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336753,28 +334117,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [150528] = 6, + anon_sym_do, + anon_sym_end, + [147625] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3730), 1, - anon_sym_COMMA, - STATE(3520), 1, - aux_sym_keywords_repeat1, + ACTIONS(2813), 1, + anon_sym_LBRACK2, + ACTIONS(3312), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 3, + ACTIONS(2559), 3, + sym_newline_before_do, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2353), 49, + ACTIONS(2561), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -336816,23 +334181,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [150598] = 4, + anon_sym_do, + anon_sym_end, + [147695] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 2, - sym_not_in, + ACTIONS(2813), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3312), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2597), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336879,21 +334245,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [150664] = 6, + anon_sym_do, + anon_sym_end, + [147765] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(3194), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 2, + sym_newline_before_do, sym_not_in, - ACTIONS(3722), 1, + ACTIONS(3166), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3172), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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, + [147847] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3192), 1, + anon_sym_in, + ACTIONS(3194), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3202), 1, anon_sym_LBRACK2, + ACTIONS(3204), 1, + sym_not_in, + ACTIONS(3166), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3172), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 50, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3190), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [147935] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2413), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2415), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -336944,17 +334451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [150734] = 4, + anon_sym_DOT, + [148001] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2411), 2, + ACTIONS(2417), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2413), 51, + ACTIONS(2419), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -337006,27 +334514,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [150800] = 6, + [148067] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3733), 1, - anon_sym_COMMA, - STATE(3525), 1, - aux_sym_keywords_repeat1, + ACTIONS(2517), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2730), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2732), 48, + ACTIONS(2519), 51, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -337069,28 +334576,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [150870] = 6, + [148133] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3733), 1, - anon_sym_COMMA, - STATE(3526), 1, - aux_sym_keywords_repeat1, + ACTIONS(2521), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2736), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2738), 48, + ACTIONS(2523), 51, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -337133,28 +334638,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [150940] = 6, + [148199] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COMMA, - STATE(3526), 1, - aux_sym_keywords_repeat1, + ACTIONS(2525), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2351), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2353), 48, + ACTIONS(2527), 51, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -337197,20 +334700,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [151010] = 4, + [148265] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2529), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2403), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2405), 50, + ACTIONS(2531), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -337257,22 +334761,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [151076] = 4, + [148331] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2529), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2407), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2409), 50, + ACTIONS(2531), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -337319,20 +334823,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [151142] = 4, + [148397] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2423), 2, + ACTIONS(2529), 1, sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2425), 51, + ACTIONS(2531), 50, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -337383,18 +334888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [151208] = 4, + [148467] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 2, + ACTIONS(2529), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 51, + ACTIONS(2531), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -337446,17 +334950,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [151274] = 4, + [148533] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2427), 2, + ACTIONS(2533), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2429), 51, + ACTIONS(2535), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -337508,19 +335012,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [151340] = 4, + [148599] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2537), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2407), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2409), 50, + ACTIONS(2539), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -337567,20 +335073,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [151406] = 4, + [148665] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2431), 2, + ACTIONS(2549), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2433), 51, + ACTIONS(2551), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -337632,27 +335136,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [151472] = 6, + [148731] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3198), 1, - anon_sym_DOT, - ACTIONS(3200), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3), 3, + ACTIONS(3723), 1, + anon_sym_COMMA, + STATE(3507), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2685), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 49, + anon_sym_LBRACK2, + ACTIONS(2687), 49, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -337695,18 +335199,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_do, - [151542] = 4, + anon_sym_DOT, + [148801] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(2221), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2441), 51, + ACTIONS(2223), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -337758,18 +335262,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [151608] = 4, + [148867] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 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(2411), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2413), 50, + ACTIONS(2597), 48, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -337816,31 +335325,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_do, - [151674] = 6, + [148939] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COMMA, - STATE(3052), 1, - aux_sym_keywords_repeat1, + ACTIONS(2559), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2736), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2738), 48, + ACTIONS(2561), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -337883,18 +335389,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [151744] = 4, + [149005] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2519), 2, + ACTIONS(2559), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2521), 51, + ACTIONS(2561), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -337946,17 +335451,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [151810] = 4, + [149071] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2479), 2, + ACTIONS(2559), 1, sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2481), 51, + ACTIONS(2561), 50, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -338007,20 +335515,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [151876] = 4, + [149141] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2559), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2423), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2425), 50, + ACTIONS(2561), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338067,32 +335576,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [151942] = 4, + [149207] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2451), 2, - sym_not_in, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, anon_sym_LBRACK2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3166), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3172), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2453), 51, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 38, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -338124,33 +335643,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [152008] = 4, + anon_sym_DASH_GT, + anon_sym_do, + [149285] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2455), 2, - sym_not_in, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, anon_sym_LBRACK2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3166), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2457), 51, + ACTIONS(2597), 46, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -338191,83 +335709,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [152074] = 25, + anon_sym_DASH_GT, + anon_sym_do, + [149359] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3318), 1, - anon_sym_PIPE, - ACTIONS(3330), 1, - anon_sym_when, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, - ACTIONS(3334), 1, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3180), 1, anon_sym_EQ_GT, - ACTIONS(3336), 1, + ACTIONS(3182), 1, anon_sym_EQ, - ACTIONS(3346), 1, + ACTIONS(3192), 1, anon_sym_in, - ACTIONS(3348), 1, + ACTIONS(3194), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3350), 1, + ACTIONS(3196), 1, anon_sym_SLASH_SLASH, - ACTIONS(3352), 1, + ACTIONS(3198), 1, anon_sym_STAR_STAR, - ACTIONS(3354), 1, + ACTIONS(3200), 1, anon_sym_DOT, - ACTIONS(3356), 1, + ACTIONS(3202), 1, anon_sym_LBRACK2, - ACTIONS(3358), 1, + ACTIONS(3204), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3320), 2, + ACTIONS(3166), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3326), 2, + ACTIONS(3172), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3328), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2687), 3, - sym_newline_before_do, - ts_builtin_sym_end, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2689), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(3338), 3, + ACTIONS(3184), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3340), 3, + ACTIONS(3186), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3316), 4, + ACTIONS(3162), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3342), 5, + ACTIONS(3188), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3324), 6, + ACTIONS(3170), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3344), 9, + ACTIONS(2597), 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(3190), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -338277,47 +335790,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [152182] = 4, + [149459] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2197), 3, + ACTIONS(2595), 1, sym_newline_before_do, - sym_not_in, + ACTIONS(3182), 1, + anon_sym_EQ, + ACTIONS(3192), 1, + anon_sym_in, + ACTIONS(3194), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, anon_sym_LBRACK2, - ACTIONS(2199), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3204), 1, + sym_not_in, + ACTIONS(3166), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3172), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3184), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3186), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3162), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3188), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3190), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -338327,39 +335857,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [149557] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3192), 1, anon_sym_in, + ACTIONS(3194), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3198), 1, anon_sym_STAR_STAR, + ACTIONS(3200), 1, anon_sym_DOT, - anon_sym_do, - [152248] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2197), 2, - sym_not_in, + ACTIONS(3202), 1, anon_sym_LBRACK2, + ACTIONS(3204), 1, + sym_not_in, + ACTIONS(3166), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3172), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2199), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3186), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3162), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3188), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3190), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 14, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -338369,16 +335942,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + anon_sym_DASH_GT, + anon_sym_do, + [149651] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3192), 1, + anon_sym_in, + ACTIONS(3194), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, + anon_sym_LBRACK2, + ACTIONS(3204), 1, + sym_not_in, + ACTIONS(3166), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3172), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3162), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3188), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3190), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -338388,33 +336001,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [149743] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3192), 1, anon_sym_in, + ACTIONS(3194), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, anon_sym_SLASH_SLASH, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, + anon_sym_LBRACK2, + ACTIONS(3204), 1, + sym_not_in, + ACTIONS(3166), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3172), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3162), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(3190), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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_DOT, - [152313] = 6, + anon_sym_do, + [149833] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(2359), 2, - sym_newline_before_do, + ACTIONS(2563), 2, sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2361), 48, + ACTIONS(2565), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338461,28 +336154,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [152382] = 4, + anon_sym_DOT, + [149899] = 14, ACTIONS(5), 1, sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3192), 1, + anon_sym_in, + ACTIONS(3194), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3196), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, + anon_sym_LBRACK2, + ACTIONS(3204), 1, + sym_not_in, + ACTIONS(3166), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3172), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2359), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2361), 49, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -338511,39 +336225,45 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [152447] = 4, + [149985] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(3196), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3166), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3172), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2363), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2365), 49, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 37, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -338574,40 +336294,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [152512] = 6, + [150065] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3738), 1, - anon_sym_COMMA, - STATE(3589), 1, - aux_sym_keywords_repeat1, - ACTIONS(2736), 2, - sym_not_in, + ACTIONS(3196), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3198), 1, + anon_sym_STAR_STAR, + ACTIONS(3200), 1, + anon_sym_DOT, + ACTIONS(3202), 1, anon_sym_LBRACK2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3166), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3172), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2738), 48, + ACTIONS(3170), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 37, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -338638,31 +336363,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_DOT, - [152581] = 5, + anon_sym_do, + [150145] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2189), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2183), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2191), 48, - anon_sym_SEMI, + ACTIONS(2185), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338710,24 +336425,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [152648] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [150211] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2189), 3, + ACTIONS(2197), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2191), 49, + ACTIONS(2199), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -338771,24 +336488,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [152713] = 4, + anon_sym_DOT_DOT_DOT_GT, + [150277] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2421), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2459), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2461), 49, + ACTIONS(2423), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -338831,25 +336551,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [152778] = 4, + [150343] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2425), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2714), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2716), 49, + ACTIONS(2427), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -338892,19 +336613,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [152843] = 4, + [150409] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2571), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2383), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2385), 49, + ACTIONS(2573), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338952,20 +336675,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [152908] = 4, + [150475] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2575), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2387), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2389), 49, + ACTIONS(2577), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -339013,20 +336737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [152973] = 4, + [150541] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2710), 3, + ACTIONS(2217), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2712), 49, + ACTIONS(2219), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -339076,25 +336799,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [153038] = 4, + [150607] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3729), 1, + anon_sym_COMMA, + STATE(3507), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 4, + ACTIONS(2601), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1827), 49, + ACTIONS(2603), 49, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -339136,25 +336861,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [153103] = 4, + [150677] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2579), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1835), 49, - anon_sym_SEMI, + ACTIONS(2581), 51, + 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_DOT_DOT, anon_sym_PLUS, @@ -339198,18 +336925,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [153168] = 4, + [150743] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2583), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2391), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2393), 49, + ACTIONS(2585), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -339257,20 +336987,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [153233] = 4, + [150809] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2587), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2395), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2397), 49, + ACTIONS(2589), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -339318,20 +337049,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [153298] = 4, + [150875] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2591), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2399), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2401), 49, + ACTIONS(2593), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -339379,20 +337111,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [153363] = 4, + [150941] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2595), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2403), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2405), 49, + ACTIONS(2597), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -339440,26 +337173,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [153428] = 4, + [151007] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2595), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2271), 49, - anon_sym_SEMI, + ACTIONS(2597), 51, + 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_DOT_DOT, anon_sym_PLUS, @@ -339503,24 +337235,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [153493] = 4, + [151073] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3709), 1, + anon_sym_COMMA, + STATE(3424), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2355), 3, + ACTIONS(2707), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2357), 49, + ACTIONS(2709), 48, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -339564,18 +337299,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [153558] = 4, + [151143] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2613), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2407), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2409), 49, + ACTIONS(2615), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -339623,26 +337361,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [153623] = 4, + [151209] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2275), 49, - anon_sym_SEMI, + ACTIONS(2597), 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, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -339685,25 +337425,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [153688] = 4, + [151279] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2605), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2269), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2271), 49, + ACTIONS(2607), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -339746,25 +337487,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [153753] = 4, + [151345] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2273), 3, + ACTIONS(1865), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2275), 49, + ACTIONS(1867), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -339808,26 +337548,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [153818] = 4, + anon_sym_DOT_DOT_DOT_GT, + [151411] = 15, ACTIONS(5), 1, sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3742), 1, + anon_sym_in, + ACTIONS(3744), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3746), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3748), 1, + anon_sym_STAR_STAR, + ACTIONS(3750), 1, + sym_not_in, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2407), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2409), 49, + ACTIONS(3732), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3740), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 22, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -339845,8 +337621,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + [151498] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2767), 1, + sym_newline_before_do, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3416), 1, + anon_sym_when, + ACTIONS(3418), 1, + anon_sym_COLON_COLON, + ACTIONS(3420), 1, + anon_sym_EQ_GT, + ACTIONS(3422), 1, + anon_sym_EQ, + ACTIONS(3432), 1, + anon_sym_in, + ACTIONS(3434), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3436), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3438), 1, + anon_sym_STAR_STAR, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(3444), 1, + sym_not_in, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3414), 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(2769), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(3424), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3426), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3402), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3428), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3430), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -339856,37 +337703,27 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [153883] = 4, + [151605] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3752), 1, + anon_sym_COMMA, + STATE(3521), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2277), 3, - sym_newline_before_do, + ACTIONS(2601), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2279), 49, + ACTIONS(2603), 48, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -339929,25 +337766,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [153948] = 4, + [151674] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2245), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2281), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2283), 49, + ACTIONS(2247), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -339989,26 +337825,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [154013] = 4, + [151739] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2217), 3, - sym_newline_before_do, + ACTIONS(2285), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2219), 49, + ACTIONS(2287), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -340051,25 +337888,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [154078] = 4, + [151804] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2187), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2285), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2287), 49, + ACTIONS(2189), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -340111,26 +337947,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [154143] = 4, + [151869] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2285), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2475), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2477), 49, + ACTIONS(2287), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -340172,26 +338008,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [154208] = 4, + [151934] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2289), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2479), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2481), 49, + ACTIONS(2291), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -340233,26 +338069,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [154273] = 4, + [151999] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2293), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2479), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2481), 49, + ACTIONS(2295), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -340294,26 +338130,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [154338] = 4, + [152064] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2297), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2483), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2485), 49, + ACTIONS(2299), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -340355,27 +338191,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [154403] = 6, + [152129] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, + ACTIONS(2301), 2, sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 48, + ACTIONS(2303), 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_DOT_DOT, anon_sym_PLUS, @@ -340418,24 +338252,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [154472] = 4, + anon_sym_DASH_GT, + anon_sym_DOT, + [152194] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2305), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2411), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2413), 49, + ACTIONS(2307), 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_DOT_DOT, anon_sym_PLUS, @@ -340478,27 +338313,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [154537] = 4, + [152259] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2309), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2487), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2489), 49, + ACTIONS(2311), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -340540,85 +338374,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [154602] = 4, + [152324] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2491), 3, - sym_newline_before_do, + ACTIONS(2313), 2, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2493), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [154667] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2423), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2425), 49, + ACTIONS(2315), 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_DOT_DOT, anon_sym_PLUS, @@ -340661,86 +338435,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [154732] = 4, + [152389] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2213), 4, + ACTIONS(2317), 2, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2215), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [154797] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2407), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2409), 49, + ACTIONS(2319), 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_DOT_DOT, anon_sym_PLUS, @@ -340783,25 +338496,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [154862] = 4, + [152454] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2321), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2427), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2429), 49, + ACTIONS(2323), 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_DOT_DOT, anon_sym_PLUS, @@ -340844,25 +338557,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [154927] = 4, + [152519] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2413), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2431), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2433), 49, + ACTIONS(2415), 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_DOT_DOT, anon_sym_PLUS, @@ -340905,27 +338618,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [154992] = 4, + [152584] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2417), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2359), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2361), 49, + ACTIONS(2419), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -340967,24 +338679,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [155057] = 4, + [152649] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2325), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2439), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2441), 49, + ACTIONS(2327), 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_DOT_DOT, anon_sym_PLUS, @@ -341027,29 +338740,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [155122] = 6, + [152714] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3740), 1, - anon_sym_COMMA, - STATE(3589), 1, - aux_sym_keywords_repeat1, - ACTIONS(2351), 2, + ACTIONS(2329), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2353), 48, + ACTIONS(2331), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341093,24 +338803,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [155191] = 4, + [152779] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2333), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2359), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2361), 49, + ACTIONS(2335), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341152,21 +338862,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [155256] = 4, + [152844] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2337), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2463), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2465), 49, - anon_sym_SEMI, + ACTIONS(2339), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -341214,20 +338923,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [155321] = 4, + [152909] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2341), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2467), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2469), 49, - anon_sym_SEMI, + ACTIONS(2343), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -341275,25 +338984,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [155386] = 4, + [152974] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2345), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2503), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2505), 49, + ACTIONS(2347), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341335,29 +339045,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [155451] = 6, + [153039] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(2359), 2, - sym_newline_before_do, + ACTIONS(2241), 2, sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2361), 48, + ACTIONS(2243), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341399,25 +339106,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_do, - [155520] = 4, + anon_sym_DASH_GT, + anon_sym_DOT, + [153104] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2349), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2507), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2509), 49, + ACTIONS(2351), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341459,26 +339167,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [155585] = 4, + [153169] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2353), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2359), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2361), 49, + ACTIONS(2355), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341520,26 +339228,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [155650] = 4, + [153234] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2357), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2515), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2517), 49, + ACTIONS(2359), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341581,108 +339289,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [155715] = 25, + [153299] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2751), 1, - sym_newline_before_do, - ACTIONS(3463), 1, - anon_sym_PIPE, - ACTIONS(3475), 1, - anon_sym_when, - ACTIONS(3477), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3481), 1, - anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_in, - ACTIONS(3493), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(3503), 1, + ACTIONS(2361), 2, sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3473), 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(2753), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_do, - ACTIONS(3483), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3485), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3461), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3487), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3489), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [155822] = 4, - ACTIONS(5), 1, - sym_comment, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2519), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2521), 49, + ACTIONS(2363), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341724,26 +339350,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [155887] = 4, + [153364] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2365), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2363), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2365), 49, + ACTIONS(2367), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341785,24 +339411,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [155952] = 4, + [153429] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2273), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2459), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2461), 49, + ACTIONS(2275), 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_DOT_DOT, anon_sym_PLUS, @@ -341845,27 +339472,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [156017] = 4, + [153494] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2369), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2289), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2291), 49, + ACTIONS(2371), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341907,103 +339533,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [156082] = 25, + [153559] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2755), 1, - sym_newline_before_do, - ACTIONS(3463), 1, - anon_sym_PIPE, - ACTIONS(3475), 1, - anon_sym_when, - ACTIONS(3477), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3481), 1, - anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_in, - ACTIONS(3493), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(3503), 1, + ACTIONS(2421), 2, sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3473), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2757), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_do, - ACTIONS(3483), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3485), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3461), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3487), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3489), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [156189] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(1837), 4, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1839), 49, - anon_sym_SEMI, + ACTIONS(2423), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -342051,20 +339594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [156254] = 4, + [153624] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2425), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1843), 49, - anon_sym_SEMI, + ACTIONS(2427), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -342112,80 +339655,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [156319] = 25, + [153689] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2751), 1, - aux_sym_terminator_token1, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(2373), 2, sym_not_in, - ACTIONS(3743), 1, - anon_sym_when, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + aux_sym_terminator_token1, + ACTIONS(2375), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2894), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2753), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -342195,19 +339706,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [156426] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [153754] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2377), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2377), 49, - anon_sym_SEMI, + ACTIONS(2379), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -342255,20 +339777,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [156491] = 4, + [153819] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2381), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2381), 49, - anon_sym_SEMI, + ACTIONS(2383), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -342316,25 +339838,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [156556] = 4, + [153884] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2385), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2375), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2377), 49, + ACTIONS(2387), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -342376,26 +339899,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [156621] = 4, + [153949] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2389), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2379), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2381), 49, + ACTIONS(2391), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -342437,26 +339960,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [156686] = 4, + [154014] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2393), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2383), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2385), 49, + ACTIONS(2395), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -342498,20 +340021,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [156751] = 4, + [154079] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2475), 3, + ACTIONS(2649), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2477), 49, + ACTIONS(2651), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -342561,23 +340084,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [156816] = 4, + [154144] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2225), 2, + ACTIONS(2397), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2227), 50, - anon_sym_LPAREN, + ACTIONS(2399), 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_DOT_DOT, anon_sym_PLUS, @@ -342622,83 +340145,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [156881] = 4, + [154209] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2479), 3, - sym_newline_before_do, + ACTIONS(2401), 2, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2481), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [156946] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2479), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2481), 49, + ACTIONS(2403), 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_DOT_DOT, anon_sym_PLUS, @@ -342741,26 +340204,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [157011] = 4, + [154274] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2405), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1837), 3, - sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1839), 49, + ACTIONS(2407), 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_DOT_DOT, anon_sym_PLUS, @@ -342805,79 +340267,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [157076] = 4, + [154339] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2483), 3, - sym_newline_before_do, + ACTIONS(2237), 2, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2485), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [157141] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2487), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2489), 49, + ACTIONS(2239), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -342924,21 +340326,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [157206] = 4, + [154404] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2213), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1841), 3, - sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1843), 49, + ACTIONS(2215), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -342988,19 +340389,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [157271] = 5, + [154469] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3745), 1, - aux_sym_sigil_token3, - ACTIONS(2257), 2, + ACTIONS(2267), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2259), 49, + ACTIONS(2269), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -343050,24 +340450,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [157338] = 5, + [154534] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3747), 1, - aux_sym_sigil_token3, - ACTIONS(2263), 2, + ACTIONS(2429), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2265), 49, + ACTIONS(2431), 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_DOT_DOT, anon_sym_PLUS, @@ -343112,22 +340511,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [157405] = 4, + [154599] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2433), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2491), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2493), 49, + ACTIONS(2435), 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_DOT_DOT, anon_sym_PLUS, @@ -343170,27 +340570,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [157470] = 4, + [154664] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2387), 3, - sym_newline_before_do, + ACTIONS(2289), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2389), 49, + ACTIONS(2291), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -343233,25 +340633,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [157535] = 5, + [154729] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2965), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2257), 3, + ACTIONS(2293), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2259), 49, + ACTIONS(2295), 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_DOT_DOT, anon_sym_PLUS, @@ -343295,19 +340694,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [157602] = 4, + [154794] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3154), 1, + anon_sym_LPAREN, + STATE(3203), 1, + sym_call_arguments_with_parentheses, + ACTIONS(2161), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2503), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2505), 49, + ACTIONS(2163), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -343355,24 +340756,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [157667] = 4, + [154863] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2507), 3, - sym_newline_before_do, + ACTIONS(2297), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2509), 49, + ACTIONS(2299), 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_DOT_DOT, anon_sym_PLUS, @@ -343416,26 +340818,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [157732] = 5, + [154928] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2967), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2263), 3, + ACTIONS(2301), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2265), 49, + ACTIONS(2303), 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_DOT_DOT, anon_sym_PLUS, @@ -343479,30 +340879,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [157799] = 4, + [154993] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2515), 3, - sym_newline_before_do, + ACTIONS(163), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2517), 49, + ACTIONS(2664), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(165), 46, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_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, @@ -343539,25 +340941,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [157864] = 4, + [155060] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2519), 3, + ACTIONS(2529), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2521), 49, + ACTIONS(2531), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -343601,19 +341002,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [157929] = 4, + [155125] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2289), 3, + ACTIONS(2513), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2291), 49, + ACTIONS(2515), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -343663,27 +341063,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [157994] = 6, + [155190] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(2289), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2305), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2291), 48, + anon_sym_LBRACK2, + ACTIONS(2307), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -343725,25 +341123,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_do, - [158063] = 4, + anon_sym_DOT, + [155255] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2391), 3, - sym_newline_before_do, + ACTIONS(2309), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2393), 49, + ACTIONS(2311), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -343786,25 +341185,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [158128] = 4, + [155320] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2395), 3, - sym_newline_before_do, + ACTIONS(2313), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2397), 49, + ACTIONS(2315), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -343847,77 +341246,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [158193] = 22, + [155385] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3463), 1, - anon_sym_PIPE, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3481), 1, - anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_in, - ACTIONS(3493), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, + ACTIONS(3440), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3442), 1, anon_sym_LBRACK2, - ACTIONS(3503), 1, + ACTIONS(2529), 2, + sym_newline_before_do, sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3483), 3, + ACTIONS(2531), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_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, - ACTIONS(3485), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3461), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3487), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3489), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -343927,24 +341298,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [158294] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [155454] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2399), 3, - sym_newline_before_do, + ACTIONS(2739), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2401), 49, + ACTIONS(2741), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -343987,79 +341370,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [158359] = 24, + [155519] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3463), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2317), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2319), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3475), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3477), 1, anon_sym_COLON_COLON, - ACTIONS(3479), 1, anon_sym_EQ_GT, - ACTIONS(3481), 1, anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_in, - ACTIONS(3493), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(3503), 1, - sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3483), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3485), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3461), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(3487), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3489), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -344069,105 +341420,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [158464] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3463), 1, - anon_sym_PIPE, - ACTIONS(3475), 1, - anon_sym_when, - ACTIONS(3477), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3481), 1, - anon_sym_EQ, - ACTIONS(3491), 1, anon_sym_in, - ACTIONS(3493), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(3503), 1, - sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3483), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3485), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3461), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(3487), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3489), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [158569] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [155584] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2403), 3, - sym_newline_before_do, + ACTIONS(2321), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2405), 49, + ACTIONS(2323), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -344210,78 +341492,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [158634] = 23, + [155649] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2409), 3, sym_newline_before_do, - ACTIONS(3463), 1, - anon_sym_PIPE, - ACTIONS(3477), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3481), 1, - anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_in, - ACTIONS(3493), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(3503), 1, sym_not_in, - ACTIONS(3465), 2, + anon_sym_LBRACK2, + ACTIONS(2411), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3483), 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(3485), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3461), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3487), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3489), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -344291,45 +341540,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [158737] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3493), 1, + anon_sym_in, anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3499), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [155714] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, + ACTIONS(2529), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2531), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -344359,19 +341603,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [158818] = 4, + [155779] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2523), 3, + ACTIONS(2533), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2525), 49, + ACTIONS(2535), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -344421,23 +341675,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [158883] = 4, + [155844] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2349), 3, + ACTIONS(2537), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(1857), 49, + ACTIONS(2539), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -344481,23 +341736,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [158948] = 4, + [155909] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2351), 3, - sym_newline_before_do, + ACTIONS(2325), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 49, + ACTIONS(2327), 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_DOT_DOT, anon_sym_PLUS, @@ -344541,26 +341797,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [159013] = 4, + [155974] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2527), 3, - sym_newline_before_do, + ACTIONS(2329), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2529), 49, + ACTIONS(2331), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -344603,44 +341858,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [159078] = 15, + [156039] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3491), 1, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2763), 1, + aux_sym_terminator_token1, + ACTIONS(2837), 1, + anon_sym_PIPE, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(3493), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(3499), 1, + ACTIONS(2874), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(3503), 1, + ACTIONS(2876), 1, sym_not_in, - ACTIONS(3465), 2, + ACTIONS(3755), 1, + anon_sym_when, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3471), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3469), 6, + ACTIONS(2847), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2858), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2860), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2765), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3489), 9, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -344650,72 +341940,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 25, - anon_sym_LT, - anon_sym_GT, + [156146] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2694), 1, + sym_newline_before_do, + ACTIONS(3404), 1, anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3416), 1, anon_sym_when, + ACTIONS(3418), 1, anon_sym_COLON_COLON, + ACTIONS(3420), 1, anon_sym_EQ_GT, + ACTIONS(3422), 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_do, - [159165] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2535), 3, - sym_newline_before_do, - sym_not_in, + ACTIONS(3432), 1, + anon_sym_in, + ACTIONS(3434), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3436), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3438), 1, + anon_sym_STAR_STAR, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, anon_sym_LBRACK2, - ACTIONS(2537), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3444), 1, + sym_not_in, + ACTIONS(3406), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3412), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3414), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2696), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(3424), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3426), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3402), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3428), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3430), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -344725,30 +342022,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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [159230] = 4, + [156253] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2289), 3, + ACTIONS(2421), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2291), 49, + ACTIONS(2423), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -344798,23 +342083,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [159295] = 4, + [156318] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2523), 3, + ACTIONS(2425), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2525), 49, + ACTIONS(2427), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -344858,19 +342144,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [159360] = 4, + [156383] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2983), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2527), 3, - sym_newline_before_do, + ACTIONS(2701), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2529), 49, + ACTIONS(2703), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -344918,26 +342205,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [159425] = 4, + anon_sym_end, + [156450] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2407), 3, - sym_newline_before_do, + ACTIONS(2413), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 49, + ACTIONS(2415), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -344980,23 +342267,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [159490] = 4, + [156515] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2535), 3, - sym_newline_before_do, + ACTIONS(2417), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2537), 49, + ACTIONS(2419), 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_DOT_DOT, anon_sym_PLUS, @@ -345040,31 +342328,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [159555] = 7, + [156580] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2421), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 47, + anon_sym_LBRACK2, + ACTIONS(2423), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -345105,99 +342387,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_do, - [159626] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3497), 1, anon_sym_STAR_STAR, - ACTIONS(3499), 1, anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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, - [159703] = 8, + [156645] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2425), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 45, + anon_sym_LBRACK2, + ACTIONS(2427), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -345237,25 +342447,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_do, - [159776] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [156710] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2341), 3, - sym_newline_before_do, + ACTIONS(2429), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2343), 49, + ACTIONS(2431), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -345298,25 +342511,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [159841] = 4, + [156775] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2345), 3, - sym_newline_before_do, + ACTIONS(2433), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2347), 49, + ACTIONS(2435), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -345359,25 +342572,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [159906] = 4, + [156840] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2451), 3, + ACTIONS(2509), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2453), 49, + ACTIONS(2511), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -345421,24 +342632,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [159971] = 4, + anon_sym_DOT_DOT_DOT_GT, + [156905] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(1845), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2455), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2457), 49, + ACTIONS(1847), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -345480,20 +342692,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [160036] = 4, + [156970] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(1853), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2367), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2369), 50, - anon_sym_SEMI, + ACTIONS(1855), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -345541,20 +342753,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [160101] = 4, + [157035] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(1849), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2371), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2373), 50, - anon_sym_SEMI, + ACTIONS(1851), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -345602,20 +342814,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [160166] = 4, + [157100] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(1857), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2415), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2417), 50, - anon_sym_SEMI, + ACTIONS(1859), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -345663,20 +342875,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [160231] = 4, + [157165] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(1861), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2419), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2421), 50, - anon_sym_SEMI, + ACTIONS(1863), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -345724,20 +342936,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [160296] = 4, + [157230] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(1865), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2435), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2437), 50, - anon_sym_SEMI, + ACTIONS(1867), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -345785,19 +342997,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [160361] = 4, + [157295] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2443), 3, + ACTIONS(2413), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2445), 50, + ACTIONS(2415), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -345848,24 +343060,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [160426] = 4, + [157360] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2407), 3, - sym_newline_before_do, + ACTIONS(2417), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 49, + ACTIONS(2419), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -345908,46 +343120,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [160491] = 12, + anon_sym_end, + [157425] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3701), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, - anon_sym_STAR_STAR, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3673), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3679), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2421), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(3677), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_LBRACE, + anon_sym_LBRACK2, + ACTIONS(2423), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -345977,101 +343171,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_do, - [160572] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3699), 1, - anon_sym_in, - ACTIONS(3701), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, - anon_sym_STAR_STAR, - ACTIONS(3707), 1, - sym_not_in, - ACTIONS(3673), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3679), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3677), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3697), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [160659] = 7, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [157490] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3705), 1, - anon_sym_STAR_STAR, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2425), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 47, - anon_sym_LBRACE, + anon_sym_LBRACK2, + ACTIONS(2427), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -346113,42 +343240,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_do, - [160730] = 10, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [157555] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3705), 1, - anon_sym_STAR_STAR, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3673), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3679), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2429), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(3677), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 37, - anon_sym_LBRACE, + anon_sym_LBRACK2, + ACTIONS(2431), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -346180,31 +343295,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_do, - [160807] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [157620] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3705), 1, - anon_sym_STAR_STAR, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3673), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2433), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 45, - anon_sym_LBRACE, + anon_sym_LBRACK2, + ACTIONS(2435), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -346245,76 +343361,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_do, - [160880] = 21, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [157685] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3687), 1, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3420), 1, anon_sym_EQ_GT, - ACTIONS(3689), 1, + ACTIONS(3422), 1, anon_sym_EQ, - ACTIONS(3699), 1, + ACTIONS(3432), 1, anon_sym_in, - ACTIONS(3701), 1, + ACTIONS(3434), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, + ACTIONS(3436), 1, anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, + ACTIONS(3438), 1, anon_sym_STAR_STAR, - ACTIONS(3707), 1, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(3444), 1, sym_not_in, - ACTIONS(3673), 2, + ACTIONS(3406), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3679), 2, + ACTIONS(3412), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3691), 3, + ACTIONS(3424), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3693), 3, + ACTIONS(3426), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3669), 4, + ACTIONS(3402), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3695), 5, + ACTIONS(3428), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3677), 6, + ACTIONS(3410), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 8, - anon_sym_LBRACE, - anon_sym_PIPE, + ACTIONS(2597), 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(3697), 9, + ACTIONS(3430), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -346324,74 +343444,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [160979] = 20, + [157786] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3689), 1, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3416), 1, + anon_sym_when, + ACTIONS(3418), 1, + anon_sym_COLON_COLON, + ACTIONS(3420), 1, + anon_sym_EQ_GT, + ACTIONS(3422), 1, anon_sym_EQ, - ACTIONS(3699), 1, + ACTIONS(3432), 1, anon_sym_in, - ACTIONS(3701), 1, + ACTIONS(3434), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, + ACTIONS(3436), 1, anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, + ACTIONS(3438), 1, anon_sym_STAR_STAR, - ACTIONS(3707), 1, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(3444), 1, sym_not_in, - ACTIONS(3673), 2, + ACTIONS(3406), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3679), 2, + ACTIONS(3412), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3691), 3, + ACTIONS(3424), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3693), 3, + ACTIONS(3426), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3669), 4, + ACTIONS(3402), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3695), 5, + ACTIONS(2597), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(3428), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3677), 6, + ACTIONS(3410), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 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(3697), 9, + ACTIONS(3430), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -346401,58 +343525,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [161076] = 18, + [157891] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3699), 1, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3416), 1, + anon_sym_when, + ACTIONS(3418), 1, + anon_sym_COLON_COLON, + ACTIONS(3420), 1, + anon_sym_EQ_GT, + ACTIONS(3422), 1, + anon_sym_EQ, + ACTIONS(3432), 1, anon_sym_in, - ACTIONS(3701), 1, + ACTIONS(3434), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, + ACTIONS(3436), 1, anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, + ACTIONS(3438), 1, anon_sym_STAR_STAR, - ACTIONS(3707), 1, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(3444), 1, sym_not_in, - ACTIONS(3673), 2, + ACTIONS(3406), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3679), 2, + ACTIONS(3412), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3693), 3, + ACTIONS(3424), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3426), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3669), 4, + ACTIONS(3402), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3695), 5, + ACTIONS(2597), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(3428), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3677), 6, + ACTIONS(3410), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3697), 9, + ACTIONS(3430), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -346462,136 +343606,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 13, - anon_sym_LBRACE, + [157996] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3404), 1, anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + ACTIONS(3418), 1, anon_sym_COLON_COLON, + ACTIONS(3420), 1, anon_sym_EQ_GT, + ACTIONS(3422), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_do, - [161169] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3699), 1, + ACTIONS(3432), 1, anon_sym_in, - ACTIONS(3701), 1, + ACTIONS(3434), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, + ACTIONS(3436), 1, anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, + ACTIONS(3438), 1, anon_sym_STAR_STAR, - ACTIONS(3707), 1, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(3444), 1, sym_not_in, - ACTIONS(3673), 2, + ACTIONS(3406), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3679), 2, + ACTIONS(3412), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3669), 4, + ACTIONS(3424), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3426), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3402), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3695), 5, + ACTIONS(3428), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3677), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3697), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 16, - anon_sym_LBRACE, - anon_sym_PIPE, + ACTIONS(2597), 6, 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, - [161260] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3699), 1, - anon_sym_in, - ACTIONS(3701), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, - anon_sym_STAR_STAR, - ACTIONS(3707), 1, - sym_not_in, - ACTIONS(3673), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3679), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3669), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3677), 6, + ACTIONS(3410), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3697), 9, + ACTIONS(3430), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -346601,70 +343686,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [161349] = 14, + [158099] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3699), 1, - anon_sym_in, - ACTIONS(3701), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, - anon_sym_STAR_STAR, - ACTIONS(3707), 1, - sym_not_in, - ACTIONS(3673), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3679), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(1845), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(3677), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 34, - anon_sym_LBRACE, + anon_sym_LBRACK2, + ACTIONS(1847), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -346693,44 +343736,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_do, - [161434] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3703), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, - anon_sym_STAR_STAR, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3673), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3679), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3677), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [158164] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(1853), 3, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(1855), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -346761,44 +343799,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_do, - [161513] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3703), 1, anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, - anon_sym_STAR_STAR, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3673), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3679), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3677), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [158229] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2249), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2251), 49, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -346829,19 +343860,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_do, - [161592] = 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [158294] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2447), 3, + ACTIONS(1849), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2449), 50, + ACTIONS(1851), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -346890,19 +343930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [161657] = 4, + [158359] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2463), 3, + ACTIONS(1857), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2465), 50, + ACTIONS(1859), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -346951,24 +343991,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [161722] = 4, + [158424] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2467), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2625), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2469), 50, - anon_sym_SEMI, + ACTIONS(2627), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -347012,77 +344050,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [161787] = 22, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [158489] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2653), 3, sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3671), 1, + ACTIONS(2655), 49, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3687), 1, - anon_sym_EQ_GT, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(3699), 1, - anon_sym_in, - ACTIONS(3701), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, - anon_sym_STAR_STAR, - ACTIONS(3707), 1, - sym_not_in, - ACTIONS(3673), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3679), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3691), 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(3693), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3669), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3695), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3677), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3697), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -347092,78 +344100,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [161888] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3671), 1, - anon_sym_PIPE, - ACTIONS(3683), 1, - anon_sym_when, - ACTIONS(3685), 1, - anon_sym_COLON_COLON, - ACTIONS(3687), 1, - anon_sym_EQ_GT, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(3699), 1, anon_sym_in, - ACTIONS(3701), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3707), 1, + anon_sym_DOT, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [158554] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(1861), 3, sym_not_in, - ACTIONS(3673), 2, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(1863), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3679), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3691), 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(3693), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3669), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(3695), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3677), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3697), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -347173,78 +344163,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [161993] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3671), 1, - anon_sym_PIPE, - ACTIONS(3683), 1, - anon_sym_when, - ACTIONS(3685), 1, - anon_sym_COLON_COLON, - ACTIONS(3687), 1, - anon_sym_EQ_GT, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(3699), 1, anon_sym_in, - ACTIONS(3701), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3707), 1, + anon_sym_DOT, + [158619] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(1865), 3, sym_not_in, - ACTIONS(3673), 2, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(1867), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3679), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3691), 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(3693), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3669), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(3695), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3677), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3697), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -347254,77 +344224,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [162098] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3671), 1, - anon_sym_PIPE, - ACTIONS(3685), 1, - anon_sym_COLON_COLON, - ACTIONS(3687), 1, - anon_sym_EQ_GT, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(3699), 1, anon_sym_in, - ACTIONS(3701), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, - anon_sym_STAR_STAR, - ACTIONS(3707), 1, - sym_not_in, - ACTIONS(3673), 2, - anon_sym_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, anon_sym_STAR, - ACTIONS(3679), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + [158684] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3691), 3, + ACTIONS(2421), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2423), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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, - ACTIONS(3693), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3669), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3695), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - ACTIONS(3677), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3697), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -347334,24 +344283,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [162201] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [158749] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2471), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2621), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2473), 50, - anon_sym_SEMI, + ACTIONS(2623), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -347394,24 +344356,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [162266] = 4, + anon_sym_do, + [158814] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2495), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2513), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2497), 50, - anon_sym_SEMI, + ACTIONS(2515), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -347455,25 +344416,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [162331] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [158879] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2511), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2425), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2513), 49, - anon_sym_SEMI, + ACTIONS(2427), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -347517,25 +344477,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [162396] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [158944] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2531), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2555), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2533), 49, - anon_sym_SEMI, + ACTIONS(2557), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -347578,24 +344539,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [162461] = 4, + anon_sym_do, + [159009] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2539), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2657), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2541), 49, - anon_sym_SEMI, + ACTIONS(2659), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -347639,28 +344599,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [162526] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [159074] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3545), 1, + anon_sym_STAR_STAR, + ACTIONS(3547), 1, + anon_sym_DOT, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3513), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3519), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2543), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2545), 49, - anon_sym_SEMI, + ACTIONS(3517), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -347690,33 +344668,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [162591] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [159155] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2499), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(1845), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2501), 50, - anon_sym_SEMI, + ACTIONS(1847), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -347759,26 +344729,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [162656] = 4, + [159220] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2293), 3, - sym_newline_before_do, + ACTIONS(1853), 3, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2295), 49, + ACTIONS(1855), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -347820,26 +344790,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [162721] = 4, + [159285] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2511), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2429), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2513), 50, - anon_sym_SEMI, + ACTIONS(2431), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -347882,26 +344852,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [162786] = 4, + anon_sym_do, + [159350] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2611), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2433), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2613), 49, - anon_sym_SEMI, + ACTIONS(2435), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -347944,17 +344913,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [162851] = 4, + anon_sym_do, + [159415] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2531), 3, + ACTIONS(1845), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2533), 50, + ACTIONS(1847), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -348005,17 +344975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [162916] = 4, + [159480] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2539), 3, + ACTIONS(1853), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2541), 50, + ACTIONS(1855), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -348066,17 +345036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [162981] = 4, + [159545] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2543), 3, + ACTIONS(1849), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2545), 50, + ACTIONS(1851), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -348127,24 +345097,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [163046] = 4, + [159610] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2718), 3, - sym_newline_before_do, + ACTIONS(1857), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2720), 49, + ACTIONS(1859), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -348187,153 +345157,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [163111] = 21, + anon_sym_end, + [159675] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3481), 1, - anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_in, - ACTIONS(3493), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(3503), 1, - sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(1861), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(3483), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3485), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3461), 4, + anon_sym_LBRACK2, + ACTIONS(1863), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3487), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 8, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(3489), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [163210] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3481), 1, + anon_sym_EQ_GT, anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_in, - ACTIONS(3493), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(3503), 1, - sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3483), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3485), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3461), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3487), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3489), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -348343,22 +345207,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [163307] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [159740] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2269), 3, - sym_newline_before_do, + ACTIONS(1865), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 49, + ACTIONS(1867), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -348402,24 +345279,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [163372] = 4, + anon_sym_end, + [159805] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2273), 3, - sym_newline_before_do, + ACTIONS(2333), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 49, + ACTIONS(2335), 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_DOT_DOT, anon_sym_PLUS, @@ -348463,60 +345341,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [163437] = 18, + [159870] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_newline_before_do, - ACTIONS(3491), 1, + ACTIONS(3539), 1, anon_sym_in, - ACTIONS(3493), 1, + ACTIONS(3541), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, + ACTIONS(3543), 1, anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, + ACTIONS(3545), 1, anon_sym_STAR_STAR, - ACTIONS(3499), 1, + ACTIONS(3547), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3549), 1, anon_sym_LBRACK2, - ACTIONS(3503), 1, + ACTIONS(3551), 1, sym_not_in, - ACTIONS(3465), 2, + ACTIONS(3513), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3471), 2, + ACTIONS(3519), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3485), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3461), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3487), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3469), 6, + ACTIONS(3517), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3489), 9, + ACTIONS(3537), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -348526,10 +345387,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 13, + ACTIONS(2597), 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, @@ -348539,55 +345401,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_do, - [163530] = 17, + anon_sym_DOT_DOT_DOT_GT, + [159957] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3491), 1, - anon_sym_in, - ACTIONS(3493), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(3503), 1, - sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2337), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3461), 4, + anon_sym_LBRACK2, + ACTIONS(2339), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3487), 5, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_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, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3489), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -348597,10 +345463,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 16, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [160022] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2571), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2573), 49, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -348613,49 +345507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_do, - [163621] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3491), 1, - anon_sym_in, - ACTIONS(3493), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(3503), 1, - sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3461), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_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(3469), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3489), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -348665,10 +345523,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 21, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [160087] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2711), 3, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2713), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -348686,49 +345573,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_do, - [163710] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3491), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3493), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(3503), 1, - sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 34, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [160152] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2715), 3, + sym_not_in, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2717), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -348757,44 +345645,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_do, - [163795] = 11, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [160217] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, + ACTIONS(3545), 1, anon_sym_STAR_STAR, - ACTIONS(3499), 1, + ACTIONS(3547), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3549), 1, anon_sym_LBRACK2, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 36, + ACTIONS(2597), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -348825,44 +345712,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_do, - [163874] = 11, + anon_sym_DOT_DOT_DOT_GT, + [160288] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, + ACTIONS(3545), 1, anon_sym_STAR_STAR, - ACTIONS(3499), 1, + ACTIONS(3547), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3549), 1, anon_sym_LBRACK2, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, sym_not_in, - ACTIONS(3465), 2, + ACTIONS(3513), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3471), 2, + ACTIONS(3519), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3469), 6, + ACTIONS(3517), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, + ACTIONS(2597), 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, @@ -348893,23 +345785,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_do, - [163953] = 4, + anon_sym_DOT_DOT_DOT_GT, + [160365] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2375), 3, - sym_newline_before_do, + ACTIONS(2719), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2377), 49, + ACTIONS(2721), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -348953,24 +345848,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [164018] = 4, + anon_sym_end, + [160430] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2379), 3, - sym_newline_before_do, + ACTIONS(2723), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2381), 49, + ACTIONS(2725), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -349014,29 +345909,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [164083] = 6, + anon_sym_end, + [160495] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(3545), 1, + anon_sym_STAR_STAR, + ACTIONS(3547), 1, anon_sym_DOT, - ACTIONS(3501), 1, + ACTIONS(3549), 1, anon_sym_LBRACK2, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_newline_before_do, sym_not_in, + ACTIONS(3513), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 48, + ACTIONS(2597), 45, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -349076,21 +345973,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_do, - [164152] = 4, + anon_sym_DOT_DOT_DOT_GT, + [160568] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2547), 4, + ACTIONS(2727), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2549), 49, + ACTIONS(2729), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -349140,23 +346035,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [164217] = 4, + anon_sym_end, + [160633] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2165), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2731), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2167), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2733), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -349199,20 +346095,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [164282] = 4, + anon_sym_end, + [160698] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2411), 3, + ACTIONS(2575), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2413), 49, + ACTIONS(2577), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349262,44 +346158,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [164347] = 12, + [160763] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3441), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3413), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3419), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3417), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, + ACTIONS(2559), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2561), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -349329,26 +346208,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [164428] = 4, + [160828] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2169), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2171), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2579), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2581), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -349390,21 +346278,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [164493] = 4, + anon_sym_do, + [160893] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2173), 2, - sym_not_in, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3527), 1, + anon_sym_EQ_GT, + ACTIONS(3529), 1, + anon_sym_EQ, + ACTIONS(3539), 1, + anon_sym_in, + ACTIONS(3541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3545), 1, + anon_sym_STAR_STAR, + ACTIONS(3547), 1, + anon_sym_DOT, + ACTIONS(3549), 1, anon_sym_LBRACK2, + ACTIONS(3551), 1, + sym_not_in, + ACTIONS(3513), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3519), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2175), 50, + ACTIONS(3531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3509), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3517), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 8, + 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_DOT_DOT_DOT_GT, + ACTIONS(3537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [160992] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2245), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2247), 49, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349451,26 +346418,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [164558] = 4, + [161057] = 20, ACTIONS(5), 1, sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3529), 1, + anon_sym_EQ, + ACTIONS(3539), 1, + anon_sym_in, + ACTIONS(3541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3545), 1, + anon_sym_STAR_STAR, + ACTIONS(3547), 1, + anon_sym_DOT, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + ACTIONS(3551), 1, + sym_not_in, + ACTIONS(3513), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3519), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2349), 3, + ACTIONS(3531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3509), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3517), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 9, + anon_sym_PIPE, + 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_DOT_DOT_DOT_GT, + ACTIONS(3537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [161154] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, sym_newline_before_do, + ACTIONS(3539), 1, + anon_sym_in, + ACTIONS(3541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3545), 1, + anon_sym_STAR_STAR, + ACTIONS(3547), 1, + anon_sym_DOT, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + ACTIONS(3551), 1, + sym_not_in, + ACTIONS(3513), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3519), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3509), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3517), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 13, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_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_DOT_DOT_DOT_GT, + [161247] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2341), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1857), 49, + ACTIONS(2343), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -349513,25 +346632,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [164623] = 4, + [161312] = 17, ACTIONS(5), 1, sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3539), 1, + anon_sym_in, + ACTIONS(3541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3545), 1, + anon_sym_STAR_STAR, + ACTIONS(3547), 1, + anon_sym_DOT, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + ACTIONS(3551), 1, + sym_not_in, + ACTIONS(3513), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3519), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2351), 3, - sym_newline_before_do, + ACTIONS(3509), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3517), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 16, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_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_DOT_DOT_DOT_GT, + [161403] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2345), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 49, + ACTIONS(2347), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -349574,44 +346767,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [164688] = 15, + [161468] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_newline_before_do, - ACTIONS(3439), 1, + ACTIONS(3539), 1, anon_sym_in, - ACTIONS(3441), 1, + ACTIONS(3541), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, + ACTIONS(3543), 1, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, + ACTIONS(3545), 1, anon_sym_STAR_STAR, - ACTIONS(3447), 1, + ACTIONS(3547), 1, anon_sym_DOT, - ACTIONS(3449), 1, + ACTIONS(3549), 1, anon_sym_LBRACK2, - ACTIONS(3451), 1, + ACTIONS(3551), 1, sym_not_in, - ACTIONS(3413), 2, + ACTIONS(3513), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3419), 2, + ACTIONS(3519), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3417), 6, + ACTIONS(3509), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3517), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3437), 9, + ACTIONS(3537), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -349621,9 +346818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 25, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2597), 21, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -349643,22 +346838,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [164775] = 4, + [161557] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2747), 4, + ACTIONS(2735), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2749), 49, + ACTIONS(2737), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -349708,23 +346900,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [164840] = 4, + anon_sym_end, + [161622] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1845), 3, + ACTIONS(2739), 3, sym_not_in, - aux_sym_quoted_keyword_token1, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1847), 49, - anon_sym_RPAREN, + ACTIONS(2741), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -349767,25 +346960,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [164905] = 4, + anon_sym_end, + [161687] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1849), 3, + ACTIONS(2743), 3, sym_not_in, - aux_sym_quoted_keyword_token1, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1851), 49, - anon_sym_RPAREN, + ACTIONS(2745), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -349828,26 +347021,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [164970] = 4, + anon_sym_end, + [161752] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2702), 3, - sym_newline_before_do, + ACTIONS(2747), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2704), 49, + ACTIONS(2749), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -349890,28 +347083,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [165035] = 7, + anon_sym_end, + [161817] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2751), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 47, + anon_sym_LBRACK2, + ACTIONS(2753), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -349953,42 +347142,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [165106] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3445), 1, anon_sym_STAR_STAR, - ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3413), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3419), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + anon_sym_end, + [161882] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2755), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(3417), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 37, + anon_sym_LBRACK2, + ACTIONS(2757), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -350020,31 +347197,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [165183] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3445), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3413), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, + anon_sym_end, + [161947] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2759), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 45, + anon_sym_LBRACK2, + ACTIONS(2761), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -350085,26 +347263,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [165256] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [162012] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2706), 3, - sym_newline_before_do, + ACTIONS(2567), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2708), 49, + ACTIONS(2569), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -350147,18 +347327,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [165321] = 4, + anon_sym_end, + [162077] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2547), 3, + ACTIONS(2277), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2549), 50, + ACTIONS(2279), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -350209,17 +347389,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [165386] = 4, + [162142] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2551), 3, + ACTIONS(2281), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2553), 50, + ACTIONS(2283), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -350270,75 +347450,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [165451] = 21, + [162207] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2555), 3, sym_newline_before_do, - ACTIONS(3427), 1, - anon_sym_EQ_GT, - ACTIONS(3429), 1, - anon_sym_EQ, - ACTIONS(3439), 1, - anon_sym_in, - ACTIONS(3441), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(3451), 1, sym_not_in, - ACTIONS(3413), 2, + anon_sym_LBRACK2, + ACTIONS(2557), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3419), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3431), 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(3433), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3409), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3435), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3417), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 8, - 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_DOT_DOT_DOT_GT, - ACTIONS(3437), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -350348,64 +347498,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [165550] = 20, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [162272] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_newline_before_do, - ACTIONS(3429), 1, - anon_sym_EQ, - ACTIONS(3439), 1, + ACTIONS(3539), 1, anon_sym_in, - ACTIONS(3441), 1, + ACTIONS(3541), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, + ACTIONS(3543), 1, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, + ACTIONS(3545), 1, anon_sym_STAR_STAR, - ACTIONS(3447), 1, + ACTIONS(3547), 1, anon_sym_DOT, - ACTIONS(3449), 1, + ACTIONS(3549), 1, anon_sym_LBRACK2, - ACTIONS(3451), 1, + ACTIONS(3551), 1, sym_not_in, - ACTIONS(3413), 2, + ACTIONS(3513), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3419), 2, + ACTIONS(3519), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3431), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3433), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3409), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3435), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3417), 6, + ACTIONS(3517), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 9, + ACTIONS(2597), 34, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -350413,9 +347557,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(3437), 9, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -350425,68 +347580,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [165647] = 18, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [162357] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3439), 1, - anon_sym_in, - ACTIONS(3441), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, + ACTIONS(3543), 1, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, + ACTIONS(3545), 1, anon_sym_STAR_STAR, - ACTIONS(3447), 1, + ACTIONS(3547), 1, anon_sym_DOT, - ACTIONS(3449), 1, + ACTIONS(3549), 1, anon_sym_LBRACK2, - ACTIONS(3451), 1, + ACTIONS(2595), 2, + sym_newline_before_do, sym_not_in, - ACTIONS(3413), 2, + ACTIONS(3513), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3419), 2, + ACTIONS(3519), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3433), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3409), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3435), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3417), 6, + ACTIONS(3517), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3437), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 13, + ACTIONS(2597), 36, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -350498,56 +347627,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [165740] = 17, + [162436] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3439), 1, - anon_sym_in, - ACTIONS(3441), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, + ACTIONS(3543), 1, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, + ACTIONS(3545), 1, anon_sym_STAR_STAR, - ACTIONS(3447), 1, + ACTIONS(3547), 1, anon_sym_DOT, - ACTIONS(3449), 1, + ACTIONS(3549), 1, anon_sym_LBRACK2, - ACTIONS(3451), 1, + ACTIONS(2595), 2, + sym_newline_before_do, sym_not_in, - ACTIONS(3413), 2, + ACTIONS(3513), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3419), 2, + ACTIONS(3519), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3409), 4, + ACTIONS(3517), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 36, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3435), 5, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3417), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3437), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -350557,9 +347714,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 16, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [162515] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2583), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2585), 49, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -350572,50 +347751,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [165831] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3439), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3441), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(3451), 1, - sym_not_in, - ACTIONS(3413), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3419), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_do, + [162580] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3409), 4, + ACTIONS(2587), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2589), 49, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_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_EQ, anon_sym_GT_EQ, - ACTIONS(3417), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3437), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -350625,9 +347828,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 21, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [162645] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2591), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2593), 49, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -350645,49 +347878,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [165920] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_newline_before_do, - ACTIONS(3439), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3441), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(3451), 1, - sym_not_in, - ACTIONS(3413), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3419), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3417), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 34, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [162710] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2187), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2189), 49, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -350716,44 +347951,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [166005] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3443), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3413), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3419), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3417), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [162775] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(1861), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(1863), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -350784,88 +348014,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [166084] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3443), 1, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 2, - sym_newline_before_do, - sym_not_in, - ACTIONS(3413), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3419), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3417), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - 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_DOT_DOT_DOT_GT, - [166163] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [162840] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2367), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(1865), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2369), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(1867), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -350913,20 +348083,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [166228] = 4, + [162905] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2371), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2429), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2373), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2431), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -350974,20 +348144,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [166293] = 4, + [162970] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2415), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2433), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2417), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2435), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -351035,26 +348205,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [166358] = 4, + [163035] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2617), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2429), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2619), 49, - anon_sym_SEMI, + ACTIONS(2431), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -351098,24 +348265,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [166423] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [163100] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2621), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2433), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2623), 49, - anon_sym_SEMI, + ACTIONS(2435), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -351159,18 +348326,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [166488] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [163165] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2625), 4, + ACTIONS(2727), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2627), 49, + ACTIONS(2729), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -351220,28 +348389,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [166553] = 4, + [163230] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3434), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3436), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3438), 1, + anon_sym_STAR_STAR, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2629), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2631), 49, - anon_sym_SEMI, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -351271,37 +348457,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_do, + [163311] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3432), 1, + anon_sym_in, + ACTIONS(3434), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3436), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3438), 1, anon_sym_STAR_STAR, + ACTIONS(3440), 1, anon_sym_DOT, - [166618] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2419), 2, - sym_not_in, + ACTIONS(3442), 1, anon_sym_LBRACK2, + ACTIONS(3444), 1, + sym_not_in, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3412), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2421), 50, - anon_sym_RPAREN, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3430), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 25, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -351321,46 +348529,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [166683] = 4, + anon_sym_do, + [163398] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2633), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2497), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2635), 49, - anon_sym_SEMI, + ACTIONS(2499), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -351403,24 +348590,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [166748] = 4, + anon_sym_do, + [163463] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2637), 4, + ACTIONS(2241), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2639), 49, + ACTIONS(2243), 49, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -351464,25 +348652,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [166813] = 4, + [163528] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2641), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2643), 49, - anon_sym_SEMI, + ACTIONS(2597), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -351525,25 +348712,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [166878] = 4, + anon_sym_do, + [163593] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2645), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2625), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2647), 49, - anon_sym_SEMI, + ACTIONS(2627), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -351586,25 +348773,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [166943] = 4, + anon_sym_do, + [163658] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3438), 1, + anon_sym_STAR_STAR, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3), 3, 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, + ACTIONS(2597), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -351645,27 +348837,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, + anon_sym_do, + [163729] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3438), 1, anon_sym_STAR_STAR, + ACTIONS(3440), 1, anon_sym_DOT, - [167008] = 4, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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, + [163806] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3438), 1, + anon_sym_STAR_STAR, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2653), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2655), 49, - anon_sym_SEMI, + ACTIONS(2597), 45, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -351705,28 +348969,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [167073] = 4, + anon_sym_do, + [163879] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2657), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2501), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2659), 49, - anon_sym_SEMI, + ACTIONS(2503), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -351769,25 +349030,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [167138] = 4, + anon_sym_do, + [163944] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2763), 1, + sym_newline_before_do, + ACTIONS(3404), 1, + anon_sym_PIPE, + ACTIONS(3416), 1, + anon_sym_when, + ACTIONS(3418), 1, + anon_sym_COLON_COLON, + ACTIONS(3420), 1, + anon_sym_EQ_GT, + ACTIONS(3422), 1, + anon_sym_EQ, + ACTIONS(3432), 1, + anon_sym_in, + ACTIONS(3434), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3436), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3438), 1, + anon_sym_STAR_STAR, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(3444), 1, + sym_not_in, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3414), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2661), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2765), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(3424), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3426), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3402), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3428), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3430), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [164051] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, anon_sym_LBRACK2, - ACTIONS(2663), 49, - anon_sym_SEMI, + ACTIONS(2559), 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(2561), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -351829,25 +349175,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [167203] = 4, + anon_sym_do, + [164120] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2665), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2667), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2667), 49, - anon_sym_SEMI, + ACTIONS(2669), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -351891,24 +349235,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [167268] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [164185] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2669), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2671), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2671), 49, - anon_sym_SEMI, + ACTIONS(2673), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -351952,24 +349296,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [167333] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [164250] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2435), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2437), 50, - anon_sym_RPAREN, + ACTIONS(2559), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2561), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352011,22 +349357,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [167398] = 4, + anon_sym_do, + [164315] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2221), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2675), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2223), 49, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2677), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -352074,24 +349418,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [167463] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [164380] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2443), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2445), 50, - anon_sym_RPAREN, + ACTIONS(2629), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2631), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352133,26 +349479,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [167528] = 4, + anon_sym_do, + [164445] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2447), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2449), 50, - anon_sym_RPAREN, + ACTIONS(2629), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2631), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352194,29 +349540,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [167593] = 6, + anon_sym_do, + [164510] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COMMA, - STATE(3777), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2730), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2633), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2732), 47, - anon_sym_SEMI, + ACTIONS(2635), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352259,24 +349602,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [167662] = 4, + anon_sym_do, + [164575] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2463), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2465), 50, - anon_sym_RPAREN, + ACTIONS(2637), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352318,26 +349662,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [167727] = 4, + anon_sym_do, + [164640] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2467), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2469), 50, - anon_sym_RPAREN, + ACTIONS(2641), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352379,26 +349723,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [167792] = 4, + anon_sym_do, + [164705] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2471), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2473), 50, - anon_sym_RPAREN, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2597), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352440,26 +349784,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [167857] = 4, + anon_sym_do, + [164770] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2229), 4, + ACTIONS(2731), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2231), 49, + ACTIONS(2733), 49, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -352503,25 +349847,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [167922] = 4, + [164835] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2233), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2645), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2235), 49, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2647), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352564,24 +349907,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [167987] = 4, + anon_sym_do, + [164900] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2495), 2, - sym_not_in, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3420), 1, + anon_sym_EQ_GT, + ACTIONS(3422), 1, + anon_sym_EQ, + ACTIONS(3432), 1, + anon_sym_in, + ACTIONS(3434), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3436), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3438), 1, + anon_sym_STAR_STAR, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, anon_sym_LBRACK2, + ACTIONS(3444), 1, + sym_not_in, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3412), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2497), 50, - anon_sym_RPAREN, + ACTIONS(3424), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3426), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3402), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3428), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3430), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [164999] = 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), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352623,26 +350045,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [168052] = 4, + anon_sym_do, + [165064] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2499), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2501), 50, - anon_sym_RPAREN, + ACTIONS(2653), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2655), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352684,27 +350106,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [168117] = 4, + anon_sym_do, + [165129] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2225), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2657), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2227), 49, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2659), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352747,47 +350168,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [168182] = 4, + anon_sym_do, + [165194] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(1825), 5, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3422), 1, + anon_sym_EQ, + ACTIONS(3432), 1, + anon_sym_in, + ACTIONS(3434), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3436), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3438), 1, + anon_sym_STAR_STAR, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, anon_sym_LBRACK2, - ACTIONS(1827), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3444), 1, + sym_not_in, + ACTIONS(3406), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3412), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3424), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3426), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3402), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3428), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3430), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -352797,38 +350246,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [165291] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3432), 1, anon_sym_in, + ACTIONS(3434), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3436), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3438), 1, anon_sym_STAR_STAR, + ACTIONS(3440), 1, anon_sym_DOT, - [168247] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2511), 2, - sym_not_in, + ACTIONS(3442), 1, anon_sym_LBRACK2, + ACTIONS(3444), 1, + sym_not_in, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3412), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2513), 50, - anon_sym_RPAREN, + ACTIONS(3426), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3402), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3428), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3430), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 13, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -352838,16 +350320,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + anon_sym_do, + [165384] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3432), 1, + anon_sym_in, + ACTIONS(3434), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3436), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3438), 1, + anon_sym_STAR_STAR, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(3444), 1, + sym_not_in, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3402), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3428), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3430), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -352857,39 +350378,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [165475] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3432), 1, anon_sym_in, + ACTIONS(3434), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3436), 1, anon_sym_SLASH_SLASH, + ACTIONS(3438), 1, + anon_sym_STAR_STAR, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(3444), 1, + sym_not_in, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3402), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [168312] = 4, + ACTIONS(3430), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [165564] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(2531), 2, - sym_not_in, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3432), 1, + anon_sym_in, + ACTIONS(3434), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3436), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3438), 1, + anon_sym_STAR_STAR, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, anon_sym_LBRACK2, + ACTIONS(3444), 1, + sym_not_in, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3412), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2533), 50, - anon_sym_RPAREN, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 34, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -352918,40 +350538,44 @@ 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_do, + [165649] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3436), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3438), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3440), 1, anon_sym_DOT, - [168377] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + ACTIONS(3442), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3412), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 5, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1835), 48, - anon_sym_SEMI, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 36, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -352982,36 +350606,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_do, + [165728] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3436), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3438), 1, anon_sym_STAR_STAR, + ACTIONS(3440), 1, anon_sym_DOT, - [168442] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2539), 2, - sym_not_in, + ACTIONS(3442), 1, anon_sym_LBRACK2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3406), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3412), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2541), 50, - anon_sym_RPAREN, + ACTIONS(3410), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 36, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -353042,34 +350674,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [168507] = 4, + anon_sym_do, + [165807] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2543), 2, - sym_not_in, + ACTIONS(3440), 1, + anon_sym_DOT, + ACTIONS(3442), 1, anon_sym_LBRACK2, + ACTIONS(2595), 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(2545), 50, - anon_sym_RPAREN, + ACTIONS(2597), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -353111,29 +350737,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [168572] = 6, + anon_sym_do, + [165876] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3749), 1, - anon_sym_COMMA, - STATE(3791), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2736), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2605), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2738), 47, - anon_sym_SEMI, + ACTIONS(2607), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -353176,24 +350798,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [168641] = 4, + anon_sym_do, + [165941] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2201), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2203), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2563), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2565), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -353235,19 +350858,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [168706] = 4, + anon_sym_do, + [166006] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2555), 3, + ACTIONS(2285), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2557), 50, + ACTIONS(2287), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -353298,24 +350921,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [168771] = 4, + [166071] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2559), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2549), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2561), 50, - anon_sym_SEMI, + ACTIONS(2551), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -353358,26 +350981,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [168836] = 5, + anon_sym_do, + [166136] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2965), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2257), 3, + ACTIONS(2289), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2259), 49, + ACTIONS(2291), 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_DOT_DOT, anon_sym_PLUS, @@ -353421,25 +351042,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [168903] = 5, + anon_sym_end, + [166201] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2967), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2263), 3, + ACTIONS(2293), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2265), 49, + ACTIONS(2295), 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_DOT_DOT, anon_sym_PLUS, @@ -353483,85 +351103,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [168970] = 4, + anon_sym_end, + [166266] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2205), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2207), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [169035] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2253), 2, + ACTIONS(2609), 3, + sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2255), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2611), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -353603,88 +351163,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [169100] = 4, + anon_sym_do, + [166331] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2547), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2549), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [169165] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(1837), 5, + ACTIONS(2595), 3, + sym_newline_before_do, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1839), 48, - anon_sym_SEMI, + ACTIONS(2597), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -353727,24 +351225,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [169230] = 4, + anon_sym_do, + [166396] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2551), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2553), 50, - anon_sym_RPAREN, + ACTIONS(2221), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2223), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -353786,110 +351285,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [169295] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2755), 1, - aux_sym_terminator_token1, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(3743), 1, - anon_sym_when, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2894), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2757), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [169402] = 6, + anon_sym_do, + [166461] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2921), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 2, + ACTIONS(1849), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2291), 49, + anon_sym_LBRACK2, + ACTIONS(1851), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -353932,25 +351347,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [169471] = 4, + anon_sym_DOT, + [166526] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 5, + ACTIONS(2297), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1843), 48, + ACTIONS(2299), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -353994,27 +351408,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [169536] = 6, + anon_sym_end, + [166591] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3751), 1, - anon_sym_COMMA, - STATE(3791), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2599), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2353), 47, - anon_sym_SEMI, + ACTIONS(1873), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -354057,79 +351468,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [169605] = 25, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [166656] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2687), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2601), 3, sym_newline_before_do, - ACTIONS(3411), 1, - anon_sym_PIPE, - ACTIONS(3423), 1, - anon_sym_when, - ACTIONS(3425), 1, - anon_sym_COLON_COLON, - ACTIONS(3427), 1, - anon_sym_EQ_GT, - ACTIONS(3429), 1, - anon_sym_EQ, - ACTIONS(3439), 1, - anon_sym_in, - ACTIONS(3441), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, - anon_sym_STAR_STAR, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(3451), 1, sym_not_in, - ACTIONS(3413), 2, + anon_sym_LBRACK2, + ACTIONS(2603), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3419), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3421), 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(2689), 3, - anon_sym_COMMA, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(3431), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3433), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3409), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3435), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3417), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3437), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -354139,24 +351518,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [169712] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [166721] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2555), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2557), 50, - anon_sym_RPAREN, + ACTIONS(2667), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2669), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -354198,21 +351590,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [169777] = 4, + anon_sym_do, + [166786] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2367), 3, + ACTIONS(2301), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2369), 50, + ACTIONS(2303), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354261,19 +351652,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [169842] = 4, + anon_sym_end, + [166851] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2371), 3, + ACTIONS(2305), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2373), 50, + ACTIONS(2307), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354322,25 +351713,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [169907] = 4, + anon_sym_end, + [166916] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2557), 1, + anon_sym_COMMA, + ACTIONS(2661), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2415), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2417), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2664), 49, + 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -354383,25 +351776,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [169972] = 4, + [166983] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2419), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2671), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2421), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2673), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -354444,19 +351836,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170037] = 4, + anon_sym_do, + [167048] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2435), 3, + ACTIONS(1857), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2437), 50, + ACTIONS(1859), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354505,25 +351898,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170102] = 4, + [167113] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2443), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2675), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2445), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2677), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -354566,19 +351958,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170167] = 4, + anon_sym_do, + [167178] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2447), 3, + ACTIONS(2309), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2449), 50, + ACTIONS(2311), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354627,19 +352019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170232] = 4, + anon_sym_end, + [167243] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2463), 3, + ACTIONS(2313), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2465), 50, + ACTIONS(2315), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354688,19 +352080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170297] = 4, + anon_sym_end, + [167308] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2467), 3, + ACTIONS(2317), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2469), 50, + ACTIONS(2319), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354749,28 +352141,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170362] = 4, + anon_sym_end, + [167373] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3699), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2471), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2473), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -354800,34 +352210,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_do, + [167454] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3697), 1, + anon_sym_in, + ACTIONS(3699), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(3705), 1, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [170427] = 4, + ACTIONS(3695), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [167541] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2495), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2497), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2597), 47, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -354869,30 +352346,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [170492] = 4, + anon_sym_do, + [167612] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2499), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2501), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 37, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -354924,32 +352413,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [170557] = 4, + anon_sym_do, + [167689] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2511), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2513), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2597), 45, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -354990,50 +352478,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [170622] = 4, + anon_sym_do, + [167762] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3685), 1, + anon_sym_EQ_GT, + ACTIONS(3687), 1, + anon_sym_EQ, + ACTIONS(3697), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(3705), 1, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2531), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2533), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3689), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3691), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3667), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3693), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 8, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_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_do, + ACTIONS(3695), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [167861] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3687), 1, anon_sym_EQ, + ACTIONS(3697), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(3705), 1, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3689), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3691), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3667), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3693), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3695), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [167958] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3697), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(3705), 1, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3691), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3667), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3693), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3695), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355043,39 +352695,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [168051] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3697), 1, anon_sym_in, + ACTIONS(3699), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(3705), 1, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3667), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3693), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [170687] = 4, + ACTIONS(3695), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [168142] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3697), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(3705), 1, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2539), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2541), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3667), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3695), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 21, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + [168231] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3697), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(3705), 1, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3675), 6, anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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, + [168316] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3701), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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, @@ -355106,28 +352994,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_do, + [168395] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3701), 1, anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [170752] = 4, + ACTIONS(2597), 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, + [168474] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2543), 3, + ACTIONS(2321), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2545), 50, + ACTIONS(2323), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355176,19 +353123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170817] = 4, + anon_sym_end, + [168539] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2547), 3, + ACTIONS(2325), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2549), 50, + ACTIONS(2327), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355237,47 +353184,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170882] = 4, + anon_sym_end, + [168604] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3669), 1, + anon_sym_PIPE, + ACTIONS(3685), 1, + anon_sym_EQ_GT, + ACTIONS(3687), 1, + anon_sym_EQ, + ACTIONS(3697), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(3705), 1, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2551), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2553), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3689), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3691), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3667), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3693), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3695), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168705] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3669), 1, anon_sym_PIPE, + ACTIONS(3681), 1, + anon_sym_when, + ACTIONS(3683), 1, + anon_sym_COLON_COLON, + ACTIONS(3685), 1, + anon_sym_EQ_GT, + ACTIONS(3687), 1, + anon_sym_EQ, + ACTIONS(3697), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(3705), 1, + sym_not_in, + ACTIONS(3671), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3677), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3689), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3691), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3667), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2597), 5, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(3693), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3695), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168810] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3669), 1, + anon_sym_PIPE, + ACTIONS(3681), 1, anon_sym_when, + ACTIONS(3683), 1, anon_sym_COLON_COLON, + ACTIONS(3685), 1, anon_sym_EQ_GT, + ACTIONS(3687), 1, anon_sym_EQ, + ACTIONS(3697), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(3705), 1, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3689), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3691), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3667), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2597), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(3693), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3695), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355287,30 +353426,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [168915] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3669), 1, + anon_sym_PIPE, + ACTIONS(3683), 1, + anon_sym_COLON_COLON, + ACTIONS(3685), 1, + anon_sym_EQ_GT, + ACTIONS(3687), 1, + anon_sym_EQ, + ACTIONS(3697), 1, anon_sym_in, + ACTIONS(3699), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, anon_sym_SLASH_SLASH, + ACTIONS(3703), 1, + anon_sym_STAR_STAR, + ACTIONS(3705), 1, + sym_not_in, + ACTIONS(3671), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3677), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3689), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3691), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3667), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3693), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2597), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [170947] = 4, + ACTIONS(3695), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169018] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2555), 3, + ACTIONS(2329), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2557), 50, + ACTIONS(2331), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355359,24 +353566,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171012] = 4, + anon_sym_end, + [169083] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2253), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2559), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2561), 50, - anon_sym_SEMI, + ACTIONS(2255), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -355419,20 +353626,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [171077] = 4, + [169148] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2563), 3, + ACTIONS(2333), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2565), 50, + ACTIONS(2335), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355481,19 +353688,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171142] = 4, + anon_sym_end, + [169213] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2567), 3, + ACTIONS(2337), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2569), 50, + ACTIONS(2339), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355542,19 +353749,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171207] = 4, + anon_sym_end, + [169278] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2571), 3, + ACTIONS(2341), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2573), 50, + ACTIONS(2343), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355603,19 +353810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171272] = 4, + anon_sym_end, + [169343] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2575), 3, + ACTIONS(2345), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2577), 50, + ACTIONS(2347), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355664,19 +353871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171337] = 4, + anon_sym_end, + [169408] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2579), 3, + ACTIONS(2349), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2581), 50, + ACTIONS(2351), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355725,19 +353932,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171402] = 4, + anon_sym_end, + [169473] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2583), 3, + ACTIONS(2353), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2585), 50, + ACTIONS(2355), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355786,19 +353993,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171467] = 4, + anon_sym_end, + [169538] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2587), 3, + ACTIONS(2755), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2589), 50, + ACTIONS(2757), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355847,19 +354055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171532] = 4, + [169603] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2591), 3, + ACTIONS(2759), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2593), 50, + ACTIONS(2761), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355908,85 +354116,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171597] = 4, + [169668] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2595), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2597), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [171662] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2599), 3, + ACTIONS(1849), 3, sym_not_in, - aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2601), 50, - anon_sym_SEMI, + ACTIONS(1851), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -356029,86 +354175,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [171727] = 4, + [169733] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2603), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2605), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [171792] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2607), 3, + ACTIONS(1857), 3, sym_not_in, - aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2609), 50, - anon_sym_SEMI, + ACTIONS(1859), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -356151,20 +354236,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [171857] = 4, + [169798] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2611), 3, + ACTIONS(2357), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 50, + ACTIONS(2359), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -356213,19 +354298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171922] = 4, + anon_sym_end, + [169863] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2747), 3, + ACTIONS(2361), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2749), 50, + ACTIONS(2363), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -356274,19 +354359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171987] = 4, + anon_sym_end, + [169928] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2617), 3, + ACTIONS(2365), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2619), 50, + ACTIONS(2367), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -356335,85 +354420,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172052] = 4, + anon_sym_end, + [169993] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2621), 3, + ACTIONS(3757), 1, + aux_sym_sigil_token3, + ACTIONS(2701), 2, sym_not_in, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2623), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [172117] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2625), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2627), 50, - anon_sym_SEMI, + ACTIONS(2703), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -356456,20 +354481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [172182] = 4, + [170060] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2629), 3, + ACTIONS(2273), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2631), 50, + ACTIONS(2275), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -356518,19 +354543,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172247] = 4, + anon_sym_end, + [170125] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2633), 3, + ACTIONS(2369), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2635), 50, + ACTIONS(2371), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -356579,19 +354604,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172312] = 4, + anon_sym_end, + [170190] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2637), 3, + ACTIONS(2373), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2639), 50, + ACTIONS(2375), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -356640,19 +354665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172377] = 4, + anon_sym_end, + [170255] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2641), 3, + ACTIONS(2377), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2643), 50, + ACTIONS(2379), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -356701,19 +354726,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172442] = 4, + anon_sym_end, + [170320] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2645), 3, + ACTIONS(2381), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2647), 50, + ACTIONS(2383), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -356762,19 +354787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172507] = 4, + anon_sym_end, + [170385] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2649), 3, + ACTIONS(2385), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2651), 50, + ACTIONS(2387), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -356823,19 +354848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172572] = 4, + anon_sym_end, + [170450] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2653), 3, + ACTIONS(2389), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2655), 50, + ACTIONS(2391), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -356884,25 +354909,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172637] = 4, + anon_sym_end, + [170515] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3759), 1, + anon_sym_COMMA, + STATE(3793), 1, + aux_sym_keywords_repeat1, + ACTIONS(2601), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2657), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2659), 50, - anon_sym_SEMI, + ACTIONS(2603), 48, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -356944,20 +354971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [172702] = 4, + [170584] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2661), 3, + ACTIONS(2397), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2663), 50, + ACTIONS(2399), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -357006,19 +355033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172767] = 4, + anon_sym_end, + [170649] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2665), 3, + ACTIONS(2401), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2667), 50, + ACTIONS(2403), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -357067,19 +355094,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172832] = 4, + anon_sym_end, + [170714] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2669), 3, + ACTIONS(2405), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2671), 50, + ACTIONS(2407), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -357128,26 +355155,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172897] = 5, + anon_sym_end, + [170779] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3754), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2257), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(163), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2259), 48, - anon_sym_SEMI, + ACTIONS(165), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -357190,22 +355216,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [172964] = 6, + anon_sym_do, + [170844] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(2361), 49, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(163), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(165), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -357252,24 +355275,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [173033] = 4, + anon_sym_DOT, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [170909] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2559), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2561), 50, - anon_sym_RPAREN, + ACTIONS(2481), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2483), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -357312,80 +355336,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [173098] = 24, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [170974] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2485), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3758), 1, + ACTIONS(2487), 49, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3768), 1, - anon_sym_when, - ACTIONS(3770), 1, - anon_sym_COLON_COLON, - ACTIONS(3772), 1, - anon_sym_EQ_GT, - ACTIONS(3774), 1, - anon_sym_EQ, - ACTIONS(3784), 1, - anon_sym_in, - ACTIONS(3786), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3792), 1, - sym_not_in, - ACTIONS(3760), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3766), 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(3776), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3778), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2753), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3756), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3780), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3782), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -357395,25 +355387,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [173203] = 5, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [171039] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3794), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2263), 4, + ACTIONS(2567), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2265), 48, + ACTIONS(2569), 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_DOT_DOT, anon_sym_PLUS, @@ -357457,23 +355461,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [173270] = 4, + [171104] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2563), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2565), 50, - anon_sym_RPAREN, + ACTIONS(2489), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2491), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -357516,25 +355519,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [173335] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [171169] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2567), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2569), 50, - anon_sym_RPAREN, + ACTIONS(2493), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2495), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -357577,25 +355580,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [173400] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [171234] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2571), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2573), 50, - anon_sym_RPAREN, + ACTIONS(2259), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2261), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -357638,25 +355641,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [173465] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [171299] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2575), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2577), 50, - anon_sym_RPAREN, + ACTIONS(2201), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2203), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -357699,25 +355702,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [173530] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [171364] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2579), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2581), 50, - anon_sym_RPAREN, + ACTIONS(2497), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2499), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -357760,47 +355763,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [173595] = 12, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [171429] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2501), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2503), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -357830,24 +355815,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_DASH_GT, - [173676] = 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_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [171494] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2359), 3, + ACTIONS(2481), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2361), 49, + ACTIONS(2483), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -357891,77 +355888,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [173741] = 22, + [171559] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(2743), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2745), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2905), 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(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(2911), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -357971,24 +355938,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [173842] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2919), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2921), 1, anon_sym_DOT, - ACTIONS(3), 2, + [171624] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 48, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2161), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2163), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -358034,42 +356006,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_DASH_GT, - [173913] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2919), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, anon_sym_DOT, - ACTIONS(3), 2, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [171689] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 38, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2505), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2507), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -358101,24 +356061,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_DASH_GT, - [173990] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [171754] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2583), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2585), 50, - anon_sym_RPAREN, + ACTIONS(2541), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2543), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -358161,33 +356129,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [174055] = 8, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [171819] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2141), 1, + ACTIONS(3152), 1, + anon_sym_LPAREN, + STATE(2982), 1, + sym_call_arguments_with_parentheses, + ACTIONS(2161), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2409), 46, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2163), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -358227,25 +356192,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_DASH_GT, - [174128] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [171888] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2587), 2, + ACTIONS(3762), 1, + anon_sym_COMMA, + STATE(3958), 1, + aux_sym_keywords_repeat1, + ACTIONS(2707), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2589), 50, + ACTIONS(2709), 48, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -358289,159 +356258,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [174193] = 24, + [171957] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(3743), 1, - anon_sym_when, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, + aux_sym_terminator_token1, + ACTIONS(2485), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2487), 49, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [174298] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2899), 1, + anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(2901), 1, anon_sym_EQ_GT, - ACTIONS(2903), 1, anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(3743), 1, - anon_sym_when, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2905), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358451,221 +356307,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [174403] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2884), 1, - anon_sym_PIPE, - ACTIONS(2899), 1, - anon_sym_COLON_COLON, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, anon_sym_in, - ACTIONS(2915), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 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(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [174506] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2901), 1, - anon_sym_EQ_GT, - ACTIONS(2903), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2921), 1, anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(3), 2, + anon_sym_do, + [172022] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2905), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, + aux_sym_terminator_token1, + ACTIONS(2489), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2491), 49, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 9, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [174605] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2903), 1, + anon_sym_EQ_GT, anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2905), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2907), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358675,153 +356368,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [174702] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2913), 1, anon_sym_in, - ACTIONS(2915), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2907), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [174795] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2921), 1, anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, + anon_sym_do, + [172087] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2882), 4, + ACTIONS(2277), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2279), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2909), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 17, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -358834,48 +356414,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_DASH_GT, - [174886] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2913), 1, - anon_sym_in, - ACTIONS(2915), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2882), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_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(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2911), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358885,71 +356430,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [174975] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2913), 1, anon_sym_in, - ACTIONS(2915), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, - anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 35, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [172152] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2421), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2423), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -358978,44 +356491,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, - [175060] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2917), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2921), 1, anon_sym_DOT, + [172217] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2349), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 37, + anon_sym_LBRACK2, + ACTIONS(2351), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -359046,44 +356554,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - [175139] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2917), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2921), 1, anon_sym_DOT, + [172282] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2353), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2886), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2890), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 37, + anon_sym_LBRACK2, + ACTIONS(2355), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -359114,27 +356615,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - [175218] = 6, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [172347] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2141), 1, - anon_sym_LBRACK2, - ACTIONS(2921), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2357), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 49, + anon_sym_LBRACK2, + ACTIONS(2359), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -359177,25 +356684,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [175287] = 4, + anon_sym_DOT, + [172412] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2247), 4, + ACTIONS(2361), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2249), 49, + ACTIONS(2363), 49, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -359239,18 +356746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [175352] = 4, + [172477] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2591), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2365), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2593), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2367), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -359298,20 +356806,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [175417] = 4, + [172542] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2595), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2273), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2597), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2275), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -359359,81 +356867,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [175482] = 25, + [172607] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2751), 1, - sym_newline_before_do, - ACTIONS(3411), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2369), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2371), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3423), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3425), 1, anon_sym_COLON_COLON, - ACTIONS(3427), 1, anon_sym_EQ_GT, - ACTIONS(3429), 1, anon_sym_EQ, - ACTIONS(3439), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3441), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(3451), 1, + [172672] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2373), 4, sym_not_in, - ACTIONS(3413), 2, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2375), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3419), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3421), 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(2753), 3, - anon_sym_COMMA, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(3431), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3433), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3409), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3435), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3417), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3437), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359443,18 +356979,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [175589] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [172737] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2599), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2377), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2601), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2379), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -359502,20 +357050,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [175654] = 4, + [172802] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2603), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2381), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2605), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2383), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -359563,20 +357111,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [175719] = 4, + [172867] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2607), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2385), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2609), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2387), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -359624,82 +357172,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [175784] = 26, + [172932] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2389), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(3758), 1, + ACTIONS(2391), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3768), 1, - anon_sym_when, - ACTIONS(3770), 1, - anon_sym_COLON_COLON, - ACTIONS(3772), 1, - anon_sym_EQ_GT, - ACTIONS(3774), 1, - anon_sym_EQ, - ACTIONS(3784), 1, - anon_sym_in, - ACTIONS(3786), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3792), 1, - sym_not_in, - ACTIONS(3798), 1, - anon_sym_COMMA, - STATE(6531), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3760), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3766), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3796), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3776), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3778), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3756), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3780), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3782), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359709,23 +357223,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [175893] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [172997] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2213), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2393), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2215), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2395), 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_DOT_DOT, anon_sym_PLUS, @@ -359768,19 +357294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [175958] = 4, + [173062] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2563), 3, + ACTIONS(2397), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2565), 50, + ACTIONS(2399), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -359830,19 +357356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [176023] = 4, + [173127] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2611), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2401), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2613), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2403), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -359890,20 +357416,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176088] = 4, + [173192] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2269), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2405), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2271), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2407), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -359951,20 +357477,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176153] = 4, + [173257] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2273), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2425), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2275), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2427), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -360012,86 +357538,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176218] = 4, + [173322] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2747), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2749), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [176283] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2617), 2, + ACTIONS(2629), 3, + sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2619), 50, - anon_sym_RPAREN, + ACTIONS(2631), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -360134,26 +357597,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176348] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [173387] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2621), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3764), 1, + anon_sym_COMMA, + STATE(3850), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2707), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2623), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2709), 47, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -360195,25 +357662,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176413] = 4, + [173456] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2625), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2237), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2627), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2239), 49, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -360256,25 +357723,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176478] = 4, + [173521] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2629), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2631), 50, - anon_sym_RPAREN, + ACTIONS(2517), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2519), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -360317,25 +357782,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176543] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [173586] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2633), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2635), 50, - anon_sym_RPAREN, + ACTIONS(2413), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2415), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -360378,25 +357843,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176608] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [173651] = 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, + ACTIONS(2521), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2523), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -360439,25 +357904,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176673] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [173716] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2641), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2213), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2643), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2215), 49, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -360500,25 +357967,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176738] = 4, + [173781] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2645), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2267), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2647), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2269), 49, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -360561,25 +358028,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176803] = 4, + [173846] = 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, + ACTIONS(2525), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2527), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -360622,25 +358087,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176868] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [173911] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2653), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2655), 50, - anon_sym_RPAREN, + ACTIONS(2529), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2531), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -360683,25 +358148,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176933] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [173976] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2657), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2253), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2659), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2255), 49, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -360744,25 +358211,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176998] = 4, + [174041] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2661), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(1845), 5, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2663), 50, - anon_sym_RPAREN, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1847), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -360805,25 +358272,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [177063] = 4, + [174106] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2665), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2667), 50, - anon_sym_RPAREN, + ACTIONS(2417), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2419), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -360866,26 +358331,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [177128] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [174171] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2669), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2671), 50, - anon_sym_RPAREN, + ACTIONS(2409), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2411), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -360927,26 +358393,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [177193] = 4, + anon_sym_do, + [174236] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2221), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3764), 1, + anon_sym_COMMA, + STATE(3866), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2685), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2223), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2687), 47, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -360988,21 +358457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [177258] = 4, + [174305] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2229), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2231), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2629), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2631), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -361049,26 +358516,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [177323] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [174370] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2233), 2, + ACTIONS(163), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2235), 50, - anon_sym_LPAREN, + ACTIONS(2664), 4, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(165), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -361110,25 +358580,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [177388] = 4, + [174437] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2375), 2, - sym_not_in, + ACTIONS(2767), 1, + sym_newline_before_do, + ACTIONS(3511), 1, + anon_sym_PIPE, + ACTIONS(3523), 1, + anon_sym_when, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3527), 1, + anon_sym_EQ_GT, + ACTIONS(3529), 1, + anon_sym_EQ, + ACTIONS(3539), 1, + anon_sym_in, + ACTIONS(3541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3545), 1, + anon_sym_STAR_STAR, + ACTIONS(3547), 1, + anon_sym_DOT, + ACTIONS(3549), 1, anon_sym_LBRACK2, + ACTIONS(3551), 1, + sym_not_in, + ACTIONS(3513), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3519), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3521), 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(2377), 50, - anon_sym_RPAREN, + ACTIONS(2769), 3, + anon_sym_COMMA, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(3531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3509), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3517), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [174544] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2529), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2531), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -361171,25 +358721,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [177453] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [174609] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2379), 2, - sym_not_in, + ACTIONS(3547), 1, + anon_sym_DOT, + ACTIONS(3549), 1, anon_sym_LBRACK2, + ACTIONS(2529), 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(2381), 50, - anon_sym_RPAREN, + ACTIONS(2531), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -361232,26 +358785,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [177518] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [174678] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2551), 4, + ACTIONS(1853), 5, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2553), 49, + ACTIONS(1855), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -361295,23 +358848,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177583] = 4, + [174743] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2983), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2567), 3, + ACTIONS(2701), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2569), 50, + ACTIONS(2703), 49, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -361355,25 +358910,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [177648] = 4, + [174810] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2555), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2633), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2557), 49, - anon_sym_SEMI, + ACTIONS(2635), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -361417,23 +358969,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177713] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [174875] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2571), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2637), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2573), 50, - anon_sym_SEMI, + ACTIONS(2639), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -361477,19 +359030,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [177778] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [174940] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2451), 3, + ACTIONS(2641), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2453), 49, + ACTIONS(2643), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -361539,23 +359093,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [177843] = 4, + [175005] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2455), 3, + ACTIONS(2201), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2457), 49, + ACTIONS(2203), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -361599,26 +359154,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [177908] = 4, + [175070] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2559), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2613), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2561), 49, - anon_sym_SEMI, + ACTIONS(2615), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -361661,23 +359214,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177973] = 4, + anon_sym_do, + [175135] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2451), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(1849), 5, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2453), 50, - anon_sym_RPAREN, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1851), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -361720,48 +359275,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [178038] = 4, + [175200] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2455), 2, - sym_not_in, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(2767), 1, aux_sym_terminator_token1, - ACTIONS(2457), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2837), 1, anon_sym_PIPE, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(3755), 1, + anon_sym_when, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2847), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2769), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -361771,32 +359358,22 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [178103] = 4, + [175307] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2874), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2165), 4, + ACTIONS(2529), 2, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2167), 49, + ACTIONS(2531), 49, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -361843,26 +359420,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [178168] = 4, + anon_sym_DASH_GT, + [175376] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3766), 1, + anon_sym_COMMA, + STATE(3866), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2197), 4, + ACTIONS(2601), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2199), 49, + ACTIONS(2603), 47, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -361905,21 +359484,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [178233] = 6, + [175445] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3150), 1, - anon_sym_LPAREN, - STATE(3080), 1, - sym_call_arguments_with_parentheses, - ACTIONS(2145), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(1857), 5, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2147), 48, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1859), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -361967,109 +359545,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [178302] = 4, + [175510] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2563), 4, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2565), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2694), 1, + sym_newline_before_do, + ACTIONS(3511), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3523), 1, anon_sym_when, + ACTIONS(3525), 1, anon_sym_COLON_COLON, + ACTIONS(3527), 1, anon_sym_EQ_GT, + ACTIONS(3529), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3539), 1, anon_sym_in, + ACTIONS(3541), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3543), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3545), 1, anon_sym_STAR_STAR, + ACTIONS(3547), 1, anon_sym_DOT, - [178367] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2567), 4, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, + ACTIONS(3549), 1, anon_sym_LBRACK2, - ACTIONS(2569), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3551), 1, + sym_not_in, + ACTIONS(3513), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3519), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3521), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2696), 3, + anon_sym_COMMA, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(3531), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3533), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3509), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3535), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3517), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3537), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -362079,34 +359627,22 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [178432] = 4, + [175617] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2575), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2529), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2577), 50, - anon_sym_SEMI, + ACTIONS(2531), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -362150,19 +359686,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [178497] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [175682] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2579), 3, + ACTIONS(2711), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2581), 50, + ACTIONS(2713), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362211,20 +359749,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [178562] = 4, + [175747] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2571), 4, + ACTIONS(2715), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2573), 49, + ACTIONS(2717), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362273,19 +359810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [178627] = 4, + [175812] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2575), 4, + ACTIONS(2719), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2577), 49, + ACTIONS(2721), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362334,19 +359871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [178692] = 4, + [175877] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2579), 4, + ACTIONS(2723), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2581), 49, + ACTIONS(2725), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362395,19 +359932,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [178757] = 4, + [175942] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2583), 4, + ACTIONS(2727), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2585), 49, + ACTIONS(2729), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362456,19 +359993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [178822] = 4, + [176007] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2587), 4, + ACTIONS(2731), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2589), 49, + ACTIONS(2733), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362517,18 +360054,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [178887] = 4, + [176072] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2583), 3, + ACTIONS(2735), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2585), 50, + ACTIONS(2737), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362577,23 +360115,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [178952] = 4, + [176137] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2293), 3, - sym_newline_before_do, + ACTIONS(2739), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2295), 49, + ACTIONS(2741), 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_DOT_DOT, anon_sym_PLUS, @@ -362637,20 +360176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [179017] = 4, + [176202] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2587), 3, + ACTIONS(2743), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2589), 50, + ACTIONS(2745), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362699,19 +360237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [179082] = 4, + [176267] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2591), 3, + ACTIONS(2747), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2593), 50, + ACTIONS(2749), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362760,19 +360298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [179147] = 4, + [176332] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2595), 3, + ACTIONS(2751), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2597), 50, + ACTIONS(2753), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362821,19 +360359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [179212] = 4, + [176397] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2599), 3, + ACTIONS(2755), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2601), 50, + ACTIONS(2757), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362882,19 +360420,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [179277] = 4, + [176462] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2603), 3, + ACTIONS(2759), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2605), 50, + ACTIONS(2761), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362943,19 +360481,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [179342] = 4, + [176527] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2607), 3, + ACTIONS(2567), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2609), 50, + ACTIONS(2569), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363004,25 +360542,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [179407] = 4, + [176592] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2423), 3, - sym_newline_before_do, + ACTIONS(2277), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2425), 49, + ACTIONS(2279), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -363065,25 +360603,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [179472] = 4, + [176657] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2169), 4, + ACTIONS(2281), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2171), 49, + ACTIONS(2283), 50, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -363127,24 +360664,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [179537] = 4, + [176722] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2407), 3, - sym_newline_before_do, + ACTIONS(2285), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2409), 49, + ACTIONS(2287), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -363187,25 +360725,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [179602] = 4, + [176787] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2145), 3, - sym_newline_before_do, + ACTIONS(2289), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2147), 49, + ACTIONS(2291), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -363248,25 +360786,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [179667] = 4, + [176852] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2427), 3, - sym_newline_before_do, + ACTIONS(2293), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2429), 49, + ACTIONS(2295), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -363309,19 +360847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [179732] = 4, + [176917] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2611), 3, + ACTIONS(2297), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 50, + ACTIONS(2299), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363370,19 +360908,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [179797] = 4, + [176982] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2747), 3, + ACTIONS(2301), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2749), 50, + ACTIONS(2303), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363431,19 +360969,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [179862] = 4, + [177047] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2617), 3, + ACTIONS(2305), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2619), 50, + ACTIONS(2307), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363492,19 +361030,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [179927] = 4, + [177112] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2621), 3, + ACTIONS(2309), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2623), 50, + ACTIONS(2311), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363553,19 +361091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [179992] = 4, + [177177] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2625), 3, + ACTIONS(2313), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2627), 50, + ACTIONS(2315), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363614,19 +361152,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [180057] = 4, + [177242] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2629), 3, + ACTIONS(2317), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2631), 50, + ACTIONS(2319), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363675,19 +361213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [180122] = 4, + [177307] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2633), 3, + ACTIONS(2321), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2635), 50, + ACTIONS(2323), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363736,20 +361274,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [180187] = 4, + [177372] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2591), 4, + ACTIONS(2325), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2593), 49, + ACTIONS(2327), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363798,19 +361335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [180252] = 4, + [177437] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2595), 4, + ACTIONS(2329), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2597), 49, + ACTIONS(2331), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363859,18 +361396,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [180317] = 4, + [177502] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2637), 3, + ACTIONS(2333), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2639), 50, + ACTIONS(2335), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363919,19 +361457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [180382] = 4, + [177567] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2641), 3, + ACTIONS(2337), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2643), 50, + ACTIONS(2339), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363980,19 +361518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [180447] = 4, + [177632] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2645), 3, + ACTIONS(2341), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2647), 50, + ACTIONS(2343), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -364041,19 +361579,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [180512] = 4, + [177697] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2649), 3, + ACTIONS(2345), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2651), 50, + ACTIONS(2347), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -364102,19 +361640,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [180577] = 4, + [177762] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2653), 3, + ACTIONS(2349), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2655), 50, + ACTIONS(2351), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -364163,19 +361701,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [180642] = 4, + [177827] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2657), 3, + ACTIONS(2353), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2659), 50, + ACTIONS(2355), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -364224,101 +361762,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [180707] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2687), 1, - sym_newline_before_do, - ACTIONS(3463), 1, - anon_sym_PIPE, - ACTIONS(3475), 1, - anon_sym_when, - ACTIONS(3477), 1, - anon_sym_COLON_COLON, - ACTIONS(3479), 1, - anon_sym_EQ_GT, - ACTIONS(3481), 1, - anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_in, - ACTIONS(3493), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3495), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3497), 1, - anon_sym_STAR_STAR, - ACTIONS(3499), 1, - anon_sym_DOT, - ACTIONS(3501), 1, - anon_sym_LBRACK2, - ACTIONS(3503), 1, - sym_not_in, - ACTIONS(3465), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3473), 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(2689), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_do, - ACTIONS(3483), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3485), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3461), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3487), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3469), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3489), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [180814] = 4, + [177892] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2661), 3, + ACTIONS(2357), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2663), 50, + ACTIONS(2359), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -364367,80 +361823,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [180879] = 25, + [177957] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2687), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2361), 3, + sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(3671), 1, + ACTIONS(2363), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3683), 1, - anon_sym_when, - ACTIONS(3685), 1, - anon_sym_COLON_COLON, - ACTIONS(3687), 1, - anon_sym_EQ_GT, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(3699), 1, - anon_sym_in, - ACTIONS(3701), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, - anon_sym_STAR_STAR, - ACTIONS(3707), 1, - sym_not_in, - ACTIONS(3673), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3679), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3681), 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(2689), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(3691), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3693), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3669), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3695), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3677), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3697), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -364450,100 +361873,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [180986] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2751), 1, - sym_newline_before_do, - ACTIONS(3028), 1, - anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_LBRACK2, - ACTIONS(3671), 1, - anon_sym_PIPE, - ACTIONS(3683), 1, - anon_sym_when, - ACTIONS(3685), 1, - anon_sym_COLON_COLON, - ACTIONS(3687), 1, - anon_sym_EQ_GT, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(3699), 1, anon_sym_in, - ACTIONS(3701), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, - anon_sym_STAR_STAR, - ACTIONS(3707), 1, - sym_not_in, - ACTIONS(3673), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3679), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3681), 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(2753), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(3691), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3693), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3669), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3695), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3677), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3697), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [181093] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [178022] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2665), 3, + ACTIONS(2365), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2667), 50, + ACTIONS(2367), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -364592,25 +361945,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [181158] = 4, + [178087] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2173), 4, + ACTIONS(2273), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2175), 49, + ACTIONS(2275), 50, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -364654,18 +362006,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [181223] = 4, + [178152] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2669), 3, + ACTIONS(2369), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2671), 50, + ACTIONS(2371), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -364714,25 +362067,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [181288] = 4, + [178217] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2431), 3, - sym_newline_before_do, + ACTIONS(2373), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2433), 49, + ACTIONS(2375), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -364775,25 +362128,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [181353] = 4, + [178282] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(273), 3, - sym_newline_before_do, + ACTIONS(2377), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(275), 49, + ACTIONS(2379), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -364836,25 +362189,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [181418] = 4, + [178347] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2439), 3, - sym_newline_before_do, + ACTIONS(2381), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2441), 49, + ACTIONS(2383), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -364897,28 +362250,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [181483] = 6, + [178412] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3148), 1, - anon_sym_LPAREN, - STATE(3166), 1, - sym_call_arguments_with_parentheses, - ACTIONS(2145), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2385), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2147), 48, + anon_sym_LBRACK2, + ACTIONS(2387), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -364961,17 +362311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [181552] = 4, + [178477] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 3, + ACTIONS(2389), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2271), 50, + ACTIONS(2391), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -365022,17 +362372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [181617] = 4, + [178542] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 3, + ACTIONS(2393), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2275), 50, + ACTIONS(2395), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -365083,19 +362433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [181682] = 4, + [178607] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2471), 4, + ACTIONS(2397), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2473), 49, + ACTIONS(2399), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -365144,22 +362494,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [181747] = 4, + [178672] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2722), 3, - sym_newline_before_do, + ACTIONS(2401), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2724), 49, + ACTIONS(2403), 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_DOT_DOT, anon_sym_PLUS, @@ -365203,19 +362555,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [181812] = 4, + [178737] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 3, + ACTIONS(2405), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2377), 50, + ACTIONS(2407), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -365266,24 +362616,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [181877] = 4, + [178802] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3769), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 3, + ACTIONS(2701), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2381), 50, + ACTIONS(2703), 48, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -365327,18 +362678,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [181942] = 4, + [178869] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(273), 3, - sym_newline_before_do, + ACTIONS(2559), 2, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(275), 49, + aux_sym_terminator_token1, + ACTIONS(2561), 49, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -365385,27 +362740,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [182007] = 4, + anon_sym_DASH_GT, + [178938] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2533), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2453), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2535), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -365449,79 +362800,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [182072] = 25, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [179003] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2755), 1, - sym_newline_before_do, - ACTIONS(3028), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3030), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(3671), 1, - anon_sym_PIPE, - ACTIONS(3683), 1, - anon_sym_when, - ACTIONS(3685), 1, - anon_sym_COLON_COLON, - ACTIONS(3687), 1, - anon_sym_EQ_GT, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(3699), 1, + ACTIONS(3742), 1, anon_sym_in, - ACTIONS(3701), 1, + ACTIONS(3744), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3703), 1, + ACTIONS(3746), 1, anon_sym_SLASH_SLASH, - ACTIONS(3705), 1, + ACTIONS(3748), 1, anon_sym_STAR_STAR, - ACTIONS(3707), 1, + ACTIONS(3750), 1, sym_not_in, - ACTIONS(3673), 2, + ACTIONS(3771), 1, + anon_sym_PIPE, + ACTIONS(3775), 1, + anon_sym_when, + ACTIONS(3777), 1, + anon_sym_COLON_COLON, + ACTIONS(3779), 1, + anon_sym_EQ_GT, + ACTIONS(3781), 1, + anon_sym_EQ, + ACTIONS(3734), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3679), 2, + ACTIONS(3738), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3681), 2, + ACTIONS(3773), 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(2757), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(3691), 3, + ACTIONS(3783), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3693), 3, + ACTIONS(3785), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3669), 4, + ACTIONS(2765), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3732), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3695), 5, + ACTIONS(3787), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3677), 6, + ACTIONS(3736), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3697), 9, + ACTIONS(3740), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -365531,25 +362883,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [182179] = 4, + [179108] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2661), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2457), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2664), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -365592,23 +362943,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [182244] = 4, + anon_sym_do, + [179173] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1825), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1827), 50, - anon_sym_RPAREN, + ACTIONS(2537), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2539), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -365651,20 +363002,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [182309] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [179238] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1833), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2747), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(1835), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2749), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -365712,26 +363065,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [182374] = 4, + [179303] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1837), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1839), 50, - anon_sym_RPAREN, + ACTIONS(2559), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2561), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -365773,25 +363125,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [182439] = 4, + anon_sym_do, + [179368] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(1841), 2, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(2259), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1843), 50, + ACTIONS(2261), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -365836,26 +363189,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [182504] = 4, + [179435] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2683), 3, - sym_newline_before_do, + ACTIONS(2595), 2, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2685), 49, + aux_sym_terminator_token1, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 36, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -365885,35 +363257,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [182569] = 4, + anon_sym_DASH_GT, + [179516] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(1845), 2, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(2201), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1847), 50, + ACTIONS(2203), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -365958,27 +363320,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [182634] = 4, + [179583] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(1849), 2, - sym_not_in, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1851), 50, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 26, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -365998,39 +363391,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + [179670] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2837), 1, + anon_sym_PIPE, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, anon_sym_in, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2858), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2860), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(2597), 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, - anon_sym_DOT, - [182699] = 4, + ACTIONS(2864), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [179771] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2694), 3, - sym_newline_before_do, + ACTIONS(2595), 2, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2696), 49, + aux_sym_terminator_token1, + ACTIONS(2597), 48, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -366076,30 +363534,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [182764] = 4, + anon_sym_DASH_GT, + [179842] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2698), 3, - sym_newline_before_do, + ACTIONS(2595), 2, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2700), 49, + aux_sym_terminator_token1, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 38, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -366131,32 +363601,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [182829] = 4, + anon_sym_DASH_GT, + [179919] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2702), 3, - sym_newline_before_do, + ACTIONS(2595), 2, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2704), 49, + aux_sym_terminator_token1, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2597), 46, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -366197,50 +363666,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [182894] = 4, + anon_sym_DASH_GT, + [179992] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2706), 3, - sym_newline_before_do, - sym_not_in, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(2708), 49, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2837), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + ACTIONS(2852), 1, anon_sym_COLON_COLON, + ACTIONS(2854), 1, anon_sym_EQ_GT, + ACTIONS(2856), 1, anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(3755), 1, + anon_sym_when, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2597), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -366250,91 +363748,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [180097] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2837), 1, + anon_sym_PIPE, + ACTIONS(2852), 1, + anon_sym_COLON_COLON, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, anon_sym_in, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(3755), 1, + anon_sym_when, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2858), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2860), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2597), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [182959] = 24, + ACTIONS(2864), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [180202] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(2157), 1, anon_sym_LBRACK2, - ACTIONS(3758), 1, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2837), 1, anon_sym_PIPE, - ACTIONS(3768), 1, - anon_sym_when, - ACTIONS(3770), 1, + ACTIONS(2852), 1, anon_sym_COLON_COLON, - ACTIONS(3772), 1, + ACTIONS(2854), 1, anon_sym_EQ_GT, - ACTIONS(3774), 1, + ACTIONS(2856), 1, anon_sym_EQ, - ACTIONS(3784), 1, + ACTIONS(2866), 1, anon_sym_in, - ACTIONS(3786), 1, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, + ACTIONS(2872), 1, anon_sym_STAR_STAR, - ACTIONS(3792), 1, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, sym_not_in, - ACTIONS(3760), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3764), 2, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3766), 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(3776), 3, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3778), 3, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2757), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3756), 4, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3780), 5, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3762), 6, + ACTIONS(2843), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3782), 9, + ACTIONS(2597), 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(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -366344,45 +363909,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [183064] = 4, + [180305] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2183), 3, - sym_newline_before_do, + ACTIONS(2854), 1, + anon_sym_EQ_GT, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2185), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -366392,58 +363987,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [180404] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2856), 1, + anon_sym_EQ, + ACTIONS(2866), 1, anon_sym_in, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2872), 1, anon_sym_STAR_STAR, + ACTIONS(2874), 1, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [183129] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2189), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2191), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2839), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2845), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2858), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2860), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -366453,40 +364053,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [180501] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2866), 1, anon_sym_in, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2872), 1, anon_sym_STAR_STAR, + ACTIONS(2874), 1, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [183194] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(2876), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2271), 50, - anon_sym_SEMI, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2860), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2835), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 14, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -366496,16 +364138,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + anon_sym_DASH_GT, + [180594] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2862), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2864), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -366515,39 +364195,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [180685] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2866), 1, anon_sym_in, + ACTIONS(2868), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2835), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [183259] = 4, + ACTIONS(2864), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [180774] = 14, ACTIONS(5), 1, sym_comment, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2866), 1, + anon_sym_in, + ACTIONS(2868), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2870), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_STAR_STAR, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2273), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2275), 50, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -366576,39 +364356,44 @@ 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_DASH_GT, + [180859] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2872), 1, anon_sym_STAR_STAR, + ACTIONS(2874), 1, anon_sym_DOT, - anon_sym_end, - [183324] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 3, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2377), 50, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 37, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -366639,39 +364424,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + [180938] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2870), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2872), 1, anon_sym_STAR_STAR, + ACTIONS(2874), 1, anon_sym_DOT, - anon_sym_end, - [183389] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3800), 1, - anon_sym_COMMA, - STATE(3993), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2730), 3, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2732), 48, + ACTIONS(2839), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2845), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2843), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 37, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -366702,36 +364492,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [183458] = 6, + anon_sym_DASH_GT, + [181017] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3800), 1, - anon_sym_COMMA, - STATE(3994), 1, - aux_sym_keywords_repeat1, + ACTIONS(2157), 1, + anon_sym_LBRACK2, + ACTIONS(2874), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2736), 3, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2738), 48, + ACTIONS(2597), 49, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -366773,28 +364555,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [183527] = 6, + anon_sym_DASH_GT, + [181086] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3802), 1, - anon_sym_COMMA, - STATE(3994), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 3, + ACTIONS(2751), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 48, + ACTIONS(2753), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -366837,47 +364617,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [183596] = 4, + [181151] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2379), 3, - sym_not_in, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2381), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2763), 1, + sym_newline_before_do, + ACTIONS(3511), 1, anon_sym_PIPE, + ACTIONS(3523), 1, + anon_sym_when, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3527), 1, + anon_sym_EQ_GT, + ACTIONS(3529), 1, + anon_sym_EQ, + ACTIONS(3539), 1, + anon_sym_in, + ACTIONS(3541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3545), 1, + anon_sym_STAR_STAR, + ACTIONS(3547), 1, + anon_sym_DOT, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + ACTIONS(3551), 1, + sym_not_in, + ACTIONS(3513), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3519), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3521), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2765), 3, + anon_sym_COMMA, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(3531), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3533), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3509), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3535), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3517), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3537), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -366887,35 +364699,24 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [183661] = 4, + [181258] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 3, + ACTIONS(2179), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2453), 50, + ACTIONS(2181), 49, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -366959,25 +364760,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [183726] = 4, + [181323] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2493), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2457), 50, - anon_sym_SEMI, + ACTIONS(2495), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367020,19 +364820,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [183791] = 4, + anon_sym_do, + [181388] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2714), 3, + ACTIONS(2549), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2716), 49, + ACTIONS(2551), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -367082,25 +364882,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [183856] = 4, + [181453] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 5, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, + ACTIONS(2617), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(1847), 48, - anon_sym_SEMI, + ACTIONS(2619), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367143,20 +364942,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [183921] = 4, + anon_sym_do, + [181518] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 5, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - aux_sym_quoted_keyword_token1, + ACTIONS(2221), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(1851), 48, - anon_sym_SEMI, + ACTIONS(2223), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -367204,99 +365002,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [183986] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3758), 1, - anon_sym_PIPE, - ACTIONS(3768), 1, - anon_sym_when, - ACTIONS(3770), 1, - anon_sym_COLON_COLON, - ACTIONS(3772), 1, - anon_sym_EQ_GT, - ACTIONS(3774), 1, - anon_sym_EQ, - ACTIONS(3784), 1, - anon_sym_in, - ACTIONS(3786), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3792), 1, - sym_not_in, - ACTIONS(3760), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3766), 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(3776), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3778), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2689), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3756), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3780), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3782), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [184091] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [181583] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2718), 3, + ACTIONS(2559), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2720), 49, + ACTIONS(2561), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -367346,24 +365065,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [184156] = 4, + [181648] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2367), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2559), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2369), 49, - anon_sym_SEMI, + ACTIONS(2561), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -367407,24 +365124,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [184221] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [181713] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3547), 1, + anon_sym_DOT, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + ACTIONS(2559), 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(2694), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2696), 49, + ACTIONS(2561), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367466,26 +365187,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [184286] = 4, + anon_sym_DOT_DOT_DOT_GT, + [181782] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2495), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2559), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2497), 49, - anon_sym_SEMI, + ACTIONS(2561), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -367529,18 +365248,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [184351] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [181847] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2145), 3, + ACTIONS(2563), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2147), 49, + ACTIONS(2565), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -367590,23 +365311,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [184416] = 4, + [181912] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3762), 1, + anon_sym_COMMA, + STATE(3793), 1, + aux_sym_keywords_repeat1, + ACTIONS(2685), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2743), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2745), 49, + ACTIONS(2687), 48, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367648,26 +365372,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [184481] = 4, + [181981] = 26, ACTIONS(5), 1, sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3742), 1, + anon_sym_in, + ACTIONS(3744), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3746), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3748), 1, + anon_sym_STAR_STAR, + ACTIONS(3750), 1, + sym_not_in, + ACTIONS(3771), 1, + anon_sym_PIPE, + ACTIONS(3775), 1, + anon_sym_when, + ACTIONS(3777), 1, + anon_sym_COLON_COLON, + ACTIONS(3779), 1, + anon_sym_EQ_GT, + ACTIONS(3781), 1, + anon_sym_EQ, + ACTIONS(3791), 1, + anon_sym_COMMA, + STATE(6397), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3773), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3789), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2673), 3, - sym_newline_before_do, + ACTIONS(3783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3732), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3740), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [182090] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3793), 1, + anon_sym_COMMA, + STATE(3968), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2707), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2675), 49, + ACTIONS(2709), 48, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367710,26 +365520,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [184546] = 5, + [182159] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(2183), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2281), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2185), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2283), 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_DOT_DOT, anon_sym_PLUS, @@ -367772,29 +365580,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [184613] = 6, + [182224] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_COMMA, - STATE(4018), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2730), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2645), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2732), 48, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2647), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367837,25 +365640,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [184682] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [182289] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2371), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2161), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2373), 49, - anon_sym_SEMI, + ACTIONS(2163), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367898,26 +365702,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [184747] = 6, + anon_sym_do, + [182354] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3738), 1, - anon_sym_COMMA, - STATE(3549), 1, - aux_sym_keywords_repeat1, - ACTIONS(2730), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2183), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2732), 48, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2185), 49, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367959,26 +365763,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [184816] = 4, + [182419] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2447), 4, + ACTIONS(2233), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2449), 49, + ACTIONS(2235), 49, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -368022,18 +365825,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [184881] = 4, + [182484] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2743), 3, + ACTIONS(2509), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2745), 49, + ACTIONS(2511), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -368083,25 +365886,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [184946] = 4, + [182549] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2571), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2573), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [182614] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3793), 1, + anon_sym_COMMA, + STATE(3521), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 3, + ACTIONS(2685), 3, sym_not_in, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1827), 50, + ACTIONS(2687), 48, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368144,19 +366010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [185011] = 4, + [182683] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 3, + ACTIONS(2735), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1835), 50, + ACTIONS(2737), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -368205,18 +366071,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [185076] = 4, + [182748] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2722), 3, + ACTIONS(2505), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2724), 49, + ACTIONS(2507), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -368266,27 +366132,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [185141] = 6, + [182813] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_COMMA, - STATE(4031), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2736), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2541), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2738), 48, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2543), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368329,24 +366192,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [185210] = 4, + anon_sym_do, + [182878] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2595), 1, + sym_newline_before_do, + ACTIONS(3511), 1, + anon_sym_PIPE, + ACTIONS(3527), 1, + anon_sym_EQ_GT, + ACTIONS(3529), 1, + anon_sym_EQ, + ACTIONS(3539), 1, + anon_sym_in, + ACTIONS(3541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3545), 1, + anon_sym_STAR_STAR, + ACTIONS(3547), 1, + anon_sym_DOT, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + ACTIONS(3551), 1, + sym_not_in, + ACTIONS(3513), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3519), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3509), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3517), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 7, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(3537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [182979] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2661), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(1839), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2664), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -368390,24 +366331,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [185275] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [183044] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 3, + ACTIONS(2259), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1843), 50, + ACTIONS(2261), 48, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -368451,24 +366395,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [185340] = 4, + [183111] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 4, + ACTIONS(2201), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1847), 49, + ACTIONS(2203), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -368512,25 +366457,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [185405] = 4, + [183178] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2413), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(1851), 49, - anon_sym_SEMI, + ACTIONS(2415), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368573,24 +366517,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [185470] = 4, + anon_sym_do, + [183243] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 3, + aux_sym_terminator_token1, + ACTIONS(2417), 3, + sym_newline_before_do, sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2419), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [183308] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, + ACTIONS(2575), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(1847), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2577), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -368634,24 +366638,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [185535] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [183373] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 3, + ACTIONS(2197), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1851), 50, + ACTIONS(2199), 49, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -368695,76 +366701,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [185600] = 22, + [183438] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_newline_before_do, - ACTIONS(3411), 1, + ACTIONS(3511), 1, anon_sym_PIPE, - ACTIONS(3427), 1, + ACTIONS(3523), 1, + anon_sym_when, + ACTIONS(3525), 1, + anon_sym_COLON_COLON, + ACTIONS(3527), 1, anon_sym_EQ_GT, - ACTIONS(3429), 1, + ACTIONS(3529), 1, anon_sym_EQ, - ACTIONS(3439), 1, + ACTIONS(3539), 1, anon_sym_in, - ACTIONS(3441), 1, + ACTIONS(3541), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, + ACTIONS(3543), 1, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, + ACTIONS(3545), 1, anon_sym_STAR_STAR, - ACTIONS(3447), 1, + ACTIONS(3547), 1, anon_sym_DOT, - ACTIONS(3449), 1, + ACTIONS(3549), 1, anon_sym_LBRACK2, - ACTIONS(3451), 1, + ACTIONS(3551), 1, sym_not_in, - ACTIONS(3413), 2, + ACTIONS(3513), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3419), 2, + ACTIONS(3519), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3431), 3, + ACTIONS(3531), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3433), 3, + ACTIONS(3533), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3409), 4, + ACTIONS(3509), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3435), 5, + ACTIONS(2597), 5, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(3535), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3417), 6, + ACTIONS(3517), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 7, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(3437), 9, + ACTIONS(3537), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -368774,78 +366782,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [185701] = 24, + [183543] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_newline_before_do, - ACTIONS(3411), 1, + ACTIONS(3511), 1, anon_sym_PIPE, - ACTIONS(3423), 1, + ACTIONS(3523), 1, anon_sym_when, - ACTIONS(3425), 1, + ACTIONS(3525), 1, anon_sym_COLON_COLON, - ACTIONS(3427), 1, + ACTIONS(3527), 1, anon_sym_EQ_GT, - ACTIONS(3429), 1, + ACTIONS(3529), 1, anon_sym_EQ, - ACTIONS(3439), 1, + ACTIONS(3539), 1, anon_sym_in, - ACTIONS(3441), 1, + ACTIONS(3541), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, + ACTIONS(3543), 1, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, + ACTIONS(3545), 1, anon_sym_STAR_STAR, - ACTIONS(3447), 1, + ACTIONS(3547), 1, anon_sym_DOT, - ACTIONS(3449), 1, + ACTIONS(3549), 1, anon_sym_LBRACK2, - ACTIONS(3451), 1, + ACTIONS(3551), 1, sym_not_in, - ACTIONS(3413), 2, + ACTIONS(3513), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3419), 2, + ACTIONS(3519), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3431), 3, + ACTIONS(3531), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3433), 3, + ACTIONS(3533), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3409), 4, + ACTIONS(3509), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2409), 5, + ACTIONS(2597), 5, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - ACTIONS(3435), 5, + ACTIONS(3535), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3417), 6, + ACTIONS(3517), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3437), 9, + ACTIONS(3537), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -368855,78 +366863,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [185806] = 24, + [183648] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_newline_before_do, - ACTIONS(3411), 1, + ACTIONS(3511), 1, anon_sym_PIPE, - ACTIONS(3423), 1, - anon_sym_when, - ACTIONS(3425), 1, + ACTIONS(3525), 1, anon_sym_COLON_COLON, - ACTIONS(3427), 1, + ACTIONS(3527), 1, anon_sym_EQ_GT, - ACTIONS(3429), 1, + ACTIONS(3529), 1, anon_sym_EQ, - ACTIONS(3439), 1, + ACTIONS(3539), 1, anon_sym_in, - ACTIONS(3441), 1, + ACTIONS(3541), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, + ACTIONS(3543), 1, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, + ACTIONS(3545), 1, anon_sym_STAR_STAR, - ACTIONS(3447), 1, + ACTIONS(3547), 1, anon_sym_DOT, - ACTIONS(3449), 1, + ACTIONS(3549), 1, anon_sym_LBRACK2, - ACTIONS(3451), 1, + ACTIONS(3551), 1, sym_not_in, - ACTIONS(3413), 2, + ACTIONS(3513), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3419), 2, + ACTIONS(3519), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3431), 3, + ACTIONS(3531), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3433), 3, + ACTIONS(3533), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3409), 4, + ACTIONS(3509), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(3435), 5, + ACTIONS(3535), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3417), 6, + ACTIONS(2597), 6, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(3517), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3437), 9, + ACTIONS(3537), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -368936,77 +366943,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [185911] = 23, + [183751] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2694), 1, sym_newline_before_do, - ACTIONS(3411), 1, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3669), 1, anon_sym_PIPE, - ACTIONS(3425), 1, + ACTIONS(3681), 1, + anon_sym_when, + ACTIONS(3683), 1, anon_sym_COLON_COLON, - ACTIONS(3427), 1, + ACTIONS(3685), 1, anon_sym_EQ_GT, - ACTIONS(3429), 1, + ACTIONS(3687), 1, anon_sym_EQ, - ACTIONS(3439), 1, + ACTIONS(3697), 1, anon_sym_in, - ACTIONS(3441), 1, + ACTIONS(3699), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, + ACTIONS(3701), 1, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, + ACTIONS(3703), 1, anon_sym_STAR_STAR, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(3451), 1, + ACTIONS(3705), 1, sym_not_in, - ACTIONS(3413), 2, + ACTIONS(3671), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3419), 2, + ACTIONS(3677), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3679), 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(3431), 3, + ACTIONS(2696), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3689), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3433), 3, + ACTIONS(3691), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3409), 4, + ACTIONS(3667), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3435), 5, + ACTIONS(3693), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(3417), 6, + ACTIONS(3675), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3437), 9, + ACTIONS(3695), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -369016,107 +367025,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [186014] = 4, + [183858] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2599), 4, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, + ACTIONS(2763), 1, + sym_newline_before_do, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, anon_sym_LBRACK2, - ACTIONS(2601), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3669), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3681), 1, anon_sym_when, + ACTIONS(3683), 1, anon_sym_COLON_COLON, + ACTIONS(3685), 1, anon_sym_EQ_GT, + ACTIONS(3687), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3697), 1, anon_sym_in, + ACTIONS(3699), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3701), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3703), 1, anon_sym_STAR_STAR, - anon_sym_DOT, - [186079] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2683), 3, - sym_newline_before_do, + ACTIONS(3705), 1, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2685), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3671), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3677), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3679), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2765), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3689), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3691), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3667), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3693), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3675), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3695), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -369126,39 +367107,24 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [186144] = 6, + [183965] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3807), 1, - anon_sym_COMMA, - STATE(4031), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2259), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2353), 48, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2261), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -369201,18 +367167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [186213] = 4, + anon_sym_do, + [184030] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2277), 3, + ACTIONS(2579), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2279), 49, + ACTIONS(2581), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -369262,18 +367229,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [186278] = 4, + [184095] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2281), 3, - sym_newline_before_do, + ACTIONS(2217), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2283), 49, + ACTIONS(2219), 49, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -369321,20 +367290,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [186343] = 4, + [184160] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2285), 3, + ACTIONS(2583), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2287), 49, + ACTIONS(2585), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -369384,20 +367351,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [186408] = 4, + [184225] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2201), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2587), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2203), 49, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2589), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -369445,18 +367410,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [186473] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [184290] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2289), 3, + ACTIONS(2591), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2291), 49, + ACTIONS(2593), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -369506,79 +367473,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_DOT_DOT_DOT_GT, - [186538] = 25, + [184355] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(2767), 1, sym_newline_before_do, - ACTIONS(3411), 1, + ACTIONS(2994), 1, + anon_sym_DOT, + ACTIONS(2996), 1, + anon_sym_LBRACK2, + ACTIONS(3669), 1, anon_sym_PIPE, - ACTIONS(3423), 1, + ACTIONS(3681), 1, anon_sym_when, - ACTIONS(3425), 1, + ACTIONS(3683), 1, anon_sym_COLON_COLON, - ACTIONS(3427), 1, + ACTIONS(3685), 1, anon_sym_EQ_GT, - ACTIONS(3429), 1, + ACTIONS(3687), 1, anon_sym_EQ, - ACTIONS(3439), 1, + ACTIONS(3697), 1, anon_sym_in, - ACTIONS(3441), 1, + ACTIONS(3699), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3443), 1, + ACTIONS(3701), 1, anon_sym_SLASH_SLASH, - ACTIONS(3445), 1, + ACTIONS(3703), 1, anon_sym_STAR_STAR, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(3451), 1, + ACTIONS(3705), 1, sym_not_in, - ACTIONS(3413), 2, + ACTIONS(3671), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3419), 2, + ACTIONS(3677), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3421), 2, + ACTIONS(3679), 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(2757), 3, + ACTIONS(2769), 3, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(3431), 3, + ACTIONS(3689), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3433), 3, + ACTIONS(3691), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3409), 4, + ACTIONS(3667), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3435), 5, + ACTIONS(3693), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3417), 6, + ACTIONS(3675), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3437), 9, + ACTIONS(3695), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -369588,18 +367555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [186645] = 4, + [184462] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2183), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2289), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2291), 49, + ACTIONS(2185), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -369646,24 +367614,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [186710] = 6, + [184527] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_LBRACK2, - ACTIONS(2289), 2, - sym_newline_before_do, + ACTIONS(2197), 2, sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2291), 48, + ACTIONS(2199), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -369710,25 +367675,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [186779] = 4, + anon_sym_DASH_GT, + anon_sym_DOT, + [184592] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3795), 1, + anon_sym_COMMA, + STATE(3995), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2289), 3, - sym_newline_before_do, + ACTIONS(2685), 3, sym_not_in, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 49, + ACTIONS(2687), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -369771,26 +367739,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [186844] = 4, + anon_sym_end, + [184661] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2247), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3797), 1, + anon_sym_COMMA, + STATE(3995), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2601), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2249), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2603), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -369832,26 +367801,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [186909] = 4, + anon_sym_end, + [184730] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2710), 3, + ACTIONS(2595), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2712), 49, + ACTIONS(2597), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -369895,46 +367863,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [186974] = 12, + anon_sym_DOT_DOT_DOT_GT, + [184795] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3786), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3760), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(1845), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(1847), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -369964,172 +367915,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - [187055] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3784), 1, - anon_sym_in, - ACTIONS(3786), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3792), 1, - sym_not_in, - ACTIONS(3760), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3782), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [187140] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3758), 1, - anon_sym_PIPE, - ACTIONS(3772), 1, - anon_sym_EQ_GT, - ACTIONS(3774), 1, - anon_sym_EQ, - ACTIONS(3784), 1, - anon_sym_in, - ACTIONS(3786), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3792), 1, - sym_not_in, - ACTIONS(3760), 2, - anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3764), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3776), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3778), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3756), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3780), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3782), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [187239] = 4, + anon_sym_STAR_STAR, + anon_sym_DOT, + [184860] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1825), 3, + ACTIONS(1853), 4, sym_not_in, - aux_sym_quoted_keyword_token1, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1827), 49, - anon_sym_RPAREN, + ACTIONS(1855), 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_DOT_DOT, anon_sym_PLUS, @@ -370172,31 +367985,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [187304] = 7, + [184925] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2413), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 48, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2415), 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_DOT_DOT, anon_sym_PLUS, @@ -370238,23 +368045,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - [187375] = 4, + anon_sym_STAR_STAR, + anon_sym_DOT, + [184990] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1833), 3, + ACTIONS(2417), 4, sym_not_in, - aux_sym_quoted_keyword_token1, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1835), 49, - anon_sym_RPAREN, + ACTIONS(2419), 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_DOT_DOT, anon_sym_PLUS, @@ -370297,101 +368107,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [187440] = 10, + [185055] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3760), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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, - [187517] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, + ACTIONS(2517), 3, + sym_newline_before_do, sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, anon_sym_LBRACK2, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3760), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2409), 46, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2519), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -370431,77 +368165,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - [187590] = 23, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [185120] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(3758), 1, - anon_sym_PIPE, - ACTIONS(3768), 1, - anon_sym_when, - ACTIONS(3770), 1, - anon_sym_COLON_COLON, - ACTIONS(3772), 1, - anon_sym_EQ_GT, - ACTIONS(3774), 1, - anon_sym_EQ, - ACTIONS(3784), 1, + ACTIONS(3742), 1, anon_sym_in, - ACTIONS(3786), 1, + ACTIONS(3744), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, + ACTIONS(3746), 1, anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, + ACTIONS(3748), 1, anon_sym_STAR_STAR, - ACTIONS(3792), 1, + ACTIONS(3750), 1, sym_not_in, - ACTIONS(3760), 2, + ACTIONS(3771), 1, + anon_sym_PIPE, + ACTIONS(3775), 1, + anon_sym_when, + ACTIONS(3777), 1, + anon_sym_COLON_COLON, + ACTIONS(3779), 1, + anon_sym_EQ_GT, + ACTIONS(3781), 1, + anon_sym_EQ, + ACTIONS(3734), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3764), 2, + ACTIONS(3738), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3773), 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(3776), 3, + ACTIONS(3783), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3778), 3, + ACTIONS(3785), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3756), 4, + ACTIONS(2769), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3732), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3780), 5, + ACTIONS(3787), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3762), 6, + ACTIONS(3736), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3782), 9, + ACTIONS(3740), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -370511,77 +368250,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [187693] = 23, + [185225] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2521), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3758), 1, + ACTIONS(2523), 49, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3768), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3770), 1, anon_sym_COLON_COLON, - ACTIONS(3772), 1, anon_sym_EQ_GT, - ACTIONS(3774), 1, anon_sym_EQ, - ACTIONS(3784), 1, - anon_sym_in, - ACTIONS(3786), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3792), 1, - sym_not_in, - ACTIONS(3760), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3776), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3778), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3756), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3780), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3782), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -370591,23 +368299,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [187796] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [185290] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2341), 3, + ACTIONS(2525), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2343), 49, + ACTIONS(2527), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -370651,77 +368372,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [187861] = 22, + [185355] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(1861), 5, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3758), 1, + ACTIONS(1863), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3770), 1, - anon_sym_COLON_COLON, - ACTIONS(3772), 1, - anon_sym_EQ_GT, - ACTIONS(3774), 1, - anon_sym_EQ, - ACTIONS(3784), 1, - anon_sym_in, - ACTIONS(3786), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3792), 1, - sym_not_in, - ACTIONS(3760), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3776), 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(3778), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3756), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3780), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3782), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -370731,139 +368422,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [187962] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3772), 1, - anon_sym_EQ_GT, - ACTIONS(3774), 1, - anon_sym_EQ, - ACTIONS(3784), 1, anon_sym_in, - ACTIONS(3786), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3792), 1, - sym_not_in, - ACTIONS(3760), 2, - anon_sym_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, anon_sym_STAR, - ACTIONS(3764), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + anon_sym_STAR_STAR, + anon_sym_DOT, + [185420] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(1865), 5, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3776), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3778), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3756), 4, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1867), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3780), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(3782), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [188059] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3774), 1, + anon_sym_EQ_GT, anon_sym_EQ, - ACTIONS(3784), 1, - anon_sym_in, - ACTIONS(3786), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3792), 1, - sym_not_in, - ACTIONS(3760), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3776), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3778), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3756), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3780), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3782), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -370873,137 +368483,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [188154] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3784), 1, anon_sym_in, - ACTIONS(3786), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3792), 1, - sym_not_in, - ACTIONS(3760), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3778), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3756), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3780), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3782), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [188245] = 16, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [185485] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(3784), 1, + ACTIONS(3742), 1, anon_sym_in, - ACTIONS(3786), 1, + ACTIONS(3744), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, + ACTIONS(3746), 1, anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, + ACTIONS(3748), 1, anon_sym_STAR_STAR, - ACTIONS(3792), 1, + ACTIONS(3750), 1, sym_not_in, - ACTIONS(3760), 2, + ACTIONS(3771), 1, + anon_sym_PIPE, + ACTIONS(3775), 1, + anon_sym_when, + ACTIONS(3777), 1, + anon_sym_COLON_COLON, + ACTIONS(3779), 1, + anon_sym_EQ_GT, + ACTIONS(3781), 1, + anon_sym_EQ, + ACTIONS(3734), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3764), 2, + ACTIONS(3738), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3773), 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(3756), 4, + ACTIONS(3783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2696), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3732), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3780), 5, + ACTIONS(3787), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3762), 6, + ACTIONS(3736), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3782), 9, + ACTIONS(3740), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -371013,138 +368575,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [188334] = 15, + [185590] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3784), 1, - anon_sym_in, - ACTIONS(3786), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3792), 1, - sym_not_in, - ACTIONS(3760), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2711), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3756), 4, + anon_sym_LBRACK2, + ACTIONS(2713), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3782), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [188421] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3784), 1, - anon_sym_in, - ACTIONS(3786), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3792), 1, - sym_not_in, - ACTIONS(3760), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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, @@ -371173,44 +368625,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [188504] = 11, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [185655] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2217), 2, sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, anon_sym_LBRACK2, - ACTIONS(3788), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3760), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 37, + ACTIONS(2219), 50, + anon_sym_LPAREN, 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -371241,44 +368687,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [188583] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3788), 1, anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, - anon_sym_STAR_STAR, - ACTIONS(3760), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3764), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3762), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 37, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [185720] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2599), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(1873), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -371309,23 +368748,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [188662] = 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [185785] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2345), 3, + ACTIONS(2601), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2347), 49, + ACTIONS(2603), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -371369,20 +368819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [188727] = 5, + [185850] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(2189), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2191), 49, + ACTIONS(1861), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1863), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -371432,24 +368880,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [188794] = 4, + [185915] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2415), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2417), 49, - anon_sym_SEMI, + ACTIONS(2597), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -371493,24 +368939,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [188859] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [185980] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2499), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(1865), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2501), 49, - anon_sym_SEMI, + ACTIONS(1867), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -371553,25 +369000,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [188924] = 4, + [186045] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1825), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2529), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(1827), 50, - anon_sym_SEMI, + ACTIONS(2531), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -371614,19 +369062,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [188989] = 4, + anon_sym_do, + [186110] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2711), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1833), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1835), 50, - anon_sym_SEMI, + ACTIONS(2713), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -371674,21 +369122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [189054] = 4, + [186175] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2715), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2419), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2421), 49, - anon_sym_SEMI, + ACTIONS(2717), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -371736,20 +369183,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [189119] = 4, + [186240] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2719), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2453), 49, - anon_sym_SEMI, + ACTIONS(2721), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -371797,25 +369244,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [189184] = 4, + [186305] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2723), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2205), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2207), 49, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2725), 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_DOT_DOT, anon_sym_PLUS, @@ -371858,24 +369305,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [189249] = 4, + [186370] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3547), 1, + anon_sym_DOT, + ACTIONS(3549), 1, + anon_sym_LBRACK2, + ACTIONS(2595), 2, + sym_newline_before_do, + sym_not_in, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1837), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2597), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [186439] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2605), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(1839), 50, - anon_sym_SEMI, + ACTIONS(2607), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -371919,19 +369429,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [189314] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [186504] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2727), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1841), 3, - sym_not_in, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1843), 50, - anon_sym_SEMI, + ACTIONS(2729), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -371979,21 +369490,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [189379] = 4, + [186569] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2731), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2457), 49, - anon_sym_SEMI, + ACTIONS(2733), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -372041,24 +369551,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [189444] = 4, + [186634] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1845), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2609), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(1847), 50, - anon_sym_SEMI, + ACTIONS(2611), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -372102,24 +369612,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [189509] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [186699] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1849), 3, - sym_not_in, aux_sym_terminator_token1, + ACTIONS(2595), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(1851), 50, - anon_sym_SEMI, + ACTIONS(2597), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -372163,19 +369673,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [189574] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [186764] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2603), 4, + ACTIONS(2715), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2605), 49, + ACTIONS(2717), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -372225,24 +369736,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [189639] = 4, + [186829] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2435), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, + ACTIONS(2613), 3, + sym_newline_before_do, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(2437), 49, - anon_sym_SEMI, + ACTIONS(2615), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -372286,20 +369795,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [189704] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [186894] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2179), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2253), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2255), 49, - anon_sym_SEMI, + ACTIONS(2181), 50, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -372346,23 +369856,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [189769] = 4, + [186959] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2355), 3, + ACTIONS(2617), 3, sym_newline_before_do, sym_not_in, anon_sym_LBRACK2, - ACTIONS(2357), 49, + ACTIONS(2619), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [187024] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2735), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2737), 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_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [187089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2739), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2741), 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_DOT_DOT, anon_sym_PLUS, @@ -372405,27 +370039,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [189834] = 4, + [187154] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2743), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2673), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2675), 49, + ACTIONS(2745), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -372467,26 +370100,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [189899] = 4, + [187219] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2747), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2698), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2700), 49, + ACTIONS(2749), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -372528,26 +370161,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [189964] = 4, + [187284] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2751), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2183), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2185), 49, + ACTIONS(2753), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -372589,21 +370222,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [190029] = 4, + [187349] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2755), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2607), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2609), 49, - anon_sym_SEMI, + ACTIONS(2757), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -372651,23 +370283,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [190094] = 4, + [187414] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2759), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2217), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2219), 49, + ACTIONS(2761), 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_DOT_DOT, anon_sym_PLUS, @@ -372710,28 +370344,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [190159] = 5, + [187479] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, + ACTIONS(2567), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2183), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2185), 48, - anon_sym_SEMI, + ACTIONS(2569), 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_DOT_DOT, anon_sym_PLUS, @@ -372774,23 +370405,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [190226] = 4, + [187544] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2277), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2359), 3, - sym_newline_before_do, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(2361), 49, + ACTIONS(2279), 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_DOT_DOT, anon_sym_PLUS, @@ -372833,31 +370466,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - anon_sym_DOT_DOT_DOT_GT, - [190291] = 4, + [187609] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3744), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3746), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3748), 1, + anon_sym_STAR_STAR, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2443), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2445), 49, - anon_sym_SEMI, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 36, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -372887,52 +370537,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [190356] = 15, + [187690] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(2141), 1, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2913), 1, + ACTIONS(3742), 1, anon_sym_in, - ACTIONS(2915), 1, + ACTIONS(3744), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2917), 1, + ACTIONS(3746), 1, anon_sym_SLASH_SLASH, - ACTIONS(2919), 1, + ACTIONS(3748), 1, anon_sym_STAR_STAR, - ACTIONS(2921), 1, - anon_sym_DOT, - ACTIONS(2923), 1, + ACTIONS(3750), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2886), 2, + ACTIONS(3734), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2892), 2, + ACTIONS(3738), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2890), 6, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3736), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2911), 9, + ACTIONS(3740), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -372942,9 +370581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 26, - anon_sym_SEMI, + ACTIONS(2597), 26, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -372968,48 +370608,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DASH_GT, - [190443] = 5, + [187775] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(2183), 2, - sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2185), 48, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3742), 1, + anon_sym_in, + ACTIONS(3744), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3746), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3748), 1, + anon_sym_STAR_STAR, + ACTIONS(3750), 1, + sym_not_in, + ACTIONS(3771), 1, anon_sym_PIPE, + ACTIONS(3779), 1, + anon_sym_EQ_GT, + ACTIONS(3781), 1, + anon_sym_EQ, + ACTIONS(3734), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3738), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3783), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3785), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3732), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3787), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3740), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -373019,36 +370686,24 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [190509] = 6, + [187874] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3810), 1, - anon_sym_COMMA, - STATE(4091), 1, - aux_sym_keywords_repeat1, - ACTIONS(2351), 2, + ACTIONS(2281), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2353), 47, + ACTIONS(2283), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -373090,28 +370745,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [190577] = 6, + [187939] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3813), 1, - anon_sym_COMMA, - STATE(4092), 1, - aux_sym_keywords_repeat1, - ACTIONS(2351), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, + ACTIONS(3748), 1, + anon_sym_STAR_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2353), 47, + ACTIONS(2597), 48, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -373152,29 +370811,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [190645] = 4, + [188010] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3748), 1, + anon_sym_STAR_STAR, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2145), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2147), 48, - anon_sym_SEMI, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 38, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -373206,30 +370878,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [190709] = 4, + [188087] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, + ACTIONS(3748), 1, + anon_sym_STAR_STAR, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2361), 49, + ACTIONS(2597), 46, 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_DOT_DOT, anon_sym_PLUS, @@ -373270,49 +370943,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [190773] = 4, + [188160] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 2, - sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2361), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3742), 1, + anon_sym_in, + ACTIONS(3744), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3746), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3748), 1, + anon_sym_STAR_STAR, + ACTIONS(3750), 1, + sym_not_in, + ACTIONS(3771), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3775), 1, anon_sym_when, + ACTIONS(3777), 1, anon_sym_COLON_COLON, + ACTIONS(3779), 1, anon_sym_EQ_GT, + ACTIONS(3781), 1, anon_sym_EQ, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3783), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3785), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3732), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3787), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2597), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3740), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -373322,60 +371023,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [188263] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3742), 1, anon_sym_in, + ACTIONS(3744), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3746), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3748), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [190837] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2359), 1, + ACTIONS(3750), 1, sym_not_in, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2361), 48, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3771), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3775), 1, anon_sym_when, + ACTIONS(3777), 1, anon_sym_COLON_COLON, + ACTIONS(3779), 1, anon_sym_EQ_GT, + ACTIONS(3781), 1, anon_sym_EQ, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3783), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3785), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3732), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3787), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2597), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3740), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -373385,56 +371103,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [188366] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3742), 1, anon_sym_in, + ACTIONS(3744), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3746), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3748), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [190905] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2359), 2, + ACTIONS(3750), 1, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2361), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3771), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + ACTIONS(3777), 1, anon_sym_COLON_COLON, + ACTIONS(3779), 1, anon_sym_EQ_GT, + ACTIONS(3781), 1, anon_sym_EQ, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3783), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3785), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3732), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3787), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3740), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -373444,57 +371182,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [188467] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3742), 1, anon_sym_in, + ACTIONS(3744), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3746), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3748), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [190969] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2363), 2, + ACTIONS(3750), 1, sym_not_in, - anon_sym_LBRACK2, + ACTIONS(3779), 1, + anon_sym_EQ_GT, + ACTIONS(3781), 1, + anon_sym_EQ, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2365), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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, + ACTIONS(3783), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3785), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3732), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3787), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3740), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -373504,58 +371259,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [188564] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3742), 1, anon_sym_in, + ACTIONS(3744), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3746), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3748), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [191033] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2173), 2, + ACTIONS(3750), 1, sym_not_in, - anon_sym_LBRACK2, + ACTIONS(3781), 1, + anon_sym_EQ, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2175), 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_DOT_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, + ACTIONS(3783), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3785), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3732), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3787), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3740), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -373565,37 +371324,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [188659] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3742), 1, anon_sym_in, + ACTIONS(3744), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3746), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3748), 1, anon_sym_STAR_STAR, - anon_sym_DOT, - [191097] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2375), 2, + ACTIONS(3750), 1, sym_not_in, - anon_sym_LBRACK2, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2377), 49, - anon_sym_RPAREN, + ACTIONS(3785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3732), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3740), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 14, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -373605,16 +371409,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + [188750] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3742), 1, + anon_sym_in, + ACTIONS(3744), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3746), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3748), 1, + anon_sym_STAR_STAR, + ACTIONS(3750), 1, + sym_not_in, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3732), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3787), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3740), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -373624,38 +371464,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [188839] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3742), 1, anon_sym_in, + ACTIONS(3744), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3746), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3748), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [191161] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2379), 2, + ACTIONS(3750), 1, sym_not_in, - anon_sym_LBRACK2, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2381), 49, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, 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_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -373684,38 +371552,44 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [191225] = 4, + [188922] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2383), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, + ACTIONS(3746), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3748), 1, + anon_sym_STAR_STAR, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2385), 49, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 37, 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_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -373746,36 +371620,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [191289] = 4, + [189001] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2387), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, + ACTIONS(3746), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3748), 1, + anon_sym_STAR_STAR, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2389), 49, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 37, 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_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -373806,32 +371688,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [191353] = 4, + [189080] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2391), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2719), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2393), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2721), 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_DOT_DOT, anon_sym_PLUS, @@ -373874,19 +371748,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [191417] = 4, + [189145] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2395), 2, + ACTIONS(2233), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2397), 49, + ACTIONS(2235), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -373936,18 +371810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [191481] = 4, + [189210] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2399), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2401), 49, - anon_sym_RPAREN, + ACTIONS(2621), 3, + sym_newline_before_do, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(2623), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -373994,21 +371868,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [191545] = 4, + anon_sym_do, + anon_sym_DOT_DOT_DOT_GT, + [189275] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2249), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2523), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2525), 48, - anon_sym_SEMI, + ACTIONS(2251), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -374055,23 +371930,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [191609] = 4, + [189340] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2403), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2723), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2405), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2725), 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_DOT_DOT, anon_sym_PLUS, @@ -374114,46 +371992,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [191673] = 12, + [189405] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3826), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3795), 1, + anon_sym_COMMA, + STATE(3994), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2707), 3, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2709), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -374183,24 +372045,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_DASH_GT, - [191753] = 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_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [189474] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2527), 4, + ACTIONS(2393), 3, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2529), 48, + ACTIONS(2395), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -374244,18 +372116,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [191817] = 4, + anon_sym_end, + [189539] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3605), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(273), 4, + ACTIONS(2529), 2, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(275), 48, + ACTIONS(2531), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -374303,42 +372178,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [191881] = 14, + anon_sym_end, + [189607] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3802), 1, + anon_sym_PIPE, + ACTIONS(3810), 1, + anon_sym_when, + ACTIONS(3812), 1, + anon_sym_COLON_COLON, + ACTIONS(3814), 1, + anon_sym_EQ_GT, + ACTIONS(3816), 1, + anon_sym_EQ, ACTIONS(3826), 1, - anon_sym_CARET_CARET_CARET, + anon_sym_in, ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(3830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, anon_sym_STAR_STAR, ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, sym_not_in, - ACTIONS(3820), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3804), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3824), 2, + ACTIONS(3808), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3822), 6, + ACTIONS(3818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3800), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2597), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3806), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3832), 9, + ACTIONS(3824), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -374348,72 +372259,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 25, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + [189711] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3802), 1, anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + ACTIONS(3812), 1, anon_sym_COLON_COLON, + ACTIONS(3814), 1, anon_sym_EQ_GT, + ACTIONS(3816), 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_DASH_GT, - [191965] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(3826), 1, + anon_sym_in, + ACTIONS(3828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2743), 4, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2745), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3804), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3808), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3818), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3820), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3800), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3822), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2597), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3824), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -374423,29 +372338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [192029] = 4, + [189813] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2259), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2261), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -374492,25 +372397,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [192093] = 7, + [189877] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2563), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 47, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2565), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -374556,96 +372456,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_DASH_GT, - [192163] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3830), 1, anon_sym_STAR_STAR, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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, - [192239] = 8, + anon_sym_DOT, + [189941] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2653), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 45, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2655), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -374686,20 +372515,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_DASH_GT, - [192311] = 5, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [190005] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(2183), 2, - sym_not_in, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2559), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2185), 48, + ACTIONS(2561), 48, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -374746,21 +372580,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [192377] = 5, + [190073] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(2189), 2, + ACTIONS(163), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2191), 48, + ACTIONS(165), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -374807,21 +372638,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [192443] = 4, + [190137] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2187), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2491), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2493), 48, - anon_sym_SEMI, + ACTIONS(2189), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -374869,18 +372699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [192507] = 4, + anon_sym_DOT_DOT_DOT_GT, + [190201] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 4, + ACTIONS(2671), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 48, + ACTIONS(2673), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -374929,24 +372760,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [192571] = 4, + [190265] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1845), 3, + ACTIONS(2505), 4, sym_not_in, - aux_sym_quoted_keyword_token1, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1847), 48, + ACTIONS(2507), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -374989,24 +372820,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [192635] = 4, + [190329] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1849), 3, + ACTIONS(2493), 4, sym_not_in, - aux_sym_quoted_keyword_token1, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1851), 48, + ACTIONS(2495), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -375049,21 +372880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [192699] = 6, + [190393] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 3, + ACTIONS(2541), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2291), 47, + anon_sym_LBRACK2, + ACTIONS(2543), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -375111,24 +372939,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [192767] = 4, + anon_sym_DOT, + [190457] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2367), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2481), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2369), 49, + anon_sym_LBRACK2, + ACTIONS(2483), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -375171,24 +373000,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [192831] = 4, + [190521] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2371), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2485), 4, sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(2487), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [190585] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2489), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2373), 49, + anon_sym_LBRACK2, + ACTIONS(2491), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -375231,23 +373120,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [192895] = 4, + [190649] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 2, - sym_not_in, + ACTIONS(3838), 1, + anon_sym_PIPE, + ACTIONS(3848), 1, + anon_sym_when, + ACTIONS(3850), 1, + anon_sym_COLON_COLON, + ACTIONS(3852), 1, + anon_sym_EQ_GT, + ACTIONS(3854), 1, + anon_sym_EQ, + ACTIONS(3864), 1, + anon_sym_in, + ACTIONS(3866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3870), 1, + anon_sym_STAR_STAR, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, anon_sym_LBRACK2, + ACTIONS(3876), 1, + sym_not_in, + ACTIONS(3840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3846), 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(2409), 49, + ACTIONS(2765), 3, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(3856), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3858), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3860), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3862), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [190753] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2353), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2355), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -375289,19 +373259,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [192959] = 4, + [190817] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2415), 2, + ACTIONS(2357), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2417), 49, + ACTIONS(2359), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375351,22 +373320,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [193023] = 4, + [190881] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2710), 2, + ACTIONS(2285), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2712), 49, - anon_sym_RPAREN, + ACTIONS(2287), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -375409,25 +373378,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [193087] = 4, + anon_sym_DOT_DOT_DOT_GT, + [190945] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2289), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2706), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2708), 48, - anon_sym_SEMI, + ACTIONS(2291), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -375471,19 +373439,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [193151] = 4, + anon_sym_DOT_DOT_DOT_GT, + [191009] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2673), 4, + ACTIONS(2595), 2, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2675), 48, + ACTIONS(2597), 48, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375530,19 +373502,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + [191077] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3789), 1, + anon_sym_GT_GT, + ACTIONS(3880), 1, + anon_sym_PIPE, + ACTIONS(3884), 1, + anon_sym_COMMA, + ACTIONS(3892), 1, + anon_sym_when, + ACTIONS(3894), 1, + anon_sym_COLON_COLON, + ACTIONS(3896), 1, + anon_sym_EQ_GT, + ACTIONS(3898), 1, + anon_sym_EQ, + ACTIONS(3908), 1, + anon_sym_in, + ACTIONS(3910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3914), 1, + anon_sym_STAR_STAR, + ACTIONS(3916), 1, anon_sym_DOT, - [193215] = 4, + ACTIONS(3918), 1, + anon_sym_LBRACK2, + ACTIONS(3920), 1, + sym_not_in, + STATE(7039), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3882), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3890), 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(3900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3878), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3886), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [191185] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2694), 4, + ACTIONS(2413), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2696), 48, + ACTIONS(2415), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -375591,23 +373644,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [193279] = 4, + [191249] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2293), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2698), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2700), 48, - anon_sym_SEMI, + ACTIONS(2295), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -375651,24 +373703,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [193343] = 4, + anon_sym_DOT_DOT_DOT_GT, + [191313] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2179), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2702), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2704), 48, - anon_sym_SEMI, + ACTIONS(2181), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -375711,23 +373764,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [193407] = 4, + [191377] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2297), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2459), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2461), 48, - anon_sym_SEMI, + ACTIONS(2299), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -375771,46 +373823,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [193471] = 4, + anon_sym_DOT_DOT_DOT_GT, + [191441] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(2419), 2, - sym_not_in, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_EQ_GT, + ACTIONS(3934), 1, + anon_sym_EQ, + ACTIONS(3944), 1, + anon_sym_in, + ACTIONS(3946), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3948), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3950), 1, + anon_sym_STAR_STAR, + ACTIONS(3952), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2421), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3926), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3936), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3938), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3922), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3940), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2597), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(3928), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3942), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -375820,35 +373902,24 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [193535] = 4, + [191541] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2435), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2599), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2437), 49, + anon_sym_LBRACK2, + ACTIONS(1873), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -375891,24 +373962,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [193599] = 4, + [191605] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2443), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2601), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2445), 49, + anon_sym_LBRACK2, + ACTIONS(2603), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -375951,75 +374022,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [193663] = 22, + [191669] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3840), 1, + ACTIONS(3924), 1, anon_sym_PIPE, - ACTIONS(3848), 1, + ACTIONS(3932), 1, anon_sym_EQ_GT, - ACTIONS(3850), 1, + ACTIONS(3934), 1, anon_sym_EQ, - ACTIONS(3860), 1, + ACTIONS(3944), 1, anon_sym_in, - ACTIONS(3862), 1, + ACTIONS(3946), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3864), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, - ACTIONS(3868), 1, + ACTIONS(3952), 1, sym_not_in, + ACTIONS(3954), 1, + anon_sym_when, + ACTIONS(3956), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3852), 3, + ACTIONS(3936), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3854), 3, + ACTIONS(3938), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3838), 4, + ACTIONS(2597), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3922), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3856), 5, + ACTIONS(3940), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3858), 9, + ACTIONS(3942), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -376029,77 +374102,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [193763] = 24, + [191773] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3840), 1, + ACTIONS(3924), 1, anon_sym_PIPE, - ACTIONS(3848), 1, + ACTIONS(3932), 1, anon_sym_EQ_GT, - ACTIONS(3850), 1, + ACTIONS(3934), 1, anon_sym_EQ, - ACTIONS(3860), 1, + ACTIONS(3944), 1, anon_sym_in, - ACTIONS(3862), 1, + ACTIONS(3946), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3864), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, - ACTIONS(3868), 1, + ACTIONS(3952), 1, sym_not_in, - ACTIONS(3870), 1, + ACTIONS(3954), 1, anon_sym_when, - ACTIONS(3872), 1, + ACTIONS(3956), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3852), 3, + ACTIONS(3936), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3854), 3, + ACTIONS(3938), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2409), 4, + ACTIONS(2597), 4, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3838), 4, + ACTIONS(3922), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3856), 5, + ACTIONS(3940), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3858), 9, + ACTIONS(3942), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -376109,77 +374182,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [193867] = 24, + [191877] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3840), 1, + ACTIONS(3924), 1, anon_sym_PIPE, - ACTIONS(3848), 1, + ACTIONS(3932), 1, anon_sym_EQ_GT, - ACTIONS(3850), 1, + ACTIONS(3934), 1, anon_sym_EQ, - ACTIONS(3860), 1, + ACTIONS(3944), 1, anon_sym_in, - ACTIONS(3862), 1, + ACTIONS(3946), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3864), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, - ACTIONS(3868), 1, + ACTIONS(3952), 1, sym_not_in, - ACTIONS(3870), 1, - anon_sym_when, - ACTIONS(3872), 1, + ACTIONS(3956), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3852), 3, + ACTIONS(3936), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3854), 3, + ACTIONS(3938), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2409), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3838), 4, + ACTIONS(3922), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3856), 5, + ACTIONS(2597), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(3940), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3858), 9, + ACTIONS(3942), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -376189,76 +374261,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [193971] = 23, + [191979] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, - anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(2361), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3840), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2363), 49, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3848), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_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, - ACTIONS(3850), 1, anon_sym_EQ, - ACTIONS(3860), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3862), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3864), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3868), 1, + anon_sym_DOT, + [192043] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2365), 2, sym_not_in, - ACTIONS(3872), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3842), 2, + ACTIONS(2367), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3846), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3852), 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(3854), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3838), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_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(2409), 5, - anon_sym_SEMI, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [192107] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2301), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2303), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3856), 5, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3844), 6, - anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3858), 9, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [192171] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2305), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2307), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -376268,26 +374489,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [194073] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [192235] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3874), 1, - anon_sym_COMMA, - STATE(4454), 1, - aux_sym_keywords_repeat1, - ACTIONS(2730), 2, + ACTIONS(2233), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2732), 47, + ACTIONS(2235), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -376330,22 +374560,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [194141] = 4, + anon_sym_DOT_DOT_DOT_GT, + [192299] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2309), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1857), 49, - anon_sym_RPAREN, + ACTIONS(2311), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -376388,24 +374619,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [194205] = 4, + anon_sym_DOT_DOT_DOT_GT, + [192363] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2351), 2, + ACTIONS(2313), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2353), 49, - anon_sym_RPAREN, + ACTIONS(2315), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -376448,26 +374679,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [194269] = 4, + anon_sym_DOT_DOT_DOT_GT, + [192427] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2447), 2, + ACTIONS(2317), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2449), 49, + ACTIONS(2319), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -376510,24 +374740,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [194333] = 4, + anon_sym_DOT_DOT_DOT_GT, + [192491] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2463), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + 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, - ACTIONS(2465), 49, + anon_sym_LBRACK2, + ACTIONS(2639), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -376570,24 +374801,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [194397] = 4, + [192555] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2467), 2, + ACTIONS(2321), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2469), 49, + ACTIONS(2323), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -376630,24 +374860,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [194461] = 4, + anon_sym_DOT_DOT_DOT_GT, + [192619] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2471), 2, + ACTIONS(2253), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2473), 49, + ACTIONS(2255), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -376690,24 +374920,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [194525] = 4, + anon_sym_DOT_DOT_DOT_GT, + [192683] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2495), 2, + ACTIONS(2667), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2497), 49, + ACTIONS(2669), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -376749,25 +374979,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [194589] = 4, + [192747] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2499), 2, + ACTIONS(2325), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2501), 49, + ACTIONS(2327), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -376810,24 +375040,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [194653] = 4, + anon_sym_DOT_DOT_DOT_GT, + [192811] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2511), 2, + ACTIONS(2329), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2513), 49, + ACTIONS(2331), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -376870,24 +375100,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [194717] = 4, + anon_sym_DOT_DOT_DOT_GT, + [192875] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2531), 2, + ACTIONS(1845), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2533), 49, + ACTIONS(1847), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -376930,24 +375160,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [194781] = 4, + anon_sym_DOT_DOT_DOT_GT, + [192939] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2539), 2, + ACTIONS(1853), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2541), 49, + ACTIONS(1855), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -376990,24 +375220,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [194845] = 4, + anon_sym_DOT_DOT_DOT_GT, + [193003] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2543), 2, + ACTIONS(2481), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2545), 49, + ACTIONS(2483), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -377049,149 +375279,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [194909] = 20, + [193067] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3826), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, - sym_not_in, - ACTIONS(3878), 1, - anon_sym_EQ_GT, - ACTIONS(3880), 1, - anon_sym_EQ, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2421), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3882), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3884), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3876), 4, + anon_sym_LBRACK2, + ACTIONS(2423), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3886), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 8, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - ACTIONS(3832), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [195005] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3826), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, - sym_not_in, - ACTIONS(3880), 1, + anon_sym_EQ_GT, anon_sym_EQ, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3882), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3884), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3876), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3886), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3832), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -377201,138 +375330,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [195099] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3826), 1, + anon_sym_in, anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, - sym_not_in, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3884), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3876), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3886), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3832), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [195189] = 16, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [193131] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3826), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, - sym_not_in, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2425), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3876), 4, + anon_sym_LBRACK2, + ACTIONS(2427), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3886), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3832), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 16, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -377345,47 +375374,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_DASH_GT, - [195277] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3826), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, - sym_not_in, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3876), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_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(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3832), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -377395,68 +375390,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [195363] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3826), 1, + anon_sym_in, anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, + anon_sym_DOT, + [193195] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2233), 2, sym_not_in, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 34, - anon_sym_RPAREN, + ACTIONS(2235), 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_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -377485,43 +375450,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, - [195445] = 11, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [193259] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2485), 2, sym_not_in, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, anon_sym_LBRACK2, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 36, + ACTIONS(2487), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -377552,43 +375511,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, - [195523] = 11, + anon_sym_DOT, + [193323] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(1849), 2, sym_not_in, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, anon_sym_LBRACK2, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3822), 6, + ACTIONS(1851), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [193387] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1857), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(1859), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -377619,21 +375631,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - [195601] = 6, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [193451] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2489), 2, sym_not_in, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 48, + ACTIONS(2491), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -377682,17 +375700,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, - [195669] = 4, + anon_sym_DOT, + [193515] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2411), 2, + ACTIONS(2493), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2413), 49, + ACTIONS(2495), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -377742,24 +375761,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [195733] = 4, + [193579] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2269), 2, + ACTIONS(1861), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2271), 49, + ACTIONS(1863), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -377802,24 +375820,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [195797] = 4, + anon_sym_DOT_DOT_DOT_GT, + [193643] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2273), 2, + ACTIONS(1865), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2275), 49, + ACTIONS(1867), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -377862,24 +375880,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [195861] = 4, + anon_sym_DOT_DOT_DOT_GT, + [193707] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1825), 3, + ACTIONS(2501), 4, sym_not_in, - aux_sym_quoted_keyword_token1, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(1827), 48, + ACTIONS(2503), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -377922,24 +375941,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [195925] = 4, + [193771] = 26, ACTIONS(5), 1, sym_comment, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2153), 1, + anon_sym_DASH_GT, + ACTIONS(3838), 1, + anon_sym_PIPE, + ACTIONS(3850), 1, + anon_sym_COLON_COLON, + ACTIONS(3852), 1, + anon_sym_EQ_GT, + ACTIONS(3854), 1, + anon_sym_EQ, + ACTIONS(3864), 1, + anon_sym_in, + ACTIONS(3866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3870), 1, + anon_sym_STAR_STAR, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, + anon_sym_LBRACK2, + ACTIONS(3876), 1, + sym_not_in, + ACTIONS(3958), 1, + anon_sym_when, + STATE(6420), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3846), 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(1833), 3, + ACTIONS(3856), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3858), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3860), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3862), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [193879] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2333), 2, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1835), 48, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2335), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -377982,23 +376082,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [195989] = 4, + anon_sym_DOT_DOT_DOT_GT, + [193943] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2423), 2, + ACTIONS(2183), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2425), 49, - anon_sym_RPAREN, + ACTIONS(2185), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -378040,24 +376142,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [196053] = 4, + [194007] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 2, + ACTIONS(2337), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 49, - anon_sym_RPAREN, + ACTIONS(2339), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -378100,25 +376201,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [196117] = 4, + anon_sym_DOT_DOT_DOT_GT, + [194071] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2427), 2, + ACTIONS(2345), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2429), 49, - anon_sym_RPAREN, + ACTIONS(2347), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -378160,24 +376262,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [196181] = 4, + [194135] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2431), 2, + ACTIONS(2421), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2433), 49, - anon_sym_RPAREN, + ACTIONS(2423), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -378220,24 +376321,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [196245] = 4, + anon_sym_DOT_DOT_DOT_GT, + [194199] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(2341), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2441), 49, - anon_sym_RPAREN, + ACTIONS(2343), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -378280,19 +376381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [196309] = 4, + anon_sym_DOT_DOT_DOT_GT, + [194263] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2201), 2, + ACTIONS(2197), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2203), 49, + ACTIONS(2199), 49, anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, @@ -378342,24 +376443,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196373] = 4, + [194327] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2571), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2573), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [194391] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2205), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2575), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2207), 49, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(2577), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -378402,22 +376563,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196437] = 4, + [194455] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2375), 2, + ACTIONS(2217), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2377), 49, + ACTIONS(2219), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -378462,24 +376623,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196501] = 4, + [194519] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2379), 2, + ACTIONS(2345), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2381), 49, + ACTIONS(2347), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -378522,24 +376682,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196565] = 4, + anon_sym_DOT_DOT_DOT_GT, + [194583] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2253), 2, + ACTIONS(2425), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2255), 49, - anon_sym_LPAREN, + ACTIONS(2427), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -378582,17 +376742,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196629] = 4, + anon_sym_DOT_DOT_DOT_GT, + [194647] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2547), 2, + ACTIONS(2273), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2549), 49, + ACTIONS(2275), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -378642,17 +376803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196693] = 4, + [194711] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2551), 2, + ACTIONS(2369), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2553), 49, + ACTIONS(2371), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -378702,17 +376863,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196757] = 4, + [194775] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2555), 2, + ACTIONS(2373), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2557), 49, + ACTIONS(2375), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -378762,24 +376923,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196821] = 4, + [194839] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2559), 2, + ACTIONS(2259), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2561), 49, + ACTIONS(2261), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -378821,25 +376981,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [196885] = 4, + [194903] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2563), 2, + ACTIONS(2201), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2565), 49, + ACTIONS(2203), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -378881,18 +377041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [196949] = 4, + [194967] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2567), 2, + ACTIONS(2377), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2569), 49, + ACTIONS(2379), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -378942,24 +377103,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [197013] = 4, + [195031] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2571), 2, + ACTIONS(2497), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2573), 49, + ACTIONS(2499), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -379001,23 +377161,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [197077] = 4, + [195095] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2225), 2, + ACTIONS(2381), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2227), 49, - anon_sym_LPAREN, + ACTIONS(2383), 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_DOT_DOT, @@ -379062,23 +377223,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [197141] = 4, + [195159] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2451), 2, + ACTIONS(2385), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2453), 49, - anon_sym_RPAREN, + ACTIONS(2387), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -379120,19 +377282,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [197205] = 4, + [195223] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2455), 2, + ACTIONS(2501), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2457), 49, + ACTIONS(2503), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -379182,84 +377343,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [197269] = 4, + [195287] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2451), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2453), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [197333] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2455), 2, + ACTIONS(1849), 3, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2457), 49, + ACTIONS(1851), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -379302,216 +377402,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [197397] = 25, + anon_sym_DOT_DOT_DOT_GT, + [195351] = 26, ACTIONS(5), 1, sym_comment, - ACTIONS(2751), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3890), 1, + ACTIONS(3838), 1, anon_sym_PIPE, - ACTIONS(3900), 1, - anon_sym_when, - ACTIONS(3902), 1, + ACTIONS(3850), 1, anon_sym_COLON_COLON, - ACTIONS(3904), 1, + ACTIONS(3852), 1, anon_sym_EQ_GT, - ACTIONS(3906), 1, + ACTIONS(3854), 1, anon_sym_EQ, - ACTIONS(3916), 1, + ACTIONS(3864), 1, anon_sym_in, - ACTIONS(3918), 1, + ACTIONS(3866), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, + ACTIONS(3868), 1, anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, + ACTIONS(3870), 1, anon_sym_STAR_STAR, - ACTIONS(3924), 1, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, + anon_sym_LBRACK2, + ACTIONS(3876), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3892), 2, + ACTIONS(3961), 1, + anon_sym_RPAREN, + ACTIONS(3963), 1, + anon_sym_COMMA, + ACTIONS(3966), 1, + anon_sym_when, + ACTIONS(3969), 1, + anon_sym_DASH_GT, + ACTIONS(3840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3896), 2, + ACTIONS(3844), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, + ACTIONS(3846), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2753), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - ACTIONS(3908), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3910), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3888), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3912), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3914), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [197503] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2575), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2577), 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_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [197567] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3890), 1, - anon_sym_PIPE, - ACTIONS(3904), 1, - anon_sym_EQ_GT, - ACTIONS(3906), 1, - anon_sym_EQ, - ACTIONS(3916), 1, - anon_sym_in, - ACTIONS(3918), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, - ACTIONS(3924), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3892), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3908), 3, + ACTIONS(3856), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3910), 3, + ACTIONS(3858), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3888), 4, + ACTIONS(3836), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3912), 5, + ACTIONS(3860), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3894), 6, + ACTIONS(3842), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 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(3914), 9, + ACTIONS(3862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -379521,77 +377485,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [197667] = 24, + [195459] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2763), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3561), 1, + ACTIONS(3663), 1, anon_sym_DOT, - ACTIONS(3890), 1, + ACTIONS(3802), 1, anon_sym_PIPE, - ACTIONS(3900), 1, + ACTIONS(3810), 1, anon_sym_when, - ACTIONS(3902), 1, + ACTIONS(3812), 1, anon_sym_COLON_COLON, - ACTIONS(3904), 1, + ACTIONS(3814), 1, anon_sym_EQ_GT, - ACTIONS(3906), 1, + ACTIONS(3816), 1, anon_sym_EQ, - ACTIONS(3916), 1, + ACTIONS(3826), 1, anon_sym_in, - ACTIONS(3918), 1, + ACTIONS(3828), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, + ACTIONS(3830), 1, anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, + ACTIONS(3832), 1, anon_sym_STAR_STAR, - ACTIONS(3924), 1, + ACTIONS(3834), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3892), 2, + ACTIONS(3804), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3896), 2, + ACTIONS(3808), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3908), 3, + ACTIONS(3971), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2765), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3818), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3910), 3, + ACTIONS(3820), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3888), 4, + ACTIONS(3800), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_end, - ACTIONS(3912), 5, + ACTIONS(3822), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3894), 6, + ACTIONS(3806), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3914), 9, + ACTIONS(3824), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -379601,77 +377566,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [197771] = 24, + [195565] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3890), 1, - anon_sym_PIPE, - ACTIONS(3900), 1, - anon_sym_when, - ACTIONS(3902), 1, - anon_sym_COLON_COLON, - ACTIONS(3904), 1, - anon_sym_EQ_GT, - ACTIONS(3906), 1, - anon_sym_EQ, - ACTIONS(3916), 1, - anon_sym_in, - ACTIONS(3918), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, - ACTIONS(3924), 1, + ACTIONS(2161), 2, sym_not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3892), 2, + aux_sym_terminator_token1, + ACTIONS(2163), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3908), 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(3910), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3888), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_end, - ACTIONS(3912), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3914), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -379681,76 +377614,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [197875] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3890), 1, - anon_sym_PIPE, - ACTIONS(3902), 1, - anon_sym_COLON_COLON, - ACTIONS(3904), 1, - anon_sym_EQ_GT, - ACTIONS(3906), 1, - anon_sym_EQ, - ACTIONS(3916), 1, anon_sym_in, - ACTIONS(3918), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3924), 1, - sym_not_in, + anon_sym_DASH_GT, + anon_sym_DOT, + [195629] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3892), 2, + ACTIONS(2537), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2539), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3908), 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(3910), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3888), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3912), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_end, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3914), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -379760,24 +377675,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [197977] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [195693] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2579), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2625), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2581), 49, + anon_sym_LBRACK2, + ACTIONS(2627), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -379820,19 +377746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198041] = 4, + [195757] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2549), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2475), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2477), 48, - anon_sym_SEMI, + ACTIONS(2551), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -379879,19 +377804,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [198105] = 4, + [195821] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2479), 4, + ACTIONS(2579), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2481), 48, + ACTIONS(2581), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -379940,24 +377866,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198169] = 4, + [195885] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2583), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2583), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2585), 49, + anon_sym_LBRACK2, + ACTIONS(2585), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -380000,24 +377926,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198233] = 4, + [195949] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2587), 2, + ACTIONS(2541), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2589), 49, + ACTIONS(2543), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -380059,25 +377984,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [198297] = 4, + [196013] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2591), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2593), 49, + ACTIONS(1857), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1859), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -380120,23 +378045,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198361] = 4, + anon_sym_DOT_DOT_DOT_GT, + [196077] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2459), 2, + ACTIONS(2389), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2461), 49, - anon_sym_RPAREN, + ACTIONS(2391), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -380178,26 +378105,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [198425] = 4, + [196141] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3973), 1, + anon_sym_COMMA, + STATE(4247), 1, + aux_sym_keywords_repeat1, + ACTIONS(2685), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2535), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2537), 48, - anon_sym_SEMI, + ACTIONS(2687), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -380240,30 +378168,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198489] = 4, + [196209] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2595), 2, + ACTIONS(163), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2597), 49, + ACTIONS(2664), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(165), 45, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_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, @@ -380300,25 +378229,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198553] = 6, + [196275] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3926), 1, - anon_sym_COMMA, - STATE(4438), 1, - aux_sym_keywords_repeat1, - ACTIONS(2730), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2587), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2732), 47, + anon_sym_LBRACK2, + ACTIONS(2589), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -380361,25 +378289,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [198621] = 4, + [196339] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2599), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2417), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2601), 49, + anon_sym_LBRACK2, + ACTIONS(2419), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -380422,24 +378349,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198685] = 4, + [196403] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2603), 2, + ACTIONS(2505), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2605), 49, + ACTIONS(2507), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -380481,25 +378407,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [198749] = 4, + [196467] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2607), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2591), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2609), 49, + anon_sym_LBRACK2, + ACTIONS(2593), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -380542,22 +378469,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198813] = 4, + [196531] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2475), 2, + ACTIONS(2429), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2477), 49, - anon_sym_RPAREN, + ACTIONS(2431), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -380600,24 +378527,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [198877] = 4, + anon_sym_DOT_DOT_DOT_GT, + [196595] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2479), 2, + ACTIONS(2433), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2481), 49, - anon_sym_RPAREN, + ACTIONS(2435), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -380660,20 +378587,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [198941] = 4, + anon_sym_DOT_DOT_DOT_GT, + [196659] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2479), 2, + ACTIONS(3975), 1, + aux_sym_sigil_token3, + ACTIONS(2701), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2481), 49, - anon_sym_RPAREN, + ACTIONS(2703), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380720,47 +378648,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [199005] = 4, + anon_sym_DOT_DOT_DOT_GT, + [196725] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2483), 2, - sym_not_in, + ACTIONS(3838), 1, + anon_sym_PIPE, + ACTIONS(3852), 1, + anon_sym_EQ_GT, + ACTIONS(3854), 1, + anon_sym_EQ, + ACTIONS(3864), 1, + anon_sym_in, + ACTIONS(3866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3870), 1, + anon_sym_STAR_STAR, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, anon_sym_LBRACK2, + ACTIONS(3876), 1, + sym_not_in, + ACTIONS(3840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3844), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2485), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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, + ACTIONS(3856), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3858), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3860), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -380770,57 +378727,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [196823] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3838), 1, + anon_sym_PIPE, + ACTIONS(3848), 1, + anon_sym_when, + ACTIONS(3850), 1, + anon_sym_COLON_COLON, + ACTIONS(3852), 1, + anon_sym_EQ_GT, + ACTIONS(3854), 1, + anon_sym_EQ, + ACTIONS(3864), 1, anon_sym_in, + ACTIONS(3866), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3868), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3870), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3872), 1, anon_sym_DOT, - [199069] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2487), 2, - sym_not_in, + ACTIONS(3874), 1, anon_sym_LBRACK2, + ACTIONS(3876), 1, + sym_not_in, + ACTIONS(3840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3844), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2489), 49, - anon_sym_RPAREN, + ACTIONS(3856), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3858), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3836), 4, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2597), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(3860), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3862), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [196925] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3838), 1, + anon_sym_PIPE, + ACTIONS(3848), 1, anon_sym_when, + ACTIONS(3850), 1, anon_sym_COLON_COLON, + ACTIONS(3852), 1, anon_sym_EQ_GT, + ACTIONS(3854), 1, anon_sym_EQ, + ACTIONS(3864), 1, + anon_sym_in, + ACTIONS(3866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3870), 1, + anon_sym_STAR_STAR, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, + anon_sym_LBRACK2, + ACTIONS(3876), 1, + sym_not_in, + ACTIONS(3840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3856), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3858), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2597), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(3860), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -380830,30 +378885,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [197027] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3838), 1, + anon_sym_PIPE, + ACTIONS(3850), 1, + anon_sym_COLON_COLON, + ACTIONS(3852), 1, + anon_sym_EQ_GT, + ACTIONS(3854), 1, + anon_sym_EQ, + ACTIONS(3864), 1, anon_sym_in, + ACTIONS(3866), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3868), 1, anon_sym_SLASH_SLASH, + ACTIONS(3870), 1, + anon_sym_STAR_STAR, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, + anon_sym_LBRACK2, + ACTIONS(3876), 1, + sym_not_in, + ACTIONS(3840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3856), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3858), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3860), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2597), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [199133] = 4, + ACTIONS(3862), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [197127] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2491), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2493), 49, - anon_sym_RPAREN, + ACTIONS(1845), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1847), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380900,26 +379021,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [199197] = 4, + anon_sym_DOT_DOT_DOT_GT, + [197191] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2213), 2, + ACTIONS(2241), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2215), 49, + ACTIONS(2243), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -380962,24 +379082,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [199261] = 4, + anon_sym_DOT_DOT_DOT_GT, + [197255] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2611), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2613), 49, + ACTIONS(1853), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1855), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -381022,22 +379142,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [199325] = 4, + anon_sym_DOT_DOT_DOT_GT, + [197319] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2503), 2, + ACTIONS(2349), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2505), 49, - anon_sym_RPAREN, + ACTIONS(2351), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -381080,24 +379201,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [199389] = 4, + anon_sym_DOT_DOT_DOT_GT, + [197383] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2507), 2, + ACTIONS(2353), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2509), 49, - anon_sym_RPAREN, + ACTIONS(2355), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -381140,26 +379261,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [199453] = 4, + anon_sym_DOT_DOT_DOT_GT, + [197447] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2747), 2, + ACTIONS(2357), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2749), 49, + ACTIONS(2359), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -381202,22 +379322,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [199517] = 4, + anon_sym_DOT_DOT_DOT_GT, + [197511] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2515), 2, + ACTIONS(2361), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2517), 49, - anon_sym_RPAREN, + ACTIONS(2363), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -381260,24 +379381,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [199581] = 4, + anon_sym_DOT_DOT_DOT_GT, + [197575] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2519), 2, + ACTIONS(2365), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2521), 49, - anon_sym_RPAREN, + ACTIONS(2367), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -381320,26 +379441,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [199645] = 4, + anon_sym_DOT_DOT_DOT_GT, + [197639] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2617), 2, + ACTIONS(2273), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2619), 49, + ACTIONS(2275), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -381382,24 +379502,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [199709] = 4, + anon_sym_DOT_DOT_DOT_GT, + [197703] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2621), 2, + ACTIONS(2369), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2623), 49, + ACTIONS(2371), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -381442,24 +379562,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [199773] = 4, + anon_sym_DOT_DOT_DOT_GT, + [197767] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2625), 2, + ACTIONS(2373), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2627), 49, + ACTIONS(2375), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -381502,24 +379622,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [199837] = 4, + anon_sym_DOT_DOT_DOT_GT, + [197831] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2629), 2, + ACTIONS(2377), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2631), 49, + ACTIONS(2379), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -381562,24 +379682,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [199901] = 4, + anon_sym_DOT_DOT_DOT_GT, + [197895] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2633), 2, + ACTIONS(2381), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2635), 49, + ACTIONS(2383), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -381622,24 +379742,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [199965] = 4, + anon_sym_DOT_DOT_DOT_GT, + [197959] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2637), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2639), 49, + anon_sym_LBRACK2, + ACTIONS(2597), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -381682,24 +379803,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [200029] = 4, + [198023] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2641), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2643), 49, + anon_sym_LBRACK2, + ACTIONS(2597), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -381742,24 +379863,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [200093] = 4, + [198087] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2645), 2, + ACTIONS(2385), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2647), 49, + ACTIONS(2387), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -381802,22 +379922,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [200157] = 4, + anon_sym_DOT_DOT_DOT_GT, + [198151] = 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, + ACTIONS(1845), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1847), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -381862,24 +379983,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [200221] = 4, + [198215] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2653), 2, + ACTIONS(2183), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2655), 49, + ACTIONS(2185), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -381922,17 +380042,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [200285] = 4, + anon_sym_DOT_DOT_DOT_GT, + [198279] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2657), 2, + ACTIONS(2393), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2659), 49, + ACTIONS(2395), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -381982,24 +380103,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [200349] = 4, + [198343] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2661), 2, - sym_not_in, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 3, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2663), 49, + ACTIONS(2597), 47, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -382041,23 +380165,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [200413] = 4, + [198411] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2665), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2667), 49, + ACTIONS(1865), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1867), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -382102,17 +380225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [200477] = 4, + [198475] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2523), 2, + ACTIONS(2583), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2525), 49, + ACTIONS(2585), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -382162,82 +380285,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [200541] = 4, + [198539] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2527), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2529), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [200605] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2669), 2, + ACTIONS(1853), 3, sym_not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2671), 49, + ACTIONS(1855), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -382282,24 +380345,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [200669] = 4, + [198603] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2221), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2605), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2223), 49, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(2607), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -382342,17 +380405,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [200733] = 4, + [198667] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2221), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2537), 49, + ACTIONS(2223), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -382402,24 +380465,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [200797] = 4, + [198731] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2229), 2, + ACTIONS(2587), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2231), 49, - anon_sym_LPAREN, + ACTIONS(2589), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -382461,25 +380523,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [200861] = 4, + [198795] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2233), 2, + ACTIONS(2389), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2235), 49, - anon_sym_LPAREN, + ACTIONS(2391), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -382522,83 +380584,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [200925] = 4, + anon_sym_DOT_DOT_DOT_GT, + [198859] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2289), 4, + ACTIONS(2393), 2, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2291), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [200989] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2341), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2343), 48, - anon_sym_SEMI, + ACTIONS(2395), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -382642,24 +380644,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [201053] = 4, + anon_sym_DOT_DOT_DOT_GT, + [198923] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2711), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2714), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2716), 48, - anon_sym_SEMI, + ACTIONS(2713), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -382702,79 +380705,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [201117] = 26, + [198987] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_COMMA, - ACTIONS(2137), 1, - anon_sym_DASH_GT, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3826), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, + ACTIONS(2715), 2, sym_not_in, - ACTIONS(3878), 1, - anon_sym_EQ_GT, - ACTIONS(3880), 1, - anon_sym_EQ, - ACTIONS(3928), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2717), 49, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_when, - ACTIONS(3935), 1, - anon_sym_COLON_COLON, - STATE(6540), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3820), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3930), 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(3882), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3884), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3876), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3886), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3832), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -382784,18 +380754,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [201225] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [199051] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(273), 2, + ACTIONS(2179), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(275), 49, - anon_sym_RPAREN, + ACTIONS(2181), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -382842,25 +380823,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [201289] = 4, + anon_sym_DOT_DOT_DOT_GT, + [199115] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2694), 2, + ACTIONS(2719), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2696), 49, - anon_sym_RPAREN, + ACTIONS(2721), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -382902,25 +380884,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [201353] = 4, + [199179] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2698), 2, + ACTIONS(2397), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2700), 49, - anon_sym_RPAREN, + ACTIONS(2399), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -382962,24 +380944,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [201417] = 4, + [199243] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2702), 2, + ACTIONS(2397), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2704), 49, - anon_sym_RPAREN, + ACTIONS(2399), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -383022,24 +381003,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [201481] = 4, + anon_sym_DOT_DOT_DOT_GT, + [199307] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2706), 2, + ACTIONS(2401), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2708), 49, - anon_sym_RPAREN, + ACTIONS(2403), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -383082,48 +381063,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [201545] = 4, + anon_sym_DOT_DOT_DOT_GT, + [199371] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2345), 4, - sym_not_in, - ts_builtin_sym_end, + ACTIONS(2595), 1, aux_sym_terminator_token1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(2347), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3979), 1, anon_sym_PIPE, + ACTIONS(3987), 1, + anon_sym_EQ_GT, + ACTIONS(3989), 1, + anon_sym_EQ, + ACTIONS(3999), 1, + anon_sym_in, + ACTIONS(4001), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4003), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4005), 1, + anon_sym_STAR_STAR, + ACTIONS(4007), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3981), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3991), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3993), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3977), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3995), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3983), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3997), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -383133,56 +381143,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [199471] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3987), 1, + anon_sym_EQ_GT, + ACTIONS(3989), 1, + anon_sym_EQ, + ACTIONS(3999), 1, anon_sym_in, + ACTIONS(4001), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4003), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4005), 1, anon_sym_STAR_STAR, - anon_sym_DOT, - [201609] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2183), 2, + ACTIONS(4007), 1, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4009), 1, + anon_sym_when, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2185), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3981), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3991), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3993), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3977), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2597), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_end, + ACTIONS(3995), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3983), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3997), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -383192,30 +381223,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [199575] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3987), 1, + anon_sym_EQ_GT, + ACTIONS(3989), 1, + anon_sym_EQ, + ACTIONS(3999), 1, anon_sym_in, + ACTIONS(4001), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4003), 1, anon_sym_SLASH_SLASH, + ACTIONS(4005), 1, + anon_sym_STAR_STAR, + ACTIONS(4007), 1, + sym_not_in, + ACTIONS(4009), 1, + anon_sym_when, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3981), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3985), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3991), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3993), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3977), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2597), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_end, + ACTIONS(3995), 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_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [201673] = 4, + ACTIONS(3997), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [199679] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2189), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2517), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2191), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2519), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -383262,25 +381362,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [201737] = 4, + [199743] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3987), 1, + anon_sym_EQ_GT, + ACTIONS(3989), 1, + anon_sym_EQ, + ACTIONS(3999), 1, + anon_sym_in, + ACTIONS(4001), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4003), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4005), 1, + anon_sym_STAR_STAR, + ACTIONS(4007), 1, + sym_not_in, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3981), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3985), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3991), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3993), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3977), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3995), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2597), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_end, + ACTIONS(3983), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3997), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [199845] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2714), 2, + ACTIONS(2723), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2716), 49, - anon_sym_RPAREN, + ACTIONS(2725), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -383322,26 +381501,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [201801] = 4, + [199909] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2727), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2710), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2712), 48, - anon_sym_SEMI, + ACTIONS(2729), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -383384,23 +381562,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [201865] = 4, + [199973] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2718), 2, + ACTIONS(2731), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2720), 49, - anon_sym_RPAREN, + ACTIONS(2733), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -383442,26 +381621,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [201929] = 4, + [200037] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2253), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2355), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2357), 48, - anon_sym_SEMI, + ACTIONS(2255), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -383504,78 +381682,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [201993] = 25, + [200101] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2161), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2864), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(2163), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3949), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3951), 1, anon_sym_COLON_COLON, - ACTIONS(3953), 1, anon_sym_EQ_GT, - ACTIONS(3955), 1, anon_sym_EQ, - ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3967), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3973), 1, + anon_sym_DOT, + [200165] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2735), 2, sym_not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3941), 2, + aux_sym_terminator_token1, + ACTIONS(2737), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3945), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3947), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2757), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3957), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3959), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3937), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3961), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3943), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3963), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -383585,27 +381791,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [202099] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200229] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2739), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(2291), 48, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2741), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -383647,23 +381861,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [202167] = 4, + anon_sym_DOT, + [200293] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2145), 2, + ACTIONS(2743), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2147), 49, - anon_sym_RPAREN, + ACTIONS(2745), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -383705,21 +381921,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [202231] = 4, + [200357] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2197), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2217), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2219), 48, - anon_sym_SEMI, + ACTIONS(2199), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -383767,19 +381981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [202295] = 4, + anon_sym_DOT_DOT_DOT_GT, + [200421] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2671), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2361), 48, - anon_sym_SEMI, + ACTIONS(2673), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -383826,25 +382040,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [202359] = 4, + [200485] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2747), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2361), 48, - anon_sym_SEMI, + ACTIONS(2749), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -383887,22 +382102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [202423] = 6, + [200549] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, - anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(2217), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 3, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2361), 47, - anon_sym_SEMI, + ACTIONS(2219), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -383949,24 +382160,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [202491] = 4, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [200613] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2751), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2361), 48, - anon_sym_SEMI, + ACTIONS(2753), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -384009,24 +382222,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [202555] = 4, + [200677] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2755), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2363), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2365), 48, - anon_sym_SEMI, + ACTIONS(2757), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -384069,78 +382282,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [202619] = 25, + [200741] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2755), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3890), 1, - anon_sym_PIPE, - ACTIONS(3900), 1, - anon_sym_when, - ACTIONS(3902), 1, - anon_sym_COLON_COLON, - ACTIONS(3904), 1, - anon_sym_EQ_GT, - ACTIONS(3906), 1, - anon_sym_EQ, - ACTIONS(3916), 1, - anon_sym_in, - ACTIONS(3918), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, - ACTIONS(3924), 1, + ACTIONS(2759), 2, sym_not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3892), 2, + aux_sym_terminator_token1, + ACTIONS(2761), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3898), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2757), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - ACTIONS(3908), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3910), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3888), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3912), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3914), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384150,27 +382331,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [202725] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200805] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2567), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(2361), 48, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2569), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -384212,23 +382401,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [202793] = 4, + anon_sym_DOT, + [200869] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2743), 2, + ACTIONS(2277), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2745), 49, - anon_sym_RPAREN, + ACTIONS(2279), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -384270,79 +382461,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [202857] = 24, + [200933] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3826), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, + ACTIONS(2281), 2, sym_not_in, - ACTIONS(3878), 1, - anon_sym_EQ_GT, - ACTIONS(3880), 1, - anon_sym_EQ, - ACTIONS(3928), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2283), 49, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3935), 1, - anon_sym_COLON_COLON, - ACTIONS(3975), 1, - anon_sym_when, - ACTIONS(3820), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3930), 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(2753), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(3882), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3884), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3876), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3886), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3832), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384352,79 +382511,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [202961] = 26, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200997] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3796), 1, - anon_sym_GT_GT, - ACTIONS(3979), 1, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LBRACK2, + ACTIONS(3924), 1, anon_sym_PIPE, - ACTIONS(3983), 1, - anon_sym_COMMA, - ACTIONS(3991), 1, - anon_sym_when, - ACTIONS(3993), 1, - anon_sym_COLON_COLON, - ACTIONS(3995), 1, + ACTIONS(3932), 1, anon_sym_EQ_GT, - ACTIONS(3997), 1, + ACTIONS(3934), 1, anon_sym_EQ, - ACTIONS(4007), 1, + ACTIONS(3944), 1, anon_sym_in, - ACTIONS(4009), 1, + ACTIONS(3946), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, - anon_sym_DOT, - ACTIONS(4017), 1, - anon_sym_LBRACK2, - ACTIONS(4019), 1, + ACTIONS(3952), 1, sym_not_in, - STATE(6683), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3981), 2, + ACTIONS(3954), 1, + anon_sym_when, + ACTIONS(3956), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2767), 2, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(2769), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3987), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3989), 2, + ACTIONS(4013), 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(3999), 3, + ACTIONS(3936), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4001), 3, + ACTIONS(3938), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3977), 4, + ACTIONS(3922), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4003), 5, + ACTIONS(3940), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3985), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4005), 9, + ACTIONS(3942), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384434,24 +382603,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [203069] = 4, + [201103] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2249), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2269), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2271), 48, - anon_sym_SEMI, + ACTIONS(2251), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -384494,27 +382663,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [203133] = 6, + [201167] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 48, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1849), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1851), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -384556,24 +382722,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [203201] = 4, + anon_sym_DOT, + [201231] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2247), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2521), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2249), 49, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(2523), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -384616,19 +382783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [203265] = 4, + [201295] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2413), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2349), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(1857), 48, - anon_sym_SEMI, + ACTIONS(2415), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -384675,19 +382841,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [203329] = 4, + [201359] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2351), 4, + ACTIONS(2525), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2353), 48, + ACTIONS(2527), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -384736,19 +382903,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [203393] = 4, + [201423] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2559), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2375), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2377), 48, - anon_sym_SEMI, + ACTIONS(2561), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -384795,20 +382961,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [203457] = 4, + [201487] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2559), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2479), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2481), 48, - anon_sym_SEMI, + ACTIONS(2561), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -384855,19 +383021,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [203521] = 4, + [201551] = 26, ACTIONS(5), 1, sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3742), 1, + anon_sym_in, + ACTIONS(3744), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3746), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3748), 1, + anon_sym_STAR_STAR, + ACTIONS(3750), 1, + sym_not_in, + ACTIONS(3771), 1, + anon_sym_PIPE, + ACTIONS(3775), 1, + anon_sym_when, + ACTIONS(3777), 1, + anon_sym_COLON_COLON, + ACTIONS(3779), 1, + anon_sym_EQ_GT, + ACTIONS(3781), 1, + anon_sym_EQ, + ACTIONS(4015), 1, + anon_sym_RPAREN, + ACTIONS(4017), 1, + anon_sym_COMMA, + STATE(7199), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3734), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3738), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3773), 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(1837), 3, + ACTIONS(3783), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3785), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3732), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3787), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3736), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3740), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [201659] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2245), 2, sym_not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1839), 48, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2247), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -384916,24 +383165,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [203585] = 4, + [201723] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2559), 1, + sym_not_in, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1841), 3, - sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1843), 48, + ACTIONS(2561), 48, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -384975,19 +383226,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [203649] = 4, + anon_sym_DASH_GT, + [201791] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2379), 4, + ACTIONS(2529), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2381), 48, + ACTIONS(2531), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -385036,24 +383287,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [203713] = 4, + [201855] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2197), 2, + ACTIONS(2559), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2199), 49, - anon_sym_LPAREN, + ACTIONS(2561), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -385095,20 +383345,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [203777] = 4, + [201919] = 25, ACTIONS(5), 1, sym_comment, + ACTIONS(2763), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3987), 1, + anon_sym_EQ_GT, + ACTIONS(3989), 1, + anon_sym_EQ, + ACTIONS(3999), 1, + anon_sym_in, + ACTIONS(4001), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4003), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4005), 1, + anon_sym_STAR_STAR, + ACTIONS(4007), 1, + sym_not_in, + ACTIONS(4009), 1, + anon_sym_when, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2383), 4, + ACTIONS(3981), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3985), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4019), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2765), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(3991), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3993), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3977), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3995), 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_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3997), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [202025] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2417), 2, sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2385), 48, - anon_sym_SEMI, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2419), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -385155,25 +383486,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [203841] = 4, + [202089] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2187), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2387), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2389), 48, - anon_sym_SEMI, + ACTIONS(2189), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -385216,23 +383548,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [203905] = 4, + [202153] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1825), 3, + ACTIONS(1857), 3, sym_not_in, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(1827), 48, + ACTIONS(1859), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -385275,24 +383608,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [203969] = 4, + [202217] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4021), 1, + anon_sym_COMMA, + STATE(4247), 1, + aux_sym_keywords_repeat1, + ACTIONS(2601), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1833), 3, - sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1835), 48, + ACTIONS(2603), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -385335,18 +383670,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [204033] = 4, + [202285] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2269), 2, + ACTIONS(2563), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2271), 49, + ACTIONS(2565), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -385396,23 +383730,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [204097] = 4, + [202349] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2273), 2, + ACTIONS(4024), 1, + aux_sym_sigil_token3, + ACTIONS(2701), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2275), 49, - anon_sym_RPAREN, + ACTIONS(2703), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -385454,25 +383790,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [204161] = 4, + [202415] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2285), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2279), 49, - anon_sym_RPAREN, + ACTIONS(2287), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -385514,19 +383850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [204225] = 4, + [202479] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2281), 2, + ACTIONS(2517), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2283), 49, + ACTIONS(2519), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -385576,17 +383911,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [204289] = 4, + [202543] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2285), 2, + ACTIONS(2521), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2287), 49, + ACTIONS(2523), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -385634,19 +383969,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DASH_GT, + anon_sym_DOT, + [202607] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2557), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2661), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2664), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DOT, - [204353] = 4, + [202673] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2289), 2, + ACTIONS(2525), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2291), 49, + ACTIONS(2527), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -385696,97 +384092,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [204417] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3826), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, - sym_not_in, - ACTIONS(3878), 1, - anon_sym_EQ_GT, - ACTIONS(3880), 1, - anon_sym_EQ, - ACTIONS(3928), 1, - anon_sym_PIPE, - ACTIONS(3935), 1, - anon_sym_COLON_COLON, - ACTIONS(3975), 1, - anon_sym_when, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3930), 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(2757), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(3882), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3884), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3876), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3886), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3832), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [204521] = 4, + [202737] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2289), 2, + ACTIONS(2529), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2291), 49, + ACTIONS(2531), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -385836,26 +384152,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [204585] = 6, + [202801] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2289), 1, + ACTIONS(3973), 1, + anon_sym_COMMA, + STATE(4159), 1, + aux_sym_keywords_repeat1, + ACTIONS(2707), 2, sym_not_in, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2291), 48, - anon_sym_RPAREN, + ACTIONS(2709), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -385897,25 +384213,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [204653] = 4, + anon_sym_DOT, + [202869] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2289), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2391), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2393), 48, - anon_sym_SEMI, + ACTIONS(2291), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -385958,24 +384274,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [204717] = 4, + [202933] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2293), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2395), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2397), 48, - anon_sym_SEMI, + ACTIONS(2295), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -386018,165 +384334,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [204781] = 4, + [202997] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2399), 4, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2401), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3838), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3848), 1, anon_sym_when, + ACTIONS(3850), 1, anon_sym_COLON_COLON, + ACTIONS(3852), 1, anon_sym_EQ_GT, + ACTIONS(3854), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3864), 1, anon_sym_in, + ACTIONS(3866), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3868), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3870), 1, anon_sym_STAR_STAR, + ACTIONS(3872), 1, anon_sym_DOT, - [204845] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2273), 4, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(2275), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3876), 1, + sym_not_in, + ACTIONS(3840), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3844), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3846), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [204909] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2289), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2291), 49, + ACTIONS(2769), 3, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_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_DASH_GT, + ACTIONS(3856), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3858), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3860), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -386186,29 +384414,17 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [204973] = 4, + [203101] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2673), 2, + ACTIONS(2529), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2675), 49, + ACTIONS(2531), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -386258,17 +384474,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [205037] = 4, + [203165] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2341), 2, + ACTIONS(2421), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2343), 49, + ACTIONS(2423), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -386318,22 +384534,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [205101] = 4, + [203229] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2269), 2, + ACTIONS(2425), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2271), 49, + ACTIONS(2427), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -386376,26 +384592,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [205165] = 4, + [203293] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2297), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2403), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2405), 48, - anon_sym_SEMI, + ACTIONS(2299), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -386438,22 +384654,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [205229] = 4, + [203357] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2273), 2, + ACTIONS(2571), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2275), 49, + ACTIONS(2573), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -386496,25 +384712,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [205293] = 4, + [203421] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2345), 2, + ACTIONS(2401), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2347), 49, - anon_sym_RPAREN, + ACTIONS(2403), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -386556,20 +384773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [205357] = 4, + [203485] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2225), 2, + ACTIONS(2575), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2227), 49, - anon_sym_LPAREN, + ACTIONS(2577), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -386616,21 +384832,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [205421] = 4, + [203549] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2591), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2291), 48, - anon_sym_SEMI, + ACTIONS(2593), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -386677,27 +384892,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [205485] = 4, + [203613] = 12, ACTIONS(5), 1, sym_comment, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(3866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3870), 1, + anon_sym_STAR_STAR, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, + anon_sym_LBRACK2, + ACTIONS(3840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3844), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1837), 3, - sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1839), 48, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -386727,56 +384961,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_DASH_GT, + [203693] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3864), 1, + anon_sym_in, + ACTIONS(3866), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3868), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3870), 1, anon_sym_STAR_STAR, + ACTIONS(3872), 1, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [205549] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(3874), 1, + anon_sym_LBRACK2, + ACTIONS(3876), 1, + sym_not_in, + ACTIONS(3840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3844), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1841), 3, - sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1843), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, + ACTIONS(3842), 6, anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -386786,39 +385006,12 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [205613] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 4, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2409), 48, - anon_sym_SEMI, + ACTIONS(2597), 25, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -386838,39 +385031,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [205677] = 4, + anon_sym_DASH_GT, + [203777] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2595), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2409), 48, - anon_sym_SEMI, + ACTIONS(2597), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -386917,24 +385090,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [205741] = 4, + [203841] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2375), 2, + ACTIONS(2405), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2377), 49, + ACTIONS(2407), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -386977,23 +385152,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [205805] = 4, + [203905] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2379), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3870), 1, + anon_sym_STAR_STAR, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2381), 49, + ACTIONS(2597), 47, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -387035,33 +385214,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [205869] = 6, + anon_sym_DASH_GT, + [203975] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(3870), 1, + anon_sym_STAR_STAR, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 47, - anon_sym_SEMI, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 37, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -387093,31 +385280,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - [205937] = 5, + anon_sym_DASH_GT, + [204051] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4021), 1, - aux_sym_sigil_token3, - ACTIONS(2257), 2, + ACTIONS(2237), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2259), 48, + ACTIONS(2239), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -387160,20 +385341,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [206003] = 5, + [204115] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4023), 1, - aux_sym_sigil_token3, - ACTIONS(2263), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2265), 48, + ACTIONS(1861), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1863), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -387219,26 +385398,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [206069] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [204179] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(3870), 1, + anon_sym_STAR_STAR, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, + anon_sym_LBRACK2, + ACTIONS(3840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2411), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2413), 48, - anon_sym_SEMI, + ACTIONS(2597), 45, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -387279,22 +385464,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [206133] = 4, + anon_sym_DASH_GT, + [204251] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2661), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2277), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2279), 48, - anon_sym_SEMI, + ACTIONS(2664), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -387341,26 +385523,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [206197] = 5, + [204315] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4025), 1, - aux_sym_sigil_token3, - ACTIONS(2257), 2, + ACTIONS(2595), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2259), 48, + ACTIONS(2597), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -387402,24 +385583,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [206263] = 5, + [204379] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4027), 1, - aux_sym_sigil_token3, - ACTIONS(2263), 2, + ACTIONS(2413), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2265), 48, + ACTIONS(2415), 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_DOT_DOT, @@ -387464,24 +385645,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [206329] = 4, + [204443] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2417), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2503), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2505), 48, - anon_sym_SEMI, + ACTIONS(2419), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -387524,74 +385705,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [206393] = 21, + [204507] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3826), 1, + ACTIONS(3852), 1, + anon_sym_EQ_GT, + ACTIONS(3854), 1, + anon_sym_EQ, + ACTIONS(3864), 1, + anon_sym_in, + ACTIONS(3866), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, + ACTIONS(3868), 1, anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, + ACTIONS(3870), 1, anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, + anon_sym_LBRACK2, + ACTIONS(3876), 1, sym_not_in, - ACTIONS(3878), 1, - anon_sym_EQ_GT, - ACTIONS(3880), 1, - anon_sym_EQ, - ACTIONS(3928), 1, - anon_sym_PIPE, - ACTIONS(3820), 2, + ACTIONS(3840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3824), 2, + ACTIONS(3844), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3882), 3, + ACTIONS(3856), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3884), 3, + ACTIONS(3858), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3876), 4, + ACTIONS(3836), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3886), 5, + ACTIONS(3860), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3822), 6, + ACTIONS(3842), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 7, + ACTIONS(2597), 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(3832), 9, + ACTIONS(3862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -387601,76 +385781,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [206491] = 23, + [204603] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(2767), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3826), 1, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3979), 1, + anon_sym_PIPE, + ACTIONS(3987), 1, + anon_sym_EQ_GT, + ACTIONS(3989), 1, + anon_sym_EQ, + ACTIONS(3999), 1, + anon_sym_in, + ACTIONS(4001), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, + ACTIONS(4003), 1, anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, + ACTIONS(4007), 1, sym_not_in, - ACTIONS(3878), 1, - anon_sym_EQ_GT, - ACTIONS(3880), 1, - anon_sym_EQ, - ACTIONS(3928), 1, - anon_sym_PIPE, - ACTIONS(3935), 1, - anon_sym_COLON_COLON, - ACTIONS(3975), 1, + ACTIONS(4009), 1, anon_sym_when, - ACTIONS(3820), 2, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3824), 2, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3882), 3, + ACTIONS(4019), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2769), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(3991), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3884), 3, + ACTIONS(3993), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3876), 4, + ACTIONS(3977), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(3886), 5, + ACTIONS(3995), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3822), 6, + ACTIONS(3983), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3832), 9, + ACTIONS(3997), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -387680,18 +385862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [206593] = 4, + [204709] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2507), 4, + ACTIONS(2559), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2509), 48, + ACTIONS(2561), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -387740,22 +385922,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [206657] = 4, + [204773] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2451), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2453), 49, + anon_sym_LBRACK2, + ACTIONS(2597), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -387799,18 +385982,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [206721] = 4, + [204837] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2455), 2, + ACTIONS(2405), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2457), 49, + ACTIONS(2407), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -387860,175 +386042,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [206785] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3826), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, - sym_not_in, - ACTIONS(3878), 1, - anon_sym_EQ_GT, - ACTIONS(3880), 1, - anon_sym_EQ, - ACTIONS(3928), 1, - anon_sym_PIPE, - ACTIONS(3935), 1, - anon_sym_COLON_COLON, - ACTIONS(3975), 1, - anon_sym_when, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3882), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3884), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3876), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(3886), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3832), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [206887] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(3826), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, - sym_not_in, - ACTIONS(3878), 1, - anon_sym_EQ_GT, - ACTIONS(3880), 1, - anon_sym_EQ, - ACTIONS(3928), 1, - anon_sym_PIPE, - ACTIONS(3935), 1, - anon_sym_COLON_COLON, - ACTIONS(3820), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3824), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3882), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3884), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3876), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3886), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3832), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [206987] = 4, + [204901] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2281), 4, + ACTIONS(2613), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2283), 48, + ACTIONS(2615), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -388077,18 +386102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [207051] = 4, + [204965] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2285), 4, + ACTIONS(2617), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2287), 48, + ACTIONS(2619), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -388137,78 +386162,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [207115] = 25, + [205029] = 19, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3840), 1, - anon_sym_PIPE, - ACTIONS(3848), 1, - anon_sym_EQ_GT, - ACTIONS(3850), 1, + ACTIONS(3854), 1, anon_sym_EQ, - ACTIONS(3860), 1, - anon_sym_in, - ACTIONS(3862), 1, - anon_sym_CARET_CARET_CARET, ACTIONS(3864), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, ACTIONS(3866), 1, - anon_sym_STAR_STAR, + anon_sym_CARET_CARET_CARET, ACTIONS(3868), 1, - sym_not_in, + anon_sym_SLASH_SLASH, ACTIONS(3870), 1, - anon_sym_when, + anon_sym_STAR_STAR, ACTIONS(3872), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2755), 2, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(2757), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(3842), 2, + anon_sym_DOT, + ACTIONS(3874), 1, + anon_sym_LBRACK2, + ACTIONS(3876), 1, + sym_not_in, + ACTIONS(3840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3844), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4029), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3852), 3, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3856), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3854), 3, + ACTIONS(3858), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3838), 4, + ACTIONS(3836), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3856), 5, + ACTIONS(3860), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3844), 6, + ACTIONS(3842), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3858), 9, + ACTIONS(2597), 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(3862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -388218,46 +386237,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [207221] = 4, + [205123] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2515), 4, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, + ACTIONS(3864), 1, + anon_sym_in, + ACTIONS(3866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3870), 1, + anon_sym_STAR_STAR, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(2517), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3876), 1, + sym_not_in, + ACTIONS(3840), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3844), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3858), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3860), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -388267,90 +386296,66 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [207285] = 26, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(3758), 1, + ACTIONS(2597), 13, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3768), 1, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3770), 1, anon_sym_COLON_COLON, - ACTIONS(3772), 1, anon_sym_EQ_GT, - ACTIONS(3774), 1, anon_sym_EQ, - ACTIONS(3784), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, + [205213] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3864), 1, anon_sym_in, - ACTIONS(3786), 1, + ACTIONS(3866), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, + ACTIONS(3868), 1, anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, + ACTIONS(3870), 1, anon_sym_STAR_STAR, - ACTIONS(3792), 1, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, + anon_sym_LBRACK2, + ACTIONS(3876), 1, sym_not_in, - ACTIONS(4031), 1, - anon_sym_RPAREN, - ACTIONS(4033), 1, - anon_sym_COMMA, - STATE(6943), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3760), 2, + ACTIONS(3840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3764), 2, + ACTIONS(3844), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3766), 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(3776), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3778), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3756), 4, + ACTIONS(3836), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3780), 5, + ACTIONS(3860), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3762), 6, + ACTIONS(3842), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3782), 9, + ACTIONS(3862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -388360,26 +386365,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [207393] = 4, + ACTIONS(2597), 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, + [205301] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(2165), 2, - sym_not_in, + ACTIONS(3864), 1, + anon_sym_in, + ACTIONS(3866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3870), 1, + anon_sym_STAR_STAR, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, anon_sym_LBRACK2, + ACTIONS(3876), 1, + sym_not_in, + ACTIONS(3840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3844), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2167), 49, - anon_sym_LPAREN, + ACTIONS(3836), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3862), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 21, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -388397,102 +386452,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + [205387] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3864), 1, anon_sym_in, + ACTIONS(3866), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3868), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3870), 1, anon_sym_STAR_STAR, + ACTIONS(3872), 1, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [207457] = 26, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(3826), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, + ACTIONS(3876), 1, sym_not_in, - ACTIONS(3878), 1, - anon_sym_EQ_GT, - ACTIONS(3880), 1, - anon_sym_EQ, - ACTIONS(3928), 1, - anon_sym_PIPE, - ACTIONS(3935), 1, - anon_sym_COLON_COLON, - ACTIONS(4035), 1, - anon_sym_RPAREN, - ACTIONS(4037), 1, - anon_sym_COMMA, - ACTIONS(4040), 1, - anon_sym_when, - ACTIONS(4043), 1, - anon_sym_DASH_GT, - ACTIONS(3820), 2, + ACTIONS(3840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3824), 2, + ACTIONS(3844), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3930), 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(3882), 3, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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, - ACTIONS(3884), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3876), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3886), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3822), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3832), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -388502,17 +386521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [207565] = 4, + anon_sym_DASH_GT, + [205469] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2169), 2, + ACTIONS(2237), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2171), 49, + ACTIONS(2239), 49, anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, @@ -388562,18 +386582,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [207629] = 4, + [205533] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2173), 2, - sym_not_in, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2559), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2175), 49, - anon_sym_LPAREN, + ACTIONS(2561), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -388620,28 +386643,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [207693] = 4, + anon_sym_end, + [205601] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1845), 3, + ACTIONS(2595), 2, sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1847), 48, + aux_sym_terminator_token1, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3808), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -388671,29 +386712,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + [205681] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_in, + ACTIONS(3828), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3830), 1, anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3808), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [207757] = 4, + ACTIONS(3824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [205767] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1849), 3, + ACTIONS(2595), 2, sym_not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(1851), 48, + aux_sym_terminator_token1, + ACTIONS(2597), 47, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -388739,30 +386846,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [207821] = 4, + [205837] = 10, ACTIONS(5), 1, sym_comment, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2423), 4, + ACTIONS(2595), 2, sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2425), 48, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3808), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 37, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -388794,30 +386912,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [207885] = 4, + [205913] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2367), 2, - sym_not_in, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2369), 49, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2597), 45, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -388858,49 +386976,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [207949] = 4, + [205985] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2371), 2, - sym_not_in, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3814), 1, + anon_sym_EQ_GT, + ACTIONS(3816), 1, + anon_sym_EQ, + ACTIONS(3826), 1, + anon_sym_in, + ACTIONS(3828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2373), 49, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3808), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3800), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 8, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_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, + ACTIONS(3824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [206083] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3816), 1, anon_sym_EQ, + ACTIONS(3826), 1, + anon_sym_in, + ACTIONS(3828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3808), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3818), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3820), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3800), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3822), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3824), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -388910,38 +387129,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [206179] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3826), 1, anon_sym_in, + ACTIONS(3828), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3830), 1, anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3808), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3800), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [208013] = 4, + ACTIONS(3824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [206271] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(2415), 2, - sym_not_in, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_in, + ACTIONS(3828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2417), 49, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3808), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3800), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 16, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -388954,13 +387276,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + [206361] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3826), 1, + anon_sym_in, + ACTIONS(3828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3808), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3800), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3824), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -388970,38 +387326,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [206449] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3826), 1, anon_sym_in, + ACTIONS(3828), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3830), 1, anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3808), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [208077] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2419), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2421), 49, + ACTIONS(2597), 34, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -389030,38 +387418,43 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [208141] = 4, + [206533] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2435), 2, - sym_not_in, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2437), 49, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3808), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 36, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -389092,32 +387485,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + [206611] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3830), 1, anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, + aux_sym_terminator_token1, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3808), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [208205] = 4, + ACTIONS(2597), 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, + [206689] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2443), 2, - sym_not_in, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2445), 49, + ACTIONS(2597), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -389160,24 +387613,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [208269] = 4, + anon_sym_end, + [206757] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2447), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2449), 49, + ACTIONS(1865), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1867), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -389222,22 +387674,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [208333] = 4, + [206821] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2463), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2201), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2465), 49, + anon_sym_LBRACK2, + ACTIONS(2203), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -389281,23 +387734,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [208397] = 4, + [206885] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2467), 2, + ACTIONS(2653), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2469), 49, + ACTIONS(2655), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -389340,28 +387792,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [208461] = 4, + [206949] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2471), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3870), 1, + anon_sym_STAR_STAR, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, anon_sym_LBRACK2, + ACTIONS(3840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3844), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2473), 49, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 36, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -389392,32 +387860,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [208525] = 4, + anon_sym_DASH_GT, + [207027] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2495), 2, + ACTIONS(2213), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2497), 49, + ACTIONS(2215), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -389462,22 +387921,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [208589] = 4, + [207091] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2499), 2, + ACTIONS(2267), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2501), 49, + ACTIONS(2269), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -389522,26 +387981,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [208653] = 4, + [207155] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2511), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3870), 1, + anon_sym_STAR_STAR, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, anon_sym_LBRACK2, + ACTIONS(3840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3844), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2513), 49, + ACTIONS(3842), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 36, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -389572,32 +388047,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [208717] = 4, + anon_sym_DASH_GT, + [207233] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2531), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2533), 49, + ACTIONS(2597), 48, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -389640,26 +388109,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [208781] = 4, + anon_sym_DASH_GT, + [207301] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4026), 1, + anon_sym_COMMA, + STATE(4318), 1, + aux_sym_keywords_repeat1, + ACTIONS(2685), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2409), 48, - anon_sym_SEMI, + ACTIONS(2687), 47, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -389702,23 +388172,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [208845] = 4, + [207369] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2539), 2, + ACTIONS(4028), 1, + anon_sym_COMMA, + STATE(4318), 1, + aux_sym_keywords_repeat1, + ACTIONS(2601), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2541), 49, + ACTIONS(2603), 47, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -389761,20 +388234,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [208909] = 4, + [207437] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2605), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2427), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2429), 48, - anon_sym_SEMI, + ACTIONS(2607), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -389821,19 +388292,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [208973] = 4, + [207501] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2431), 4, + ACTIONS(2657), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2433), 48, + ACTIONS(2659), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -389882,23 +388354,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [209037] = 4, + [207565] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2543), 2, + ACTIONS(2213), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2545), 49, + ACTIONS(2215), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -389941,27 +388414,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [209101] = 6, + [207629] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2301), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2289), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(2291), 48, - anon_sym_SEMI, + ACTIONS(2303), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -390003,19 +388473,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_end, - [209169] = 4, + anon_sym_DOT, + [207693] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2183), 4, + ACTIONS(2621), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2185), 48, + ACTIONS(2623), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -390064,23 +388534,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [209233] = 4, + [207757] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2201), 2, + ACTIONS(2305), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2203), 49, - anon_sym_LPAREN, + ACTIONS(2307), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -390123,18 +388594,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [209297] = 4, + [207821] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1825), 2, + ACTIONS(2421), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1827), 49, + ACTIONS(2423), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -390184,17 +388654,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [209361] = 4, + [207885] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1833), 2, + ACTIONS(2425), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1835), 49, + ACTIONS(2427), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -390244,24 +388714,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [209425] = 4, + [207949] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2341), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2189), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2191), 48, - anon_sym_SEMI, + ACTIONS(2343), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -390304,24 +388774,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [209489] = 4, + [208013] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(2259), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2439), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2441), 48, - anon_sym_SEMI, + ACTIONS(2261), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -390364,26 +388835,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [209553] = 6, + [208079] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(2201), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2359), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(2361), 48, - anon_sym_SEMI, + ACTIONS(2203), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -390425,42 +388895,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_end, - [209621] = 12, + anon_sym_DOT, + [208145] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3967), 1, + ACTIONS(4001), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, + ACTIONS(4003), 1, anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - ACTIONS(3941), 2, + ACTIONS(3981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3945), 2, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3943), 6, + ACTIONS(3983), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 35, + ACTIONS(2597), 35, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -390494,42 +388963,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - [209701] = 15, + anon_sym_end, + [208225] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3965), 1, + ACTIONS(3999), 1, anon_sym_in, - ACTIONS(3967), 1, + ACTIONS(4001), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, + ACTIONS(4003), 1, anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, - ACTIONS(3973), 1, + ACTIONS(4007), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3941), 2, + ACTIONS(3981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3945), 2, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3943), 6, + ACTIONS(3983), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3963), 9, + ACTIONS(3997), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -390539,9 +389009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 25, + ACTIONS(2597), 25, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -390565,24 +389034,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [209787] = 7, + anon_sym_end, + [208311] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 47, + ACTIONS(2597), 47, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -390628,37 +389097,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - [209857] = 10, + anon_sym_end, + [208381] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - ACTIONS(3941), 2, + ACTIONS(3981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3945), 2, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3943), 6, + ACTIONS(3983), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 37, + ACTIONS(2597), 37, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -390694,27 +389163,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [209933] = 8, + anon_sym_end, + [208457] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - ACTIONS(3941), 2, + ACTIONS(3981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2409), 45, + ACTIONS(2597), 45, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -390758,74 +389227,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - [210005] = 21, + anon_sym_end, + [208529] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3953), 1, + ACTIONS(3987), 1, anon_sym_EQ_GT, - ACTIONS(3955), 1, + ACTIONS(3989), 1, anon_sym_EQ, - ACTIONS(3965), 1, + ACTIONS(3999), 1, anon_sym_in, - ACTIONS(3967), 1, + ACTIONS(4001), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, + ACTIONS(4003), 1, anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, - ACTIONS(3973), 1, + ACTIONS(4007), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3941), 2, + ACTIONS(3981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3945), 2, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 3, + ACTIONS(3991), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3959), 3, + ACTIONS(3993), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3937), 4, + ACTIONS(3977), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3961), 5, + ACTIONS(3995), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3943), 6, + ACTIONS(3983), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 8, + ACTIONS(2597), 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(3963), 9, + anon_sym_end, + ACTIONS(3997), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -390835,65 +389305,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [210103] = 20, + [208627] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3955), 1, + ACTIONS(3989), 1, anon_sym_EQ, - ACTIONS(3965), 1, + ACTIONS(3999), 1, anon_sym_in, - ACTIONS(3967), 1, + ACTIONS(4001), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, + ACTIONS(4003), 1, anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, - ACTIONS(3973), 1, + ACTIONS(4007), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3941), 2, + ACTIONS(3981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3945), 2, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 3, + ACTIONS(3991), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3959), 3, + ACTIONS(3993), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3937), 4, + ACTIONS(3977), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3961), 5, + ACTIONS(3995), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3943), 6, + ACTIONS(3983), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 9, + ACTIONS(2597), 9, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -390901,7 +389370,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - ACTIONS(3963), 9, + anon_sym_end, + ACTIONS(3997), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -390911,57 +389381,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [210199] = 18, + [208723] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3965), 1, + ACTIONS(3999), 1, anon_sym_in, - ACTIONS(3967), 1, + ACTIONS(4001), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, + ACTIONS(4003), 1, anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, - ACTIONS(3973), 1, + ACTIONS(4007), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3941), 2, + ACTIONS(3981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3945), 2, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3959), 3, + ACTIONS(3993), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3937), 4, + ACTIONS(3977), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3961), 5, + ACTIONS(3995), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3943), 6, + ACTIONS(3983), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3963), 9, + ACTIONS(3997), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -390971,9 +389441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 13, + ACTIONS(2597), 13, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -390985,53 +389454,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - [210291] = 17, + anon_sym_end, + [208815] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3965), 1, + ACTIONS(3999), 1, anon_sym_in, - ACTIONS(3967), 1, + ACTIONS(4001), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, + ACTIONS(4003), 1, anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, - ACTIONS(3973), 1, + ACTIONS(4007), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3941), 2, + ACTIONS(3981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3945), 2, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3937), 4, + ACTIONS(3977), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3961), 5, + ACTIONS(3995), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3943), 6, + ACTIONS(3983), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3963), 9, + ACTIONS(3997), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -391041,9 +389511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 16, + ACTIONS(2597), 16, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -391058,47 +389527,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - [210381] = 16, + anon_sym_end, + [208905] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3965), 1, + ACTIONS(3999), 1, anon_sym_in, - ACTIONS(3967), 1, + ACTIONS(4001), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, + ACTIONS(4003), 1, anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, - ACTIONS(3973), 1, + ACTIONS(4007), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3941), 2, + ACTIONS(3981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3945), 2, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3937), 4, + ACTIONS(3977), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3943), 6, + ACTIONS(3983), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3963), 9, + ACTIONS(3997), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -391108,9 +389578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 21, + ACTIONS(2597), 21, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -391130,44 +389599,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - [210469] = 14, + anon_sym_end, + [208993] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3965), 1, + ACTIONS(3999), 1, anon_sym_in, - ACTIONS(3967), 1, + ACTIONS(4001), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, + ACTIONS(4003), 1, anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, - ACTIONS(3973), 1, + ACTIONS(4007), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3941), 2, + ACTIONS(3981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3945), 2, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3943), 6, + ACTIONS(3983), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 34, + ACTIONS(2597), 34, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -391200,39 +389669,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [210553] = 11, + anon_sym_end, + [209077] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3969), 1, + ACTIONS(4003), 1, anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - ACTIONS(3941), 2, + ACTIONS(3981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3945), 2, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3943), 6, + ACTIONS(3983), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, + ACTIONS(2597), 36, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -391267,43 +389736,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [210631] = 11, + anon_sym_end, + [209155] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3969), 1, + ACTIONS(4003), 1, anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, + ACTIONS(4005), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - ACTIONS(3941), 2, + ACTIONS(3981), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3945), 2, + ACTIONS(3985), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3943), 6, + ACTIONS(3983), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, + ACTIONS(2597), 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, + [209233] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2309), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2311), 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_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209297] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2313), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2315), 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_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209361] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2317), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2319), 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_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209425] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2675), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2677), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -391334,20 +390034,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [210709] = 6, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [209489] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2579), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3561), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2581), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, + [209553] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2321), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2323), 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_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209617] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2325), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2327), 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_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [209681] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2529), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 48, + anon_sym_LBRACK2, + ACTIONS(2531), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -391395,27 +390283,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_end, - [210777] = 6, + anon_sym_DOT, + [209745] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4045), 1, - anon_sym_COMMA, - STATE(4386), 1, - aux_sym_keywords_repeat1, - ACTIONS(2730), 2, + ACTIONS(2329), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2732), 47, - anon_sym_LBRACE, + ACTIONS(2331), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -391458,26 +390344,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [210845] = 6, + [209809] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4045), 1, + ACTIONS(2529), 1, + sym_not_in, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2531), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - STATE(4387), 1, - aux_sym_keywords_repeat1, - ACTIONS(2736), 2, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [209877] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2529), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2738), 47, - anon_sym_LBRACE, + ACTIONS(2531), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -391519,27 +390464,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [210913] = 6, + [209941] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4047), 1, - anon_sym_COMMA, - STATE(4387), 1, - aux_sym_keywords_repeat1, - ACTIONS(2351), 2, + ACTIONS(2533), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2353), 47, - anon_sym_LBRACE, + ACTIONS(2535), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [210005] = 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), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -391582,22 +390586,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [210981] = 4, + [210069] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1837), 2, - sym_not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1839), 49, + ACTIONS(1861), 3, + sym_not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(1863), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -391642,25 +390646,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [211045] = 5, + [210133] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(2189), 2, + ACTIONS(2537), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2191), 48, + ACTIONS(2539), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -391702,25 +390704,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [211111] = 4, + [210197] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1841), 2, + ACTIONS(2711), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1843), 49, + ACTIONS(2713), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -391763,22 +390765,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [211175] = 4, + anon_sym_DOT_DOT_DOT_GT, + [210261] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2355), 2, + ACTIONS(2715), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2357), 49, - anon_sym_RPAREN, + ACTIONS(2717), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -391821,20 +390824,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [211239] = 4, + anon_sym_DOT_DOT_DOT_GT, + [210325] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2205), 2, + 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(2207), 49, - anon_sym_LPAREN, + ACTIONS(2611), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -391881,26 +390884,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [211303] = 4, + [210389] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1845), 2, + ACTIONS(2595), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1847), 49, + ACTIONS(2597), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -391942,18 +390944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [211367] = 4, + [210453] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1849), 2, + ACTIONS(2429), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1851), 49, + ACTIONS(2431), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -392003,23 +391006,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [211431] = 4, + [210517] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2719), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2519), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2521), 48, - anon_sym_SEMI, + ACTIONS(2721), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -392063,23 +391065,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [211495] = 4, + anon_sym_DOT_DOT_DOT_GT, + [210581] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2253), 2, + ACTIONS(2267), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2255), 49, + ACTIONS(2269), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -392122,45 +391126,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [211559] = 12, + [210645] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3918), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2429), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3892), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, + anon_sym_LBRACK2, + ACTIONS(2431), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -392190,94 +391176,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_end, - [211639] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3916), 1, - anon_sym_in, - ACTIONS(3918), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, - ACTIONS(3924), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3892), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3914), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [211725] = 7, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210709] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2433), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 47, + anon_sym_LBRACK2, + ACTIONS(2435), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -392324,41 +391244,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_end, - [211795] = 10, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210773] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, + ACTIONS(3496), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2529), 3, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3892), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 37, + ACTIONS(2531), 47, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -392390,30 +391301,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_end, - [211871] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [210841] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2497), 4, sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3892), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2409), 45, + anon_sym_LBRACK2, + ACTIONS(2499), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -392454,75 +391365,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_end, - [211943] = 21, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210905] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3904), 1, - anon_sym_EQ_GT, - ACTIONS(3906), 1, - anon_sym_EQ, - ACTIONS(3916), 1, - anon_sym_in, - ACTIONS(3918), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, - ACTIONS(3924), 1, + ACTIONS(2433), 2, sym_not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3892), 2, + aux_sym_terminator_token1, + ACTIONS(2435), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3908), 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(3910), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3888), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3912), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3914), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -392532,73 +391417,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [212041] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3906), 1, - anon_sym_EQ, - ACTIONS(3916), 1, anon_sym_in, - ACTIONS(3918), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3924), 1, - sym_not_in, + anon_sym_DOT, + [210969] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3892), 2, + ACTIONS(163), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(165), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3908), 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(3910), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3888), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3912), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3914), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -392608,194 +391477,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [212137] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3916), 1, anon_sym_in, - ACTIONS(3918), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, - ACTIONS(3924), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3892), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3910), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3888), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3912), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3914), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [212229] = 17, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211033] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3916), 1, + ACTIONS(3496), 1, + anon_sym_LBRACK2, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(3932), 1, + anon_sym_EQ_GT, + ACTIONS(3934), 1, + anon_sym_EQ, + ACTIONS(3944), 1, anon_sym_in, - ACTIONS(3918), 1, + ACTIONS(3946), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, - ACTIONS(3924), 1, + ACTIONS(3952), 1, sym_not_in, + ACTIONS(3954), 1, + anon_sym_when, + ACTIONS(3956), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3892), 2, + ACTIONS(2763), 2, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(2765), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3896), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3888), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3912), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3914), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4013), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3936), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3938), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_end, - [212319] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3916), 1, - anon_sym_in, - ACTIONS(3918), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, - ACTIONS(3924), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3892), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3888), 4, + ACTIONS(3922), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3894), 6, + ACTIONS(3940), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3914), 9, + ACTIONS(3942), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -392805,69 +391569,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [212407] = 14, + [211139] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3916), 1, - anon_sym_in, - ACTIONS(3918), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3920), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, - ACTIONS(3924), 1, + ACTIONS(2613), 2, sym_not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3892), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 34, - anon_sym_SEMI, + aux_sym_terminator_token1, + ACTIONS(2615), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -392896,43 +391617,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_end, - [212491] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3920), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(3892), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [211203] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2617), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2619), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -392963,43 +391679,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_end, - [212569] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3920), 1, anon_sym_SLASH_SLASH, - ACTIONS(3922), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(3892), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3896), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [211267] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2723), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2725), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -393030,18 +391739,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_end, - [212647] = 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [211331] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2547), 2, + ACTIONS(2727), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2549), 49, + ACTIONS(2729), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -393091,22 +391809,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [212711] = 4, + [211395] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2551), 2, + ACTIONS(2621), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2553), 49, + ACTIONS(2623), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -393149,19 +391867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [212775] = 4, + [211459] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2555), 2, + ACTIONS(2731), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2557), 49, + ACTIONS(2733), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -393211,17 +391929,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [212839] = 4, + [211523] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2559), 2, + ACTIONS(2735), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2561), 49, + ACTIONS(2737), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -393271,23 +391989,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [212903] = 4, + [211587] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2563), 2, + ACTIONS(2333), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2565), 49, + ACTIONS(2335), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -393330,18 +392049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [212967] = 4, + [211651] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2567), 2, + ACTIONS(2739), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2569), 49, + ACTIONS(2741), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -393391,23 +392109,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [213031] = 4, + [211715] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2571), 2, + ACTIONS(4031), 1, + anon_sym_COMMA, + STATE(4446), 1, + aux_sym_keywords_repeat1, + ACTIONS(2685), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2573), 49, + ACTIONS(2687), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -393451,235 +392171,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [213095] = 22, + [211783] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_PIPE, - ACTIONS(3953), 1, - anon_sym_EQ_GT, - ACTIONS(3955), 1, - anon_sym_EQ, - ACTIONS(3965), 1, - anon_sym_in, - ACTIONS(3967), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, - anon_sym_STAR_STAR, - ACTIONS(3973), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3941), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3945), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3957), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3959), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3937), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3961), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3943), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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(3963), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [213195] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, + ACTIONS(2529), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2864), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(2531), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3949), 1, - anon_sym_when, - ACTIONS(3951), 1, - anon_sym_COLON_COLON, - ACTIONS(3953), 1, - anon_sym_EQ_GT, - ACTIONS(3955), 1, - anon_sym_EQ, - ACTIONS(3965), 1, - anon_sym_in, - ACTIONS(3967), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, - anon_sym_STAR_STAR, - ACTIONS(3973), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3941), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3945), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3957), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3959), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3937), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3961), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3943), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3963), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [213299] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_PIPE, - ACTIONS(3949), 1, anon_sym_when, - ACTIONS(3951), 1, anon_sym_COLON_COLON, - ACTIONS(3953), 1, anon_sym_EQ_GT, - ACTIONS(3955), 1, anon_sym_EQ, - ACTIONS(3965), 1, - anon_sym_in, - ACTIONS(3967), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, - anon_sym_STAR_STAR, - ACTIONS(3973), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3941), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3945), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3957), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3959), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3937), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3961), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3943), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3963), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -393689,101 +392220,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [213403] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3939), 1, - anon_sym_PIPE, - ACTIONS(3951), 1, - anon_sym_COLON_COLON, - ACTIONS(3953), 1, - anon_sym_EQ_GT, - ACTIONS(3955), 1, - anon_sym_EQ, - ACTIONS(3965), 1, anon_sym_in, - ACTIONS(3967), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, - anon_sym_STAR_STAR, - ACTIONS(3973), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3941), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3945), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3957), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3959), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3937), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3961), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(3943), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3963), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [213505] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [211847] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2575), 2, + ACTIONS(2429), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2577), 49, + ACTIONS(2431), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -393826,21 +392289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [213569] = 4, + [211911] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2433), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2451), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2453), 48, - anon_sym_SEMI, + ACTIONS(2435), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -393887,24 +392349,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [213633] = 4, + [211975] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2743), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2455), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2457), 48, - anon_sym_SEMI, + ACTIONS(2745), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -393948,23 +392410,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [213697] = 4, + anon_sym_DOT_DOT_DOT_GT, + [212039] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2579), 2, + ACTIONS(2337), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2581), 49, + ACTIONS(2339), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -394007,23 +392471,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [213761] = 4, + [212103] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2583), 2, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(2259), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2585), 49, + ACTIONS(2261), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -394068,22 +392532,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [213825] = 4, + [212169] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2587), 2, + ACTIONS(2205), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(2201), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2589), 49, + ACTIONS(2203), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -394128,17 +392593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [213889] = 4, + [212235] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2591), 2, + ACTIONS(2747), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2593), 49, + ACTIONS(2749), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -394188,22 +392653,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [213953] = 4, + [212299] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2595), 2, + ACTIONS(2555), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2597), 49, + ACTIONS(2557), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -394246,80 +392711,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [214017] = 25, + [212363] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, - anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2661), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(3840), 1, + ACTIONS(2664), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3848), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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, - ACTIONS(3850), 1, anon_sym_EQ, - ACTIONS(3860), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3862), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3864), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3868), 1, + anon_sym_DOT, + [212427] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1845), 2, sym_not_in, - ACTIONS(3870), 1, - anon_sym_when, - ACTIONS(3872), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2751), 2, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2753), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(3842), 2, + ACTIONS(1847), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3846), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4029), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3852), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3854), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3838), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3856), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3844), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3858), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -394329,23 +392822,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [214123] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [212491] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2599), 2, + ACTIONS(1853), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2601), 49, + ACTIONS(1855), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -394388,18 +392893,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [214187] = 4, + [212555] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2603), 2, + ACTIONS(2413), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2605), 49, + ACTIONS(2415), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -394449,23 +392953,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [214251] = 4, + [212619] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2607), 2, + ACTIONS(4031), 1, + anon_sym_COMMA, + STATE(4381), 1, + aux_sym_keywords_repeat1, + ACTIONS(2707), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2609), 49, + ACTIONS(2709), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -394509,18 +393015,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [214315] = 4, + [212687] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2213), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2675), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2215), 49, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(2677), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -394568,18 +393075,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [214379] = 4, + [212751] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2611), 2, + ACTIONS(2417), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2613), 49, + ACTIONS(2419), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -394629,17 +393135,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [214443] = 4, + [212815] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2747), 2, + ACTIONS(2751), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2749), 49, + ACTIONS(2753), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -394689,17 +393195,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [214507] = 4, + [212879] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1825), 2, + ACTIONS(2755), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1827), 49, + ACTIONS(2757), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -394749,23 +393255,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [214571] = 4, + [212943] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1833), 2, + ACTIONS(1849), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1835), 49, + ACTIONS(1851), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -394808,26 +393315,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [214635] = 6, + [213007] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3926), 1, - anon_sym_COMMA, - STATE(4091), 1, - aux_sym_keywords_repeat1, - ACTIONS(2736), 2, + ACTIONS(2625), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2738), 47, + ACTIONS(2627), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -394869,80 +393373,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [214703] = 25, + [213071] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2751), 1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2667), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2864), 1, anon_sym_LBRACK2, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3939), 1, + ACTIONS(2669), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3949), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3951), 1, anon_sym_COLON_COLON, - ACTIONS(3953), 1, anon_sym_EQ_GT, - ACTIONS(3955), 1, anon_sym_EQ, - ACTIONS(3965), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3967), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3969), 1, anon_sym_SLASH_SLASH, - ACTIONS(3971), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3973), 1, - sym_not_in, + anon_sym_DOT, + [213135] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3941), 2, + ACTIONS(2645), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2647), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3945), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3947), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2753), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3957), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3959), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3937), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3961), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3943), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3963), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -394952,23 +393484,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [214809] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [213199] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1837), 2, + ACTIONS(1857), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1839), 49, + ACTIONS(1859), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -395011,24 +393555,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [214873] = 4, + [213263] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1841), 2, + ACTIONS(2241), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1843), 49, + ACTIONS(2243), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -395071,18 +393615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [214937] = 4, + [213327] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2217), 2, + ACTIONS(2657), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2219), 49, + ACTIONS(2659), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -395132,17 +393675,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [215001] = 4, + [213391] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1845), 2, + ACTIONS(2759), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1847), 49, + ACTIONS(2761), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -395192,17 +393735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [215065] = 4, + [213455] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1849), 2, + ACTIONS(2567), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1851), 49, + ACTIONS(2569), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -395252,17 +393795,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [215129] = 4, + [213519] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2617), 2, + ACTIONS(2277), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2619), 49, + ACTIONS(2279), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -395312,17 +393855,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [215193] = 4, + [213583] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2621), 2, + ACTIONS(2281), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2623), 49, + ACTIONS(2283), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -395372,23 +393915,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [215257] = 4, + [213647] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2625), 2, + ACTIONS(1861), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2627), 49, + ACTIONS(1863), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -395431,24 +393975,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [215321] = 4, + [213711] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2629), 2, + ACTIONS(1865), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2631), 49, + ACTIONS(1867), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -395491,24 +394035,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [215385] = 4, + [213775] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2633), 2, + ACTIONS(2349), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2635), 49, + ACTIONS(2351), 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_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -395551,23 +394095,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [215449] = 4, + [213839] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2637), 2, + 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(2639), 49, + ACTIONS(2651), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -395610,20 +394153,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [215513] = 4, + [213903] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2483), 4, + ACTIONS(2649), 4, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, anon_sym_LBRACK2, - ACTIONS(2485), 48, + ACTIONS(2651), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -395672,19 +394215,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [215577] = 4, + [213967] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2249), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2487), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2489), 48, - anon_sym_SEMI, + ACTIONS(2251), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -395732,45 +394274,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [215641] = 4, + anon_sym_DOT_DOT_DOT_GT, + [214031] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2197), 2, - sym_not_in, + ACTIONS(2767), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3802), 1, + anon_sym_PIPE, + ACTIONS(3810), 1, + anon_sym_when, + ACTIONS(3812), 1, + anon_sym_COLON_COLON, + ACTIONS(3814), 1, + anon_sym_EQ_GT, + ACTIONS(3816), 1, + anon_sym_EQ, + ACTIONS(3826), 1, + anon_sym_in, + ACTIONS(3828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2199), 49, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3804), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3808), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3971), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2769), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3818), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3820), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3800), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3822), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3824), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -395780,38 +394356,24 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [215705] = 6, + [214137] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3874), 1, - anon_sym_COMMA, - STATE(4092), 1, - aux_sym_keywords_repeat1, - ACTIONS(2736), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2555), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2738), 47, + anon_sym_LBRACK2, + ACTIONS(2557), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -395854,18 +394416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [215773] = 4, + [214201] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2247), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2533), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2249), 49, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(2535), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -395913,41 +394476,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [215837] = 12, + [214265] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3862), 1, + ACTIONS(3946), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3864), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2595), 3, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 34, + ACTIONS(2597), 34, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -395982,43 +394544,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - [215917] = 15, + [214345] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3860), 1, + ACTIONS(3944), 1, anon_sym_in, - ACTIONS(3862), 1, + ACTIONS(3946), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3864), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, - ACTIONS(3868), 1, + ACTIONS(3952), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3858), 9, + ACTIONS(3942), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -396028,7 +394590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 24, + ACTIONS(2597), 24, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -396053,23 +394615,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [216003] = 7, + [214431] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, + ACTIONS(2595), 3, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 46, + ACTIONS(2597), 46, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -396116,36 +394678,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - [216073] = 10, + [214501] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2595), 3, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, + ACTIONS(2597), 36, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -396182,26 +394744,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [216149] = 8, + [214577] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2407), 3, + ACTIONS(2595), 3, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 44, + ACTIONS(2597), 44, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -396246,66 +394808,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - [216221] = 21, + [214649] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3848), 1, + ACTIONS(3932), 1, anon_sym_EQ_GT, - ACTIONS(3850), 1, + ACTIONS(3934), 1, anon_sym_EQ, - ACTIONS(3860), 1, + ACTIONS(3944), 1, anon_sym_in, - ACTIONS(3862), 1, + ACTIONS(3946), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3864), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, - ACTIONS(3868), 1, + ACTIONS(3952), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3852), 3, + ACTIONS(3936), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3854), 3, + ACTIONS(3938), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3838), 4, + ACTIONS(3922), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3856), 5, + ACTIONS(3940), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 7, + ACTIONS(2597), 7, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -396313,7 +394875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(3858), 9, + ACTIONS(3942), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -396323,64 +394885,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [216319] = 20, + [214747] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3850), 1, + ACTIONS(3934), 1, anon_sym_EQ, - ACTIONS(3860), 1, + ACTIONS(3944), 1, anon_sym_in, - ACTIONS(3862), 1, + ACTIONS(3946), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3864), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, - ACTIONS(3868), 1, + ACTIONS(3952), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3852), 3, + ACTIONS(3936), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3854), 3, + ACTIONS(3938), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3838), 4, + ACTIONS(3922), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3856), 5, + ACTIONS(3940), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 8, + ACTIONS(2597), 8, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -396389,7 +394951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - ACTIONS(3858), 9, + ACTIONS(3942), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -396399,58 +394961,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [216415] = 18, + [214843] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3860), 1, + ACTIONS(3944), 1, anon_sym_in, - ACTIONS(3862), 1, + ACTIONS(3946), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3864), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, - ACTIONS(3868), 1, + ACTIONS(3952), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3854), 3, + ACTIONS(3938), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3838), 4, + ACTIONS(3922), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3856), 5, + ACTIONS(3940), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3858), 9, + ACTIONS(3942), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -396460,7 +395022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 12, + ACTIONS(2597), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -396473,54 +395035,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - [216507] = 17, + [214935] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3860), 1, + ACTIONS(3944), 1, anon_sym_in, - ACTIONS(3862), 1, + ACTIONS(3946), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3864), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, - ACTIONS(3868), 1, + ACTIONS(3952), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 4, + ACTIONS(3922), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3856), 5, + ACTIONS(3940), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3858), 9, + ACTIONS(3942), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -396530,7 +395092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 15, + ACTIONS(2597), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -396546,48 +395108,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - [216597] = 16, + [215025] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3860), 1, + ACTIONS(3944), 1, anon_sym_in, - ACTIONS(3862), 1, + ACTIONS(3946), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3864), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, - ACTIONS(3868), 1, + ACTIONS(3952), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3838), 4, + ACTIONS(3922), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3858), 9, + ACTIONS(3942), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -396597,7 +395159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 20, + ACTIONS(2597), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -396618,43 +395180,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - [216685] = 14, + [215113] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3860), 1, + ACTIONS(3944), 1, anon_sym_in, - ACTIONS(3862), 1, + ACTIONS(3946), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3864), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, - ACTIONS(3868), 1, + ACTIONS(3952), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 33, + ACTIONS(2597), 33, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -396688,38 +395250,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [216769] = 11, + [215197] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3864), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2595), 3, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 35, + ACTIONS(2597), 35, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -396755,38 +395317,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [216847] = 11, + [215275] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3613), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3864), 1, + ACTIONS(3948), 1, anon_sym_SLASH_SLASH, - ACTIONS(3866), 1, + ACTIONS(3950), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3842), 2, + ACTIONS(3926), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3846), 2, + ACTIONS(3930), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, + ACTIONS(2595), 3, sym_not_in, ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3844), 6, + ACTIONS(3928), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 35, + ACTIONS(2597), 35, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -396822,22 +395384,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [216925] = 4, + [215353] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2641), 2, + ACTIONS(2629), 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, + ACTIONS(2631), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -396880,9 +395442,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [216989] = 4, + [215417] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2629), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2631), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [215481] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(2645), 2, @@ -396893,11 +395515,11 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_comment, aux_sym_terminator_token1, ACTIONS(2647), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -396940,24 +395562,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [217053] = 4, + [215545] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2649), 2, + ACTIONS(2245), 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, + ACTIONS(2247), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -397002,22 +395624,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [217117] = 4, + [215609] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2653), 2, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2529), 2, + sym_not_in, + aux_sym_terminator_token1, + ACTIONS(2531), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [215677] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3802), 1, + anon_sym_PIPE, + ACTIONS(3814), 1, + anon_sym_EQ_GT, + ACTIONS(3816), 1, + anon_sym_EQ, + ACTIONS(3826), 1, + anon_sym_in, + ACTIONS(3828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3808), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3800), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [215777] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2549), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2551), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [215841] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2633), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2655), 49, + ACTIONS(2635), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -397060,24 +395882,586 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [215905] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2629), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2631), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [215969] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2629), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2631), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [216033] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2633), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2635), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [216097] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [216161] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [216225] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4033), 1, + anon_sym_COMMA, + STATE(4446), 1, + aux_sym_keywords_repeat1, + ACTIONS(2601), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2603), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [217181] = 4, + [216293] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2657), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2221), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2223), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [216357] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3802), 1, + anon_sym_PIPE, + ACTIONS(3810), 1, + anon_sym_when, + ACTIONS(3812), 1, + anon_sym_COLON_COLON, + ACTIONS(3814), 1, + anon_sym_EQ_GT, + ACTIONS(3816), 1, + anon_sym_EQ, + ACTIONS(3826), 1, + anon_sym_in, + ACTIONS(3828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3832), 1, + anon_sym_STAR_STAR, + ACTIONS(3834), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3804), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3808), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3800), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2597), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3806), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [216461] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2559), 4, + sym_not_in, + ts_builtin_sym_end, + aux_sym_terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2561), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [216525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2599), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2659), 49, + ACTIONS(1873), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -397120,24 +396504,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [217245] = 4, + [216589] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2661), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2559), 4, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2663), 49, + anon_sym_LBRACK2, + ACTIONS(2561), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -397181,24 +396566,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [217309] = 4, + [216653] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2665), 2, + ACTIONS(4026), 1, + anon_sym_COMMA, + STATE(4317), 1, + aux_sym_keywords_repeat1, + ACTIONS(2707), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2667), 49, + ACTIONS(2709), 47, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -397241,23 +396628,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [217373] = 4, + [216721] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2669), 2, - sym_not_in, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2559), 3, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2671), 49, + ACTIONS(2561), 47, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -397300,20 +396690,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [217437] = 4, + [216789] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2221), 2, + ACTIONS(2601), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2223), 49, - anon_sym_LPAREN, + ACTIONS(2603), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -397360,20 +396748,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [217501] = 4, + [216853] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2229), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + 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, - ACTIONS(2231), 49, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(2611), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -397421,46 +396810,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [217565] = 4, + [216917] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(2233), 2, - sym_not_in, + ACTIONS(4044), 1, + anon_sym_EQ_GT, + ACTIONS(4046), 1, + anon_sym_EQ, + ACTIONS(4056), 1, + anon_sym_in, + ACTIONS(4058), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4060), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4062), 1, + anon_sym_STAR_STAR, + ACTIONS(4064), 1, + anon_sym_DOT, + ACTIONS(4066), 1, anon_sym_LBRACK2, + ACTIONS(4068), 1, + sym_not_in, + ACTIONS(4038), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4042), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2235), 49, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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, + ACTIONS(4048), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4050), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4036), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4052), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4040), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 7, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4054), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -397470,30 +396885,17 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [217629] = 4, + [217012] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2165), 2, + ACTIONS(2571), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2167), 49, - anon_sym_LPAREN, + ACTIONS(2573), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -397542,18 +396944,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [217693] = 4, + [217075] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2169), 2, + ACTIONS(2575), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2171), 49, - anon_sym_LPAREN, + ACTIONS(2577), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -397602,24 +397003,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [217757] = 4, + [217138] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2625), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2718), 4, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2720), 48, - anon_sym_SEMI, + ACTIONS(2627), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -397662,103 +397062,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [217821] = 22, + [217201] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, - anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, - anon_sym_EQ_GT, - ACTIONS(4064), 1, - anon_sym_EQ, - ACTIONS(4074), 1, - anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, sym_not_in, - ACTIONS(4054), 2, + aux_sym_terminator_token1, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(4066), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4068), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4050), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(4070), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [217920] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2427), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2429), 48, + ACTIONS(2597), 34, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -397766,107 +397106,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_EQ, anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [217983] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4052), 1, - anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, - anon_sym_EQ_GT, - ACTIONS(4064), 1, - anon_sym_EQ, - ACTIONS(4074), 1, - anon_sym_in, - ACTIONS(4076), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, - anon_sym_STAR_STAR, - ACTIONS(4082), 1, - sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4054), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4058), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(4066), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4068), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2409), 4, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4050), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4070), 5, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4072), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -397876,22 +397127,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [218084] = 4, + anon_sym_in, + anon_sym_end, + [217280] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(273), 2, + ACTIONS(2579), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(275), 48, + ACTIONS(2581), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -397934,23 +397188,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [218147] = 4, + [217343] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2694), 2, + ACTIONS(2583), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2696), 48, + ACTIONS(2585), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -397993,24 +397247,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [218210] = 4, + [217406] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2289), 2, + ACTIONS(2625), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2291), 48, + ACTIONS(2627), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -398053,73 +397305,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [218273] = 21, + anon_sym_DOT_DOT_DOT_GT, + [217469] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4088), 1, - anon_sym_PIPE, - ACTIONS(4096), 1, - anon_sym_EQ_GT, - ACTIONS(4098), 1, - anon_sym_EQ, - ACTIONS(4108), 1, - anon_sym_in, - ACTIONS(4110), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, - anon_sym_STAR_STAR, - ACTIONS(4116), 1, - anon_sym_DOT, - ACTIONS(4118), 1, - anon_sym_LBRACK2, - ACTIONS(4120), 1, + ACTIONS(2587), 2, sym_not_in, - ACTIONS(4090), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4100), 3, + ACTIONS(2589), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_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, - ACTIONS(4102), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4086), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4104), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4092), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4106), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -398129,17 +397354,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [218370] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [217532] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2363), 2, + ACTIONS(2591), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2365), 48, + ACTIONS(2593), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -398188,25 +397424,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [218433] = 4, + [217595] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(2698), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3914), 1, + anon_sym_STAR_STAR, + ACTIONS(3916), 1, + anon_sym_DOT, + ACTIONS(3918), 1, anon_sym_LBRACK2, + ACTIONS(3882), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3888), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2700), 48, + ACTIONS(3886), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 34, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -398236,86 +397491,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + [217674] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3908), 1, + anon_sym_in, + ACTIONS(3910), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3912), 1, anon_sym_SLASH_SLASH, + ACTIONS(3914), 1, + anon_sym_STAR_STAR, + ACTIONS(3916), 1, + anon_sym_DOT, + ACTIONS(3918), 1, + anon_sym_LBRACK2, + ACTIONS(3920), 1, + sym_not_in, + ACTIONS(3882), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3886), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [218496] = 23, + ACTIONS(3906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [217757] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(4088), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(4096), 1, + ACTIONS(3896), 1, anon_sym_EQ_GT, - ACTIONS(4098), 1, + ACTIONS(3898), 1, anon_sym_EQ, - ACTIONS(4108), 1, + ACTIONS(3908), 1, anon_sym_in, - ACTIONS(4110), 1, + ACTIONS(3910), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, + ACTIONS(3912), 1, anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, + ACTIONS(3914), 1, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(3916), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3918), 1, anon_sym_LBRACK2, - ACTIONS(4120), 1, + ACTIONS(3920), 1, sym_not_in, - ACTIONS(4122), 1, - anon_sym_when, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(4090), 2, + ACTIONS(3882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4094), 2, + ACTIONS(3888), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4100), 3, + ACTIONS(3900), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4102), 3, + ACTIONS(3902), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2409), 4, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4086), 4, + ACTIONS(3878), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4104), 5, + ACTIONS(3904), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4092), 6, + ACTIONS(2597), 6, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(3886), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4106), 9, + ACTIONS(3906), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -398325,22 +397636,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [218597] = 4, + [217854] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2702), 2, + ACTIONS(2595), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2704), 48, + ACTIONS(2597), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -398383,23 +397695,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [218660] = 4, + [217917] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2706), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3914), 1, + anon_sym_STAR_STAR, + ACTIONS(3916), 1, + anon_sym_DOT, + ACTIONS(3918), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2708), 48, + ACTIONS(2597), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -398440,78 +397757,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [218723] = 23, + [217986] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(4088), 1, - anon_sym_PIPE, - ACTIONS(4096), 1, - anon_sym_EQ_GT, - ACTIONS(4098), 1, - anon_sym_EQ, - ACTIONS(4108), 1, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3597), 1, anon_sym_in, - ACTIONS(4110), 1, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(4118), 1, - anon_sym_LBRACK2, - ACTIONS(4120), 1, + ACTIONS(3607), 1, sym_not_in, - ACTIONS(4122), 1, - anon_sym_when, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(4090), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4094), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(4100), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4102), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2409), 4, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4086), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4104), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4092), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4106), 9, + ACTIONS(3595), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -398521,41 +397802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [218824] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3657), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, - anon_sym_STAR_STAR, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(3631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3635), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3633), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 34, + ACTIONS(2597), 24, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -398578,67 +397826,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - [218903] = 15, + anon_sym_end, + [218071] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3655), 1, - anon_sym_in, - ACTIONS(3657), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(3914), 1, anon_sym_STAR_STAR, - ACTIONS(3663), 1, + ACTIONS(3916), 1, anon_sym_DOT, - ACTIONS(3665), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3631), 2, + ACTIONS(3918), 1, + anon_sym_LBRACK2, + ACTIONS(3882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3635), 2, + ACTIONS(3888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3633), 6, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3886), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3653), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 24, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2597), 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, @@ -398658,74 +397880,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [218988] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4088), 1, - anon_sym_PIPE, - ACTIONS(4096), 1, - anon_sym_EQ_GT, - ACTIONS(4098), 1, - anon_sym_EQ, - ACTIONS(4108), 1, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4110), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, + [218146] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(3914), 1, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(3916), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3918), 1, anon_sym_LBRACK2, - ACTIONS(4120), 1, - sym_not_in, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(4090), 2, + ACTIONS(3882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4100), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4102), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4086), 4, + ACTIONS(2597), 44, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, + anon_sym_PIPE, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4104), 5, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4092), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4106), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -398735,28 +397947,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [219087] = 7, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + [218217] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2629), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3661), 1, - anon_sym_STAR_STAR, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 46, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2631), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -398797,40 +398012,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - [219156] = 10, + anon_sym_STAR_STAR, + anon_sym_DOT, + [218280] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2629), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3661), 1, - anon_sym_STAR_STAR, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(3631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3635), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3633), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2631), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -398862,30 +398065,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [219231] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [218343] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2633), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3661), 1, - anon_sym_STAR_STAR, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(3631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2409), 44, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2635), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -398925,22 +398129,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - [219302] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [218406] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2183), 2, + 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(2185), 48, + ACTIONS(2639), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -398983,74 +398191,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [219365] = 21, + [218469] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3643), 1, - anon_sym_EQ_GT, - ACTIONS(3645), 1, - anon_sym_EQ, - ACTIONS(3655), 1, - anon_sym_in, - ACTIONS(3657), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, - anon_sym_STAR_STAR, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3665), 1, + ACTIONS(2641), 2, sym_not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3631), 2, + aux_sym_terminator_token1, + ACTIONS(2643), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3635), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 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(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3627), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3633), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(3653), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -399060,72 +398239,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [219462] = 20, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [218532] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3645), 1, + ACTIONS(3571), 1, + anon_sym_PIPE, + ACTIONS(3581), 1, + anon_sym_when, + ACTIONS(3583), 1, + anon_sym_COLON_COLON, + ACTIONS(3585), 1, + anon_sym_EQ_GT, + ACTIONS(3587), 1, anon_sym_EQ, - ACTIONS(3655), 1, + ACTIONS(3597), 1, anon_sym_in, - ACTIONS(3657), 1, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3665), 1, + ACTIONS(3607), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3631), 2, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3635), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 3, + ACTIONS(3589), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3649), 3, + ACTIONS(3591), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3627), 4, + ACTIONS(2597), 4, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_end, + ACTIONS(3569), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3651), 5, + ACTIONS(3593), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3633), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - ACTIONS(3653), 9, + ACTIONS(3595), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -399135,57 +398329,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [219557] = 18, + [218635] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3655), 1, + ACTIONS(3571), 1, + anon_sym_PIPE, + ACTIONS(3581), 1, + anon_sym_when, + ACTIONS(3583), 1, + anon_sym_COLON_COLON, + ACTIONS(3585), 1, + anon_sym_EQ_GT, + ACTIONS(3587), 1, + anon_sym_EQ, + ACTIONS(3597), 1, anon_sym_in, - ACTIONS(3657), 1, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3665), 1, + ACTIONS(3607), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3631), 2, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3635), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3649), 3, + ACTIONS(3589), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3591), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3627), 4, + ACTIONS(2597), 4, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_end, + ACTIONS(3569), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3651), 5, + ACTIONS(3593), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3633), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3653), 9, + ACTIONS(3595), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -399195,222 +398408,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - [219648] = 17, + [218738] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3655), 1, + ACTIONS(3571), 1, + anon_sym_PIPE, + ACTIONS(3583), 1, + anon_sym_COLON_COLON, + ACTIONS(3585), 1, + anon_sym_EQ_GT, + ACTIONS(3587), 1, + anon_sym_EQ, + ACTIONS(3597), 1, anon_sym_in, - ACTIONS(3657), 1, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(3663), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3665), 1, + ACTIONS(3607), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3631), 2, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3635), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3627), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3651), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3633), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3653), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3589), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3591), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - [219737] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3655), 1, - anon_sym_in, - ACTIONS(3657), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, - anon_sym_STAR_STAR, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3665), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3635), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3627), 4, + ACTIONS(3569), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3633), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3653), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 20, + ACTIONS(2597), 5, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_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, + ACTIONS(3593), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - [219824] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3655), 1, - anon_sym_in, - ACTIONS(3657), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, - anon_sym_STAR_STAR, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3665), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3635), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3633), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_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(3595), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -399420,108 +398486,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [219907] = 11, + [218839] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2645), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3659), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, - anon_sym_STAR_STAR, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(3631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3635), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3633), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2647), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [219984] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3659), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, - anon_sym_STAR_STAR, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(3631), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3635), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3633), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -399552,103 +398536,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [220061] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2755), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3527), 1, - anon_sym_PIPE, - ACTIONS(3537), 1, - anon_sym_when, - ACTIONS(3539), 1, - anon_sym_COLON_COLON, - ACTIONS(3541), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, - anon_sym_EQ, - ACTIONS(3553), 1, - anon_sym_in, - ACTIONS(3555), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, - anon_sym_STAR_STAR, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3563), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2757), 2, - anon_sym_SEMI, - anon_sym_end, - ACTIONS(3529), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3533), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3535), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - 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(3525), 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(3531), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3551), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [220166] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [218902] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2479), 2, + ACTIONS(2661), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2481), 48, + ACTIONS(2664), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -399691,23 +398603,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [220229] = 4, + anon_sym_DOT_DOT_DOT_GT, + [218965] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2483), 2, + ACTIONS(2629), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2485), 48, + ACTIONS(2631), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -399750,23 +398662,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [220292] = 4, + anon_sym_DOT_DOT_DOT_GT, + [219028] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2487), 2, + ACTIONS(2629), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2489), 48, + ACTIONS(2631), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -399809,76 +398721,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [220355] = 24, + anon_sym_DOT_DOT_DOT_GT, + [219091] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3991), 1, - anon_sym_when, - ACTIONS(3993), 1, - anon_sym_COLON_COLON, - ACTIONS(3995), 1, - anon_sym_EQ_GT, - ACTIONS(3997), 1, - anon_sym_EQ, - ACTIONS(4007), 1, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(3742), 1, anon_sym_in, - ACTIONS(4009), 1, + ACTIONS(3744), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, + ACTIONS(3746), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, + ACTIONS(3748), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, - anon_sym_DOT, - ACTIONS(4017), 1, - anon_sym_LBRACK2, - ACTIONS(4019), 1, + ACTIONS(3750), 1, sym_not_in, - ACTIONS(2757), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(3981), 2, + ACTIONS(3771), 1, + anon_sym_PIPE, + ACTIONS(3775), 1, + anon_sym_when, + ACTIONS(3777), 1, + anon_sym_COLON_COLON, + ACTIONS(3779), 1, + anon_sym_EQ_GT, + ACTIONS(3781), 1, + anon_sym_EQ, + ACTIONS(3734), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3987), 2, + ACTIONS(3738), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3989), 2, + ACTIONS(3773), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + ACTIONS(3961), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3999), 3, + ACTIONS(3783), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4001), 3, + ACTIONS(3785), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3977), 4, + ACTIONS(3732), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4003), 5, + ACTIONS(3787), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3985), 6, + ACTIONS(3736), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4005), 9, + ACTIONS(3740), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [219194] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2633), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2635), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -399888,17 +398848,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [220458] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [219257] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2189), 2, + 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(2191), 48, + ACTIONS(2639), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -399947,17 +398919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [220521] = 4, + [219320] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2714), 2, + 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(2716), 48, + ACTIONS(2643), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -400006,22 +398978,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [220584] = 4, + [219383] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2718), 2, - sym_not_in, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3603), 1, + anon_sym_STAR_STAR, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2720), 48, + ACTIONS(2597), 46, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -400062,25 +399039,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [220647] = 4, + anon_sym_end, + [219452] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2145), 2, + ACTIONS(2425), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2147), 48, + ACTIONS(2427), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -400123,24 +399099,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [220710] = 4, + [219515] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2289), 2, + ACTIONS(2645), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2291), 48, + ACTIONS(2647), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -400183,22 +399157,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [220773] = 4, + anon_sym_DOT_DOT_DOT_GT, + [219578] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2743), 2, + 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(2745), 48, + ACTIONS(2651), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -400241,124 +399217,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [220836] = 23, + [219641] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(3892), 1, + anon_sym_when, + ACTIONS(3894), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(3896), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(3898), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(3908), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(3910), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(3912), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(3914), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(3916), 1, + anon_sym_DOT, + ACTIONS(3918), 1, + anon_sym_LBRACK2, + ACTIONS(3920), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4054), 2, + ACTIONS(3882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(3888), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4066), 3, + ACTIONS(3900), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(3902), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2409), 4, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2597), 4, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4050), 4, + ACTIONS(3878), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(3904), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(3886), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [220937] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2491), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2493), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, + ACTIONS(3906), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -400368,50 +399295,35 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [221000] = 12, + [219742] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3555), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(3561), 1, + ACTIONS(3605), 1, anon_sym_DOT, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(2595), 2, sym_not_in, aux_sym_terminator_token1, - ACTIONS(3529), 2, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3533), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3531), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 34, + ACTIONS(2597), 36, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -400445,18 +399357,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_end, - [221079] = 4, + [219817] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2269), 2, + ACTIONS(2595), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2271), 48, + ACTIONS(2597), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -400505,17 +399419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [221142] = 4, + [219880] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2269), 2, + 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(2271), 48, + ACTIONS(2651), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -400564,22 +399478,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [221205] = 4, + [219943] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2273), 2, + ACTIONS(2653), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2275), 48, + ACTIONS(2655), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -400622,18 +399537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [221268] = 4, + [220006] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2653), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2279), 48, + ACTIONS(2655), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -400682,17 +399596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [221331] = 4, + [220069] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2281), 2, + ACTIONS(2657), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2283), 48, + ACTIONS(2659), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -400741,22 +399655,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [221394] = 4, + [220132] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2285), 2, + ACTIONS(2657), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2287), 48, + ACTIONS(2659), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -400799,45 +399714,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [221457] = 4, + [220195] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(2289), 2, - sym_not_in, + ACTIONS(3880), 1, + anon_sym_PIPE, + ACTIONS(3894), 1, + anon_sym_COLON_COLON, + ACTIONS(3896), 1, + anon_sym_EQ_GT, + ACTIONS(3898), 1, + anon_sym_EQ, + ACTIONS(3908), 1, + anon_sym_in, + ACTIONS(3910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3914), 1, + anon_sym_STAR_STAR, + ACTIONS(3916), 1, + anon_sym_DOT, + ACTIONS(3918), 1, anon_sym_LBRACK2, + ACTIONS(3920), 1, + sym_not_in, + ACTIONS(3882), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3888), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2291), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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, + ACTIONS(3900), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3902), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3878), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2597), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(3904), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3886), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3906), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -400847,56 +399791,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [220294] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3896), 1, + anon_sym_EQ_GT, + ACTIONS(3898), 1, + anon_sym_EQ, + ACTIONS(3908), 1, anon_sym_in, + ACTIONS(3910), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3912), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3914), 1, anon_sym_STAR_STAR, + ACTIONS(3916), 1, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [221520] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2289), 2, - sym_not_in, + ACTIONS(3918), 1, anon_sym_LBRACK2, + ACTIONS(3920), 1, + sym_not_in, + ACTIONS(3882), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3888), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2291), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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, + ACTIONS(3900), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3902), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3878), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3904), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3886), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(3906), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -400906,117 +399866,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [220389] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3898), 1, + anon_sym_EQ, + ACTIONS(3908), 1, anon_sym_in, + ACTIONS(3910), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3912), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3914), 1, anon_sym_STAR_STAR, + ACTIONS(3916), 1, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [221583] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2289), 1, - sym_not_in, - ACTIONS(4116), 1, - anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3918), 1, anon_sym_LBRACK2, + ACTIONS(3920), 1, + sym_not_in, + ACTIONS(3882), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3888), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2291), 47, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_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, + ACTIONS(3900), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3902), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3878), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3904), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(3886), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT_DOT_DOT_GT, - [221650] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2289), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2291), 48, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2597), 8, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + 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, + ACTIONS(3906), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -401026,34 +399940,29 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [221713] = 4, + [220482] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2341), 2, - sym_not_in, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3603), 1, + anon_sym_STAR_STAR, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2343), 48, + ACTIONS(3573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2597), 44, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -401093,26 +400002,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [221776] = 4, + anon_sym_end, + [220553] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2345), 2, + ACTIONS(2161), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2347), 48, + ACTIONS(2163), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -401155,46 +400062,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [221839] = 4, + [220616] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2217), 2, - sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2219), 48, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4072), 1, anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, + anon_sym_in, + ACTIONS(4100), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4102), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4104), 1, + anon_sym_STAR_STAR, + ACTIONS(4106), 1, + sym_not_in, + ACTIONS(2769), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4074), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4080), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4070), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4076), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -401204,53 +400141,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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [221902] = 15, + [220719] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3553), 1, + ACTIONS(3908), 1, anon_sym_in, - ACTIONS(3555), 1, + ACTIONS(3910), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, + ACTIONS(3912), 1, anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, + ACTIONS(3914), 1, anon_sym_STAR_STAR, - ACTIONS(3561), 1, + ACTIONS(3916), 1, anon_sym_DOT, - ACTIONS(3563), 1, + ACTIONS(3918), 1, + anon_sym_LBRACK2, + ACTIONS(3920), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3529), 2, + ACTIONS(3882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3533), 2, + ACTIONS(3888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3531), 6, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3878), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3886), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3551), 9, + ACTIONS(3906), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -401260,11 +400200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 24, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2597), 12, anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -401274,38 +400213,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_end, - [221987] = 7, + [220808] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2489), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3559), 1, - anon_sym_STAR_STAR, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 46, - anon_sym_SEMI, + ACTIONS(2491), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -401346,18 +400270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_end, - [222056] = 4, + anon_sym_STAR_STAR, + anon_sym_DOT, + [220871] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2503), 2, + ACTIONS(2505), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2505), 48, + ACTIONS(2507), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -401406,23 +400331,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [222119] = 4, + [220934] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2507), 2, + ACTIONS(2541), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2509), 48, + ACTIONS(2543), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -401465,46 +400389,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [222182] = 5, + anon_sym_DOT_DOT_DOT_GT, + [220997] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(2673), 2, - sym_not_in, + ACTIONS(3908), 1, + anon_sym_in, + ACTIONS(3910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3914), 1, + anon_sym_STAR_STAR, + ACTIONS(3916), 1, + anon_sym_DOT, + ACTIONS(3918), 1, anon_sym_LBRACK2, - ACTIONS(2876), 2, - anon_sym_when, - anon_sym_DASH_GT, + ACTIONS(3920), 1, + sym_not_in, + ACTIONS(3882), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3888), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2675), 46, + ACTIONS(3878), 4, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - 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_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3904), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3886), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3906), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -401514,33 +400445,39 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [222247] = 4, + ACTIONS(2597), 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, + [221084] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2355), 2, + ACTIONS(2517), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2357), 48, + ACTIONS(2519), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -401583,27 +400520,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [222310] = 4, + [221147] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(2515), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, + ACTIONS(4114), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4116), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2517), 48, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 34, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -401633,33 +400587,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + [221226] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(4114), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4116), 1, anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4122), 1, + anon_sym_in, + ACTIONS(4124), 1, + sym_not_in, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [222373] = 4, + ACTIONS(4120), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [221309] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2519), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2521), 48, + ACTIONS(2597), 46, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -401700,28 +400718,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [222436] = 4, + [221378] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2375), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2377), 48, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 36, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -401753,31 +400783,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [222499] = 4, + [221453] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2379), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2381), 48, + ACTIONS(2597), 44, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -401817,61 +400846,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [222562] = 10, + [221524] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(3559), 1, + ACTIONS(4114), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4116), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, anon_sym_STAR_STAR, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(4122), 1, + anon_sym_in, + ACTIONS(4124), 1, sym_not_in, - aux_sym_terminator_token1, - ACTIONS(3529), 2, + ACTIONS(4128), 1, + anon_sym_EQ_GT, + ACTIONS(4130), 1, + anon_sym_EQ, + ACTIONS(4108), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3533), 2, + ACTIONS(4112), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3531), 6, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4132), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4134), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4126), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4136), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4110), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2597), 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, - anon_sym_EQ_GT, + ACTIONS(4120), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [221619] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(4114), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4116), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4122), 1, + anon_sym_in, + ACTIONS(4124), 1, + sym_not_in, + ACTIONS(4130), 1, anon_sym_EQ, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4132), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4134), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4126), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4136), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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(4120), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -401881,55 +400995,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_end, - [222637] = 8, + [221712] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(3559), 1, + ACTIONS(4114), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4116), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, anon_sym_STAR_STAR, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, + ACTIONS(4122), 1, + anon_sym_in, + ACTIONS(4124), 1, sym_not_in, - aux_sym_terminator_token1, - ACTIONS(3529), 2, + ACTIONS(4108), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2409), 44, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, + ACTIONS(4112), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4134), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4126), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4136), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4120), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -401939,34 +401054,143 @@ 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, + ACTIONS(2597), 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, + [221801] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(4114), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4116), 1, anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4122), 1, + anon_sym_in, + ACTIONS(4124), 1, + sym_not_in, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4126), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4136), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_end, - [222708] = 4, + ACTIONS(4120), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 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, + [221888] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(2217), 2, - sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, + ACTIONS(4114), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4116), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4122), 1, + anon_sym_in, + ACTIONS(4124), 1, + sym_not_in, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2219), 48, + ACTIONS(4126), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4120), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 20, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -401984,67 +401208,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [222771] = 12, + [221973] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(3607), 1, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(4114), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, + ACTIONS(4116), 1, anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, + ACTIONS(4118), 1, anon_sym_STAR_STAR, - ACTIONS(3613), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3581), 2, + ACTIONS(4122), 1, + anon_sym_in, + ACTIONS(4124), 1, + sym_not_in, + ACTIONS(4108), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3585), 2, + ACTIONS(4112), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, - sym_not_in, - ts_builtin_sym_end, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3583), 6, + ACTIONS(4110), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 33, - anon_sym_SEMI, + ACTIONS(2597), 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, @@ -402073,27 +401276,42 @@ 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, - [222850] = 4, + [222054] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2718), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, + ACTIONS(4116), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2720), 48, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -402124,34 +401342,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [222913] = 4, + [222131] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, + ACTIONS(4116), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2361), 48, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -402182,32 +401408,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + [222208] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3585), 1, + anon_sym_EQ_GT, + ACTIONS(3587), 1, + anon_sym_EQ, + ACTIONS(3597), 1, + anon_sym_in, + ACTIONS(3599), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, + ACTIONS(3603), 1, + anon_sym_STAR_STAR, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3607), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3577), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3589), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3591), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3569), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3593), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3575), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [222976] = 4, + ACTIONS(2597), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_end, + ACTIONS(3595), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [222305] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 2, + ACTIONS(2493), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2361), 48, + ACTIONS(2495), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -402250,26 +401543,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [223039] = 6, + [222368] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 1, + ACTIONS(2667), 2, sym_not_in, - ACTIONS(4116), 1, - anon_sym_DOT, - ACTIONS(4118), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2361), 47, + ACTIONS(2669), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -402311,23 +401601,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT_DOT_DOT_GT, - [223106] = 4, + anon_sym_DOT, + [222431] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 2, + ACTIONS(2671), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2361), 48, + ACTIONS(2673), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -402370,44 +401661,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [223169] = 15, + [222494] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(3908), 1, anon_sym_in, - ACTIONS(3607), 1, + ACTIONS(3910), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, + ACTIONS(3912), 1, anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, + ACTIONS(3914), 1, anon_sym_STAR_STAR, - ACTIONS(3613), 1, + ACTIONS(3916), 1, anon_sym_DOT, - ACTIONS(3615), 1, + ACTIONS(3918), 1, anon_sym_LBRACK2, - ACTIONS(3617), 1, + ACTIONS(3920), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3581), 2, + ACTIONS(3882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3585), 2, + ACTIONS(3888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3583), 6, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3878), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3886), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3603), 9, + ACTIONS(3906), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -402417,11 +401710,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 23, - anon_sym_SEMI, + ACTIONS(2597), 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, + [222579] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3908), 1, + anon_sym_in, + ACTIONS(3910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3914), 1, + anon_sym_STAR_STAR, + ACTIONS(3916), 1, + anon_sym_DOT, + ACTIONS(3918), 1, + anon_sym_LBRACK2, + ACTIONS(3920), 1, + sym_not_in, + ACTIONS(3882), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3888), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3886), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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, @@ -402441,22 +401790,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [223254] = 4, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [222660] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2363), 2, + ACTIONS(2675), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2365), 48, + ACTIONS(2677), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -402499,156 +401858,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [223317] = 24, + [222723] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3527), 1, - anon_sym_PIPE, - ACTIONS(3537), 1, - anon_sym_when, - ACTIONS(3539), 1, - anon_sym_COLON_COLON, - ACTIONS(3541), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, - anon_sym_EQ, - ACTIONS(3553), 1, - anon_sym_in, - ACTIONS(3555), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(3912), 1, anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, + ACTIONS(3914), 1, anon_sym_STAR_STAR, - ACTIONS(3561), 1, + ACTIONS(3916), 1, anon_sym_DOT, - ACTIONS(3563), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3529), 2, + ACTIONS(3918), 1, + anon_sym_LBRACK2, + ACTIONS(3882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3533), 2, + ACTIONS(3888), 2, anon_sym_PLUS, anon_sym_DASH, - 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(2409), 4, - anon_sym_SEMI, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_end, - ACTIONS(3525), 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(3531), 6, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3886), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3551), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [223420] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3527), 1, + ACTIONS(2597), 35, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3537), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3539), 1, anon_sym_COLON_COLON, - ACTIONS(3541), 1, anon_sym_EQ_GT, - ACTIONS(3543), 1, anon_sym_EQ, - ACTIONS(3553), 1, - anon_sym_in, - ACTIONS(3555), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, - anon_sym_STAR_STAR, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3563), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3529), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3533), 2, - anon_sym_PLUS, - anon_sym_DASH, - 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(2409), 4, - anon_sym_SEMI, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_end, - ACTIONS(3525), 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(3531), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3551), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -402658,75 +401922,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [223523] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3527), 1, - anon_sym_PIPE, - ACTIONS(3539), 1, - anon_sym_COLON_COLON, - ACTIONS(3541), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, - anon_sym_EQ, - ACTIONS(3553), 1, anon_sym_in, - ACTIONS(3555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, + [222800] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(3912), 1, anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, + ACTIONS(3914), 1, anon_sym_STAR_STAR, - ACTIONS(3561), 1, + ACTIONS(3916), 1, anon_sym_DOT, - ACTIONS(3563), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3529), 2, + ACTIONS(3918), 1, + anon_sym_LBRACK2, + ACTIONS(3882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3533), 2, + ACTIONS(3888), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3545), 3, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3886), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 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, - ACTIONS(3547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3525), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_SEMI, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_end, - 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(3531), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3551), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -402736,17 +401988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [223624] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [222877] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2375), 2, + ACTIONS(2667), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2377), 48, + ACTIONS(2669), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -402795,17 +402049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [223687] = 4, + [222940] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2379), 2, + ACTIONS(2671), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2381), 48, + ACTIONS(2673), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -402854,22 +402108,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [223750] = 4, + [223003] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2383), 2, + ACTIONS(2595), 1, sym_not_in, + ACTIONS(3916), 1, + anon_sym_DOT, + ACTIONS(3918), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2385), 48, + ACTIONS(2597), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -402911,76 +402169,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [223813] = 22, + [223070] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_PIPE, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - ACTIONS(3595), 1, - anon_sym_EQ, - ACTIONS(3605), 1, - anon_sym_in, - ACTIONS(3607), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, - anon_sym_STAR_STAR, - ACTIONS(3613), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3617), 1, + ACTIONS(2605), 2, sym_not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3581), 2, + ACTIONS(2607), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3585), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3597), 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(3599), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3577), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_SEMI, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(3601), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3583), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3603), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -402990,28 +402217,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [223912] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3611), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3613), 1, anon_sym_DOT, - ACTIONS(3615), 1, + [223133] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2413), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 3, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 45, - anon_sym_SEMI, + ACTIONS(2415), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -403052,40 +402285,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - [223981] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3611), 1, anon_sym_STAR_STAR, - ACTIONS(3613), 1, anon_sym_DOT, - ACTIONS(3615), 1, + [223196] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2417), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3581), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3585), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2407), 3, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3583), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_SEMI, + ACTIONS(2419), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -403117,30 +402338,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [224056] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3611), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3613), 1, anon_sym_DOT, - ACTIONS(3615), 1, + [223259] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2557), 1, + anon_sym_COMMA, + ACTIONS(2661), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3581), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2407), 3, - sym_not_in, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 43, - anon_sym_SEMI, + ACTIONS(2664), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -403180,76 +402402,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - [224127] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3579), 1, - anon_sym_PIPE, - ACTIONS(3589), 1, - anon_sym_when, - ACTIONS(3591), 1, - anon_sym_COLON_COLON, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - ACTIONS(3595), 1, - anon_sym_EQ, - ACTIONS(3605), 1, - anon_sym_in, - ACTIONS(3607), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3613), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3617), 1, + anon_sym_DOT_DOT_DOT_GT, + [223324] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2599), 2, sym_not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3581), 2, + ACTIONS(1873), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3585), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2409), 3, - anon_sym_SEMI, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3597), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3599), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3577), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3601), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3583), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3603), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -403259,76 +402453,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [224230] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3579), 1, - anon_sym_PIPE, - ACTIONS(3589), 1, - anon_sym_when, - ACTIONS(3591), 1, - anon_sym_COLON_COLON, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - ACTIONS(3595), 1, - anon_sym_EQ, - ACTIONS(3605), 1, anon_sym_in, - ACTIONS(3607), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3613), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3617), 1, + anon_sym_DOT_DOT_DOT_GT, + [223387] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2601), 2, sym_not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3581), 2, + ACTIONS(2603), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3585), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2409), 3, - anon_sym_SEMI, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3597), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3599), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3577), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3601), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3583), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3603), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -403338,155 +402512,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [224333] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3144), 1, - aux_sym_terminator_token1, - ACTIONS(3629), 1, - anon_sym_PIPE, - ACTIONS(3639), 1, - anon_sym_when, - ACTIONS(3641), 1, - anon_sym_COLON_COLON, - ACTIONS(3643), 1, - anon_sym_EQ_GT, - ACTIONS(3645), 1, - anon_sym_EQ, - ACTIONS(3655), 1, anon_sym_in, - ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, - anon_sym_STAR_STAR, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3665), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3146), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(3631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3635), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3637), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3647), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3649), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3627), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3651), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3633), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3653), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [224438] = 23, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [223450] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3579), 1, - anon_sym_PIPE, - ACTIONS(3591), 1, - anon_sym_COLON_COLON, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - ACTIONS(3595), 1, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3587), 1, anon_sym_EQ, - ACTIONS(3605), 1, + ACTIONS(3597), 1, anon_sym_in, - ACTIONS(3607), 1, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(3613), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3617), 1, + ACTIONS(3607), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3581), 2, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3585), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3597), 3, + ACTIONS(3589), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3599), 3, + ACTIONS(3591), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2409), 4, - anon_sym_SEMI, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(3577), 4, + ACTIONS(3569), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3601), 5, + ACTIONS(3593), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3583), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3603), 9, + ACTIONS(2597), 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_end, + ACTIONS(3595), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -403496,73 +402599,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [224539] = 21, + [223545] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - ACTIONS(3595), 1, - anon_sym_EQ, - ACTIONS(3605), 1, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3597), 1, anon_sym_in, - ACTIONS(3607), 1, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(3613), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3617), 1, + ACTIONS(3607), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3581), 2, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3585), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3597), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3599), 3, + ACTIONS(3591), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3577), 4, + ACTIONS(3569), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3601), 5, + ACTIONS(3593), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(3583), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3603), 9, + ACTIONS(3595), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -403572,64 +402659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [224636] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3595), 1, - anon_sym_EQ, - ACTIONS(3605), 1, - anon_sym_in, - ACTIONS(3607), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, - anon_sym_STAR_STAR, - ACTIONS(3613), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3617), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3581), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3585), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3597), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3599), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3577), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3601), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3583), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 7, + ACTIONS(2597), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LT_DASH, @@ -403637,68 +402667,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - ACTIONS(3603), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [224731] = 18, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_end, + [223636] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(2767), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3639), 1, + anon_sym_when, + ACTIONS(3641), 1, + anon_sym_COLON_COLON, + ACTIONS(3643), 1, + anon_sym_EQ_GT, + ACTIONS(3645), 1, + anon_sym_EQ, + ACTIONS(3655), 1, anon_sym_in, - ACTIONS(3607), 1, + ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, + ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, + ACTIONS(3661), 1, anon_sym_STAR_STAR, - ACTIONS(3613), 1, + ACTIONS(3663), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3617), 1, + ACTIONS(3665), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3581), 2, + ACTIONS(2769), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(3631), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3585), 2, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3599), 3, + ACTIONS(3637), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3647), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3577), 4, + ACTIONS(3627), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3601), 5, + ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3583), 6, + ACTIONS(3633), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3603), 9, + ACTIONS(3653), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -403708,66 +402752,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - [224822] = 17, + [223741] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3597), 1, anon_sym_in, - ACTIONS(3607), 1, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(3613), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3617), 1, + ACTIONS(3607), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3581), 2, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3585), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3577), 4, + ACTIONS(3569), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3601), 5, + ACTIONS(3593), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3583), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3603), 9, + ACTIONS(3595), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -403777,7 +402808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 14, + ACTIONS(2597), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LT_DASH, @@ -403792,107 +402823,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - [224911] = 4, + anon_sym_end, + [223830] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(2383), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2385), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3597), 1, anon_sym_in, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - anon_sym_DOT, - [224974] = 16, - ACTIONS(5), 1, - sym_comment, ACTIONS(3605), 1, - anon_sym_in, - ACTIONS(3607), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, - anon_sym_STAR_STAR, - ACTIONS(3613), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3617), 1, + ACTIONS(3607), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3581), 2, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3585), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3577), 4, + ACTIONS(3569), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3583), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3603), 9, + ACTIONS(3595), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -403902,7 +402874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 19, + ACTIONS(2597), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_LT_DASH, @@ -403922,161 +402894,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - [225061] = 14, + anon_sym_end, + [223917] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3605), 1, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3597), 1, anon_sym_in, - ACTIONS(3607), 1, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(3613), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3617), 1, + ACTIONS(3607), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3581), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3585), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3583), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 32, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [225144] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3609), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, - anon_sym_STAR_STAR, - ACTIONS(3613), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3581), 2, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3585), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3583), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 34, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [225221] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2698), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2700), 48, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 33, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -404105,41 +402963,45 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [225284] = 5, + anon_sym_end, + [224000] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2363), 2, - sym_not_in, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(2925), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3), 3, + ACTIONS(3601), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3603), 1, + anon_sym_STAR_STAR, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2365), 46, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3573), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3575), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_EQ, @@ -404167,47 +403029,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [225349] = 11, + anon_sym_end, + [224077] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3609), 1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(3613), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3581), 2, + ACTIONS(2595), 2, + sym_not_in, + aux_sym_terminator_token1, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3585), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2407), 3, - sym_not_in, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3583), 6, + ACTIONS(3575), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 34, + ACTIONS(2597), 35, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -404242,17 +403095,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [225426] = 4, + anon_sym_end, + [224154] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2459), 2, + ACTIONS(2525), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2461), 48, + ACTIONS(2527), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -404301,22 +403155,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [225489] = 4, + [224217] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2387), 2, + ACTIONS(2529), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2389), 48, + ACTIONS(2531), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -404359,46 +403214,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [225552] = 4, + [224280] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2702), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2704), 48, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3880), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3892), 1, + anon_sym_when, + ACTIONS(3894), 1, + anon_sym_COLON_COLON, + ACTIONS(3896), 1, + anon_sym_EQ_GT, + ACTIONS(3898), 1, + anon_sym_EQ, + ACTIONS(3908), 1, + anon_sym_in, + ACTIONS(3910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3912), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3914), 1, + anon_sym_STAR_STAR, + ACTIONS(3916), 1, + anon_sym_DOT, + ACTIONS(3918), 1, + anon_sym_LBRACK2, + ACTIONS(3920), 1, + sym_not_in, + ACTIONS(2769), 2, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DOT_DOT, + ACTIONS(3882), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3888), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3890), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(3900), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3902), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3878), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3904), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3886), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3906), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -404408,28 +403293,17 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [225615] = 4, + [224383] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(2529), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2441), 48, + ACTIONS(2531), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -404478,17 +403352,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [225678] = 4, + [224446] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2529), 1, sym_not_in, + ACTIONS(3916), 1, + anon_sym_DOT, + ACTIONS(3918), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(1857), 48, + ACTIONS(2531), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -404536,23 +403413,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [225741] = 4, + [224513] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2391), 2, + ACTIONS(2529), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2393), 48, + ACTIONS(2531), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -404595,78 +403472,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [225804] = 25, + [224576] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2757), 1, - anon_sym_SEMI, - ACTIONS(3579), 1, - anon_sym_PIPE, - ACTIONS(3589), 1, - anon_sym_when, - ACTIONS(3591), 1, - anon_sym_COLON_COLON, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - ACTIONS(3595), 1, - anon_sym_EQ, - ACTIONS(3605), 1, - anon_sym_in, - ACTIONS(3607), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, - anon_sym_STAR_STAR, - ACTIONS(3613), 1, - anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3617), 1, + ACTIONS(2675), 2, sym_not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2755), 2, - ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(3581), 2, + ACTIONS(2677), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3585), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3587), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3597), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3599), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3577), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3601), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3583), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3603), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -404676,17 +403519,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [225909] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [224639] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2387), 2, + ACTIONS(2533), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2389), 48, + ACTIONS(2535), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -404735,101 +403590,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [225972] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3991), 1, - anon_sym_when, - ACTIONS(3993), 1, - anon_sym_COLON_COLON, - ACTIONS(3995), 1, - anon_sym_EQ_GT, - ACTIONS(3997), 1, - anon_sym_EQ, - ACTIONS(4007), 1, - anon_sym_in, - ACTIONS(4009), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, - anon_sym_STAR_STAR, - ACTIONS(4015), 1, - anon_sym_DOT, - ACTIONS(4017), 1, - anon_sym_LBRACK2, - ACTIONS(4019), 1, - sym_not_in, - ACTIONS(2689), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(3981), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3987), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3989), 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(3999), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4001), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3977), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4003), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3985), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4005), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [226075] = 4, + [224702] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2395), 2, + ACTIONS(2537), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2397), 48, + ACTIONS(2539), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -404872,23 +403649,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [226138] = 4, + [224765] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2399), 2, + ACTIONS(2259), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2401), 48, + ACTIONS(2261), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -404931,23 +403708,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [226201] = 4, + [224828] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2403), 2, + ACTIONS(2201), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2405), 48, + ACTIONS(2203), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -404990,22 +403767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [226264] = 22, + [224891] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3629), 1, - anon_sym_PIPE, - ACTIONS(3643), 1, - anon_sym_EQ_GT, - ACTIONS(3645), 1, - anon_sym_EQ, - ACTIONS(3655), 1, - anon_sym_in, ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, ACTIONS(3659), 1, @@ -405014,43 +403780,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(3663), 1, anon_sym_DOT, - ACTIONS(3665), 1, - sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, + aux_sym_terminator_token1, ACTIONS(3631), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3649), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3627), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3651), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, ACTIONS(3633), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, @@ -405058,165 +403799,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3653), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [226363] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3629), 1, - anon_sym_PIPE, - ACTIONS(3639), 1, - anon_sym_when, - ACTIONS(3641), 1, - anon_sym_COLON_COLON, - ACTIONS(3643), 1, - anon_sym_EQ_GT, - ACTIONS(3645), 1, - anon_sym_EQ, - ACTIONS(3655), 1, - anon_sym_in, - ACTIONS(3657), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, - anon_sym_STAR_STAR, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3665), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3635), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3649), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2409), 4, + ACTIONS(2597), 34, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3627), 4, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3651), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3633), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3653), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [226466] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3629), 1, anon_sym_PIPE, - ACTIONS(3639), 1, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3641), 1, anon_sym_COLON_COLON, - ACTIONS(3643), 1, anon_sym_EQ_GT, - ACTIONS(3645), 1, anon_sym_EQ, - ACTIONS(3655), 1, - anon_sym_in, - ACTIONS(3657), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, - anon_sym_STAR_STAR, - ACTIONS(3663), 1, - anon_sym_DOT, - ACTIONS(3665), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3631), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3635), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3647), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2409), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3627), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3633), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3653), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -405226,21 +403833,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [226569] = 23, + anon_sym_in, + [224970] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3629), 1, - anon_sym_PIPE, - ACTIONS(3641), 1, - anon_sym_COLON_COLON, - ACTIONS(3643), 1, - anon_sym_EQ_GT, - ACTIONS(3645), 1, - anon_sym_EQ, ACTIONS(3655), 1, anon_sym_in, ACTIONS(3657), 1, @@ -405262,31 +403862,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3647), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3649), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3627), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(3651), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, ACTIONS(3633), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, @@ -405304,26 +403879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [226670] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2706), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2708), 48, + ACTIONS(2597), 24, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -405343,42 +403904,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [226733] = 4, + [225055] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 2, - sym_not_in, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3661), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2409), 48, + ACTIONS(2597), 46, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -405419,88 +403966,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [226796] = 4, + [225124] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2423), 2, - sym_not_in, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3661), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2425), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3631), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(3633), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [226859] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2391), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2393), 48, + ACTIONS(2597), 36, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -405532,31 +404031,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [226922] = 4, + [225199] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2743), 2, - sym_not_in, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3661), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2745), 48, + ACTIONS(3631), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2597), 44, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -405596,25 +404094,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [226985] = 4, + [225270] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 2, + 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(2409), 48, + ACTIONS(2611), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -405657,166 +404153,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [227048] = 6, + [225333] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(4116), 1, - anon_sym_DOT, - ACTIONS(4118), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2409), 47, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3643), 1, anon_sym_EQ_GT, + ACTIONS(3645), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3655), 1, anon_sym_in, + ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3661), 1, anon_sym_STAR_STAR, - anon_sym_DOT_DOT_DOT_GT, - [227115] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2411), 2, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3665), 1, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2413), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3631), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3647), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3627), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(3633), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [227178] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2395), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2397), 48, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2597), 7, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, + ACTIONS(3653), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -405826,88 +404229,72 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [227241] = 25, + [225430] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3146), 1, - anon_sym_SEMI, - ACTIONS(3579), 1, - anon_sym_PIPE, - ACTIONS(3589), 1, - anon_sym_when, - ACTIONS(3591), 1, - anon_sym_COLON_COLON, - ACTIONS(3593), 1, - anon_sym_EQ_GT, - ACTIONS(3595), 1, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3645), 1, anon_sym_EQ, - ACTIONS(3605), 1, + ACTIONS(3655), 1, anon_sym_in, - ACTIONS(3607), 1, + ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3609), 1, + ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - ACTIONS(3611), 1, + ACTIONS(3661), 1, anon_sym_STAR_STAR, - ACTIONS(3613), 1, + ACTIONS(3663), 1, anon_sym_DOT, - ACTIONS(3615), 1, - anon_sym_LBRACK2, - ACTIONS(3617), 1, + ACTIONS(3665), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3144), 2, - ts_builtin_sym_end, - aux_sym_terminator_token1, - ACTIONS(3581), 2, + ACTIONS(3631), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3585), 2, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3587), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3597), 3, + ACTIONS(3647), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3599), 3, + ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3577), 4, + ACTIONS(3627), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3601), 5, + ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3583), 6, + ACTIONS(3633), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3603), 9, + ACTIONS(2597), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + ACTIONS(3653), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -405917,74 +404304,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [227346] = 22, + [225525] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3527), 1, - anon_sym_PIPE, - ACTIONS(3541), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, - anon_sym_EQ, - ACTIONS(3553), 1, + ACTIONS(3655), 1, anon_sym_in, - ACTIONS(3555), 1, + ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, + ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, + ACTIONS(3661), 1, anon_sym_STAR_STAR, - ACTIONS(3561), 1, + ACTIONS(3663), 1, anon_sym_DOT, - ACTIONS(3563), 1, + ACTIONS(3665), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3529), 2, + ACTIONS(3631), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3533), 2, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3545), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3547), 3, + ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3525), 4, + ACTIONS(3627), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3549), 5, + ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_SEMI, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_end, - ACTIONS(3531), 6, + ACTIONS(3633), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3551), 9, + ACTIONS(3653), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -405994,76 +404364,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [227445] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4128), 1, + ACTIONS(2597), 12, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4138), 1, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4140), 1, anon_sym_COLON_COLON, - ACTIONS(4142), 1, anon_sym_EQ_GT, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4154), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + [225616] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3655), 1, anon_sym_in, - ACTIONS(4156), 1, + ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, + ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(3661), 1, anon_sym_STAR_STAR, - ACTIONS(4162), 1, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3665), 1, sym_not_in, - ACTIONS(2753), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4130), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3631), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4136), 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(4146), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4148), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4126), 4, + ACTIONS(3627), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4150), 5, + ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4132), 6, + ACTIONS(3633), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4152), 9, + ACTIONS(3653), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -406073,25 +404433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [227548] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2710), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2712), 48, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2597), 15, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -406104,112 +404449,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + [225705] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3655), 1, anon_sym_in, + ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3661), 1, anon_sym_STAR_STAR, + ACTIONS(3663), 1, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [227611] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2423), 2, + ACTIONS(3665), 1, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2425), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3631), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(3627), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(3633), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [227674] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2409), 48, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3653), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 20, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -406227,48 +404520,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + [225792] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3655), 1, anon_sym_in, + ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3661), 1, anon_sym_STAR_STAR, + ACTIONS(3663), 1, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [227737] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2427), 2, + ACTIONS(3665), 1, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2429), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3631), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3633), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -406297,37 +404589,42 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [227800] = 4, + [225875] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2431), 2, - sym_not_in, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3659), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3661), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + sym_not_in, aux_sym_terminator_token1, - ACTIONS(2433), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3631), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3633), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -406358,86 +404655,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [227863] = 24, + [225952] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4138), 1, - anon_sym_when, - ACTIONS(4140), 1, - anon_sym_COLON_COLON, - ACTIONS(4142), 1, - anon_sym_EQ_GT, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4154), 1, - anon_sym_in, - ACTIONS(4156), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, + ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(3661), 1, anon_sym_STAR_STAR, - ACTIONS(4162), 1, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, sym_not_in, - ACTIONS(2757), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4130), 2, + aux_sym_terminator_token1, + ACTIONS(3631), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4136), 2, + ACTIONS(3633), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, 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(4146), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4148), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4126), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4150), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4132), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4152), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -406447,17 +404719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [227966] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [226029] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2273), 2, + ACTIONS(2595), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2275), 48, + ACTIONS(2597), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -406506,17 +404780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [228029] = 4, + [226092] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(163), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2441), 48, + ACTIONS(165), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -406565,23 +404839,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [228092] = 4, + [226155] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2481), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2279), 48, + ACTIONS(2483), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -406624,23 +404897,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [228155] = 4, + anon_sym_DOT_DOT_DOT_GT, + [226218] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2523), 2, + ACTIONS(2485), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2525), 48, + ACTIONS(2487), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -406683,17 +404956,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [228218] = 4, + anon_sym_DOT_DOT_DOT_GT, + [226281] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2451), 2, + ACTIONS(2489), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2453), 48, + ACTIONS(2491), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -406742,17 +405016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [228281] = 4, + [226344] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2455), 2, + ACTIONS(2493), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2457), 48, + ACTIONS(2495), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -406801,23 +405075,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [228344] = 4, + [226407] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2527), 2, + ACTIONS(2259), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2529), 48, + ACTIONS(2261), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -406860,23 +405133,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [228407] = 4, + anon_sym_DOT_DOT_DOT_GT, + [226470] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2399), 2, + ACTIONS(2201), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2401), 48, + ACTIONS(2203), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -406919,44 +405192,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [228470] = 12, + anon_sym_DOT_DOT_DOT_GT, + [226533] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2497), 2, sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, anon_sym_LBRACK2, - ACTIONS(4076), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, - anon_sym_STAR_STAR, - ACTIONS(4054), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4058), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 34, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2499), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -406986,97 +405241,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - [228549] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4074), 1, - anon_sym_in, - ACTIONS(4076), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, - anon_sym_STAR_STAR, - ACTIONS(4082), 1, - sym_not_in, - ACTIONS(4054), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4058), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 24, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [228632] = 7, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [226596] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2501), 2, sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, anon_sym_LBRACK2, - ACTIONS(4080), 1, - anon_sym_STAR_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 46, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2503), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -407117,40 +405308,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - [228701] = 10, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [226659] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2613), 2, sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, anon_sym_LBRACK2, - ACTIONS(4080), 1, - anon_sym_STAR_STAR, - ACTIONS(4054), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4058), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2615), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -407182,30 +405362,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [228776] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [226722] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2161), 2, sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, anon_sym_LBRACK2, - ACTIONS(4080), 1, - anon_sym_STAR_STAR, - ACTIONS(4054), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 44, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2163), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -407245,41 +405425,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - [228847] = 11, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [226785] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2617), 2, sym_not_in, - ACTIONS(4112), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, - anon_sym_STAR_STAR, - ACTIONS(4116), 1, - anon_sym_DOT, - ACTIONS(4118), 1, anon_sym_LBRACK2, - ACTIONS(4090), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4092), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, + ACTIONS(2619), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -407310,212 +405479,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DOT_DOT_DOT_GT, - [228924] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4064), 1, - anon_sym_EQ, - ACTIONS(4074), 1, - anon_sym_in, - ACTIONS(4076), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, - anon_sym_STAR_STAR, - ACTIONS(4082), 1, - sym_not_in, - ACTIONS(4054), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4058), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(4066), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4068), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4050), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4070), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 8, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - ACTIONS(4072), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [229017] = 17, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [226848] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4074), 1, - anon_sym_in, - ACTIONS(4076), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, - anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(2505), 2, sym_not_in, - ACTIONS(4054), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4058), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4068), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(2507), 48, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4070), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4072), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 12, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - [229106] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4074), 1, - anon_sym_in, - ACTIONS(4076), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, - anon_sym_STAR_STAR, - ACTIONS(4082), 1, - sym_not_in, - ACTIONS(4054), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4058), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(4050), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4070), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4072), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 15, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -407528,46 +405519,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - [229193] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4074), 1, - anon_sym_in, - ACTIONS(4076), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, - anon_sym_STAR_STAR, - ACTIONS(4082), 1, - sym_not_in, - ACTIONS(4054), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4058), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(4050), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_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(4056), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4072), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -407577,131 +405535,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 20, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - [229278] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4074), 1, anon_sym_in, - ACTIONS(4076), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, - anon_sym_STAR_STAR, - ACTIONS(4082), 1, - sym_not_in, - ACTIONS(4054), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4058), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 33, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [229359] = 11, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [226911] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2621), 2, sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, anon_sym_LBRACK2, - ACTIONS(4078), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, - anon_sym_STAR_STAR, - ACTIONS(4054), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4058), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2623), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -407732,42 +405597,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [229436] = 11, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [226974] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2661), 2, sym_not_in, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, anon_sym_LBRACK2, - ACTIONS(4078), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, - anon_sym_STAR_STAR, - ACTIONS(4054), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4058), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2664), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -407798,17 +405656,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [229513] = 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [227037] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2403), 2, + ACTIONS(2497), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2405), 48, + ACTIONS(2499), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -407857,23 +405724,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [229576] = 4, + [227100] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2710), 2, + ACTIONS(2413), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2712), 48, + ACTIONS(2415), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -407916,17 +405782,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [229639] = 4, + anon_sym_DOT_DOT_DOT_GT, + [227163] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2459), 2, + ACTIONS(2417), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2461), 48, + ACTIONS(2419), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -407975,148 +405842,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [229702] = 21, + [227226] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3541), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, - anon_sym_EQ, - ACTIONS(3553), 1, - anon_sym_in, - ACTIONS(3555), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, - anon_sym_STAR_STAR, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3563), 1, + ACTIONS(2517), 2, sym_not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3529), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3533), 2, - anon_sym_PLUS, - anon_sym_DASH, - 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(3525), 4, + aux_sym_terminator_token1, + ACTIONS(2519), 48, 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(3531), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 7, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_end, - ACTIONS(3551), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [229799] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3543), 1, + anon_sym_EQ_GT, anon_sym_EQ, - ACTIONS(3553), 1, - anon_sym_in, - ACTIONS(3555), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, - anon_sym_STAR_STAR, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3563), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3529), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3533), 2, - anon_sym_PLUS, - anon_sym_DASH, - 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(3525), 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(3531), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 8, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_end, - ACTIONS(3551), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -408126,124 +405889,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [229894] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3144), 1, - aux_sym_terminator_token1, - ACTIONS(3527), 1, - anon_sym_PIPE, - ACTIONS(3537), 1, - anon_sym_when, - ACTIONS(3539), 1, - anon_sym_COLON_COLON, - ACTIONS(3541), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, - anon_sym_EQ, - ACTIONS(3553), 1, anon_sym_in, - ACTIONS(3555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, - anon_sym_STAR_STAR, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3563), 1, - sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3146), 2, - anon_sym_SEMI, - anon_sym_end, - ACTIONS(3529), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3533), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3535), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - 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(3525), 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(3531), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3551), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [229999] = 12, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [227289] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2521), 2, sym_not_in, - ACTIONS(4009), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, - anon_sym_STAR_STAR, - ACTIONS(4015), 1, - anon_sym_DOT, - ACTIONS(4017), 1, anon_sym_LBRACK2, - ACTIONS(3981), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3987), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3985), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 34, + ACTIONS(2523), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -408273,92 +405949,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - [230078] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4007), 1, - anon_sym_in, - ACTIONS(4009), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, - anon_sym_STAR_STAR, - ACTIONS(4015), 1, - anon_sym_DOT, - ACTIONS(4017), 1, - anon_sym_LBRACK2, - ACTIONS(4019), 1, - sym_not_in, - ACTIONS(3981), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3987), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3985), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4005), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 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, - [230161] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [227352] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2281), 2, + ACTIONS(2525), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2283), 48, + ACTIONS(2527), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -408401,23 +406018,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [230224] = 4, + anon_sym_DOT_DOT_DOT_GT, + [227415] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2529), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2537), 48, + ACTIONS(2531), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -408460,23 +406077,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [230287] = 4, + anon_sym_DOT_DOT_DOT_GT, + [227478] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2451), 2, + ACTIONS(2529), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2453), 48, + ACTIONS(2531), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -408519,76 +406136,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [230350] = 24, + anon_sym_DOT_DOT_DOT_GT, + [227541] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4088), 1, - anon_sym_PIPE, - ACTIONS(4096), 1, - anon_sym_EQ_GT, - ACTIONS(4098), 1, - anon_sym_EQ, - ACTIONS(4108), 1, - anon_sym_in, - ACTIONS(4110), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, - anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(2529), 1, + sym_not_in, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4120), 1, - sym_not_in, - ACTIONS(4122), 1, - anon_sym_when, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(2757), 2, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4090), 2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2531), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4094), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4164), 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(4100), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4102), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4086), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4104), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4092), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4106), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -408598,93 +406187,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [230453] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3995), 1, - anon_sym_EQ_GT, - ACTIONS(3997), 1, - anon_sym_EQ, - ACTIONS(4007), 1, anon_sym_in, - ACTIONS(4009), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, - anon_sym_STAR_STAR, - ACTIONS(4015), 1, - anon_sym_DOT, - ACTIONS(4017), 1, - anon_sym_LBRACK2, - ACTIONS(4019), 1, - sym_not_in, - ACTIONS(3981), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3987), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3999), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4001), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3977), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4003), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(3985), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4005), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [230550] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT_DOT_DOT_GT, + [227608] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2475), 2, + ACTIONS(2529), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2477), 48, + ACTIONS(2531), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -408733,17 +406257,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [230613] = 4, + [227671] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2479), 2, + ACTIONS(2533), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2481), 48, + ACTIONS(2535), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -408792,17 +406316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [230676] = 4, + [227734] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2479), 2, + ACTIONS(2537), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2481), 48, + ACTIONS(2539), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -408851,17 +406375,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [230739] = 4, + [227797] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2483), 2, + ACTIONS(2541), 2, sym_not_in, anon_sym_LBRACK2, + ACTIONS(2827), 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(2485), 48, + ACTIONS(2543), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -408872,7 +406399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_EQ, @@ -408909,45 +406435,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [230802] = 4, + [227862] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2487), 2, - sym_not_in, + ACTIONS(4044), 1, + anon_sym_EQ_GT, + ACTIONS(4046), 1, + anon_sym_EQ, + ACTIONS(4056), 1, + anon_sym_in, + ACTIONS(4058), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4060), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4062), 1, + anon_sym_STAR_STAR, + ACTIONS(4064), 1, + anon_sym_DOT, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2489), 48, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4068), 1, + sym_not_in, + ACTIONS(4138), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(4142), 1, + anon_sym_when, + ACTIONS(4144), 1, + anon_sym_COLON_COLON, + ACTIONS(2765), 2, anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4038), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4042), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4140), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4048), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4050), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4036), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4052), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4040), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4054), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -408957,35 +406514,22 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [230865] = 4, + [227965] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 2, + ACTIONS(2555), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 48, + ACTIONS(2557), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -409028,31 +406572,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [230928] = 7, + anon_sym_DOT_DOT_DOT_GT, + [228028] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(4013), 1, + ACTIONS(3488), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3490), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3492), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(4017), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(3462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3466), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 46, + ACTIONS(3464), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 33, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -409082,30 +406640,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - [230997] = 4, + [228107] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2491), 2, + ACTIONS(2501), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2493), 48, + ACTIONS(2503), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -409148,18 +406699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [231060] = 4, + [228170] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2455), 2, + ACTIONS(163), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2457), 48, + ACTIONS(165), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -409208,23 +406758,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231123] = 4, + [228233] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2183), 2, + ACTIONS(2549), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2185), 48, + ACTIONS(2551), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -409267,59 +406816,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231186] = 10, + anon_sym_DOT_DOT_DOT_GT, + [228296] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(4013), 1, + ACTIONS(3486), 1, + anon_sym_in, + ACTIONS(3488), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3490), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3492), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(4017), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3981), 2, + ACTIONS(3498), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3462), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3987), 2, + ACTIONS(3466), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3985), 6, + ACTIONS(3464), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 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, + ACTIONS(3484), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -409329,28 +406863,11 @@ 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, - [231261] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2673), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2675), 48, + ACTIONS(2597), 23, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -409370,38 +406887,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [231324] = 4, + [228381] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2351), 2, + ACTIONS(2481), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2353), 48, + ACTIONS(2483), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -409450,23 +406946,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231387] = 4, + [228444] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2285), 2, + ACTIONS(2221), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2287), 48, + ACTIONS(2223), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -409509,73 +407004,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231450] = 21, + anon_sym_DOT_DOT_DOT_GT, + [228507] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(3460), 1, anon_sym_PIPE, - ACTIONS(4062), 1, + ACTIONS(3474), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(3476), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(3486), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(3488), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(3490), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(3492), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LBRACK2, + ACTIONS(3498), 1, sym_not_in, - ACTIONS(4054), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3462), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(3466), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(4066), 3, + ACTIONS(3478), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(3480), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(3458), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(2597), 5, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(3482), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4056), 6, + ACTIONS(3464), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(3484), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -409585,23 +407082,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [231547] = 4, + [228606] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 2, - sym_not_in, + ACTIONS(3492), 1, + anon_sym_STAR_STAR, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 3, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2361), 48, + ACTIONS(2597), 45, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -409642,28 +407144,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [231610] = 4, + [228675] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 2, - sym_not_in, + ACTIONS(3492), 1, + anon_sym_STAR_STAR, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(3462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3466), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2361), 48, + ACTIONS(3464), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -409695,38 +407209,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [231673] = 8, + [228750] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(4013), 1, + ACTIONS(3492), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(4017), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3981), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(3462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2595), 3, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 44, + ACTIONS(2597), 43, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -409766,75 +407272,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - [231744] = 23, + [228821] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3979), 1, + ACTIONS(3460), 1, anon_sym_PIPE, - ACTIONS(3991), 1, + ACTIONS(3470), 1, anon_sym_when, - ACTIONS(3993), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - ACTIONS(3995), 1, + ACTIONS(3474), 1, anon_sym_EQ_GT, - ACTIONS(3997), 1, + ACTIONS(3476), 1, anon_sym_EQ, - ACTIONS(4007), 1, + ACTIONS(3486), 1, anon_sym_in, - ACTIONS(4009), 1, + ACTIONS(3488), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, + ACTIONS(3490), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, + ACTIONS(3492), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(4017), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(4019), 1, + ACTIONS(3498), 1, sym_not_in, - ACTIONS(3981), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3462), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3987), 2, + ACTIONS(3466), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3999), 3, + ACTIONS(2597), 3, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3478), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4001), 3, + ACTIONS(3480), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2409), 4, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3977), 4, + ACTIONS(3458), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4003), 5, + ACTIONS(3482), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3985), 6, + ACTIONS(3464), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4005), 9, + ACTIONS(3484), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -409844,45 +407351,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [231845] = 4, + [228924] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2673), 2, - sym_not_in, + ACTIONS(3460), 1, + anon_sym_PIPE, + ACTIONS(3470), 1, + anon_sym_when, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + ACTIONS(3474), 1, + anon_sym_EQ_GT, + ACTIONS(3476), 1, + anon_sym_EQ, + ACTIONS(3486), 1, + anon_sym_in, + ACTIONS(3488), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3490), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3492), 1, + anon_sym_STAR_STAR, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3498), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2675), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3462), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3466), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2597), 3, + anon_sym_SEMI, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3478), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3480), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3482), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3464), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3484), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -409892,86 +407430,77 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [231908] = 23, + [229027] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3979), 1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3148), 1, + aux_sym_terminator_token1, + ACTIONS(3629), 1, anon_sym_PIPE, - ACTIONS(3991), 1, + ACTIONS(3639), 1, anon_sym_when, - ACTIONS(3993), 1, + ACTIONS(3641), 1, anon_sym_COLON_COLON, - ACTIONS(3995), 1, + ACTIONS(3643), 1, anon_sym_EQ_GT, - ACTIONS(3997), 1, + ACTIONS(3645), 1, anon_sym_EQ, - ACTIONS(4007), 1, + ACTIONS(3655), 1, anon_sym_in, - ACTIONS(4009), 1, + ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, + ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, + ACTIONS(3661), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, + ACTIONS(3663), 1, anon_sym_DOT, - ACTIONS(4017), 1, - anon_sym_LBRACK2, - ACTIONS(4019), 1, + ACTIONS(3665), 1, sym_not_in, - ACTIONS(3981), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3150), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(3631), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3987), 2, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3999), 3, + ACTIONS(3637), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3647), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4001), 3, + ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2409), 4, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3977), 4, + ACTIONS(3627), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4003), 5, + ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3985), 6, + ACTIONS(3633), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4005), 9, + ACTIONS(3653), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -409981,76 +407510,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [232009] = 24, + [229132] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(3460), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(3472), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(3474), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(3476), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(3486), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(3488), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(3490), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(3492), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LBRACK2, + ACTIONS(3498), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(2757), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3462), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(3466), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 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(4066), 3, + ACTIONS(3478), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(3480), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(2597), 4, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(3458), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(3482), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(3464), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(3484), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -410060,45 +407588,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [232112] = 4, + [229233] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 2, - sym_not_in, + ACTIONS(3474), 1, + anon_sym_EQ_GT, + ACTIONS(3476), 1, + anon_sym_EQ, + ACTIONS(3486), 1, + anon_sym_in, + ACTIONS(3488), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3490), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3492), 1, + anon_sym_STAR_STAR, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3498), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3462), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3466), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3478), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3480), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3482), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2597), 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(3464), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3484), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -410108,56 +407664,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [229330] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3476), 1, + anon_sym_EQ, + ACTIONS(3486), 1, anon_sym_in, + ACTIONS(3488), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3490), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3492), 1, anon_sym_STAR_STAR, + ACTIONS(3494), 1, anon_sym_DOT, - [232175] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2431), 2, - sym_not_in, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3498), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2433), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3462), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3466), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3478), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3480), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3482), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3464), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + ACTIONS(3484), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -410167,87 +407739,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [229425] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3486), 1, anon_sym_in, + ACTIONS(3488), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3490), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3492), 1, anon_sym_STAR_STAR, + ACTIONS(3494), 1, anon_sym_DOT, - [232238] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3826), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3828), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3830), 1, - anon_sym_STAR_STAR, - ACTIONS(3834), 1, - anon_sym_in, - ACTIONS(3836), 1, + ACTIONS(3498), 1, sym_not_in, - ACTIONS(3878), 1, - anon_sym_EQ_GT, - ACTIONS(3880), 1, - anon_sym_EQ, - ACTIONS(3928), 1, - anon_sym_PIPE, - ACTIONS(3935), 1, - anon_sym_COLON_COLON, - ACTIONS(4040), 1, - anon_sym_when, - ACTIONS(3820), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2595), 2, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3462), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3824), 2, + ACTIONS(3466), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3930), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4043), 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(3882), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3884), 3, + ACTIONS(3480), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3876), 4, + ACTIONS(3458), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3886), 5, + ACTIONS(3482), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3822), 6, + ACTIONS(3464), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3832), 9, + ACTIONS(3484), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -410257,25 +407800,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [232341] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2349), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1857), 48, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2597), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -410285,76 +407812,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + [229516] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3486), 1, anon_sym_in, + ACTIONS(3488), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3490), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3492), 1, anon_sym_STAR_STAR, + ACTIONS(3494), 1, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [232404] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2475), 2, - sym_not_in, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3498), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2477), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3462), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3466), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + ACTIONS(3458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3482), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3464), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3484), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -410364,88 +407869,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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [232467] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3264), 1, - aux_sym_terminator_token1, - ACTIONS(3629), 1, + ACTIONS(2597), 14, + anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3639), 1, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3641), 1, anon_sym_COLON_COLON, - ACTIONS(3643), 1, anon_sym_EQ_GT, - ACTIONS(3645), 1, anon_sym_EQ, - ACTIONS(3655), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [229605] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3486), 1, anon_sym_in, - ACTIONS(3657), 1, + ACTIONS(3488), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, + ACTIONS(3490), 1, anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, + ACTIONS(3492), 1, anon_sym_STAR_STAR, - ACTIONS(3663), 1, + ACTIONS(3494), 1, anon_sym_DOT, - ACTIONS(3665), 1, + ACTIONS(3496), 1, + anon_sym_LBRACK2, + ACTIONS(3498), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3266), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(3631), 2, + ACTIONS(2595), 2, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3462), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3635), 2, + ACTIONS(3466), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3637), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3647), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3649), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3627), 4, + ACTIONS(3458), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3651), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3633), 6, + ACTIONS(3464), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3653), 9, + ACTIONS(3484), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -410455,26 +407935,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [232572] = 4, + ACTIONS(2597), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + [229692] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(2479), 2, - sym_not_in, + ACTIONS(3486), 1, + anon_sym_in, + ACTIONS(3488), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3490), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3492), 1, + anon_sym_STAR_STAR, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3498), 1, + sym_not_in, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(2595), 2, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2481), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3462), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3466), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3464), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 32, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -410503,37 +408024,42 @@ 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, + [229775] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3490), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3492), 1, anon_sym_STAR_STAR, + ACTIONS(3494), 1, anon_sym_DOT, - [232635] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 2, - sym_not_in, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(3462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3466), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2409), 48, + ACTIONS(3464), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 34, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -410564,38 +408090,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [232698] = 4, + [229852] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2355), 2, + ACTIONS(2563), 2, sym_not_in, anon_sym_LBRACK2, + ACTIONS(2829), 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(2357), 48, + ACTIONS(2565), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_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, @@ -410632,26 +408150,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232761] = 4, + [229917] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2189), 2, - sym_not_in, + ACTIONS(3490), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3492), 1, + anon_sym_STAR_STAR, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(3462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3466), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2595), 3, + sym_not_in, + ts_builtin_sym_end, aux_sym_terminator_token1, - ACTIONS(2191), 48, + ACTIONS(3464), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 34, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -410682,26 +408216,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [232824] = 4, + [229994] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2503), 2, + ACTIONS(2559), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2505), 48, + ACTIONS(2561), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -410750,74 +408275,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [232887] = 22, + [230057] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3979), 1, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3629), 1, anon_sym_PIPE, - ACTIONS(3993), 1, - anon_sym_COLON_COLON, - ACTIONS(3995), 1, + ACTIONS(3643), 1, anon_sym_EQ_GT, - ACTIONS(3997), 1, + ACTIONS(3645), 1, anon_sym_EQ, - ACTIONS(4007), 1, + ACTIONS(3655), 1, anon_sym_in, - ACTIONS(4009), 1, + ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, + ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, + ACTIONS(3661), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, + ACTIONS(3663), 1, anon_sym_DOT, - ACTIONS(4017), 1, - anon_sym_LBRACK2, - ACTIONS(4019), 1, + ACTIONS(3665), 1, sym_not_in, - ACTIONS(3981), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3631), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3987), 2, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3999), 3, + ACTIONS(3647), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4001), 3, + ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3977), 4, + ACTIONS(3627), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(4003), 5, + ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3985), 6, + ACTIONS(2597), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(3633), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4005), 9, + ACTIONS(3653), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -410827,44 +408352,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [232986] = 4, + [230156] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2507), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2509), 48, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3629), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3639), 1, anon_sym_when, + ACTIONS(3641), 1, anon_sym_COLON_COLON, + ACTIONS(3643), 1, anon_sym_EQ_GT, + ACTIONS(3645), 1, anon_sym_EQ, + ACTIONS(3655), 1, + anon_sym_in, + ACTIONS(3657), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3659), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3661), 1, + anon_sym_STAR_STAR, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3665), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3631), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3635), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3647), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2597), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3627), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3633), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3653), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -410874,57 +408431,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [230259] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3629), 1, + anon_sym_PIPE, + ACTIONS(3639), 1, + anon_sym_when, + ACTIONS(3641), 1, + anon_sym_COLON_COLON, + ACTIONS(3643), 1, + anon_sym_EQ_GT, + ACTIONS(3645), 1, + anon_sym_EQ, + ACTIONS(3655), 1, anon_sym_in, + ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3661), 1, anon_sym_STAR_STAR, + ACTIONS(3663), 1, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [233049] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2714), 2, + ACTIONS(3665), 1, sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2716), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3631), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3647), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2597), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3627), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3633), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3653), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -410934,87 +408510,75 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [233112] = 24, + [230362] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(2595), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3758), 1, + ACTIONS(3629), 1, anon_sym_PIPE, - ACTIONS(3768), 1, - anon_sym_when, - ACTIONS(3770), 1, + ACTIONS(3641), 1, anon_sym_COLON_COLON, - ACTIONS(3772), 1, + ACTIONS(3643), 1, anon_sym_EQ_GT, - ACTIONS(3774), 1, + ACTIONS(3645), 1, anon_sym_EQ, - ACTIONS(3784), 1, + ACTIONS(3655), 1, anon_sym_in, - ACTIONS(3786), 1, + ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3788), 1, + ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - ACTIONS(3790), 1, + ACTIONS(3661), 1, anon_sym_STAR_STAR, - ACTIONS(3792), 1, + ACTIONS(3663), 1, + anon_sym_DOT, + ACTIONS(3665), 1, sym_not_in, - ACTIONS(3760), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3631), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3764), 2, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3766), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4035), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3776), 3, + ACTIONS(3647), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3778), 3, + ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3756), 4, + ACTIONS(3627), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3780), 5, + ACTIONS(2597), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3762), 6, + ACTIONS(3633), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3782), 9, + ACTIONS(3653), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -411024,72 +408588,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [233215] = 20, + [230463] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3995), 1, + ACTIONS(3880), 1, + anon_sym_PIPE, + ACTIONS(3892), 1, + anon_sym_when, + ACTIONS(3894), 1, + anon_sym_COLON_COLON, + ACTIONS(3896), 1, anon_sym_EQ_GT, - ACTIONS(3997), 1, + ACTIONS(3898), 1, anon_sym_EQ, - ACTIONS(4007), 1, + ACTIONS(3908), 1, anon_sym_in, - ACTIONS(4009), 1, + ACTIONS(3910), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, + ACTIONS(3912), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, + ACTIONS(3914), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, + ACTIONS(3916), 1, anon_sym_DOT, - ACTIONS(4017), 1, + ACTIONS(3918), 1, anon_sym_LBRACK2, - ACTIONS(4019), 1, + ACTIONS(3920), 1, sym_not_in, - ACTIONS(3981), 2, + ACTIONS(2696), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(3882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3987), 2, + ACTIONS(3888), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3890), 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(3999), 3, + ACTIONS(3900), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4001), 3, + ACTIONS(3902), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3977), 4, + ACTIONS(3878), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4003), 5, + ACTIONS(3904), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3985), 6, + ACTIONS(3886), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 7, + ACTIONS(3906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [230566] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2549), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2551), 48, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(4005), 9, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -411099,17 +408715,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [233310] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [230629] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2515), 2, + ACTIONS(2559), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2517), 48, + ACTIONS(2561), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -411158,17 +408785,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [233373] = 4, + [230692] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2519), 2, + ACTIONS(2559), 1, sym_not_in, + ACTIONS(4064), 1, + anon_sym_DOT, + ACTIONS(4066), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2521), 48, + ACTIONS(2561), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -411215,46 +408845,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [233436] = 21, + [230759] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3150), 1, + anon_sym_SEMI, + ACTIONS(3460), 1, + anon_sym_PIPE, + ACTIONS(3470), 1, + anon_sym_when, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + ACTIONS(3474), 1, + anon_sym_EQ_GT, + ACTIONS(3476), 1, + anon_sym_EQ, + ACTIONS(3486), 1, + anon_sym_in, + ACTIONS(3488), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3490), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3492), 1, + anon_sym_STAR_STAR, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LBRACK2, + ACTIONS(3498), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3148), 2, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3466), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3468), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3478), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3480), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3482), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3464), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3484), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [230864] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, + ACTIONS(4114), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4116), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4122), 1, + anon_sym_in, + ACTIONS(4124), 1, + sym_not_in, ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4142), 1, anon_sym_EQ_GT, - ACTIONS(4144), 1, + ACTIONS(4130), 1, anon_sym_EQ, - ACTIONS(4154), 1, - anon_sym_in, - ACTIONS(4156), 1, + ACTIONS(4146), 1, + anon_sym_PIPE, + ACTIONS(4150), 1, + anon_sym_when, + ACTIONS(4152), 1, + anon_sym_COLON_COLON, + ACTIONS(2765), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4148), 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(4132), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4134), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4126), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4136), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4120), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [230967] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(4114), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, + ACTIONS(4116), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(4118), 1, anon_sym_STAR_STAR, - ACTIONS(4162), 1, + ACTIONS(4122), 1, + anon_sym_in, + ACTIONS(4124), 1, sym_not_in, - ACTIONS(4130), 2, + ACTIONS(4128), 1, + anon_sym_EQ_GT, + ACTIONS(4130), 1, + anon_sym_EQ, + ACTIONS(4146), 1, + anon_sym_PIPE, + ACTIONS(4150), 1, + anon_sym_when, + ACTIONS(4152), 1, + anon_sym_COLON_COLON, + ACTIONS(2769), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(4108), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4112), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4148), 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(4146), 3, + ACTIONS(4132), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4148), 3, + ACTIONS(4134), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, @@ -411263,27 +409061,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4150), 5, + ACTIONS(4136), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4132), 6, + ACTIONS(4110), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4152), 9, + ACTIONS(4120), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -411293,44 +409084,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [233533] = 12, + [231070] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4156), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4130), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4132), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 34, - anon_sym_LBRACE, + ACTIONS(2597), 34, + 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, @@ -411360,41 +409151,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - [233612] = 14, + [231149] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4156), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4162), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4130), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4132), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4152), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -411404,12 +409195,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 24, - anon_sym_LBRACE, + ACTIONS(2597), 24, + 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, @@ -411429,28 +409220,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [233695] = 7, + [231232] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4160), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 46, - anon_sym_LBRACE, + ACTIONS(2597), 46, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -411491,40 +409282,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - [233764] = 10, + [231301] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4160), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4130), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4132), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, - anon_sym_LBRACE, + ACTIONS(2597), 36, + 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, @@ -411556,30 +409347,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [233839] = 8, + [231376] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4160), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4130), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 44, - anon_sym_LBRACE, + ACTIONS(2597), 44, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -411619,72 +409410,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - [233910] = 20, + [231447] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4142), 1, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4144), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4156), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4162), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4130), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4146), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4148), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4126), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4150), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4132), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 7, - anon_sym_LBRACE, + ACTIONS(2597), 7, + 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(4152), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -411694,71 +409485,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [234005] = 19, + [231542] = 19, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4144), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4156), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4162), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4130), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4146), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4148), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4126), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4150), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4132), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 8, - anon_sym_LBRACE, + ACTIONS(2597), 8, + 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, - ACTIONS(4152), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -411768,56 +409559,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [234098] = 17, + [231635] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4156), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4162), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4130), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4148), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4126), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4150), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4132), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4152), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -411827,10 +409618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 12, - anon_sym_LBRACE, + ACTIONS(2597), 12, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -411840,52 +409631,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - [234187] = 16, + [231724] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4156), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4162), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4130), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4126), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4150), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4132), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4152), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -411895,10 +409686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 15, - anon_sym_LBRACE, + ACTIONS(2597), 15, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -411911,46 +409702,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - [234274] = 15, + [231811] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4156), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4162), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4130), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4126), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4132), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4152), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -411960,10 +409751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 20, - anon_sym_LBRACE, + ACTIONS(2597), 20, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -411981,46 +409772,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - [234359] = 13, + [231896] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4156), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4162), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4130), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4132), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 33, - anon_sym_LBRACE, + ACTIONS(2597), 33, + 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, @@ -412049,42 +409840,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [234440] = 11, + [231977] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4158), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4130), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4132), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_LBRACE, + ACTIONS(2597), 35, + 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, @@ -412115,42 +409906,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [234517] = 11, + [232054] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4158), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4130), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4132), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_LBRACE, + ACTIONS(2597), 35, + 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, @@ -412181,75 +409972,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [234594] = 23, + [232131] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(2559), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(4128), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2561), 48, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4138), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4140), 1, anon_sym_COLON_COLON, - ACTIONS(4142), 1, anon_sym_EQ_GT, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4154), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4156), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4162), 1, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [232194] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2563), 2, sym_not_in, - ACTIONS(4130), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4134), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4146), 3, + ACTIONS(2565), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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, - ACTIONS(4148), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2409), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4126), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4150), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4132), 6, - anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4152), 9, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [232257] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2485), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2487), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -412259,75 +410138,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [234695] = 23, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [232320] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4128), 1, - anon_sym_PIPE, - ACTIONS(4138), 1, - anon_sym_when, - ACTIONS(4140), 1, - anon_sym_COLON_COLON, - ACTIONS(4142), 1, + ACTIONS(4044), 1, anon_sym_EQ_GT, - ACTIONS(4144), 1, + ACTIONS(4046), 1, anon_sym_EQ, - ACTIONS(4154), 1, + ACTIONS(4056), 1, anon_sym_in, - ACTIONS(4156), 1, + ACTIONS(4058), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, + ACTIONS(4060), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + ACTIONS(4062), 1, anon_sym_STAR_STAR, - ACTIONS(4162), 1, + ACTIONS(4064), 1, + anon_sym_DOT, + ACTIONS(4066), 1, + anon_sym_LBRACK2, + ACTIONS(4068), 1, sym_not_in, - ACTIONS(4130), 2, + ACTIONS(4138), 1, + anon_sym_PIPE, + ACTIONS(4142), 1, + anon_sym_when, + ACTIONS(4144), 1, + anon_sym_COLON_COLON, + ACTIONS(2769), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4038), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4042), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4140), 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(4146), 3, + ACTIONS(4048), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4148), 3, + ACTIONS(4050), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2409), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4126), 4, + ACTIONS(4036), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4150), 5, + ACTIONS(4052), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4132), 6, + ACTIONS(4040), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4152), 9, + ACTIONS(4054), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -412337,74 +410228,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [234796] = 22, + [232423] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(2555), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2557), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DOT, - ACTIONS(3724), 1, + [232486] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2541), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(4128), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2543), 48, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4140), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(4142), 1, anon_sym_EQ_GT, - ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4154), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4156), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4158), 1, anon_sym_SLASH_SLASH, - ACTIONS(4160), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [232549] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, + anon_sym_in, + ACTIONS(4100), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4102), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4162), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4130), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4134), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4146), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4148), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4126), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(4150), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4132), 6, + ACTIONS(2597), 6, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4152), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -412414,71 +410422,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [234895] = 19, + [232646] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3997), 1, + ACTIONS(2421), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2423), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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, - ACTIONS(4007), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4009), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4015), 1, anon_sym_DOT, - ACTIONS(4017), 1, - anon_sym_LBRACK2, - ACTIONS(4019), 1, + anon_sym_DOT_DOT_DOT_GT, + [232709] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(163), 2, sym_not_in, - ACTIONS(3981), 2, + anon_sym_LBRACK2, + ACTIONS(2664), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(165), 46, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3987), 2, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [232774] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2425), 2, + sym_not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3999), 3, + ACTIONS(2427), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_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, - ACTIONS(4001), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3977), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4003), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3985), 6, - anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 8, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [232837] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2571), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2573), 48, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_DOT_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, - ACTIONS(4005), 9, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -412488,56 +410647,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [234988] = 17, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [232900] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4007), 1, + ACTIONS(3838), 1, + anon_sym_PIPE, + ACTIONS(3850), 1, + anon_sym_COLON_COLON, + ACTIONS(3852), 1, + anon_sym_EQ_GT, + ACTIONS(3854), 1, + anon_sym_EQ, + ACTIONS(3864), 1, anon_sym_in, - ACTIONS(4009), 1, + ACTIONS(3866), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, + ACTIONS(3868), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, + ACTIONS(3870), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(4017), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4019), 1, + ACTIONS(3876), 1, sym_not_in, - ACTIONS(3981), 2, + ACTIONS(3966), 1, + anon_sym_when, + ACTIONS(3840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3987), 2, + ACTIONS(3844), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3846), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3969), 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(4001), 3, + ACTIONS(3856), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3858), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3977), 4, + ACTIONS(3836), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4003), 5, + ACTIONS(3860), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3985), 6, + ACTIONS(3842), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4005), 9, + ACTIONS(3862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -412547,10 +410738,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 12, + [233003] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2575), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2577), 48, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -412560,52 +410766,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - [235077] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4007), 1, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4009), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4015), 1, anon_sym_DOT, - ACTIONS(4017), 1, - anon_sym_LBRACK2, - ACTIONS(4019), 1, + anon_sym_DOT_DOT_DOT_GT, + [233066] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2221), 2, sym_not_in, - ACTIONS(3981), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3987), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3977), 4, + ACTIONS(2223), 48, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4003), 5, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_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, - ACTIONS(3985), 6, - anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4005), 9, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [233129] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2521), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2523), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -412615,10 +410904,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 15, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [233192] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2599), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(1873), 48, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -412631,46 +410947,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - [235164] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [233255] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(4007), 1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3148), 1, + aux_sym_terminator_token1, + ACTIONS(3571), 1, + anon_sym_PIPE, + ACTIONS(3581), 1, + anon_sym_when, + ACTIONS(3583), 1, + anon_sym_COLON_COLON, + ACTIONS(3585), 1, + anon_sym_EQ_GT, + ACTIONS(3587), 1, + anon_sym_EQ, + ACTIONS(3597), 1, anon_sym_in, - ACTIONS(4009), 1, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(4017), 1, + ACTIONS(3607), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3150), 2, + anon_sym_SEMI, + anon_sym_end, + ACTIONS(3573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3577), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3579), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3589), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3591), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3569), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3593), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3575), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3595), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [233360] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4019), 1, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, + anon_sym_in, + ACTIONS(4100), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4102), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4104), 1, + anon_sym_STAR_STAR, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(3981), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3987), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3977), 4, + ACTIONS(4090), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4092), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2597), 4, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3985), 6, + ACTIONS(4094), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4005), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -412680,10 +411132,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 20, + [233461] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2579), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2581), 48, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_DOT_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_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [233524] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2583), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2585), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -412701,76 +411227,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - [235249] = 24, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [233587] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3979), 1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3268), 1, + aux_sym_terminator_token1, + ACTIONS(3629), 1, anon_sym_PIPE, - ACTIONS(3991), 1, + ACTIONS(3639), 1, anon_sym_when, - ACTIONS(3993), 1, + ACTIONS(3641), 1, anon_sym_COLON_COLON, - ACTIONS(3995), 1, + ACTIONS(3643), 1, anon_sym_EQ_GT, - ACTIONS(3997), 1, + ACTIONS(3645), 1, anon_sym_EQ, - ACTIONS(4007), 1, + ACTIONS(3655), 1, anon_sym_in, - ACTIONS(4009), 1, + ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, + ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, + ACTIONS(3661), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, + ACTIONS(3663), 1, anon_sym_DOT, - ACTIONS(4017), 1, - anon_sym_LBRACK2, - ACTIONS(4019), 1, + ACTIONS(3665), 1, sym_not_in, - ACTIONS(2753), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(3981), 2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(3270), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(3631), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3987), 2, + ACTIONS(3635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3989), 2, + ACTIONS(3637), 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(3999), 3, + ACTIONS(3647), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4001), 3, + ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3977), 4, + ACTIONS(3627), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4003), 5, + ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3985), 6, + ACTIONS(3633), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4005), 9, + ACTIONS(3653), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -412780,17 +411330,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [235352] = 4, + [233692] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2523), 2, + ACTIONS(2587), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2525), 48, + ACTIONS(2589), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -412839,17 +411389,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [235415] = 4, + [233755] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2527), 2, + ACTIONS(2591), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2529), 48, + ACTIONS(2593), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -412898,20 +411448,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [235478] = 6, + [233818] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2289), 1, + ACTIONS(2559), 2, sym_not_in, - ACTIONS(4015), 1, - anon_sym_DOT, - ACTIONS(4017), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2291), 47, + ACTIONS(2561), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -412959,17 +411506,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [235545] = 4, + anon_sym_DOT, + [233881] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2595), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2537), 48, + ACTIONS(2597), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -413018,65 +411566,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [235608] = 13, + [233944] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4007), 1, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4009), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4011), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, - anon_sym_DOT, - ACTIONS(4017), 1, - anon_sym_LBRACK2, - ACTIONS(4019), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(3981), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3987), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3985), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 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, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2597), 4, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4070), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4076), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -413086,42 +411644,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [235689] = 11, + [234045] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2559), 2, sym_not_in, - ACTIONS(4011), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, - anon_sym_STAR_STAR, - ACTIONS(4015), 1, - anon_sym_DOT, - ACTIONS(4017), 1, anon_sym_LBRACK2, - ACTIONS(3981), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3987), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3985), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, + ACTIONS(2561), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -413152,23 +411694,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [235766] = 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [234108] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2289), 2, + ACTIONS(2595), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2291), 48, + ACTIONS(2597), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -413211,17 +411761,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [235829] = 4, + anon_sym_DOT_DOT_DOT_GT, + [234171] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2341), 2, + ACTIONS(2559), 1, sym_not_in, + ACTIONS(3916), 1, + anon_sym_DOT, + ACTIONS(3918), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2343), 48, + ACTIONS(2561), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -413269,46 +411823,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [235892] = 4, + [234238] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2345), 2, - sym_not_in, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, + ACTIONS(4114), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4116), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4122), 1, + anon_sym_in, + ACTIONS(4124), 1, + sym_not_in, + ACTIONS(4128), 1, + anon_sym_EQ_GT, + ACTIONS(4130), 1, + anon_sym_EQ, + ACTIONS(4146), 1, + anon_sym_PIPE, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2347), 48, + ACTIONS(4132), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4134), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4126), 4, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4136), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2597), 6, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4120), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [234335] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(4114), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4116), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4122), 1, + anon_sym_in, + ACTIONS(4124), 1, + sym_not_in, + ACTIONS(4128), 1, anon_sym_EQ_GT, + ACTIONS(4130), 1, anon_sym_EQ, + ACTIONS(4146), 1, + anon_sym_PIPE, + ACTIONS(4150), 1, + anon_sym_when, + ACTIONS(4152), 1, + anon_sym_COLON_COLON, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4132), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4134), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2597), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4126), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4136), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4120), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [234436] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(4114), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4116), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4122), 1, + anon_sym_in, + ACTIONS(4124), 1, + sym_not_in, + ACTIONS(4128), 1, + anon_sym_EQ_GT, + ACTIONS(4130), 1, + anon_sym_EQ, + ACTIONS(4146), 1, + anon_sym_PIPE, + ACTIONS(4150), 1, + anon_sym_when, + ACTIONS(4152), 1, + anon_sym_COLON_COLON, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4132), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4134), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2597), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4126), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4136), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4120), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -413318,53 +412055,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, + [234537] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(4114), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4116), 1, anon_sym_SLASH_SLASH, + ACTIONS(4118), 1, + anon_sym_STAR_STAR, + ACTIONS(4122), 1, + anon_sym_in, + ACTIONS(4124), 1, + sym_not_in, + ACTIONS(4128), 1, + anon_sym_EQ_GT, + ACTIONS(4130), 1, + anon_sym_EQ, + ACTIONS(4146), 1, + anon_sym_PIPE, + ACTIONS(4152), 1, + anon_sym_COLON_COLON, + ACTIONS(4108), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4112), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4132), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4134), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4126), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2597), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4136), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4110), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [235955] = 11, + ACTIONS(4120), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [234636] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(4011), 1, + ACTIONS(3880), 1, + anon_sym_PIPE, + ACTIONS(3892), 1, + anon_sym_when, + ACTIONS(3894), 1, + anon_sym_COLON_COLON, + ACTIONS(3896), 1, + anon_sym_EQ_GT, + ACTIONS(3898), 1, + anon_sym_EQ, + ACTIONS(3908), 1, + anon_sym_in, + ACTIONS(3910), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3912), 1, anon_sym_SLASH_SLASH, - ACTIONS(4013), 1, + ACTIONS(3914), 1, anon_sym_STAR_STAR, - ACTIONS(4015), 1, + ACTIONS(3916), 1, anon_sym_DOT, - ACTIONS(4017), 1, + ACTIONS(3918), 1, anon_sym_LBRACK2, - ACTIONS(3981), 2, + ACTIONS(3920), 1, + sym_not_in, + ACTIONS(2765), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(3882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3987), 2, + ACTIONS(3888), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3890), 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(3985), 6, + ACTIONS(3900), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3902), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3878), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3886), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 35, + ACTIONS(3906), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [234739] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(4064), 1, + anon_sym_DOT, + ACTIONS(4066), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2597), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -413395,26 +412263,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [236032] = 6, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT_DOT_DOT_GT, + [234806] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2605), 2, sym_not_in, - ACTIONS(4015), 1, - anon_sym_DOT, - ACTIONS(4017), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 47, + ACTIONS(2607), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -413456,57 +412329,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [236099] = 18, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [234869] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3553), 1, + ACTIONS(4044), 1, + anon_sym_EQ_GT, + ACTIONS(4046), 1, + anon_sym_EQ, + ACTIONS(4056), 1, anon_sym_in, - ACTIONS(3555), 1, + ACTIONS(4058), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, + ACTIONS(4060), 1, anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, + ACTIONS(4062), 1, anon_sym_STAR_STAR, - ACTIONS(3561), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3563), 1, + ACTIONS(4066), 1, + anon_sym_LBRACK2, + ACTIONS(4068), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3529), 2, + ACTIONS(4138), 1, + anon_sym_PIPE, + ACTIONS(4038), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3533), 2, + ACTIONS(4042), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3547), 3, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4048), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4050), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3525), 4, + ACTIONS(4036), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3549), 5, + ACTIONS(4052), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3531), 6, + ACTIONS(2597), 6, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4040), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3551), 9, + ACTIONS(4054), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -413516,66 +412407,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 12, - anon_sym_SEMI, + [234966] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4044), 1, + anon_sym_EQ_GT, + ACTIONS(4046), 1, + anon_sym_EQ, + ACTIONS(4056), 1, + anon_sym_in, + ACTIONS(4058), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4060), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4062), 1, + anon_sym_STAR_STAR, + ACTIONS(4064), 1, + anon_sym_DOT, + ACTIONS(4066), 1, + anon_sym_LBRACK2, + ACTIONS(4068), 1, + sym_not_in, + ACTIONS(4138), 1, anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4142), 1, anon_sym_when, + ACTIONS(4144), 1, anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4038), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4042), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4048), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_end, - [236190] = 17, + ACTIONS(4050), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2597), 4, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4036), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4052), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4040), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4054), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [235067] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3553), 1, + ACTIONS(4044), 1, + anon_sym_EQ_GT, + ACTIONS(4046), 1, + anon_sym_EQ, + ACTIONS(4056), 1, anon_sym_in, - ACTIONS(3555), 1, + ACTIONS(4058), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, + ACTIONS(4060), 1, anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, + ACTIONS(4062), 1, anon_sym_STAR_STAR, - ACTIONS(3561), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3563), 1, + ACTIONS(4066), 1, + anon_sym_LBRACK2, + ACTIONS(4068), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3529), 2, + ACTIONS(4138), 1, + anon_sym_PIPE, + ACTIONS(4142), 1, + anon_sym_when, + ACTIONS(4144), 1, + anon_sym_COLON_COLON, + ACTIONS(4038), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3533), 2, + ACTIONS(4042), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3525), 4, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4048), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4050), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2597), 4, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4036), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3549), 5, + ACTIONS(4052), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3531), 6, + ACTIONS(4040), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3551), 9, + ACTIONS(4054), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -413585,33 +412563,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 15, - anon_sym_SEMI, + [235168] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4044), 1, + anon_sym_EQ_GT, + ACTIONS(4046), 1, + anon_sym_EQ, + ACTIONS(4056), 1, + anon_sym_in, + ACTIONS(4058), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4060), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4062), 1, + anon_sym_STAR_STAR, + ACTIONS(4064), 1, + anon_sym_DOT, + ACTIONS(4066), 1, + anon_sym_LBRACK2, + ACTIONS(4068), 1, + sym_not_in, + ACTIONS(4138), 1, anon_sym_PIPE, + ACTIONS(4144), 1, + anon_sym_COLON_COLON, + ACTIONS(4038), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4042), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4048), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4050), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4036), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2597), 5, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4052), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4040), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4054), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [235267] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2767), 1, + aux_sym_terminator_token1, + ACTIONS(2924), 1, + anon_sym_LBRACK2, + ACTIONS(3571), 1, + anon_sym_PIPE, + ACTIONS(3581), 1, + anon_sym_when, + ACTIONS(3583), 1, anon_sym_COLON_COLON, + ACTIONS(3585), 1, anon_sym_EQ_GT, + ACTIONS(3587), 1, anon_sym_EQ, + ACTIONS(3597), 1, + anon_sym_in, + ACTIONS(3599), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3601), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3603), 1, + anon_sym_STAR_STAR, + ACTIONS(3605), 1, + anon_sym_DOT, + ACTIONS(3607), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2769), 2, + anon_sym_SEMI, + anon_sym_end, + ACTIONS(3573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3577), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3579), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3589), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3591), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_end, - [236279] = 4, + ACTIONS(3569), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3593), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3575), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3595), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [235372] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2411), 2, + ACTIONS(2559), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2413), 48, + ACTIONS(2561), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -413660,47 +412779,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [236342] = 16, + [235435] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(3553), 1, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(3555), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3563), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(3529), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3533), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3525), 4, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4090), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4092), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3531), 6, + ACTIONS(2597), 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4094), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3551), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -413710,9 +412856,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 20, - anon_sym_SEMI, + [235534] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2563), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2565), 48, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -413730,66 +412893,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_end, - [236429] = 14, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [235597] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, aux_sym_terminator_token1, - ACTIONS(2864), 1, + ACTIONS(2924), 1, anon_sym_LBRACK2, - ACTIONS(3553), 1, + ACTIONS(3571), 1, + anon_sym_PIPE, + ACTIONS(3585), 1, + anon_sym_EQ_GT, + ACTIONS(3587), 1, + anon_sym_EQ, + ACTIONS(3597), 1, anon_sym_in, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3557), 1, + ACTIONS(3601), 1, anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, + ACTIONS(3603), 1, anon_sym_STAR_STAR, - ACTIONS(3561), 1, + ACTIONS(3605), 1, anon_sym_DOT, - ACTIONS(3563), 1, + ACTIONS(3607), 1, sym_not_in, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3529), 2, + ACTIONS(3573), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3533), 2, + ACTIONS(3577), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3531), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 33, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3589), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3591), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3569), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3593), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2597), 6, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_end, + ACTIONS(3575), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3595), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -413799,42 +412992,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_end, - [236512] = 11, + [235696] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2609), 2, + sym_not_in, anon_sym_LBRACK2, - ACTIONS(3557), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, - anon_sym_STAR_STAR, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, aux_sym_terminator_token1, - ACTIONS(3529), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3533), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3531), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_SEMI, + ACTIONS(2611), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -413865,42 +413041,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_end, - [236589] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3557), 1, anon_sym_SLASH_SLASH, - ACTIONS(3559), 1, - anon_sym_STAR_STAR, - ACTIONS(3561), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(2407), 2, - sym_not_in, - aux_sym_terminator_token1, - ACTIONS(3529), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3533), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3531), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [235759] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2595), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2597), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -413931,21 +413100,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_end, - [236666] = 6, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [235822] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 1, + ACTIONS(2429), 2, sym_not_in, - ACTIONS(4015), 1, - anon_sym_DOT, - ACTIONS(4017), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2361), 47, + ACTIONS(2431), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -413993,76 +413168,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [236733] = 24, + anon_sym_DOT, + [235885] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4088), 1, - anon_sym_PIPE, - ACTIONS(4096), 1, - anon_sym_EQ_GT, - ACTIONS(4098), 1, - anon_sym_EQ, - ACTIONS(4108), 1, - anon_sym_in, - ACTIONS(4110), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, - anon_sym_STAR_STAR, - ACTIONS(4116), 1, - anon_sym_DOT, - ACTIONS(4118), 1, - anon_sym_LBRACK2, - ACTIONS(4120), 1, + ACTIONS(2613), 2, sym_not_in, - ACTIONS(4122), 1, - anon_sym_when, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(2753), 2, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4090), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2615), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4094), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4164), 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(4100), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4102), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4086), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4104), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4092), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4106), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -414072,77 +413216,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [236836] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2755), 1, - aux_sym_terminator_token1, - ACTIONS(2864), 1, - anon_sym_LBRACK2, - ACTIONS(3629), 1, - anon_sym_PIPE, - ACTIONS(3639), 1, - anon_sym_when, - ACTIONS(3641), 1, - anon_sym_COLON_COLON, - ACTIONS(3643), 1, - anon_sym_EQ_GT, - ACTIONS(3645), 1, - anon_sym_EQ, - ACTIONS(3655), 1, anon_sym_in, - ACTIONS(3657), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3659), 1, anon_sym_SLASH_SLASH, - ACTIONS(3661), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3663), 1, anon_sym_DOT, - ACTIONS(3665), 1, + anon_sym_DOT_DOT_DOT_GT, + [235948] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2617), 2, sym_not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(2757), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(3631), 2, + aux_sym_terminator_token1, + ACTIONS(2619), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3635), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3637), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3647), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3649), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3627), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3651), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3633), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3653), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -414152,22 +413275,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [236941] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_DOT_DOT_DOT_GT, + [236011] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2351), 2, + ACTIONS(2433), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2353), 48, + ACTIONS(2435), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -414210,24 +413346,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_DOT_DOT_DOT_GT, - [237004] = 4, + [236074] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2359), 2, + ACTIONS(2621), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2361), 48, + ACTIONS(2623), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -414270,17 +413404,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237067] = 4, + anon_sym_DOT_DOT_DOT_GT, + [236137] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(273), 2, + ACTIONS(2601), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(275), 48, + ACTIONS(2603), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -414329,17 +413464,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237130] = 4, + [236200] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2694), 2, + ACTIONS(2769), 1, + anon_sym_SEMI, + ACTIONS(3460), 1, + anon_sym_PIPE, + ACTIONS(3470), 1, + anon_sym_when, + ACTIONS(3472), 1, + anon_sym_COLON_COLON, + ACTIONS(3474), 1, + anon_sym_EQ_GT, + ACTIONS(3476), 1, + anon_sym_EQ, + ACTIONS(3486), 1, + anon_sym_in, + ACTIONS(3488), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3490), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3492), 1, + anon_sym_STAR_STAR, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LBRACK2, + ACTIONS(3498), 1, + sym_not_in, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(2767), 2, + ts_builtin_sym_end, + aux_sym_terminator_token1, + ACTIONS(3462), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3466), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3468), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3478), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3480), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3458), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3482), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3464), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3484), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [236305] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2421), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2696), 48, + ACTIONS(2423), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -414388,23 +413603,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237193] = 4, + [236368] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2145), 2, + ACTIONS(2429), 2, sym_not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2147), 48, + ACTIONS(2431), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -414447,39 +413661,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237256] = 12, + anon_sym_DOT_DOT_DOT_GT, + [236431] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(4110), 1, + ACTIONS(4058), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, + ACTIONS(4060), 1, anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, + ACTIONS(4062), 1, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4090), 2, + ACTIONS(4038), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4094), 2, + ACTIONS(4042), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4092), 6, + ACTIONS(4040), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 34, + ACTIONS(2597), 34, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -414514,41 +413729,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_DOT_DOT_DOT_GT, - [237335] = 14, + [236510] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(4108), 1, + ACTIONS(4056), 1, anon_sym_in, - ACTIONS(4110), 1, + ACTIONS(4058), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, + ACTIONS(4060), 1, anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, + ACTIONS(4062), 1, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4120), 1, + ACTIONS(4068), 1, sym_not_in, - ACTIONS(4090), 2, + ACTIONS(4038), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4094), 2, + ACTIONS(4042), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4092), 6, + ACTIONS(4040), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4106), 9, + ACTIONS(4054), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -414558,7 +413773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 24, + ACTIONS(2597), 24, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -414583,22 +413798,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT_GT, - [237418] = 7, + [236593] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(4114), 1, + ACTIONS(4062), 1, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 46, + ACTIONS(2597), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -414645,35 +413860,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_DOT_DOT_DOT_GT, - [237487] = 10, + [236662] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(4114), 1, + ACTIONS(4062), 1, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4090), 2, + ACTIONS(4038), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4094), 2, + ACTIONS(4042), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4092), 6, + ACTIONS(4040), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 36, + ACTIONS(2597), 36, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -414710,25 +413925,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, anon_sym_DOT_DOT_DOT_GT, - [237562] = 8, + [236737] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(4114), 1, + ACTIONS(4062), 1, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4090), 2, + ACTIONS(4038), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 44, + ACTIONS(2597), 44, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -414773,72 +413988,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_DOT_DOT_DOT_GT, - [237633] = 20, + [236808] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4096), 1, + ACTIONS(2557), 1, + anon_sym_COMMA, + ACTIONS(2661), 2, + sym_not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2664), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_DOT_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, - ACTIONS(4098), 1, anon_sym_EQ, - ACTIONS(4108), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4110), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(4118), 1, + [236873] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4046), 1, + anon_sym_EQ, + ACTIONS(4056), 1, + anon_sym_in, + ACTIONS(4058), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4060), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4062), 1, + anon_sym_STAR_STAR, + ACTIONS(4064), 1, + anon_sym_DOT, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4120), 1, + ACTIONS(4068), 1, sym_not_in, - ACTIONS(4090), 2, + ACTIONS(4038), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4094), 2, + ACTIONS(4042), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4100), 3, + ACTIONS(4048), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4102), 3, + ACTIONS(4050), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4086), 4, + ACTIONS(4036), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4104), 5, + ACTIONS(4052), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4092), 6, + ACTIONS(4040), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 7, + ACTIONS(2597), 8, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4106), 9, + ACTIONS(4054), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -414848,71 +414122,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [237728] = 19, + [236966] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(4098), 1, - anon_sym_EQ, - ACTIONS(4108), 1, + ACTIONS(4056), 1, anon_sym_in, - ACTIONS(4110), 1, + ACTIONS(4058), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, + ACTIONS(4060), 1, anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, + ACTIONS(4062), 1, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4120), 1, + ACTIONS(4068), 1, sym_not_in, - ACTIONS(4090), 2, + ACTIONS(4038), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4094), 2, + ACTIONS(4042), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4100), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4102), 3, + ACTIONS(4050), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4086), 4, + ACTIONS(4036), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4104), 5, + ACTIONS(4052), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4092), 6, + ACTIONS(4040), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 8, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4106), 9, + ACTIONS(4054), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -414922,56 +414181,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [237821] = 17, + ACTIONS(2597), 12, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DOT_DOT_DOT_GT, + [237055] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(4108), 1, + ACTIONS(4056), 1, anon_sym_in, - ACTIONS(4110), 1, + ACTIONS(4058), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, + ACTIONS(4060), 1, anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, + ACTIONS(4062), 1, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4120), 1, + ACTIONS(4068), 1, sym_not_in, - ACTIONS(4090), 2, + ACTIONS(4038), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4094), 2, + ACTIONS(4042), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4102), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4086), 4, + ACTIONS(4036), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4104), 5, + ACTIONS(4052), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4092), 6, + ACTIONS(4040), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4106), 9, + ACTIONS(4054), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -414981,7 +414249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 12, + ACTIONS(2597), 15, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -414993,53 +414261,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_DOT_DOT_DOT_GT, - [237910] = 16, + [237142] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(4108), 1, + ACTIONS(4056), 1, anon_sym_in, - ACTIONS(4110), 1, + ACTIONS(4058), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, + ACTIONS(4060), 1, anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, + ACTIONS(4062), 1, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4120), 1, + ACTIONS(4068), 1, sym_not_in, - ACTIONS(4090), 2, + ACTIONS(4038), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4094), 2, + ACTIONS(4042), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4086), 4, + ACTIONS(4036), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4104), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4092), 6, + ACTIONS(4040), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4106), 9, + ACTIONS(4054), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -415049,7 +414314,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 15, + ACTIONS(2597), 20, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DOT_DOT_DOT_GT, + [237227] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4056), 1, + anon_sym_in, + ACTIONS(4058), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4060), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4062), 1, + anon_sym_STAR_STAR, + ACTIONS(4064), 1, + anon_sym_DOT, + ACTIONS(4066), 1, + anon_sym_LBRACK2, + ACTIONS(4068), 1, + sym_not_in, + ACTIONS(4038), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4042), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4040), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 33, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -415064,57 +414386,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_DOT_DOT_DOT_GT, - [237997] = 15, + [237308] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(4108), 1, - anon_sym_in, - ACTIONS(4110), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(4060), 1, anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, + ACTIONS(4062), 1, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4120), 1, - sym_not_in, - ACTIONS(4090), 2, + ACTIONS(4038), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4094), 2, + ACTIONS(4042), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4086), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4092), 6, + ACTIONS(4040), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4106), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(2409), 20, + ACTIONS(2597), 35, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -415134,42 +414455,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_DOT_DOT_DOT_GT, - [238082] = 13, + [237385] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(4108), 1, - anon_sym_in, - ACTIONS(4110), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4112), 1, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(4060), 1, anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, + ACTIONS(4062), 1, anon_sym_STAR_STAR, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4120), 1, - sym_not_in, - ACTIONS(4090), 2, + ACTIONS(4038), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4094), 2, + ACTIONS(4042), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4092), 6, + ACTIONS(4040), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 33, + ACTIONS(2597), 35, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -415202,42 +414532,28 @@ 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_DOT_DOT_DOT_GT, - [238163] = 11, + [237462] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2433), 2, sym_not_in, - ACTIONS(4112), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4114), 1, - anon_sym_STAR_STAR, - ACTIONS(4116), 1, - anon_sym_DOT, - ACTIONS(4118), 1, anon_sym_LBRACK2, - ACTIONS(4090), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4094), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4092), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, + ACTIONS(2435), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -415268,73 +414584,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_DOT_DOT_DOT_GT, - [238240] = 20, + [237525] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4062), 1, + ACTIONS(3880), 1, + anon_sym_PIPE, + ACTIONS(3892), 1, + anon_sym_when, + ACTIONS(3894), 1, + anon_sym_COLON_COLON, + ACTIONS(3896), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(3898), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(3908), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(3910), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(3912), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(3914), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(3916), 1, + anon_sym_DOT, + ACTIONS(3918), 1, + anon_sym_LBRACK2, + ACTIONS(3920), 1, sym_not_in, - ACTIONS(4054), 2, + ACTIONS(3882), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(3888), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4066), 3, + ACTIONS(3900), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(3902), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(2597), 4, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3878), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(3904), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(3886), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 7, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4072), 9, + ACTIONS(3906), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -415344,46 +414672,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [238335] = 15, + [237626] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4180), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4186), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4170), 2, + ACTIONS(4154), 1, + anon_sym_RBRACE, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4080), 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(4168), 4, + ACTIONS(4090), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4092), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4172), 6, + ACTIONS(4094), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -415393,95 +414750,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 19, + [237728] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(4072), 1, anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4082), 1, anon_sym_when, + ACTIONS(4084), 1, anon_sym_COLON_COLON, + ACTIONS(4086), 1, anon_sym_EQ_GT, + ACTIONS(4088), 1, anon_sym_EQ, + ACTIONS(4098), 1, + anon_sym_in, + ACTIONS(4100), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4102), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4104), 1, + anon_sym_STAR_STAR, + ACTIONS(4106), 1, + sym_not_in, + ACTIONS(4156), 1, + anon_sym_RBRACE, + ACTIONS(4074), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4078), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4080), 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(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4070), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4094), 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_DOT_DOT_DOT_GT, - [238419] = 24, + ACTIONS(4076), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4096), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [237830] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4160), 1, anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4168), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4170), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4180), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4182), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, - sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, ACTIONS(4188), 1, - anon_sym_RBRACK, - ACTIONS(4054), 2, + sym_not_in, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 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(4066), 3, + ACTIONS(4172), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4174), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4158), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(2597), 5, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + ACTIONS(4176), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4178), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -415491,75 +414903,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [238521] = 24, + [237926] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4192), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(4202), 1, + anon_sym_when, + ACTIONS(4204), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4226), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4190), 1, - anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 2, + ACTIONS(4200), 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(4066), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -415569,75 +414981,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [238623] = 24, + [238028] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, + ACTIONS(4160), 1, + anon_sym_PIPE, + ACTIONS(4168), 1, + anon_sym_EQ_GT, + ACTIONS(4170), 1, + anon_sym_EQ, ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, + anon_sym_in, ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(4184), 1, - anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, ACTIONS(4186), 1, + anon_sym_STAR_STAR, + ACTIONS(4188), 1, sym_not_in, - ACTIONS(4192), 1, - anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4230), 1, anon_sym_when, - ACTIONS(4198), 1, + ACTIONS(4232), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_EQ, - ACTIONS(4210), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 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(4204), 3, + ACTIONS(2597), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(4172), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4174), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4158), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4176), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4178), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -415647,75 +415058,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [238725] = 24, + [238128] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4192), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(4202), 1, + anon_sym_when, + ACTIONS(4204), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4212), 1, - anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(4234), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 2, + ACTIONS(4200), 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(4066), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -415725,61 +415136,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [238827] = 12, + [238230] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4180), 1, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, + anon_sym_in, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4170), 2, + ACTIONS(4106), 1, + sym_not_in, + ACTIONS(4236), 1, + anon_sym_RBRACE, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4080), 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(4172), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 33, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4070), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4076), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -415789,43 +415214,75 @@ 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_DOT_DOT_DOT_GT, - [238905] = 14, + [238332] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4180), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4186), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4170), 2, + ACTIONS(4238), 1, + anon_sym_RBRACE, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4080), 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(4172), 6, + ACTIONS(4090), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4092), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4070), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4094), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -415835,72 +415292,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 23, - anon_sym_LT, - anon_sym_GT, + [238434] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3725), 1, + anon_sym_DOT, + ACTIONS(3727), 1, + anon_sym_LBRACK2, + ACTIONS(4072), 1, anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4082), 1, anon_sym_when, + ACTIONS(4084), 1, anon_sym_COLON_COLON, + ACTIONS(4086), 1, anon_sym_EQ_GT, + ACTIONS(4088), 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_DOT_DOT_DOT_GT, - [238987] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(4116), 1, - anon_sym_DOT, - ACTIONS(4118), 1, - anon_sym_LBRACK2, - ACTIONS(4184), 1, + ACTIONS(4098), 1, + anon_sym_in, + ACTIONS(4100), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4102), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2409), 45, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4106), 1, + sym_not_in, + ACTIONS(4240), 1, + anon_sym_RBRACK, + ACTIONS(4074), 2, anon_sym_SLASH, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4080), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4070), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4076), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -415910,67 +415370,75 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT_GT, - [239055] = 10, + [238536] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4184), 1, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, + anon_sym_in, + ACTIONS(4100), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4102), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4170), 2, + ACTIONS(4106), 1, + sym_not_in, + ACTIONS(4242), 1, + anon_sym_RBRACE, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4080), 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(4172), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 35, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4070), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4076), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -415980,54 +415448,75 @@ 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_DOT_DOT_DOT_GT, - [239129] = 8, + [238638] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4184), 1, + ACTIONS(4192), 1, + anon_sym_PIPE, + ACTIONS(4202), 1, + anon_sym_when, + ACTIONS(4204), 1, + anon_sym_COLON_COLON, + ACTIONS(4206), 1, + anon_sym_EQ_GT, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4218), 1, + anon_sym_in, + ACTIONS(4220), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4222), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4170), 2, + ACTIONS(4228), 1, + sym_not_in, + ACTIONS(4244), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2409), 43, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4200), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4190), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4196), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416037,84 +415526,75 @@ 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_LT_GT, - anon_sym_DOT_DOT_DOT_GT, - [239199] = 24, + [238740] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, - anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, - ACTIONS(4192), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4082), 1, anon_sym_when, - ACTIONS(4198), 1, + ACTIONS(4084), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4214), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, + ACTIONS(4098), 1, + anon_sym_in, + ACTIONS(4100), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4102), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4104), 1, + anon_sym_STAR_STAR, + ACTIONS(4106), 1, + sym_not_in, + ACTIONS(4246), 1, + anon_sym_RBRACE, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 2, + ACTIONS(4080), 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(4204), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416124,71 +415604,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [239301] = 20, + [238842] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4180), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4186), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4200), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_EQ, - ACTIONS(4170), 2, + ACTIONS(4248), 1, + anon_sym_RBRACK, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4080), 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(4204), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4172), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416198,70 +415682,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [239395] = 19, + [238944] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4180), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4186), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4202), 1, - anon_sym_EQ, - ACTIONS(4170), 2, + ACTIONS(4250), 1, + anon_sym_RBRACK, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4080), 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(4204), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 7, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4176), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416271,56 +415760,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [239487] = 17, + [239046] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(2769), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, + ACTIONS(4192), 1, + anon_sym_PIPE, + ACTIONS(4202), 1, + anon_sym_when, + ACTIONS(4204), 1, + anon_sym_COLON_COLON, + ACTIONS(4206), 1, + anon_sym_EQ_GT, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4180), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4186), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4170), 2, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4200), 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(4206), 3, + ACTIONS(4210), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416330,64 +415838,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 11, + [239148] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4064), 1, + anon_sym_DOT, + ACTIONS(4066), 1, + anon_sym_LBRACK2, + ACTIONS(4192), 1, anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4202), 1, anon_sym_when, + ACTIONS(4204), 1, anon_sym_COLON_COLON, + ACTIONS(4206), 1, anon_sym_EQ_GT, + ACTIONS(4208), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_DOT_DOT_DOT_GT, - [239575] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4116), 1, - anon_sym_DOT, - ACTIONS(4118), 1, - anon_sym_LBRACK2, - ACTIONS(4178), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4180), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4186), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4170), 2, + ACTIONS(4252), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4200), 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(4168), 4, + ACTIONS(4210), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4212), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416397,90 +415916,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 14, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_DOT_DOT_DOT_GT, - [239661] = 24, + [239250] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4216), 1, - anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(4254), 1, + anon_sym_RBRACE, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 2, + ACTIONS(4080), 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(4066), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416490,63 +415994,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [239763] = 13, + [239352] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4180), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4186), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4170), 2, + ACTIONS(4256), 1, + anon_sym_RBRACK, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4080), 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(4172), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 32, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4070), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4076), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416556,60 +416072,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_DOT_DOT_DOT_GT, - [239843] = 11, + [239454] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4182), 1, + ACTIONS(4192), 1, + anon_sym_PIPE, + ACTIONS(4202), 1, + anon_sym_when, + ACTIONS(4204), 1, + anon_sym_COLON_COLON, + ACTIONS(4206), 1, + anon_sym_EQ_GT, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4218), 1, + anon_sym_in, + ACTIONS(4220), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4170), 2, + ACTIONS(4228), 1, + sym_not_in, + ACTIONS(4258), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4200), 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(4172), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 34, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4190), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4196), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416619,62 +416150,75 @@ 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_DOT_DOT_DOT_GT, - [239919] = 11, + [239556] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4182), 1, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, + anon_sym_in, + ACTIONS(4100), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4170), 2, + ACTIONS(4106), 1, + sym_not_in, + ACTIONS(4260), 1, + anon_sym_RBRACK, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4080), 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(4172), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 34, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4070), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4076), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416684,78 +416228,75 @@ 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_DOT_DOT_DOT_GT, - [239995] = 24, + [239658] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4192), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(4202), 1, + anon_sym_when, + ACTIONS(4204), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4218), 1, - anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(4262), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 2, + ACTIONS(4200), 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(4066), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416765,75 +416306,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [240097] = 24, + [239760] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2757), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, - anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, - ACTIONS(4192), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4082), 1, anon_sym_when, - ACTIONS(4198), 1, + ACTIONS(4084), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4170), 2, + ACTIONS(4098), 1, + anon_sym_in, + ACTIONS(4100), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4102), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4104), 1, + anon_sym_STAR_STAR, + ACTIONS(4106), 1, + sym_not_in, + ACTIONS(4264), 1, + anon_sym_RBRACK, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 2, + ACTIONS(4080), 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(4204), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416843,75 +416384,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [240199] = 24, + [239862] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, - anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, ACTIONS(4192), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4202), 1, anon_sym_when, - ACTIONS(4198), 1, + ACTIONS(4204), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, + ACTIONS(4208), 1, anon_sym_EQ, + ACTIONS(4218), 1, + anon_sym_in, ACTIONS(4220), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4222), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4224), 1, + anon_sym_STAR_STAR, + ACTIONS(4228), 1, + sym_not_in, + ACTIONS(4266), 1, anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 2, + ACTIONS(4200), 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(4204), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416921,75 +416462,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [240301] = 24, + [239964] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, - anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, - ACTIONS(4192), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4082), 1, anon_sym_when, - ACTIONS(4198), 1, + ACTIONS(4084), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, + ACTIONS(4098), 1, + anon_sym_in, + ACTIONS(4100), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4102), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4104), 1, + anon_sym_STAR_STAR, + ACTIONS(4106), 1, + sym_not_in, + ACTIONS(4268), 1, + anon_sym_RBRACK, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 2, + ACTIONS(4080), 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(4204), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -416999,75 +416540,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [240403] = 24, + [240066] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4192), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(4202), 1, + anon_sym_when, + ACTIONS(4204), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4224), 1, - anon_sym_RBRACE, - ACTIONS(4054), 2, + ACTIONS(4270), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 2, + ACTIONS(4200), 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(4066), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -417077,75 +416618,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [240505] = 24, + [240168] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4226), 1, + ACTIONS(4272), 1, anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 2, + ACTIONS(4080), 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(4066), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -417155,45 +416696,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [240607] = 5, + [240270] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(848), 1, - anon_sym_LBRACE, - ACTIONS(273), 2, - sym_not_in, + ACTIONS(4064), 1, + anon_sym_DOT, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(275), 46, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4192), 1, anon_sym_PIPE, + ACTIONS(4202), 1, + anon_sym_when, + ACTIONS(4204), 1, + anon_sym_COLON_COLON, + ACTIONS(4206), 1, + anon_sym_EQ_GT, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4218), 1, + anon_sym_in, + ACTIONS(4220), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4222), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4224), 1, + anon_sym_STAR_STAR, + ACTIONS(4228), 1, + sym_not_in, + ACTIONS(4274), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4194), 2, anon_sym_SLASH, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4200), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4190), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4196), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -417203,86 +416774,75 @@ 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_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [240671] = 24, + [240372] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, - anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, - ACTIONS(4192), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4082), 1, anon_sym_when, - ACTIONS(4198), 1, + ACTIONS(4084), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4228), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, + ACTIONS(4098), 1, + anon_sym_in, + ACTIONS(4100), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4102), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4104), 1, + anon_sym_STAR_STAR, + ACTIONS(4106), 1, + sym_not_in, + ACTIONS(4276), 1, + anon_sym_RBRACK, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 2, + ACTIONS(4080), 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(4204), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -417292,75 +416852,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [240773] = 24, + [240474] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4192), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(4202), 1, + anon_sym_when, + ACTIONS(4204), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4230), 1, - anon_sym_RBRACE, - ACTIONS(4054), 2, + ACTIONS(4278), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 2, + ACTIONS(4200), 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(4066), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -417370,75 +416930,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [240875] = 24, + [240576] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, - anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, - ACTIONS(4192), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4082), 1, anon_sym_when, - ACTIONS(4198), 1, + ACTIONS(4084), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4232), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, + ACTIONS(4098), 1, + anon_sym_in, + ACTIONS(4100), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4102), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4104), 1, + anon_sym_STAR_STAR, + ACTIONS(4106), 1, + sym_not_in, + ACTIONS(4280), 1, + anon_sym_RBRACE, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 2, + ACTIONS(4080), 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(4204), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -417448,75 +417008,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [240977] = 24, + [240678] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4234), 1, + ACTIONS(4282), 1, anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 2, + ACTIONS(4080), 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(4066), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -417526,75 +417086,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [241079] = 24, + [240780] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4236), 1, + ACTIONS(4284), 1, anon_sym_RBRACE, - ACTIONS(4054), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 2, + ACTIONS(4080), 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(4066), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -417604,75 +417164,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [241181] = 24, + [240882] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4238), 1, + ACTIONS(4286), 1, anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 2, + ACTIONS(4080), 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(4066), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -417682,72 +417242,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [241283] = 21, + [240984] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(4242), 1, - anon_sym_PIPE, - ACTIONS(4250), 1, - anon_sym_EQ_GT, - ACTIONS(4252), 1, - anon_sym_EQ, - ACTIONS(4262), 1, - anon_sym_in, - ACTIONS(4264), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, - anon_sym_STAR_STAR, - ACTIONS(4270), 1, + ACTIONS(866), 1, + anon_sym_LBRACE, + ACTIONS(163), 2, sym_not_in, - ACTIONS(4244), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4248), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4254), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4256), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4240), 4, + ACTIONS(165), 46, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - ACTIONS(4258), 5, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4246), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4260), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -417757,72 +417290,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [241379] = 21, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [241048] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4180), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4186), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4192), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_EQ, - ACTIONS(4170), 2, + ACTIONS(4288), 1, + anon_sym_RBRACK, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4080), 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(4204), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2409), 5, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4208), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -417832,39 +417379,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [241475] = 12, + [241150] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3816), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4264), 1, + ACTIONS(4182), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4244), 2, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4246), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 33, + ACTIONS(2597), 33, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -417898,41 +417445,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_DASH_GT, - [241553] = 14, + [241228] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4262), 1, + ACTIONS(4180), 1, anon_sym_in, - ACTIONS(4264), 1, + ACTIONS(4182), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4270), 1, + ACTIONS(4188), 1, sym_not_in, - ACTIONS(4244), 2, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4246), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4260), 9, + ACTIONS(4178), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -417942,7 +417489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 23, + ACTIONS(2597), 23, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -417966,22 +417513,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DASH_GT, - [241635] = 7, + [241310] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3816), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4268), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 45, + ACTIONS(2597), 45, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -418027,35 +417574,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_DASH_GT, - [241703] = 10, + [241378] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3816), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4268), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4244), 2, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4246), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 35, + ACTIONS(2597), 35, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -418091,25 +417638,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, anon_sym_DASH_GT, - [241777] = 8, + [241452] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3816), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4268), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4244), 2, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 43, + ACTIONS(2597), 43, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -418153,71 +417700,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_DASH_GT, - [241847] = 20, + [241522] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4250), 1, + ACTIONS(4168), 1, anon_sym_EQ_GT, - ACTIONS(4252), 1, + ACTIONS(4170), 1, anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4180), 1, anon_sym_in, - ACTIONS(4264), 1, + ACTIONS(4182), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4270), 1, + ACTIONS(4188), 1, sym_not_in, - ACTIONS(4244), 2, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4254), 3, + ACTIONS(4172), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4256), 3, + ACTIONS(4174), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4240), 4, + ACTIONS(4158), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4258), 5, + ACTIONS(4176), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, + ACTIONS(2597), 6, anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, anon_sym_DASH_GT, - ACTIONS(4246), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4260), 9, + ACTIONS(4178), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -418227,62 +417774,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [241941] = 19, + [241616] = 19, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4252), 1, + ACTIONS(4170), 1, anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4180), 1, anon_sym_in, - ACTIONS(4264), 1, + ACTIONS(4182), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4270), 1, + ACTIONS(4188), 1, sym_not_in, - ACTIONS(4244), 2, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4254), 3, + ACTIONS(4172), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4256), 3, + ACTIONS(4174), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4240), 4, + ACTIONS(4158), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4258), 5, + ACTIONS(4176), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4246), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 7, + ACTIONS(2597), 7, anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, @@ -418290,7 +417837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(4260), 9, + ACTIONS(4178), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -418300,56 +417847,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [242033] = 17, + [241708] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4262), 1, + ACTIONS(4180), 1, anon_sym_in, - ACTIONS(4264), 1, + ACTIONS(4182), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4270), 1, + ACTIONS(4188), 1, sym_not_in, - ACTIONS(4244), 2, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4256), 3, + ACTIONS(4174), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4240), 4, + ACTIONS(4158), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4258), 5, + ACTIONS(4176), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4246), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4260), 9, + ACTIONS(4178), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -418359,7 +417906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 11, + ACTIONS(2597), 11, anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, @@ -418371,52 +417918,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_PIPE, anon_sym_or, anon_sym_DASH_GT, - [242121] = 16, + [241796] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4262), 1, + ACTIONS(4180), 1, anon_sym_in, - ACTIONS(4264), 1, + ACTIONS(4182), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4270), 1, + ACTIONS(4188), 1, sym_not_in, - ACTIONS(4244), 2, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4240), 4, + ACTIONS(4158), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4258), 5, + ACTIONS(4176), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4246), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4260), 9, + ACTIONS(4178), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -418426,7 +417973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 14, + ACTIONS(2597), 14, anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, @@ -418441,41 +417988,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_and, anon_sym_DASH_GT, - [242207] = 13, + [241882] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4262), 1, + ACTIONS(4180), 1, anon_sym_in, - ACTIONS(4264), 1, + ACTIONS(4182), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4270), 1, + ACTIONS(4188), 1, + sym_not_in, + ACTIONS(4162), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4158), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4164), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4178), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 19, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + 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, + [241966] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3872), 1, + anon_sym_DOT, + ACTIONS(3874), 1, + anon_sym_LBRACK2, + ACTIONS(4180), 1, + anon_sym_in, + ACTIONS(4182), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4184), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4186), 1, + anon_sym_STAR_STAR, + ACTIONS(4188), 1, sym_not_in, - ACTIONS(4244), 2, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4246), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 32, + ACTIONS(2597), 32, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -418508,37 +418124,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_DASH_GT, - [242287] = 11, + [242046] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3816), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4266), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4244), 2, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4246), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 34, + ACTIONS(2597), 34, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -418573,37 +418189,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_DASH_GT, - [242363] = 11, + [242122] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3816), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4266), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4244), 2, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4246), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 34, + ACTIONS(2597), 34, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -418638,74 +418254,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_DASH_GT, - [242439] = 23, + [242198] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4242), 1, + ACTIONS(4192), 1, anon_sym_PIPE, - ACTIONS(4250), 1, + ACTIONS(4202), 1, + anon_sym_when, + ACTIONS(4204), 1, + anon_sym_COLON_COLON, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4252), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4264), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4270), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4272), 1, - anon_sym_when, - ACTIONS(4274), 1, - anon_sym_COLON_COLON, - ACTIONS(4244), 2, + ACTIONS(4290), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4200), 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(2409), 3, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(4254), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4256), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4240), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4258), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4246), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4260), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -418715,74 +418332,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [242539] = 23, + [242300] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, - anon_sym_DOT, - ACTIONS(4118), 1, - anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, - anon_sym_STAR_STAR, - ACTIONS(4186), 1, + ACTIONS(866), 1, + anon_sym_LBRACE, + ACTIONS(2497), 2, sym_not_in, - ACTIONS(4192), 1, - anon_sym_PIPE, - ACTIONS(4196), 1, - anon_sym_when, - ACTIONS(4198), 1, - anon_sym_COLON_COLON, - ACTIONS(4200), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_EQ, - ACTIONS(4170), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4174), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 3, + ACTIONS(2499), 46, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4204), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4208), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4176), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -418792,75 +418380,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [242639] = 24, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [242364] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2757), 1, - anon_sym_LBRACE, - ACTIONS(3722), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4278), 1, + ACTIONS(4160), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_when, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4292), 1, + ACTIONS(4168), 1, anon_sym_EQ_GT, - ACTIONS(4294), 1, + ACTIONS(4170), 1, anon_sym_EQ, - ACTIONS(4304), 1, + ACTIONS(4180), 1, anon_sym_in, - ACTIONS(4306), 1, + ACTIONS(4182), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4308), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4188), 1, sym_not_in, - ACTIONS(4280), 2, + ACTIONS(4230), 1, + anon_sym_when, + ACTIONS(4232), 1, + anon_sym_COLON_COLON, + ACTIONS(4294), 1, + anon_sym_DASH_GT, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4286), 2, + ACTIONS(4292), 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(4296), 3, + ACTIONS(4172), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4298), 3, + ACTIONS(4174), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4276), 4, + ACTIONS(4158), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4300), 5, + ACTIONS(4176), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4282), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4302), 9, + ACTIONS(4178), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -418870,74 +418469,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [242741] = 23, + [242466] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, + ACTIONS(4160), 1, + anon_sym_PIPE, + ACTIONS(4168), 1, + anon_sym_EQ_GT, + ACTIONS(4170), 1, + anon_sym_EQ, ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, + anon_sym_in, ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, + anon_sym_CARET_CARET_CARET, ACTIONS(4184), 1, - anon_sym_STAR_STAR, + anon_sym_SLASH_SLASH, ACTIONS(4186), 1, + anon_sym_STAR_STAR, + ACTIONS(4188), 1, sym_not_in, - ACTIONS(4192), 1, - anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4230), 1, anon_sym_when, - ACTIONS(4198), 1, + ACTIONS(4232), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_EQ, - ACTIONS(4170), 2, + ACTIONS(4296), 1, + anon_sym_DASH_GT, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4292), 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(2409), 3, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4204), 3, + ACTIONS(4172), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4174), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4158), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4176), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4178), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -418947,74 +418547,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [242841] = 23, + [242568] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(2769), 1, + anon_sym_LBRACE, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4242), 1, + ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(4250), 1, + ACTIONS(4310), 1, + anon_sym_when, + ACTIONS(4312), 1, + anon_sym_COLON_COLON, + ACTIONS(4314), 1, anon_sym_EQ_GT, - ACTIONS(4252), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4326), 1, anon_sym_in, - ACTIONS(4264), 1, + ACTIONS(4328), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, + ACTIONS(4330), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4270), 1, + ACTIONS(4334), 1, sym_not_in, - ACTIONS(4272), 1, - anon_sym_when, - ACTIONS(4274), 1, - anon_sym_COLON_COLON, - ACTIONS(4244), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4308), 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(2409), 3, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(4254), 3, + ACTIONS(4318), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4256), 3, + ACTIONS(4320), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4240), 4, + ACTIONS(4298), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4258), 5, + ACTIONS(4322), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4246), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4260), 9, + ACTIONS(4324), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -419024,73 +418625,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [242941] = 22, + [242670] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, - ACTIONS(4192), 1, - anon_sym_PIPE, - ACTIONS(4198), 1, - anon_sym_COLON_COLON, - ACTIONS(4200), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_EQ, - ACTIONS(4170), 2, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4204), 3, + ACTIONS(4196), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 33, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_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(4206), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2409), 4, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4168), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4208), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_DOT_DOT_DOT_GT, + [242748] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4064), 1, + anon_sym_DOT, + ACTIONS(4066), 1, + anon_sym_LBRACK2, + ACTIONS(4218), 1, + anon_sym_in, + ACTIONS(4220), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4222), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4224), 1, + anon_sym_STAR_STAR, + ACTIONS(4228), 1, + sym_not_in, + ACTIONS(4194), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4198), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -419100,73 +418735,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [243039] = 22, + ACTIONS(2597), 23, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT_GT, + [242830] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4242), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4250), 1, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4252), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4264), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4270), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4274), 1, - anon_sym_COLON_COLON, - ACTIONS(4244), 2, + ACTIONS(4336), 1, + anon_sym_RBRACE, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4080), 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(4254), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4256), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2409), 4, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(4240), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4258), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4246), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4260), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -419176,75 +418837,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [243137] = 24, + [242932] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, - ACTIONS(4192), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2597), 45, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4196), 1, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4198), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, anon_sym_EQ, - ACTIONS(4314), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, + [243000] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4064), 1, + anon_sym_DOT, + ACTIONS(4066), 1, + anon_sym_LBRACK2, + ACTIONS(4192), 1, + anon_sym_PIPE, + ACTIONS(4206), 1, + anon_sym_EQ_GT, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4218), 1, + anon_sym_in, + ACTIONS(4220), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4222), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4224), 1, + anon_sym_STAR_STAR, + ACTIONS(4228), 1, + sym_not_in, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 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(4204), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(2597), 5, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -419254,75 +418973,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [243239] = 24, + [243096] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, - anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, - anon_sym_EQ_GT, - ACTIONS(4064), 1, - anon_sym_EQ, - ACTIONS(4074), 1, - anon_sym_in, - ACTIONS(4076), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, - sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4316), 1, - anon_sym_RBRACE, - ACTIONS(4054), 2, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 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(4066), 3, + ACTIONS(4196), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 35, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_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(4068), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4050), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4070), 5, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4072), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -419332,75 +419033,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [243341] = 24, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT_GT, + [243170] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, - anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, - anon_sym_EQ_GT, - ACTIONS(4064), 1, - anon_sym_EQ, - ACTIONS(4074), 1, - anon_sym_in, - ACTIONS(4076), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, - sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4318), 1, - anon_sym_RBRACE, - ACTIONS(4054), 2, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4166), 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(4066), 3, + ACTIONS(2597), 43, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_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, - ACTIONS(4068), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4070), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4072), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -419410,75 +419090,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [243443] = 24, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_DOT_DOT_DOT_GT, + [243240] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, - anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, ACTIONS(4192), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4202), 1, anon_sym_when, - ACTIONS(4198), 1, + ACTIONS(4204), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4320), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, + ACTIONS(4218), 1, + anon_sym_in, + ACTIONS(4220), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4222), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4224), 1, + anon_sym_STAR_STAR, + ACTIONS(4228), 1, + sym_not_in, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 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(4204), 3, + ACTIONS(2597), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -419488,75 +419176,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [243545] = 24, + [243340] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, - anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, ACTIONS(4192), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4202), 1, anon_sym_when, - ACTIONS(4198), 1, + ACTIONS(4204), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4322), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, + ACTIONS(4218), 1, + anon_sym_in, + ACTIONS(4220), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4222), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4224), 1, + anon_sym_STAR_STAR, + ACTIONS(4228), 1, + sym_not_in, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 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(4204), 3, + ACTIONS(2597), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -419566,75 +419253,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [243647] = 24, + [243440] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4192), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(4204), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4324), 1, - anon_sym_RBRACE, - ACTIONS(4054), 2, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 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(4066), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(2597), 4, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -419644,75 +419329,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [243749] = 24, + [243538] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, - anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4326), 1, - anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 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(4066), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(2597), 6, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -419722,75 +419403,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [243851] = 24, + [243632] = 19, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, - anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, - anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4328), 1, - anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 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(4066), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(2597), 7, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -419800,75 +419476,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [243953] = 24, + [243724] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, - anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, - anon_sym_EQ_GT, - ACTIONS(4064), 1, - anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4330), 1, - anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 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(4066), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -419878,39 +419535,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [244055] = 12, + ACTIONS(2597), 11, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DOT_DOT_DOT_GT, + [243812] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4306), 1, + ACTIONS(4328), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4308), 1, + ACTIONS(4330), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4280), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4282), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 33, + ACTIONS(2597), 33, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -419944,41 +419613,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - [244133] = 14, + [243890] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4304), 1, + ACTIONS(4326), 1, anon_sym_in, - ACTIONS(4306), 1, + ACTIONS(4328), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4308), 1, + ACTIONS(4330), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4334), 1, sym_not_in, - ACTIONS(4280), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4282), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4302), 9, + ACTIONS(4324), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -419988,7 +419657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 23, + ACTIONS(2597), 23, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -420012,22 +419681,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [244215] = 7, + [243972] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4310), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 45, + ACTIONS(2597), 45, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -420073,35 +419742,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - [244283] = 10, + [244040] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4310), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4280), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4282), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 35, + ACTIONS(2597), 35, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -420137,85 +419806,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [244357] = 8, + [244114] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2595), 1, sym_not_in, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4310), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4280), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2409), 43, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_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_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - [244427] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(848), 1, + ACTIONS(2597), 43, anon_sym_LBRACE, - ACTIONS(2714), 2, - sym_not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2716), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -420255,156 +419868,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [244491] = 24, + [244184] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4242), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4250), 1, - anon_sym_EQ_GT, - ACTIONS(4252), 1, - anon_sym_EQ, - ACTIONS(4262), 1, - anon_sym_in, - ACTIONS(4264), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, - anon_sym_STAR_STAR, - ACTIONS(4270), 1, - sym_not_in, - ACTIONS(4272), 1, + ACTIONS(4082), 1, anon_sym_when, - ACTIONS(4274), 1, + ACTIONS(4084), 1, anon_sym_COLON_COLON, - ACTIONS(4334), 1, - anon_sym_DASH_GT, - ACTIONS(4244), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4248), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4332), 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(4254), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4256), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4240), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4258), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4246), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4260), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [244593] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_DOT, - ACTIONS(3818), 1, - anon_sym_LBRACK2, - ACTIONS(4242), 1, - anon_sym_PIPE, - ACTIONS(4250), 1, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4252), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4262), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4264), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4270), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4272), 1, - anon_sym_when, - ACTIONS(4274), 1, - anon_sym_COLON_COLON, - ACTIONS(4336), 1, - anon_sym_DASH_GT, - ACTIONS(4244), 2, + ACTIONS(4338), 1, + anon_sym_RBRACK, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4332), 2, + ACTIONS(4080), 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(4254), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4256), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4240), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4258), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4246), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4260), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -420414,71 +419946,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [244695] = 20, + [244286] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4292), 1, + ACTIONS(4314), 1, anon_sym_EQ_GT, - ACTIONS(4294), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(4304), 1, + ACTIONS(4326), 1, anon_sym_in, - ACTIONS(4306), 1, + ACTIONS(4328), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4308), 1, + ACTIONS(4330), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4334), 1, sym_not_in, - ACTIONS(4280), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4296), 3, + ACTIONS(4318), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4298), 3, + ACTIONS(4320), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4276), 4, + ACTIONS(4298), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4300), 5, + ACTIONS(4322), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2409), 6, + ACTIONS(2597), 6, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(4282), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4302), 9, + ACTIONS(4324), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -420488,62 +420020,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [244789] = 19, + [244380] = 19, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4294), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(4304), 1, + ACTIONS(4326), 1, anon_sym_in, - ACTIONS(4306), 1, + ACTIONS(4328), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4308), 1, + ACTIONS(4330), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4334), 1, sym_not_in, - ACTIONS(4280), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4296), 3, + ACTIONS(4318), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4298), 3, + ACTIONS(4320), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4276), 4, + ACTIONS(4298), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4300), 5, + ACTIONS(4322), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4282), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 7, + ACTIONS(2597), 7, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_LT_DASH, @@ -420551,7 +420083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - ACTIONS(4302), 9, + ACTIONS(4324), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -420561,56 +420093,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [244881] = 17, + [244472] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4304), 1, + ACTIONS(4326), 1, anon_sym_in, - ACTIONS(4306), 1, + ACTIONS(4328), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4308), 1, + ACTIONS(4330), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4334), 1, sym_not_in, - ACTIONS(4280), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4298), 3, + ACTIONS(4320), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4276), 4, + ACTIONS(4298), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4300), 5, + ACTIONS(4322), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4282), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4302), 9, + ACTIONS(4324), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -420620,7 +420152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 11, + ACTIONS(2597), 11, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_LT_DASH, @@ -420632,52 +420164,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - [244969] = 16, + [244560] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4304), 1, + ACTIONS(4326), 1, anon_sym_in, - ACTIONS(4306), 1, + ACTIONS(4328), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4308), 1, + ACTIONS(4330), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4334), 1, sym_not_in, - ACTIONS(4280), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4276), 4, + ACTIONS(4298), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4300), 5, + ACTIONS(4322), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4282), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4302), 9, + ACTIONS(4324), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -420687,7 +420219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 14, + ACTIONS(2597), 14, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_LT_DASH, @@ -420702,75 +420234,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - [245055] = 24, + [244646] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, + ACTIONS(4326), 1, anon_sym_in, - ACTIONS(4180), 1, + ACTIONS(4328), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, + ACTIONS(4330), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4186), 1, + ACTIONS(4334), 1, sym_not_in, - ACTIONS(4192), 1, - anon_sym_PIPE, - ACTIONS(4196), 1, - anon_sym_when, - ACTIONS(4198), 1, - anon_sym_COLON_COLON, - ACTIONS(4200), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_EQ, - ACTIONS(4338), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 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(4204), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4206), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4298), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4324), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -420780,153 +420283,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [245157] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4116), 1, - anon_sym_DOT, - ACTIONS(4118), 1, - anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, - anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, - ACTIONS(4192), 1, + ACTIONS(2597), 19, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(4196), 1, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4198), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, anon_sym_EQ, - ACTIONS(4340), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4174), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4194), 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(4204), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4208), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4176), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [245259] = 24, + [244730] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, - anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, - anon_sym_EQ_GT, - ACTIONS(4064), 1, - anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4326), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4328), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4330), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4334), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4342), 1, - anon_sym_RBRACE, - ACTIONS(4054), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 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(4066), 3, + ACTIONS(4304), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 32, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_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(4068), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4070), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4072), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -420936,57 +420370,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [245361] = 15, + [244810] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4304), 1, - anon_sym_in, - ACTIONS(4306), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4308), 1, + ACTIONS(4330), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, - sym_not_in, - ACTIONS(4280), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4276), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4282), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, 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(2409), 19, + ACTIONS(2597), 34, anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, @@ -421005,75 +420422,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - [245445] = 24, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [244886] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, - anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, - anon_sym_EQ_GT, - ACTIONS(4064), 1, - anon_sym_EQ, - ACTIONS(4074), 1, - anon_sym_in, - ACTIONS(4076), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4330), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, - sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4344), 1, - anon_sym_RBRACE, - ACTIONS(4054), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 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(4066), 3, + ACTIONS(4304), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 34, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_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(4068), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4070), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4072), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -421083,75 +420498,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [245547] = 24, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [244962] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, - anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, - anon_sym_EQ_GT, - ACTIONS(4064), 1, - anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4346), 1, - anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 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(4066), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4068), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -421161,44 +420555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [245649] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3722), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_LBRACK2, - ACTIONS(4304), 1, - anon_sym_in, - ACTIONS(4306), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4308), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, - anon_sym_STAR_STAR, - ACTIONS(4312), 1, - sym_not_in, - ACTIONS(4280), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(4282), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2409), 32, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2597), 14, anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, @@ -421212,56 +420569,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [245729] = 11, + anon_sym_DOT_DOT_DOT_GT, + [245048] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4308), 1, + ACTIONS(4218), 1, + anon_sym_in, + ACTIONS(4220), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4280), 2, + ACTIONS(4228), 1, + sym_not_in, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4282), 6, + ACTIONS(4190), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 34, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4216), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(2597), 19, anon_sym_PIPE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, @@ -421280,51 +420638,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [245805] = 11, + anon_sym_DOT_DOT_DOT_GT, + [245132] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(2407), 1, - sym_not_in, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4308), 1, + ACTIONS(4218), 1, + anon_sym_in, + ACTIONS(4220), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4280), 2, + ACTIONS(4228), 1, + sym_not_in, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4282), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2409), 34, - anon_sym_LBRACE, + ACTIONS(2597), 32, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -421356,77 +420705,76 @@ 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, - [245881] = 24, + anon_sym_DOT_DOT_DOT_GT, + [245212] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(2769), 1, + anon_sym_DASH_GT, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4160), 1, anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4168), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4170), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4180), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4182), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4188), 1, sym_not_in, - ACTIONS(4084), 1, + ACTIONS(4230), 1, anon_sym_when, - ACTIONS(4348), 1, - anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(4232), 1, + anon_sym_COLON_COLON, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 2, + ACTIONS(4292), 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(4066), 3, + ACTIONS(4172), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4174), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4158), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4176), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4178), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -421436,75 +420784,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [245983] = 24, + [245314] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(2757), 1, - anon_sym_DASH_GT, - ACTIONS(3816), 1, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4242), 1, - anon_sym_PIPE, - ACTIONS(4250), 1, - anon_sym_EQ_GT, - ACTIONS(4252), 1, - anon_sym_EQ, - ACTIONS(4262), 1, - anon_sym_in, - ACTIONS(4264), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4270), 1, - sym_not_in, - ACTIONS(4272), 1, - anon_sym_when, - ACTIONS(4274), 1, - anon_sym_COLON_COLON, - ACTIONS(4244), 2, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4332), 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(4254), 3, + ACTIONS(4196), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 34, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_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(4256), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4240), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4258), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4246), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4260), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -421514,75 +420846,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246085] = 24, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DOT_DOT_DOT_GT, + [245390] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(2595), 1, + sym_not_in, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, - ACTIONS(4192), 1, - anon_sym_PIPE, - ACTIONS(4196), 1, - anon_sym_when, - ACTIONS(4198), 1, - anon_sym_COLON_COLON, - ACTIONS(4200), 1, - anon_sym_EQ_GT, - ACTIONS(4202), 1, - anon_sym_EQ, - ACTIONS(4350), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 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(4204), 3, + ACTIONS(4196), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2597), 34, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_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(4206), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4208), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4176), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -421592,75 +420911,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246187] = 24, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DOT_DOT_DOT_GT, + [245466] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4314), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4326), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4328), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4330), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4334), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4352), 1, - anon_sym_RBRACE, - ACTIONS(4054), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 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(4066), 3, + ACTIONS(4318), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4320), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4298), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(2597), 5, + anon_sym_LBRACE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4322), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4324), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -421670,75 +420989,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246289] = 24, + [245562] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, - anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, - ACTIONS(4192), 1, + ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4310), 1, anon_sym_when, - ACTIONS(4198), 1, + ACTIONS(4312), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, + ACTIONS(4314), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(4354), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, + ACTIONS(4326), 1, + anon_sym_in, + ACTIONS(4328), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4330), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4332), 1, + anon_sym_STAR_STAR, + ACTIONS(4334), 1, + sym_not_in, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 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(4204), 3, + ACTIONS(2597), 3, + anon_sym_LBRACE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4318), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4320), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4298), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4322), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4324), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -421748,75 +421066,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246391] = 24, + [245662] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4116), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(4118), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4178), 1, - anon_sym_in, - ACTIONS(4180), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4182), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4184), 1, - anon_sym_STAR_STAR, - ACTIONS(4186), 1, - sym_not_in, - ACTIONS(4192), 1, + ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(4196), 1, + ACTIONS(4310), 1, anon_sym_when, - ACTIONS(4198), 1, + ACTIONS(4312), 1, anon_sym_COLON_COLON, - ACTIONS(4200), 1, + ACTIONS(4314), 1, anon_sym_EQ_GT, - ACTIONS(4202), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(4356), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(4170), 2, + ACTIONS(4326), 1, + anon_sym_in, + ACTIONS(4328), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4330), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4332), 1, + anon_sym_STAR_STAR, + ACTIONS(4334), 1, + sym_not_in, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4174), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4194), 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(4204), 3, + ACTIONS(2597), 3, + anon_sym_LBRACE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4318), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4206), 3, + ACTIONS(4320), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4168), 4, + ACTIONS(4298), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4208), 5, + ACTIONS(4322), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4172), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4176), 9, + ACTIONS(4324), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -421826,72 +421143,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246493] = 21, + [245762] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4278), 1, + ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(4292), 1, + ACTIONS(4312), 1, + anon_sym_COLON_COLON, + ACTIONS(4314), 1, anon_sym_EQ_GT, - ACTIONS(4294), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(4304), 1, + ACTIONS(4326), 1, anon_sym_in, - ACTIONS(4306), 1, + ACTIONS(4328), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4308), 1, + ACTIONS(4330), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4332), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4334), 1, sym_not_in, - ACTIONS(4280), 2, + ACTIONS(4302), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4306), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4296), 3, + ACTIONS(4318), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4298), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4276), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2409), 5, + ACTIONS(4320), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2597), 4, anon_sym_LBRACE, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4300), 5, + ACTIONS(4298), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4322), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4282), 6, + ACTIONS(4304), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4302), 9, + ACTIONS(4324), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -421901,74 +421219,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246589] = 23, + [245860] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4278), 1, + ACTIONS(4192), 1, anon_sym_PIPE, - ACTIONS(4288), 1, + ACTIONS(4202), 1, anon_sym_when, - ACTIONS(4290), 1, + ACTIONS(4204), 1, anon_sym_COLON_COLON, - ACTIONS(4292), 1, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4294), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4304), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4306), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4308), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4280), 2, + ACTIONS(4340), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4200), 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(2409), 3, - anon_sym_LBRACE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4296), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4298), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4276), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4300), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4282), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4302), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -421978,74 +421297,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246689] = 23, + [245962] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4278), 1, + ACTIONS(4192), 1, anon_sym_PIPE, - ACTIONS(4288), 1, + ACTIONS(4202), 1, anon_sym_when, - ACTIONS(4290), 1, + ACTIONS(4204), 1, anon_sym_COLON_COLON, - ACTIONS(4292), 1, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4294), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4304), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4306), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4308), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4280), 2, + ACTIONS(4342), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4200), 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(2409), 3, - anon_sym_LBRACE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4296), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4298), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4276), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4300), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4282), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4302), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -422055,75 +421375,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246789] = 24, + [246064] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(4064), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(4066), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4192), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(4202), 1, + anon_sym_when, + ACTIONS(4204), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4206), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4208), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4218), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4220), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4222), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4224), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4228), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4358), 1, - anon_sym_RBRACE, - ACTIONS(4054), 2, + ACTIONS(4344), 1, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(4194), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4198), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 2, + ACTIONS(4200), 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(4066), 3, + ACTIONS(4210), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4212), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4190), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4214), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4196), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4216), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -422133,73 +421453,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246891] = 22, + [246166] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4278), 1, + ACTIONS(4160), 1, anon_sym_PIPE, - ACTIONS(4290), 1, - anon_sym_COLON_COLON, - ACTIONS(4292), 1, + ACTIONS(4168), 1, anon_sym_EQ_GT, - ACTIONS(4294), 1, + ACTIONS(4170), 1, anon_sym_EQ, - ACTIONS(4304), 1, + ACTIONS(4180), 1, anon_sym_in, - ACTIONS(4306), 1, + ACTIONS(4182), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4308), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4310), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4188), 1, sym_not_in, - ACTIONS(4280), 2, + ACTIONS(4230), 1, + anon_sym_when, + ACTIONS(4232), 1, + anon_sym_COLON_COLON, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4284), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(4296), 3, + ACTIONS(2597), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(4172), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4298), 3, + ACTIONS(4174), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2409), 4, - anon_sym_LBRACE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(4276), 4, + ACTIONS(4158), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4300), 5, + ACTIONS(4176), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4282), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4302), 9, + ACTIONS(4178), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -422209,75 +421530,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246989] = 24, + [246266] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3872), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3874), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4160), 1, anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4168), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4170), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4180), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4182), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4184), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4186), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4188), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4360), 1, - anon_sym_RBRACK, - ACTIONS(4054), 2, + ACTIONS(4232), 1, + anon_sym_COLON_COLON, + ACTIONS(4162), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 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(4066), 3, + ACTIONS(4172), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4174), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(2597), 4, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(4158), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4176), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4164), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4178), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -422287,46 +421606,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [247091] = 15, + [246364] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3818), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4262), 1, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + ACTIONS(4086), 1, + anon_sym_EQ_GT, + ACTIONS(4088), 1, + anon_sym_EQ, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4264), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4266), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4268), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4270), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4244), 2, + ACTIONS(4346), 1, + anon_sym_RBRACK, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4248), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4080), 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(4240), 4, + ACTIONS(4090), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4092), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4246), 6, + ACTIONS(4094), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4260), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -422336,93 +421684,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(2409), 19, - anon_sym_PIPE, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - 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, - [247175] = 23, + [246466] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3725), 1, anon_sym_DOT, - ACTIONS(3724), 1, + ACTIONS(3727), 1, anon_sym_LBRACK2, - ACTIONS(4052), 1, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(4082), 1, + anon_sym_when, + ACTIONS(4084), 1, anon_sym_COLON_COLON, - ACTIONS(4062), 1, + ACTIONS(4086), 1, anon_sym_EQ_GT, - ACTIONS(4064), 1, + ACTIONS(4088), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4098), 1, anon_sym_in, - ACTIONS(4076), 1, + ACTIONS(4100), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4078), 1, + ACTIONS(4102), 1, anon_sym_SLASH_SLASH, - ACTIONS(4080), 1, + ACTIONS(4104), 1, anon_sym_STAR_STAR, - ACTIONS(4082), 1, + ACTIONS(4106), 1, sym_not_in, - ACTIONS(4084), 1, - anon_sym_when, - ACTIONS(4054), 2, + ACTIONS(4074), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4058), 2, + ACTIONS(4078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4166), 2, + ACTIONS(4080), 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(4066), 3, + ACTIONS(4090), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4068), 3, + ACTIONS(4092), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4050), 4, + ACTIONS(4070), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4070), 5, + ACTIONS(4094), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4056), 6, + ACTIONS(4076), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4072), 9, + ACTIONS(4096), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -422432,34 +421760,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [247274] = 13, + [246565] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4362), 1, + ACTIONS(4348), 1, anon_sym_LPAREN, - ACTIONS(4364), 1, + ACTIONS(4350), 1, anon_sym_DQUOTE, - ACTIONS(4366), 1, + ACTIONS(4352), 1, anon_sym_SQUOTE, - ACTIONS(4368), 1, + ACTIONS(4354), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4370), 1, + ACTIONS(4356), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4372), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - ACTIONS(4374), 1, + ACTIONS(4360), 1, anon_sym_LBRACK, - ACTIONS(4376), 1, + ACTIONS(4362), 1, anon_sym_LT, - ACTIONS(4378), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4380), 1, + ACTIONS(4366), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2042), 10, + STATE(3918), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -422470,34 +421798,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [247325] = 13, + [246616] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4382), 1, + ACTIONS(4368), 1, anon_sym_LPAREN, - ACTIONS(4384), 1, + ACTIONS(4370), 1, anon_sym_DQUOTE, - ACTIONS(4386), 1, + ACTIONS(4372), 1, anon_sym_SQUOTE, - ACTIONS(4388), 1, + ACTIONS(4374), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4390), 1, + ACTIONS(4376), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4392), 1, + ACTIONS(4378), 1, anon_sym_LBRACE, - ACTIONS(4394), 1, + ACTIONS(4380), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4382), 1, anon_sym_LT, - ACTIONS(4398), 1, + ACTIONS(4384), 1, anon_sym_PIPE, - ACTIONS(4400), 1, + ACTIONS(4386), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2025), 10, + STATE(3383), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -422508,34 +421836,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [247376] = 13, + [246667] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4402), 1, + ACTIONS(4388), 1, anon_sym_LPAREN, - ACTIONS(4404), 1, + ACTIONS(4390), 1, anon_sym_DQUOTE, - ACTIONS(4406), 1, + ACTIONS(4392), 1, anon_sym_SQUOTE, - ACTIONS(4408), 1, + ACTIONS(4394), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4410), 1, + ACTIONS(4396), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4412), 1, + ACTIONS(4398), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, + ACTIONS(4400), 1, anon_sym_LBRACK, - ACTIONS(4416), 1, + ACTIONS(4402), 1, anon_sym_LT, - ACTIONS(4418), 1, + ACTIONS(4404), 1, anon_sym_PIPE, - ACTIONS(4420), 1, + ACTIONS(4406), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2026), 10, + STATE(3383), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -422546,34 +421874,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [247427] = 13, + [246718] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4422), 1, + ACTIONS(4408), 1, anon_sym_LPAREN, - ACTIONS(4424), 1, + ACTIONS(4410), 1, anon_sym_DQUOTE, - ACTIONS(4426), 1, + ACTIONS(4412), 1, anon_sym_SQUOTE, - ACTIONS(4428), 1, + ACTIONS(4414), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4430), 1, + ACTIONS(4416), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4432), 1, + ACTIONS(4418), 1, anon_sym_LBRACE, - ACTIONS(4434), 1, + ACTIONS(4420), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, + ACTIONS(4422), 1, anon_sym_LT, - ACTIONS(4438), 1, + ACTIONS(4424), 1, anon_sym_PIPE, - ACTIONS(4440), 1, + ACTIONS(4426), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2573), 10, + STATE(2368), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -422584,34 +421912,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [247478] = 13, + [246769] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4442), 1, + ACTIONS(4428), 1, anon_sym_LPAREN, - ACTIONS(4444), 1, + ACTIONS(4430), 1, anon_sym_DQUOTE, - ACTIONS(4446), 1, + ACTIONS(4432), 1, anon_sym_SQUOTE, - ACTIONS(4448), 1, + ACTIONS(4434), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4450), 1, + ACTIONS(4436), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4452), 1, + ACTIONS(4438), 1, anon_sym_LBRACE, - ACTIONS(4454), 1, + ACTIONS(4440), 1, anon_sym_LBRACK, - ACTIONS(4456), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4458), 1, + ACTIONS(4444), 1, anon_sym_PIPE, - ACTIONS(4460), 1, + ACTIONS(4446), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(4318), 10, + STATE(1901), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -422622,72 +421950,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [247529] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4462), 1, - anon_sym_LPAREN, - ACTIONS(4464), 1, - anon_sym_DQUOTE, - ACTIONS(4466), 1, - anon_sym_SQUOTE, - ACTIONS(4468), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4470), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4472), 1, - anon_sym_LBRACE, - ACTIONS(4474), 1, - anon_sym_LBRACK, - ACTIONS(4476), 1, - anon_sym_LT, - ACTIONS(4478), 1, - anon_sym_PIPE, - ACTIONS(4480), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - STATE(4319), 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, - [247580] = 13, + [246820] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4482), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(4484), 1, + ACTIONS(4450), 1, anon_sym_DQUOTE, - ACTIONS(4486), 1, + ACTIONS(4452), 1, anon_sym_SQUOTE, - ACTIONS(4488), 1, + ACTIONS(4454), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4490), 1, + ACTIONS(4456), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4492), 1, + ACTIONS(4458), 1, anon_sym_LBRACE, - ACTIONS(4494), 1, + ACTIONS(4460), 1, anon_sym_LBRACK, - ACTIONS(4496), 1, + ACTIONS(4462), 1, anon_sym_LT, - ACTIONS(4498), 1, + ACTIONS(4464), 1, anon_sym_PIPE, - ACTIONS(4500), 1, + ACTIONS(4466), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3193), 10, + STATE(1901), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -422698,34 +421988,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [247631] = 13, + [246871] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4468), 1, anon_sym_LPAREN, - ACTIONS(4504), 1, + ACTIONS(4470), 1, anon_sym_DQUOTE, - ACTIONS(4506), 1, + ACTIONS(4472), 1, anon_sym_SQUOTE, - ACTIONS(4508), 1, + ACTIONS(4474), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4510), 1, + ACTIONS(4476), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4512), 1, + ACTIONS(4478), 1, anon_sym_LBRACE, - ACTIONS(4514), 1, + ACTIONS(4480), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4482), 1, anon_sym_LT, - ACTIONS(4518), 1, + ACTIONS(4484), 1, anon_sym_PIPE, - ACTIONS(4520), 1, + ACTIONS(4486), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2837), 10, + STATE(2619), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -422736,34 +422026,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [247682] = 13, + [246922] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4522), 1, + ACTIONS(4488), 1, anon_sym_LPAREN, - ACTIONS(4524), 1, + ACTIONS(4490), 1, anon_sym_DQUOTE, - ACTIONS(4526), 1, + ACTIONS(4492), 1, anon_sym_SQUOTE, - ACTIONS(4528), 1, + ACTIONS(4494), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4530), 1, + ACTIONS(4496), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4532), 1, + ACTIONS(4498), 1, anon_sym_LBRACE, - ACTIONS(4534), 1, + ACTIONS(4500), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, + ACTIONS(4502), 1, anon_sym_LT, - ACTIONS(4538), 1, + ACTIONS(4504), 1, anon_sym_PIPE, - ACTIONS(4540), 1, + ACTIONS(4506), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2838), 10, + STATE(2619), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -422774,34 +422064,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [247733] = 13, + [246973] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4542), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - ACTIONS(4544), 1, + ACTIONS(4510), 1, anon_sym_DQUOTE, - ACTIONS(4546), 1, + ACTIONS(4512), 1, anon_sym_SQUOTE, - ACTIONS(4548), 1, + ACTIONS(4514), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4550), 1, + ACTIONS(4516), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4552), 1, + ACTIONS(4518), 1, anon_sym_LBRACE, - ACTIONS(4554), 1, + ACTIONS(4520), 1, anon_sym_LBRACK, - ACTIONS(4556), 1, + ACTIONS(4522), 1, anon_sym_LT, - ACTIONS(4558), 1, + ACTIONS(4524), 1, anon_sym_PIPE, - ACTIONS(4560), 1, + ACTIONS(4526), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(4322), 10, + STATE(2678), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -422812,72 +422102,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [247784] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4562), 1, - anon_sym_LPAREN, - ACTIONS(4564), 1, - anon_sym_DQUOTE, - ACTIONS(4566), 1, - anon_sym_SQUOTE, - ACTIONS(4568), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4570), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4572), 1, - anon_sym_LBRACE, - ACTIONS(4574), 1, - anon_sym_LBRACK, - ACTIONS(4576), 1, - anon_sym_LT, - ACTIONS(4578), 1, - anon_sym_PIPE, - ACTIONS(4580), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - STATE(4323), 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, - [247835] = 13, + [247024] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4528), 1, anon_sym_LPAREN, - ACTIONS(4584), 1, + ACTIONS(4530), 1, anon_sym_DQUOTE, - ACTIONS(4586), 1, + ACTIONS(4532), 1, anon_sym_SQUOTE, - ACTIONS(4588), 1, + ACTIONS(4534), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4590), 1, + ACTIONS(4536), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4592), 1, + ACTIONS(4538), 1, anon_sym_LBRACE, - ACTIONS(4594), 1, + ACTIONS(4540), 1, anon_sym_LBRACK, - ACTIONS(4596), 1, + ACTIONS(4542), 1, anon_sym_LT, - ACTIONS(4598), 1, + ACTIONS(4544), 1, anon_sym_PIPE, - ACTIONS(4600), 1, + ACTIONS(4546), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2489), 10, + STATE(2678), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -422888,34 +422140,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [247886] = 13, + [247075] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4602), 1, + ACTIONS(4548), 1, anon_sym_LPAREN, - ACTIONS(4604), 1, + ACTIONS(4550), 1, anon_sym_DQUOTE, - ACTIONS(4606), 1, + ACTIONS(4552), 1, anon_sym_SQUOTE, - ACTIONS(4608), 1, + ACTIONS(4554), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4610), 1, + ACTIONS(4556), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4612), 1, + ACTIONS(4558), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4560), 1, anon_sym_LBRACK, - ACTIONS(4616), 1, + ACTIONS(4562), 1, anon_sym_LT, - ACTIONS(4618), 1, + ACTIONS(4564), 1, anon_sym_PIPE, - ACTIONS(4620), 1, + ACTIONS(4566), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3624), 10, + STATE(2208), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -422926,34 +422178,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [247937] = 13, + [247126] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4622), 1, + ACTIONS(4568), 1, anon_sym_LPAREN, - ACTIONS(4624), 1, + ACTIONS(4570), 1, anon_sym_DQUOTE, - ACTIONS(4626), 1, + ACTIONS(4572), 1, anon_sym_SQUOTE, - ACTIONS(4628), 1, + ACTIONS(4574), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4630), 1, + ACTIONS(4576), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4632), 1, + ACTIONS(4578), 1, anon_sym_LBRACE, - ACTIONS(4634), 1, + ACTIONS(4580), 1, anon_sym_LBRACK, - ACTIONS(4636), 1, + ACTIONS(4582), 1, anon_sym_LT, - ACTIONS(4638), 1, + ACTIONS(4584), 1, anon_sym_PIPE, - ACTIONS(4640), 1, + ACTIONS(4586), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3627), 10, + STATE(2208), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -422964,34 +422216,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [247988] = 13, + [247177] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4642), 1, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4644), 1, + ACTIONS(4590), 1, anon_sym_DQUOTE, - ACTIONS(4646), 1, + ACTIONS(4592), 1, anon_sym_SQUOTE, - ACTIONS(4648), 1, + ACTIONS(4594), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4650), 1, + ACTIONS(4596), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4652), 1, + ACTIONS(4598), 1, anon_sym_LBRACE, - ACTIONS(4654), 1, + ACTIONS(4600), 1, anon_sym_LBRACK, - ACTIONS(4656), 1, + ACTIONS(4602), 1, anon_sym_LT, - ACTIONS(4658), 1, + ACTIONS(4604), 1, anon_sym_PIPE, - ACTIONS(4660), 1, + ACTIONS(4606), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2633), 10, + STATE(1640), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -423002,34 +422254,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [248039] = 13, + [247228] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4662), 1, + ACTIONS(4608), 1, anon_sym_LPAREN, - ACTIONS(4664), 1, + ACTIONS(4610), 1, anon_sym_DQUOTE, - ACTIONS(4666), 1, + ACTIONS(4612), 1, anon_sym_SQUOTE, - ACTIONS(4668), 1, + ACTIONS(4614), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4616), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4672), 1, + ACTIONS(4618), 1, anon_sym_LBRACE, - ACTIONS(4674), 1, + ACTIONS(4620), 1, anon_sym_LBRACK, - ACTIONS(4676), 1, + ACTIONS(4622), 1, anon_sym_LT, - ACTIONS(4678), 1, + ACTIONS(4624), 1, anon_sym_PIPE, - ACTIONS(4680), 1, + ACTIONS(4626), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2634), 10, + STATE(1640), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -423040,34 +422292,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [248090] = 13, + [247279] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4682), 1, + ACTIONS(4628), 1, anon_sym_LPAREN, - ACTIONS(4684), 1, + ACTIONS(4630), 1, anon_sym_DQUOTE, - ACTIONS(4686), 1, + ACTIONS(4632), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4634), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4690), 1, + ACTIONS(4636), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4692), 1, + ACTIONS(4638), 1, anon_sym_LBRACE, - ACTIONS(4694), 1, + ACTIONS(4640), 1, anon_sym_LBRACK, - ACTIONS(4696), 1, + ACTIONS(4642), 1, anon_sym_LT, - ACTIONS(4698), 1, + ACTIONS(4644), 1, anon_sym_PIPE, - ACTIONS(4700), 1, + ACTIONS(4646), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3192), 10, + STATE(1686), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -423078,34 +422330,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [248141] = 13, + [247330] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4702), 1, + ACTIONS(4648), 1, anon_sym_LPAREN, - ACTIONS(4704), 1, + ACTIONS(4650), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4652), 1, anon_sym_SQUOTE, - ACTIONS(4708), 1, + ACTIONS(4654), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4710), 1, + ACTIONS(4656), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4658), 1, anon_sym_LBRACE, - ACTIONS(4714), 1, + ACTIONS(4660), 1, anon_sym_LBRACK, - ACTIONS(4716), 1, + ACTIONS(4662), 1, anon_sym_LT, - ACTIONS(4718), 1, + ACTIONS(4664), 1, anon_sym_PIPE, - ACTIONS(4720), 1, + ACTIONS(4666), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2574), 10, + STATE(1686), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -423116,34 +422368,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [248192] = 13, + [247381] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4722), 1, + ACTIONS(4668), 1, anon_sym_LPAREN, - ACTIONS(4724), 1, + ACTIONS(4670), 1, anon_sym_DQUOTE, - ACTIONS(4726), 1, + ACTIONS(4672), 1, anon_sym_SQUOTE, - ACTIONS(4728), 1, + ACTIONS(4674), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4730), 1, + ACTIONS(4676), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4732), 1, + ACTIONS(4678), 1, anon_sym_LBRACE, - ACTIONS(4734), 1, + ACTIONS(4680), 1, anon_sym_LBRACK, - ACTIONS(4736), 1, + ACTIONS(4682), 1, anon_sym_LT, - ACTIONS(4738), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(4740), 1, + ACTIONS(4686), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2043), 10, + STATE(2368), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -423154,72 +422406,72 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [248243] = 13, + [247432] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4742), 1, + ACTIONS(4688), 1, anon_sym_LPAREN, - ACTIONS(4744), 1, + ACTIONS(4690), 1, anon_sym_DQUOTE, - ACTIONS(4746), 1, + ACTIONS(4692), 1, anon_sym_SQUOTE, - ACTIONS(4748), 1, + ACTIONS(4694), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4750), 1, + ACTIONS(4696), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4752), 1, + ACTIONS(4698), 1, anon_sym_LBRACE, - ACTIONS(4754), 1, + ACTIONS(4700), 1, anon_sym_LBRACK, - ACTIONS(4756), 1, + ACTIONS(4702), 1, anon_sym_LT, - ACTIONS(4758), 1, + ACTIONS(4704), 1, anon_sym_PIPE, - ACTIONS(4760), 1, + ACTIONS(4706), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2481), 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, - [248294] = 13, + STATE(4249), 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, + [247483] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4762), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4764), 1, + ACTIONS(4710), 1, anon_sym_DQUOTE, - ACTIONS(4766), 1, + ACTIONS(4712), 1, anon_sym_SQUOTE, - ACTIONS(4768), 1, + ACTIONS(4714), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4770), 1, + ACTIONS(4716), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4772), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4774), 1, + ACTIONS(4720), 1, anon_sym_LBRACK, - ACTIONS(4776), 1, + ACTIONS(4722), 1, anon_sym_LT, - ACTIONS(4778), 1, + ACTIONS(4724), 1, anon_sym_PIPE, - ACTIONS(4780), 1, + ACTIONS(4726), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2692), 10, + STATE(2823), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -423230,34 +422482,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [248345] = 13, + [247534] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4782), 1, + ACTIONS(4728), 1, anon_sym_LPAREN, - ACTIONS(4784), 1, + ACTIONS(4730), 1, anon_sym_DQUOTE, - ACTIONS(4786), 1, + ACTIONS(4732), 1, anon_sym_SQUOTE, - ACTIONS(4788), 1, + ACTIONS(4734), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4736), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4792), 1, + ACTIONS(4738), 1, anon_sym_LBRACE, - ACTIONS(4794), 1, + ACTIONS(4740), 1, anon_sym_LBRACK, - ACTIONS(4796), 1, + ACTIONS(4742), 1, anon_sym_LT, - ACTIONS(4798), 1, + ACTIONS(4744), 1, anon_sym_PIPE, - ACTIONS(4800), 1, + ACTIONS(4746), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3362), 10, + STATE(3918), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -423268,34 +422520,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [248396] = 13, + [247585] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4802), 1, + ACTIONS(4748), 1, anon_sym_LPAREN, - ACTIONS(4804), 1, + ACTIONS(4750), 1, anon_sym_DQUOTE, - ACTIONS(4806), 1, + ACTIONS(4752), 1, anon_sym_SQUOTE, - ACTIONS(4808), 1, + ACTIONS(4754), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4810), 1, + ACTIONS(4756), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4812), 1, + ACTIONS(4758), 1, anon_sym_LBRACE, - ACTIONS(4814), 1, + ACTIONS(4760), 1, anon_sym_LBRACK, - ACTIONS(4816), 1, + ACTIONS(4762), 1, anon_sym_LT, - ACTIONS(4818), 1, + ACTIONS(4764), 1, anon_sym_PIPE, - ACTIONS(4820), 1, + ACTIONS(4766), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2206), 10, + STATE(2989), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -423306,34 +422558,72 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [248447] = 13, + [247636] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(4768), 1, anon_sym_LPAREN, - ACTIONS(4824), 1, + ACTIONS(4770), 1, anon_sym_DQUOTE, - ACTIONS(4826), 1, + ACTIONS(4772), 1, anon_sym_SQUOTE, - ACTIONS(4828), 1, + ACTIONS(4774), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4830), 1, + ACTIONS(4776), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4832), 1, + ACTIONS(4778), 1, anon_sym_LBRACE, - ACTIONS(4834), 1, + ACTIONS(4780), 1, anon_sym_LBRACK, - ACTIONS(4836), 1, + ACTIONS(4782), 1, anon_sym_LT, - ACTIONS(4838), 1, + ACTIONS(4784), 1, anon_sym_PIPE, - ACTIONS(4840), 1, + ACTIONS(4786), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + STATE(2952), 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, + [247687] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4788), 1, + anon_sym_LPAREN, + ACTIONS(4790), 1, + anon_sym_DQUOTE, + ACTIONS(4792), 1, + anon_sym_SQUOTE, + ACTIONS(4794), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4796), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4798), 1, + anon_sym_LBRACE, + ACTIONS(4800), 1, + anon_sym_LBRACK, + ACTIONS(4802), 1, + anon_sym_LT, + ACTIONS(4804), 1, + anon_sym_PIPE, + ACTIONS(4806), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3781), 10, + STATE(3857), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -423344,34 +422634,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [248498] = 13, + [247738] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4842), 1, + ACTIONS(4808), 1, anon_sym_LPAREN, - ACTIONS(4844), 1, + ACTIONS(4810), 1, anon_sym_DQUOTE, - ACTIONS(4846), 1, + ACTIONS(4812), 1, anon_sym_SQUOTE, - ACTIONS(4848), 1, + ACTIONS(4814), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4850), 1, + ACTIONS(4816), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4818), 1, anon_sym_LBRACE, - ACTIONS(4854), 1, + ACTIONS(4820), 1, anon_sym_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4822), 1, anon_sym_LT, - ACTIONS(4858), 1, + ACTIONS(4824), 1, anon_sym_PIPE, - ACTIONS(4860), 1, + ACTIONS(4826), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3782), 10, + STATE(3857), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -423382,34 +422672,72 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [248549] = 13, + [247789] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4862), 1, + ACTIONS(4828), 1, anon_sym_LPAREN, - ACTIONS(4864), 1, + ACTIONS(4830), 1, anon_sym_DQUOTE, - ACTIONS(4866), 1, + ACTIONS(4832), 1, anon_sym_SQUOTE, - ACTIONS(4868), 1, + ACTIONS(4834), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4870), 1, + ACTIONS(4836), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4872), 1, + ACTIONS(4838), 1, anon_sym_LBRACE, - ACTIONS(4874), 1, + ACTIONS(4840), 1, anon_sym_LBRACK, - ACTIONS(4876), 1, + ACTIONS(4842), 1, anon_sym_LT, - ACTIONS(4878), 1, + ACTIONS(4844), 1, anon_sym_PIPE, - ACTIONS(4880), 1, + ACTIONS(4846), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + STATE(2201), 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, + [247840] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4848), 1, + anon_sym_LPAREN, + ACTIONS(4850), 1, + anon_sym_DQUOTE, + ACTIONS(4852), 1, + anon_sym_SQUOTE, + ACTIONS(4854), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4856), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4858), 1, + anon_sym_LBRACE, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_LT, + ACTIONS(4864), 1, + anon_sym_PIPE, + ACTIONS(4866), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2207), 10, + STATE(2201), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -423420,72 +422748,72 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [248600] = 13, + [247891] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4882), 1, + ACTIONS(4868), 1, anon_sym_LPAREN, - ACTIONS(4884), 1, + ACTIONS(4870), 1, anon_sym_DQUOTE, - ACTIONS(4886), 1, + ACTIONS(4872), 1, anon_sym_SQUOTE, - ACTIONS(4888), 1, + ACTIONS(4874), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4890), 1, + ACTIONS(4876), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4894), 1, + ACTIONS(4880), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4882), 1, anon_sym_LT, - ACTIONS(4898), 1, + ACTIONS(4884), 1, anon_sym_PIPE, - ACTIONS(4900), 1, + ACTIONS(4886), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3842), 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, - [248651] = 13, + STATE(2989), 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, + [247942] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4902), 1, + ACTIONS(4888), 1, anon_sym_LPAREN, - ACTIONS(4904), 1, + ACTIONS(4890), 1, anon_sym_DQUOTE, - ACTIONS(4906), 1, + ACTIONS(4892), 1, anon_sym_SQUOTE, - ACTIONS(4908), 1, + ACTIONS(4894), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4910), 1, + ACTIONS(4896), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4912), 1, + ACTIONS(4898), 1, anon_sym_LBRACE, - ACTIONS(4914), 1, + ACTIONS(4900), 1, anon_sym_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4902), 1, anon_sym_LT, - ACTIONS(4918), 1, + ACTIONS(4904), 1, anon_sym_PIPE, - ACTIONS(4920), 1, + ACTIONS(4906), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3620), 10, + STATE(4167), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -423496,34 +422824,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [248702] = 13, + [247993] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(4908), 1, anon_sym_LPAREN, - ACTIONS(4924), 1, + ACTIONS(4910), 1, anon_sym_DQUOTE, - ACTIONS(4926), 1, + ACTIONS(4912), 1, anon_sym_SQUOTE, - ACTIONS(4928), 1, + ACTIONS(4914), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4930), 1, + ACTIONS(4916), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4918), 1, anon_sym_LBRACE, - ACTIONS(4934), 1, + ACTIONS(4920), 1, anon_sym_LBRACK, - ACTIONS(4936), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4938), 1, + ACTIONS(4924), 1, anon_sym_PIPE, - ACTIONS(4940), 1, + ACTIONS(4926), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3621), 10, + STATE(4167), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -423534,34 +422862,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [248753] = 13, + [248044] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4942), 1, + ACTIONS(4928), 1, anon_sym_LPAREN, - ACTIONS(4944), 1, + ACTIONS(4930), 1, anon_sym_DQUOTE, - ACTIONS(4946), 1, + ACTIONS(4932), 1, anon_sym_SQUOTE, - ACTIONS(4948), 1, + ACTIONS(4934), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4950), 1, + ACTIONS(4936), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4952), 1, + ACTIONS(4938), 1, anon_sym_LBRACE, - ACTIONS(4954), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(4956), 1, + ACTIONS(4942), 1, anon_sym_LT, - ACTIONS(4958), 1, + ACTIONS(4944), 1, anon_sym_PIPE, - ACTIONS(4960), 1, + ACTIONS(4946), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(1510), 10, + STATE(2968), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -423572,34 +422900,72 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [248804] = 13, + [248095] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(4948), 1, anon_sym_LPAREN, - ACTIONS(4964), 1, + ACTIONS(4950), 1, anon_sym_DQUOTE, - ACTIONS(4966), 1, + ACTIONS(4952), 1, anon_sym_SQUOTE, - ACTIONS(4968), 1, + ACTIONS(4954), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4970), 1, + ACTIONS(4956), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4972), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(4974), 1, + ACTIONS(4960), 1, anon_sym_LBRACK, - ACTIONS(4976), 1, + ACTIONS(4962), 1, anon_sym_LT, - ACTIONS(4978), 1, + ACTIONS(4964), 1, anon_sym_PIPE, + ACTIONS(4966), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + STATE(2968), 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, + [248146] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4968), 1, + anon_sym_LPAREN, + ACTIONS(4970), 1, + anon_sym_DQUOTE, + ACTIONS(4972), 1, + anon_sym_SQUOTE, + ACTIONS(4974), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4976), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4978), 1, + anon_sym_LBRACE, ACTIONS(4980), 1, + anon_sym_LBRACK, + ACTIONS(4982), 1, + anon_sym_LT, + ACTIONS(4984), 1, + anon_sym_PIPE, + ACTIONS(4986), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3497), 10, + STATE(3593), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -423610,34 +422976,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [248855] = 13, + [248197] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4982), 1, + ACTIONS(4988), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, + ACTIONS(4990), 1, anon_sym_DQUOTE, - ACTIONS(4986), 1, + ACTIONS(4992), 1, anon_sym_SQUOTE, - ACTIONS(4988), 1, + ACTIONS(4994), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(4990), 1, + ACTIONS(4996), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(4992), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(4994), 1, + ACTIONS(5000), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5002), 1, anon_sym_LT, - ACTIONS(4998), 1, + ACTIONS(5004), 1, anon_sym_PIPE, - ACTIONS(5000), 1, + ACTIONS(5006), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3498), 10, + STATE(3593), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -423648,34 +423014,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [248906] = 13, + [248248] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5008), 1, anon_sym_LPAREN, - ACTIONS(5004), 1, + ACTIONS(5010), 1, anon_sym_DQUOTE, - ACTIONS(5006), 1, + ACTIONS(5012), 1, anon_sym_SQUOTE, - ACTIONS(5008), 1, + ACTIONS(5014), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5010), 1, + ACTIONS(5016), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5012), 1, + ACTIONS(5018), 1, anon_sym_LBRACE, - ACTIONS(5014), 1, + ACTIONS(5020), 1, anon_sym_LBRACK, - ACTIONS(5016), 1, + ACTIONS(5022), 1, anon_sym_LT, - ACTIONS(5018), 1, + ACTIONS(5024), 1, anon_sym_PIPE, - ACTIONS(5020), 1, + ACTIONS(5026), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3361), 10, + STATE(2562), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -423686,72 +423052,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [248957] = 13, + [248299] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(5022), 1, - anon_sym_LPAREN, - ACTIONS(5024), 1, - anon_sym_DQUOTE, - ACTIONS(5026), 1, - anon_sym_SQUOTE, ACTIONS(5028), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5030), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5032), 1, - anon_sym_LBRACE, - ACTIONS(5034), 1, - anon_sym_LBRACK, - ACTIONS(5036), 1, - anon_sym_LT, - ACTIONS(5038), 1, - anon_sym_PIPE, - ACTIONS(5040), 1, - anon_sym_SLASH, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - STATE(1511), 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, - [249008] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5044), 1, + ACTIONS(5030), 1, anon_sym_DQUOTE, - ACTIONS(5046), 1, + ACTIONS(5032), 1, anon_sym_SQUOTE, - ACTIONS(5048), 1, + ACTIONS(5034), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5050), 1, + ACTIONS(5036), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5052), 1, + ACTIONS(5038), 1, anon_sym_LBRACE, - ACTIONS(5054), 1, + ACTIONS(5040), 1, anon_sym_LBRACK, - ACTIONS(5056), 1, + ACTIONS(5042), 1, anon_sym_LT, - ACTIONS(5058), 1, + ACTIONS(5044), 1, anon_sym_PIPE, - ACTIONS(5060), 1, + ACTIONS(5046), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(3846), 10, + STATE(2562), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -423762,34 +423090,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [249059] = 13, + [248350] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(5062), 1, + ACTIONS(5048), 1, anon_sym_LPAREN, - ACTIONS(5064), 1, + ACTIONS(5050), 1, anon_sym_DQUOTE, - ACTIONS(5066), 1, + ACTIONS(5052), 1, anon_sym_SQUOTE, - ACTIONS(5068), 1, + ACTIONS(5054), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5070), 1, + ACTIONS(5056), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5072), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - ACTIONS(5074), 1, + ACTIONS(5060), 1, anon_sym_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5062), 1, anon_sym_LT, - ACTIONS(5078), 1, + ACTIONS(5064), 1, anon_sym_PIPE, - ACTIONS(5080), 1, + ACTIONS(5066), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(1728), 10, + STATE(3785), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -423800,34 +423128,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [249110] = 13, + [248401] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(5082), 1, + ACTIONS(5068), 1, anon_sym_LPAREN, - ACTIONS(5084), 1, + ACTIONS(5070), 1, anon_sym_DQUOTE, - ACTIONS(5086), 1, + ACTIONS(5072), 1, anon_sym_SQUOTE, - ACTIONS(5088), 1, + ACTIONS(5074), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5090), 1, + ACTIONS(5076), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5092), 1, + ACTIONS(5078), 1, anon_sym_LBRACE, - ACTIONS(5094), 1, + ACTIONS(5080), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(5082), 1, anon_sym_LT, - ACTIONS(5098), 1, + ACTIONS(5084), 1, anon_sym_PIPE, - ACTIONS(5100), 1, + ACTIONS(5086), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(1756), 10, + STATE(3785), 10, sym_quoted_double, sym_quoted_single, sym_quoted_heredoc_single, @@ -423838,34 +423166,34 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_angle, sym_quoted_bar, sym_quoted_slash, - [249161] = 13, + [248452] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5088), 1, anon_sym_LPAREN, - ACTIONS(5104), 1, + ACTIONS(5090), 1, anon_sym_DQUOTE, - ACTIONS(5106), 1, + ACTIONS(5092), 1, anon_sym_SQUOTE, - ACTIONS(5108), 1, + ACTIONS(5094), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5096), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5112), 1, + ACTIONS(5098), 1, anon_sym_LBRACE, - ACTIONS(5114), 1, + ACTIONS(5100), 1, anon_sym_LBRACK, - ACTIONS(5116), 1, + ACTIONS(5102), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5104), 1, anon_sym_PIPE, - ACTIONS(5120), 1, + ACTIONS(5106), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2967), 10, + STATE(4249), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -423876,72 +423204,72 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [249212] = 13, + [248503] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(5122), 1, + ACTIONS(5108), 1, anon_sym_LPAREN, - ACTIONS(5124), 1, + ACTIONS(5110), 1, anon_sym_DQUOTE, - ACTIONS(5126), 1, + ACTIONS(5112), 1, anon_sym_SQUOTE, - ACTIONS(5128), 1, + ACTIONS(5114), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5130), 1, + ACTIONS(5116), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5132), 1, + ACTIONS(5118), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5120), 1, anon_sym_LBRACK, - ACTIONS(5136), 1, + ACTIONS(5122), 1, anon_sym_LT, - ACTIONS(5138), 1, + ACTIONS(5124), 1, anon_sym_PIPE, - ACTIONS(5140), 1, + ACTIONS(5126), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2968), 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, - [249263] = 13, + STATE(2823), 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, + [248554] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(5142), 1, + ACTIONS(5128), 1, anon_sym_LPAREN, - ACTIONS(5144), 1, + ACTIONS(5130), 1, anon_sym_DQUOTE, - ACTIONS(5146), 1, + ACTIONS(5132), 1, anon_sym_SQUOTE, - ACTIONS(5148), 1, + ACTIONS(5134), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5150), 1, + ACTIONS(5136), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5152), 1, + ACTIONS(5138), 1, anon_sym_LBRACE, - ACTIONS(5154), 1, + ACTIONS(5140), 1, anon_sym_LBRACK, - ACTIONS(5156), 1, + ACTIONS(5142), 1, anon_sym_LT, - ACTIONS(5158), 1, + ACTIONS(5144), 1, anon_sym_PIPE, - ACTIONS(5160), 1, + ACTIONS(5146), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(2691), 10, + STATE(2952), 10, sym_quoted_i_double, sym_quoted_i_single, sym_quoted_i_heredoc_single, @@ -423952,1886 +423280,1956 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_i_angle, sym_quoted_i_bar, sym_quoted_i_slash, - [249314] = 13, + [248605] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5164), 1, + ACTIONS(5150), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - STATE(662), 1, + ACTIONS(5158), 1, + sym_semgrep_ellipsis_metavariable, + STATE(832), 1, sym_keyword, - STATE(5136), 1, + STATE(5110), 1, sym_semgrep_ellipsis, - STATE(5137), 1, + STATE(5113), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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(5162), 3, + ACTIONS(5148), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, - [249360] = 13, + [248654] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5164), 1, + ACTIONS(5150), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - STATE(662), 1, + ACTIONS(5158), 1, + sym_semgrep_ellipsis_metavariable, + STATE(832), 1, sym_keyword, - STATE(5136), 1, + STATE(5110), 1, sym_semgrep_ellipsis, - STATE(5137), 1, + STATE(5113), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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(5172), 3, + ACTIONS(5160), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, - [249406] = 13, + [248703] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1014), 1, + ACTIONS(1044), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5025), 5, + STATE(5020), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [249451] = 13, + [248748] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(301), 1, + anon_sym_end, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1002), 1, - anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(4883), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5027), 5, + STATE(5007), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [249496] = 13, + [248793] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(319), 1, + ACTIONS(974), 1, anon_sym_end, - ACTIONS(770), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(155), 1, + STATE(163), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(4892), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5068), 5, + STATE(5047), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [249541] = 13, + [248838] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(972), 1, + ACTIONS(974), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4923), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5026), 5, + STATE(5047), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [249586] = 13, + [248883] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(297), 1, + ACTIONS(311), 1, anon_sym_end, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4912), 1, + STATE(4877), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5040), 5, + STATE(5032), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [249631] = 13, + [248928] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(980), 1, + anon_sym_end, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - ACTIONS(982), 1, - anon_sym_end, - STATE(155), 1, + STATE(164), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5050), 5, + STATE(4989), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [249676] = 13, + [248973] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1014), 1, + ACTIONS(960), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4922), 1, + STATE(4882), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5025), 5, + STATE(4985), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [249721] = 13, + [249018] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(305), 1, + ACTIONS(315), 1, anon_sym_end, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4904), 1, + STATE(4894), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5011), 5, + STATE(4994), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [249766] = 13, + [249063] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(309), 1, + ACTIONS(960), 1, anon_sym_end, - ACTIONS(770), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(155), 1, + STATE(183), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(4910), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5055), 5, + STATE(4985), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [249811] = 13, + [249108] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(990), 1, + ACTIONS(960), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5017), 5, + STATE(4985), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [249856] = 13, + [249153] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1032), 1, + ACTIONS(1046), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4906), 1, + STATE(4887), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5024), 5, + STATE(5009), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [249901] = 13, + [249198] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1032), 1, + ACTIONS(1046), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(198), 1, + STATE(197), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5024), 5, + STATE(5009), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [249946] = 13, + [249243] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(313), 1, + anon_sym_end, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1032), 1, - anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(4906), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5024), 5, + STATE(5012), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [249991] = 13, + [249288] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1034), 1, + ACTIONS(1020), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(177), 1, + STATE(184), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5029), 5, + STATE(4986), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250036] = 13, + [249333] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1034), 1, + ACTIONS(1020), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5029), 5, + STATE(4986), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250081] = 13, + [249378] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1020), 1, + ACTIONS(1046), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4917), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5013), 5, + STATE(5009), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250126] = 13, + [249423] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(994), 1, + ACTIONS(1016), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4915), 1, + STATE(4919), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5005), 5, + STATE(5010), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250171] = 13, + [249468] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(994), 1, + ACTIONS(1016), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(159), 1, + STATE(182), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5005), 5, + STATE(5010), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250216] = 13, + [249513] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, + ACTIONS(115), 1, + anon_sym_catch, ACTIONS(117), 1, + anon_sym_else, + ACTIONS(123), 1, + anon_sym_rescue, + ACTIONS(1048), 1, + anon_sym_end, + ACTIONS(1198), 1, + aux_sym_terminator_token1, + ACTIONS(2112), 1, + anon_sym_SEMI, + STATE(198), 1, + sym_terminator, + STATE(1359), 1, + aux_sym_terminator_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + STATE(5011), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [249558] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_after, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(994), 1, + ACTIONS(1048), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5005), 5, + STATE(5011), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250261] = 13, + [249603] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1020), 1, + ACTIONS(1044), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(162), 1, + STATE(174), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5013), 5, + STATE(5020), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250306] = 13, + [249648] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1020), 1, + ACTIONS(980), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5013), 5, + STATE(4989), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250351] = 13, + [249693] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1014), 1, + ACTIONS(1030), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, STATE(189), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5025), 5, + STATE(4992), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250396] = 13, + [249738] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(956), 1, - anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(160), 1, + ACTIONS(1004), 1, + anon_sym_end, + STATE(155), 1, sym_terminator, - STATE(1373), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(4896), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5009), 5, + STATE(4999), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250441] = 13, + [249783] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(956), 1, + ACTIONS(1034), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(4951), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5009), 5, + STATE(5046), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250486] = 13, + [249828] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(962), 1, + ACTIONS(1004), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(166), 1, + STATE(176), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5015), 5, + STATE(4999), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250531] = 13, + [249873] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(962), 1, + ACTIONS(1004), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5015), 5, + STATE(4999), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250576] = 13, + [249918] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(1006), 1, + anon_sym_end, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - ACTIONS(1022), 1, - anon_sym_end, - STATE(155), 1, + STATE(185), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(4946), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5019), 5, + STATE(5001), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250621] = 13, + [249963] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(988), 1, + ACTIONS(1006), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5042), 5, + STATE(5001), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250666] = 13, + [250008] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1016), 1, + ACTIONS(1034), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(190), 1, + STATE(173), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5034), 5, + STATE(5046), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250711] = 13, + [250053] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1000), 1, + ACTIONS(1030), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5023), 5, + STATE(4992), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250756] = 13, + [250098] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(305), 1, + anon_sym_end, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1016), 1, - anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(4868), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5034), 5, + STATE(5015), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250801] = 13, + [250143] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(299), 1, + anon_sym_end, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(986), 1, - anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(4903), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5036), 5, + STATE(5027), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250846] = 13, + [250188] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(972), 1, + ACTIONS(986), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(4905), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5026), 5, + STATE(5043), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250891] = 13, + [250233] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(313), 1, + ACTIONS(986), 1, anon_sym_end, - ACTIONS(770), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(155), 1, + STATE(186), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(4931), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5057), 5, + STATE(5043), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250936] = 13, + [250278] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(299), 1, - anon_sym_end, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, + ACTIONS(986), 1, + anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4935), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5065), 5, + STATE(5043), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [250981] = 13, + [250323] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(321), 1, + ACTIONS(1026), 1, anon_sym_end, - ACTIONS(770), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(155), 1, + STATE(159), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(4919), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5073), 5, + STATE(5045), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251026] = 13, + [250368] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(974), 1, + ACTIONS(1026), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4934), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5070), 5, + STATE(5045), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251071] = 13, + [250413] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1026), 1, + ACTIONS(1016), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4942), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5014), 5, + STATE(5010), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251116] = 13, + [250458] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, - anon_sym_after, - ACTIONS(117), 1, - anon_sym_catch, - ACTIONS(119), 1, - anon_sym_else, - ACTIONS(125), 1, - anon_sym_rescue, - ACTIONS(974), 1, - anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(97), 1, + sym_keyword_, + ACTIONS(5148), 1, + anon_sym_GT_GT, + ACTIONS(5150), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5152), 1, + anon_sym_DQUOTE, + ACTIONS(5154), 1, + anon_sym_SQUOTE, + ACTIONS(5156), 1, + sym_semgrep_metavariable, + ACTIONS(5158), 1, + sym_semgrep_ellipsis_metavariable, + STATE(884), 1, + sym_keyword, + STATE(5110), 1, + sym_semgrep_ellipsis, + STATE(5113), 1, + sym_pair, + STATE(1397), 2, + sym_quoted_keyword, + sym_metavariable_keyword, + STATE(7469), 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(2096), 1, - anon_sym_SEMI, - STATE(169), 1, - sym_terminator, - STATE(1373), 1, - aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, + [250505] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(97), 1, + sym_keyword_, + ACTIONS(5150), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5152), 1, + anon_sym_DQUOTE, + ACTIONS(5154), 1, + anon_sym_SQUOTE, + ACTIONS(5156), 1, + sym_semgrep_metavariable, + ACTIONS(5158), 1, + sym_semgrep_ellipsis_metavariable, + ACTIONS(5160), 1, + anon_sym_GT_GT, + STATE(884), 1, + sym_keyword, + STATE(5110), 1, + sym_semgrep_ellipsis, + STATE(5113), 1, + sym_pair, + STATE(1397), 2, + sym_quoted_keyword, + sym_metavariable_keyword, + STATE(7469), 2, + sym_quoted_i_double, + sym_quoted_i_single, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5070), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [251161] = 13, + aux_sym_terminator_token1, + [250552] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(974), 1, + ACTIONS(1038), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5070), 5, + STATE(4983), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251206] = 13, + [250597] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1026), 1, - anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(195), 1, + ACTIONS(976), 1, + anon_sym_end, + STATE(155), 1, sym_terminator, - STATE(1373), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(4938), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5014), 5, + STATE(5031), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251251] = 13, + [250642] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(315), 1, + ACTIONS(1002), 1, anon_sym_end, - ACTIONS(770), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(155), 1, + STATE(162), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(4950), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5021), 5, + STATE(5044), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251296] = 13, + [250687] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(319), 1, + anon_sym_end, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(976), 1, - anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(4915), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5004), 5, + STATE(4996), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251341] = 13, + [250732] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1026), 1, + ACTIONS(988), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(4917), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5014), 5, + STATE(5000), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251386] = 13, + [250777] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(972), 1, + ACTIONS(988), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(174), 1, + STATE(168), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5026), 5, + STATE(5000), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251431] = 13, + [250822] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1028), 1, - anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(196), 1, + ACTIONS(988), 1, + anon_sym_end, + STATE(155), 1, sym_terminator, - STATE(1373), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(5056), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5020), 5, + STATE(5000), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251476] = 13, + [250867] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(982), 1, + ACTIONS(990), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(173), 1, + STATE(169), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5050), 5, + STATE(5003), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251521] = 13, + [250912] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(301), 1, - anon_sym_end, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, + ACTIONS(990), 1, + anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4924), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5008), 5, + STATE(5003), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251566] = 13, + [250957] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1002), 1, + ACTIONS(1018), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(183), 1, + STATE(191), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5027), 5, + STATE(5014), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251611] = 13, + [251002] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1024), 1, - anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(161), 1, + ACTIONS(1018), 1, + anon_sym_end, + STATE(155), 1, sym_terminator, - STATE(1373), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(5056), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5039), 5, + STATE(5014), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251656] = 13, + [251047] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1028), 1, + ACTIONS(1034), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5020), 5, + STATE(5046), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251701] = 13, + [251092] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1022), 1, + ACTIONS(323), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(193), 1, + STATE(155), 1, sym_terminator, - STATE(1373), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(4940), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5019), 5, + STATE(5036), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251746] = 13, + [251137] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(990), 1, - anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(158), 1, + ACTIONS(1040), 1, + anon_sym_end, + STATE(155), 1, sym_terminator, - STATE(1373), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(5056), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5017), 5, + STATE(4997), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251791] = 13, + [251182] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(976), 1, + anon_sym_end, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - ACTIONS(1000), 1, - anon_sym_end, - STATE(155), 1, + STATE(178), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(4893), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5023), 5, + STATE(5031), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251836] = 13, + [251227] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1024), 1, + ACTIONS(1002), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5039), 5, + STATE(5044), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251881] = 13, + [251272] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(307), 1, - anon_sym_end, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, + ACTIONS(976), 1, + anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4953), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5033), 5, + STATE(5031), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251926] = 13, + [251317] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(309), 1, + anon_sym_end, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(988), 1, - anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4901), 1, + STATE(4909), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -425842,2380 +425240,2368 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [251971] = 13, + [251362] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(321), 1, + anon_sym_end, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(964), 1, - anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4958), 1, + STATE(4930), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5044), 5, + STATE(5025), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252016] = 13, + [251407] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1022), 1, + ACTIONS(1008), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(4932), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5019), 5, + STATE(5029), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252061] = 13, + [251452] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(311), 1, + ACTIONS(1008), 1, anon_sym_end, - ACTIONS(770), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(155), 1, + STATE(199), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(4921), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5038), 5, + STATE(5029), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252106] = 13, + [251497] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(964), 1, - anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(164), 1, + ACTIONS(1008), 1, + anon_sym_end, + STATE(155), 1, sym_terminator, - STATE(1373), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(5056), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5044), 5, + STATE(5029), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252151] = 13, + [251542] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(1052), 1, + anon_sym_end, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - ACTIONS(964), 1, - anon_sym_end, - STATE(155), 1, + STATE(179), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5044), 5, + STATE(5034), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252196] = 13, + [251587] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(317), 1, - anon_sym_end, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, + ACTIONS(1052), 1, + anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4960), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5045), 5, + STATE(5034), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252241] = 13, + [251632] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(988), 1, + ACTIONS(307), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(176), 1, + STATE(155), 1, sym_terminator, - STATE(1373), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(4925), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5042), 5, + STATE(4980), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252286] = 13, + [251677] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1036), 1, + ACTIONS(994), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4970), 1, + STATE(4943), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5060), 5, + STATE(5038), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252331] = 13, + [251722] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(966), 1, + ACTIONS(1010), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, STATE(165), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5046), 5, + STATE(5039), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252376] = 13, + [251767] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(966), 1, + ACTIONS(1038), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(4922), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5046), 5, + STATE(4983), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252421] = 13, + [251812] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, - anon_sym_catch, - ACTIONS(119), 1, - anon_sym_else, - ACTIONS(125), 1, - anon_sym_rescue, - ACTIONS(1036), 1, - anon_sym_end, - ACTIONS(1172), 1, - aux_sym_terminator_token1, - ACTIONS(2096), 1, - anon_sym_SEMI, - STATE(179), 1, - sym_terminator, - STATE(1373), 1, - aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - STATE(5060), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [252466] = 13, - ACTIONS(5), 1, - sym_comment, ACTIONS(115), 1, - anon_sym_after, - ACTIONS(117), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1036), 1, + ACTIONS(1044), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(4924), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5060), 5, + STATE(5020), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252511] = 13, + [251857] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(980), 1, + ACTIONS(1010), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5030), 5, + STATE(5039), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252556] = 13, + [251902] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1000), 1, + ACTIONS(994), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(182), 1, + STATE(171), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5023), 5, + STATE(5038), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252601] = 13, + [251947] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, - anon_sym_rescue, - ACTIONS(295), 1, - anon_sym_end, - ACTIONS(770), 1, + ACTIONS(123), 1, + anon_sym_rescue, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, + ACTIONS(994), 1, + anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4966), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5056), 5, + STATE(5038), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252646] = 13, + [251992] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(317), 1, + anon_sym_end, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1006), 1, - anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4972), 1, + STATE(4871), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5063), 5, + STATE(5037), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252691] = 13, + [252037] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1006), 1, + ACTIONS(996), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(185), 1, + STATE(172), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5063), 5, + STATE(5040), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252736] = 13, + [252082] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1006), 1, + ACTIONS(996), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5063), 5, + STATE(5040), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252781] = 13, + [252127] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(986), 1, + ACTIONS(325), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(187), 1, + STATE(155), 1, sym_terminator, - STATE(1373), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(4949), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5036), 5, + STATE(4984), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252826] = 13, + [252172] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1008), 1, + ACTIONS(303), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(186), 1, + STATE(155), 1, sym_terminator, - STATE(1373), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(4920), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5007), 5, + STATE(4998), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252871] = 13, + [252217] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(996), 1, - anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(180), 1, + ACTIONS(974), 1, + anon_sym_end, + STATE(155), 1, sym_terminator, - STATE(1373), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(4889), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5062), 5, + STATE(5047), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252916] = 13, + [252262] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(996), 1, + ACTIONS(1028), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(4898), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5062), 5, + STATE(4990), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [252961] = 13, + [252307] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(303), 1, + ACTIONS(1028), 1, anon_sym_end, - ACTIONS(770), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(155), 1, + STATE(188), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(4961), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5069), 5, + STATE(4990), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [253006] = 13, + [252352] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1008), 1, + ACTIONS(1028), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5007), 5, + STATE(4990), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [253051] = 13, + [252397] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, + ACTIONS(115), 1, + anon_sym_catch, ACTIONS(117), 1, + anon_sym_else, + ACTIONS(123), 1, + anon_sym_rescue, + ACTIONS(1000), 1, + anon_sym_end, + ACTIONS(1198), 1, + aux_sym_terminator_token1, + ACTIONS(2112), 1, + anon_sym_SEMI, + STATE(180), 1, + sym_terminator, + STATE(1359), 1, + aux_sym_terminator_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + STATE(5028), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [252442] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_after, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(980), 1, + ACTIONS(1000), 1, anon_sym_end, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(4897), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5030), 5, + STATE(5028), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [253096] = 13, + [252487] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(980), 1, + ACTIONS(1038), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(172), 1, + STATE(193), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5030), 5, + STATE(4983), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [253141] = 13, + [252532] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(976), 1, + ACTIONS(1040), 1, anon_sym_end, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(170), 1, + STATE(194), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - STATE(5004), 5, + STATE(4997), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [253186] = 13, + [252577] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5164), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5172), 1, - anon_sym_GT_GT, - STATE(749), 1, + ACTIONS(5162), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5164), 1, + sym_semgrep_ellipsis_metavariable, + STATE(1001), 1, sym_keyword, - STATE(5136), 1, + STATE(1977), 1, sym_semgrep_ellipsis, - STATE(5137), 1, + STATE(2003), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253230] = 13, + [252621] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5162), 1, - anon_sym_GT_GT, - ACTIONS(5164), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - STATE(749), 1, + ACTIONS(5166), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5168), 1, + sym_semgrep_ellipsis_metavariable, + STATE(1012), 1, sym_keyword, - STATE(5136), 1, - sym_semgrep_ellipsis, - STATE(5137), 1, + STATE(2311), 1, sym_pair, - STATE(1412), 2, + STATE(2466), 1, + sym_semgrep_ellipsis, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253274] = 12, + [252665] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5164), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - STATE(655), 1, + ACTIONS(5170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5172), 1, + sym_semgrep_ellipsis_metavariable, + STATE(1044), 1, sym_keyword, - STATE(5136), 1, + STATE(1682), 1, sym_semgrep_ellipsis, - STATE(5137), 1, + STATE(1743), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253315] = 12, + [252709] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, ACTIONS(5174), 1, anon_sym_DOT_DOT_DOT, - STATE(1031), 1, + ACTIONS(5176), 1, + sym_semgrep_ellipsis_metavariable, + STATE(911), 1, sym_keyword, - STATE(2271), 1, + STATE(3378), 1, sym_semgrep_ellipsis, - STATE(2307), 1, + STATE(3385), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253356] = 12, + [252753] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5176), 1, + ACTIONS(5178), 1, anon_sym_DOT_DOT_DOT, - STATE(933), 1, + ACTIONS(5180), 1, + sym_semgrep_ellipsis_metavariable, + STATE(1040), 1, sym_keyword, - STATE(1706), 1, + STATE(1573), 1, sym_semgrep_ellipsis, - STATE(1721), 1, + STATE(1592), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253397] = 12, + [252797] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5178), 1, + ACTIONS(5182), 1, anon_sym_DOT_DOT_DOT, - STATE(797), 1, + ACTIONS(5184), 1, + sym_semgrep_ellipsis_metavariable, + STATE(1041), 1, sym_keyword, - STATE(3354), 1, + STATE(2072), 1, sym_semgrep_ellipsis, - STATE(3371), 1, + STATE(2108), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253438] = 12, + [252841] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5180), 1, + ACTIONS(5186), 1, anon_sym_DOT_DOT_DOT, - STATE(816), 1, + ACTIONS(5188), 1, + sym_semgrep_ellipsis_metavariable, + STATE(1034), 1, sym_keyword, - STATE(1524), 1, + STATE(4544), 1, sym_pair, - STATE(1658), 1, + STATE(4608), 1, sym_semgrep_ellipsis, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253479] = 12, + [252885] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5150), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5182), 1, - anon_sym_DOT_DOT_DOT, - STATE(977), 1, + ACTIONS(5158), 1, + sym_semgrep_ellipsis_metavariable, + STATE(832), 1, sym_keyword, - STATE(2442), 1, + STATE(5110), 1, sym_semgrep_ellipsis, - STATE(2488), 1, + STATE(5113), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253520] = 12, + [252929] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5176), 1, + ACTIONS(5182), 1, anon_sym_DOT_DOT_DOT, - STATE(997), 1, + ACTIONS(5184), 1, + sym_semgrep_ellipsis_metavariable, + STATE(1046), 1, sym_keyword, - STATE(1706), 1, + STATE(2072), 1, sym_semgrep_ellipsis, - STATE(1721), 1, + STATE(2108), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253561] = 12, + [252973] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5184), 1, + ACTIONS(5170), 1, anon_sym_DOT_DOT_DOT, - STATE(1033), 1, + ACTIONS(5172), 1, + sym_semgrep_ellipsis_metavariable, + STATE(1029), 1, sym_keyword, - STATE(1890), 1, + STATE(1682), 1, sym_semgrep_ellipsis, - STATE(1896), 1, + STATE(1743), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253602] = 12, + [253017] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5150), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5186), 1, - anon_sym_DOT_DOT_DOT, - STATE(911), 1, + ACTIONS(5158), 1, + sym_semgrep_ellipsis_metavariable, + STATE(884), 1, sym_keyword, - STATE(3556), 1, + STATE(5110), 1, sym_semgrep_ellipsis, - STATE(3643), 1, + STATE(5113), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253643] = 12, + [253061] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5150), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5188), 1, - anon_sym_DOT_DOT_DOT, - STATE(655), 1, + ACTIONS(5158), 1, + sym_semgrep_ellipsis_metavariable, + STATE(617), 1, sym_keyword, - STATE(4129), 1, + STATE(5110), 1, sym_semgrep_ellipsis, - STATE(4145), 1, + STATE(5113), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253684] = 12, + [253105] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5180), 1, + ACTIONS(5162), 1, anon_sym_DOT_DOT_DOT, - STATE(1028), 1, + ACTIONS(5164), 1, + sym_semgrep_ellipsis_metavariable, + STATE(1045), 1, sym_keyword, - STATE(1524), 1, - sym_pair, - STATE(1658), 1, + STATE(1977), 1, sym_semgrep_ellipsis, - STATE(1412), 2, + STATE(2003), 1, + sym_pair, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253725] = 12, + [253149] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5176), 1, + ACTIONS(5178), 1, anon_sym_DOT_DOT_DOT, - STATE(1032), 1, + ACTIONS(5180), 1, + sym_semgrep_ellipsis_metavariable, + STATE(929), 1, sym_keyword, - STATE(1706), 1, + STATE(1573), 1, sym_semgrep_ellipsis, - STATE(1721), 1, + STATE(1592), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253766] = 12, + [253193] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5190), 1, + ACTIONS(5166), 1, anon_sym_DOT_DOT_DOT, - STATE(666), 1, + ACTIONS(5168), 1, + sym_semgrep_ellipsis_metavariable, + STATE(941), 1, sym_keyword, - STATE(4257), 1, - sym_semgrep_ellipsis, - STATE(4278), 1, + STATE(2311), 1, sym_pair, - STATE(1412), 2, + STATE(2466), 1, + sym_semgrep_ellipsis, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253807] = 12, + [253237] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5184), 1, + ACTIONS(5190), 1, anon_sym_DOT_DOT_DOT, - STATE(956), 1, + ACTIONS(5192), 1, + sym_semgrep_ellipsis_metavariable, + STATE(884), 1, sym_keyword, - STATE(1890), 1, + STATE(4662), 1, sym_semgrep_ellipsis, - STATE(1896), 1, + STATE(4710), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253848] = 12, + [253281] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5182), 1, + ACTIONS(5194), 1, anon_sym_DOT_DOT_DOT, - STATE(840), 1, + ACTIONS(5196), 1, + sym_semgrep_ellipsis_metavariable, + STATE(617), 1, sym_keyword, - STATE(2442), 1, + STATE(4390), 1, sym_semgrep_ellipsis, - STATE(2488), 1, + STATE(4454), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253889] = 12, + [253325] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5192), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT_DOT, - STATE(865), 1, + ACTIONS(5200), 1, + sym_semgrep_ellipsis_metavariable, + STATE(974), 1, sym_keyword, - STATE(3720), 1, - sym_pair, - STATE(4042), 1, + STATE(3677), 1, sym_semgrep_ellipsis, - STATE(1412), 2, - sym_quoted_keyword, - sym_metavariable_keyword, - STATE(7445), 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, - [253930] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(99), 1, - sym_keyword_, - ACTIONS(5166), 1, - anon_sym_DQUOTE, - ACTIONS(5168), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - sym_semgrep_metavariable, - ACTIONS(5194), 1, - anon_sym_DOT_DOT_DOT, - STATE(1030), 1, - sym_keyword, - STATE(3022), 1, + STATE(3740), 1, sym_pair, - STATE(3385), 1, - sym_semgrep_ellipsis, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [253971] = 12, + [253369] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5194), 1, + ACTIONS(5202), 1, anon_sym_DOT_DOT_DOT, - STATE(662), 1, + ACTIONS(5204), 1, + sym_semgrep_ellipsis_metavariable, + STATE(694), 1, sym_keyword, - STATE(3022), 1, + STATE(4092), 1, sym_pair, - STATE(3385), 1, + STATE(4418), 1, sym_semgrep_ellipsis, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [254012] = 12, + [253413] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5196), 1, + ACTIONS(5182), 1, anon_sym_DOT_DOT_DOT, - STATE(1016), 1, + ACTIONS(5184), 1, + sym_semgrep_ellipsis_metavariable, + STATE(1043), 1, sym_keyword, - STATE(4612), 1, + STATE(2072), 1, sym_semgrep_ellipsis, - STATE(4735), 1, + STATE(2108), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [254053] = 12, + [253457] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5198), 1, + ACTIONS(5206), 1, anon_sym_DOT_DOT_DOT, - STATE(888), 1, + ACTIONS(5208), 1, + sym_semgrep_ellipsis_metavariable, + STATE(1042), 1, sym_keyword, - STATE(3076), 1, - sym_semgrep_ellipsis, - STATE(3099), 1, + STATE(3068), 1, sym_pair, - STATE(1412), 2, - sym_quoted_keyword, - sym_metavariable_keyword, - STATE(7445), 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, - [254094] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(99), 1, - sym_keyword_, - ACTIONS(5164), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5166), 1, - anon_sym_DQUOTE, - ACTIONS(5168), 1, - anon_sym_SQUOTE, - ACTIONS(5170), 1, - sym_semgrep_metavariable, - STATE(749), 1, - sym_keyword, - STATE(5136), 1, + STATE(3191), 1, sym_semgrep_ellipsis, - STATE(5137), 1, - sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [254135] = 12, + [253501] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5164), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - STATE(662), 1, + ACTIONS(5210), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5212), 1, + sym_semgrep_ellipsis_metavariable, + STATE(965), 1, sym_keyword, - STATE(5136), 1, + STATE(3200), 1, sym_semgrep_ellipsis, - STATE(5137), 1, + STATE(3216), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [254176] = 12, + [253545] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5174), 1, + ACTIONS(5206), 1, anon_sym_DOT_DOT_DOT, - STATE(1029), 1, + ACTIONS(5208), 1, + sym_semgrep_ellipsis_metavariable, + STATE(832), 1, sym_keyword, - STATE(2271), 1, - sym_semgrep_ellipsis, - STATE(2307), 1, + STATE(3068), 1, sym_pair, - STATE(1412), 2, + STATE(3191), 1, + sym_semgrep_ellipsis, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [254217] = 12, + [253589] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5200), 1, + ACTIONS(5170), 1, anon_sym_DOT_DOT_DOT, - STATE(749), 1, + ACTIONS(5172), 1, + sym_semgrep_ellipsis_metavariable, + STATE(989), 1, sym_keyword, - STATE(4640), 1, + STATE(1682), 1, sym_semgrep_ellipsis, - STATE(4664), 1, + STATE(1743), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [254258] = 12, + [253633] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(99), 1, + ACTIONS(97), 1, sym_keyword_, - ACTIONS(5166), 1, + ACTIONS(5152), 1, anon_sym_DQUOTE, - ACTIONS(5168), 1, + ACTIONS(5154), 1, anon_sym_SQUOTE, - ACTIONS(5170), 1, + ACTIONS(5156), 1, sym_semgrep_metavariable, - ACTIONS(5174), 1, + ACTIONS(5214), 1, anon_sym_DOT_DOT_DOT, - STATE(1034), 1, + ACTIONS(5216), 1, + sym_semgrep_ellipsis_metavariable, + STATE(947), 1, sym_keyword, - STATE(2271), 1, + STATE(3630), 1, sym_semgrep_ellipsis, - STATE(2307), 1, + STATE(4011), 1, sym_pair, - STATE(1412), 2, + STATE(1397), 2, sym_quoted_keyword, sym_metavariable_keyword, - STATE(7445), 2, + STATE(7469), 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, - [254299] = 8, + [253677] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(321), 1, + ACTIONS(317), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254330] = 8, + [253708] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(978), 1, + ACTIONS(976), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254361] = 8, + [253739] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(956), 1, + ACTIONS(5218), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254392] = 8, + [253770] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(5202), 1, + ACTIONS(325), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254423] = 8, + [253801] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1010), 1, + ACTIONS(1040), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254454] = 8, + [253832] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(972), 1, + ACTIONS(1028), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254485] = 8, + [253863] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(958), 1, + ACTIONS(1020), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254516] = 8, + [253894] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(5204), 1, + ACTIONS(1022), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254547] = 8, + [253925] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1032), 1, + ACTIONS(313), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254578] = 8, + [253956] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(301), 1, + ACTIONS(319), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254609] = 8, + [253987] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(962), 1, + ACTIONS(982), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254640] = 8, + [254018] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1028), 1, + ACTIONS(1030), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254671] = 8, + [254049] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(970), 1, + ACTIONS(5220), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254702] = 8, + [254080] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(5206), 1, + ACTIONS(1032), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254733] = 8, + [254111] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(944), 1, + ACTIONS(5222), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254764] = 8, + [254142] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(5208), 1, + ACTIONS(1004), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254795] = 8, + [254173] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1024), 1, + ACTIONS(5224), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254826] = 8, + [254204] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1030), 1, + ACTIONS(988), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254857] = 8, + [254235] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1022), 1, + ACTIONS(1042), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254888] = 8, + [254266] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(5210), 1, + ACTIONS(1034), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254919] = 8, + [254297] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1002), 1, + ACTIONS(1006), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254950] = 8, + [254328] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1034), 1, + ACTIONS(990), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [254981] = 8, + [254359] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1016), 1, + ACTIONS(1024), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255012] = 8, + [254390] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(986), 1, + ACTIONS(5226), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255043] = 8, + [254421] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1004), 1, + ACTIONS(992), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255074] = 8, + [254452] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(307), 1, + ACTIONS(5228), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255105] = 8, + [254483] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(992), 1, + ACTIONS(5230), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255136] = 8, + [254514] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(982), 1, + ACTIONS(301), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255167] = 8, + [254545] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(5212), 1, + ACTIONS(1046), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255198] = 8, + [254576] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(5214), 1, + ACTIONS(5232), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255229] = 8, + [254607] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(964), 1, + ACTIONS(1048), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255260] = 8, + [254638] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, ACTIONS(1018), 1, anon_sym_end, @@ -428223,2112 +427609,2126 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255291] = 8, + [254669] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(5216), 1, + ACTIONS(1050), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255322] = 8, + [254700] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1012), 1, + ACTIONS(1016), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255353] = 8, + [254731] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(309), 1, + ACTIONS(315), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255384] = 8, + [254762] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1000), 1, + ACTIONS(1036), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255415] = 8, + [254793] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(960), 1, + ACTIONS(1044), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255446] = 8, + [254824] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1020), 1, + ACTIONS(5234), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255477] = 8, + [254855] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(317), 1, + ACTIONS(305), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255508] = 8, + [254886] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(990), 1, + ACTIONS(5236), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255539] = 8, + [254917] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(5238), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(5241), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(5244), 1, anon_sym_else, - ACTIONS(125), 1, - anon_sym_rescue, - ACTIONS(5218), 1, + ACTIONS(5247), 1, anon_sym_end, + ACTIONS(5249), 1, + anon_sym_rescue, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255570] = 8, + [254948] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(966), 1, + ACTIONS(1002), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255601] = 8, + [254979] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1036), 1, + ACTIONS(309), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255632] = 8, + [255010] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(968), 1, + ACTIONS(323), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255663] = 8, + [255041] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(5220), 1, + ACTIONS(321), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255694] = 8, + [255072] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(313), 1, + ACTIONS(299), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255725] = 8, + [255103] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(5222), 1, + ACTIONS(1008), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255756] = 8, + [255134] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(984), 1, + ACTIONS(311), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255787] = 8, + [255165] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(299), 1, + ACTIONS(986), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255818] = 8, + [255196] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(297), 1, + ACTIONS(1014), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255849] = 8, + [255227] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(295), 1, + ACTIONS(1052), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255880] = 8, + [255258] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(311), 1, + ACTIONS(307), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255911] = 8, + [255289] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(994), 1, + ACTIONS(1010), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255942] = 8, + [255320] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1006), 1, + ACTIONS(960), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [255973] = 8, + [255351] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(974), 1, + ACTIONS(303), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256004] = 8, + [255382] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(5224), 1, + ACTIONS(1012), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256035] = 8, + [255413] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(305), 1, + ACTIONS(5252), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256066] = 8, + [255444] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(996), 1, + ACTIONS(994), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256097] = 8, + [255475] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5226), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(5229), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(5232), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(5235), 1, - anon_sym_end, - ACTIONS(5237), 1, + ACTIONS(123), 1, anon_sym_rescue, + ACTIONS(974), 1, + anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256128] = 8, + [255506] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(998), 1, + ACTIONS(996), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256159] = 8, + [255537] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1008), 1, + ACTIONS(984), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256190] = 8, + [255568] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(5240), 1, + ACTIONS(998), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256221] = 8, + [255599] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1026), 1, + ACTIONS(5254), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256252] = 8, + [255630] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(303), 1, + ACTIONS(1038), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256283] = 8, + [255661] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(5242), 1, + ACTIONS(1026), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256314] = 8, + [255692] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(1014), 1, + ACTIONS(978), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256345] = 8, + [255723] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(980), 1, + ACTIONS(972), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256376] = 8, + [255754] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(976), 1, + ACTIONS(1000), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256407] = 8, + [255785] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(319), 1, + ACTIONS(980), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256438] = 8, + [255816] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(315), 1, + ACTIONS(5256), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256469] = 8, + [255847] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_after, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_catch, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_else, - ACTIONS(125), 1, + ACTIONS(123), 1, anon_sym_rescue, - ACTIONS(988), 1, + ACTIONS(5258), 1, anon_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - STATE(5061), 5, + STATE(5019), 5, sym_after_block, sym_rescue_block, sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [256500] = 8, + [255878] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5051), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1549), 5, + ACTIONS(1605), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [256530] = 8, + [255908] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5089), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1557), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [256560] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1172), 1, - aux_sym_terminator_token1, - ACTIONS(2096), 1, - anon_sym_SEMI, - STATE(395), 1, - sym_terminator, - STATE(1373), 1, - aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(1541), 5, + ACTIONS(1577), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [256590] = 8, + [255938] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1553), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [256620] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1172), 1, - aux_sym_terminator_token1, - ACTIONS(2096), 1, - anon_sym_SEMI, - STATE(390), 1, - sym_terminator, - STATE(1373), 1, - aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(1561), 5, + ACTIONS(1607), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [256650] = 8, + [255968] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5071), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1561), 5, + ACTIONS(714), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [256680] = 8, + [255998] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5244), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(5247), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(707), 1, + STATE(394), 1, sym_terminator, - STATE(1388), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5080), 1, - aux_sym_source_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3146), 5, + ACTIONS(1597), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [256710] = 8, + [256028] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5098), 1, + STATE(5052), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1541), 5, + ACTIONS(1599), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [256740] = 8, + [256058] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(5260), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(5263), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5079), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1559), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [256770] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1172), 1, - aux_sym_terminator_token1, - ACTIONS(2096), 1, - anon_sym_SEMI, - STATE(402), 1, - sym_terminator, - STATE(1373), 1, - aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(1565), 5, + ACTIONS(5266), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [256800] = 8, + [256088] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1172), 1, + ACTIONS(5268), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(5271), 1, anon_sym_SEMI, - STATE(400), 1, + STATE(855), 1, sym_terminator, - STATE(1373), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(5057), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1559), 5, + ACTIONS(3150), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [256830] = 8, + [256118] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1172), 1, + ACTIONS(5274), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(5277), 1, anon_sym_SEMI, - STATE(396), 1, + STATE(833), 1, sym_terminator, - STATE(1373), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1549), 5, + ACTIONS(3270), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [256860] = 8, + [256148] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5250), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(5253), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(679), 1, + STATE(155), 1, sym_terminator, - STATE(1388), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(5077), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(3266), 5, + ACTIONS(700), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [256890] = 8, + [256178] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5256), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(5259), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(388), 1, + STATE(155), 1, sym_terminator, - STATE(1372), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5080), 1, - aux_sym_source_repeat1, + STATE(5056), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1523), 5, + ACTIONS(1579), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [256920] = 8, + [256208] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5076), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1559), 5, + ACTIONS(712), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [256950] = 8, + [256238] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5067), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1565), 5, + ACTIONS(1597), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [256980] = 8, + [256268] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(155), 1, + STATE(401), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1557), 5, + ACTIONS(1577), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [257010] = 8, + [256298] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(155), 1, + STATE(402), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1541), 5, + ACTIONS(1589), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [257040] = 8, + [256328] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, STATE(5074), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(706), 5, + ACTIONS(702), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [257070] = 8, + [256358] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2871), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(386), 1, + STATE(389), 1, sym_terminator, - STATE(1372), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5080), 1, - aux_sym_source_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1527), 5, + ACTIONS(1605), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [257100] = 8, + [256388] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5262), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(5265), 1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5268), 5, + ACTIONS(1589), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [257130] = 8, + [256418] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(155), 1, + STATE(404), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5088), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(686), 5, + ACTIONS(1599), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [257160] = 8, + [256448] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(155), 1, + STATE(397), 1, sym_terminator, - STATE(1384), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5077), 1, - aux_sym_block_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1549), 5, + ACTIONS(1579), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [257190] = 8, + [256478] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1172), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(2112), 1, anon_sym_SEMI, - STATE(404), 1, + STATE(395), 1, sym_terminator, - STATE(1373), 1, + STATE(1359), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, + STATE(5058), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1551), 5, + ACTIONS(1607), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [257220] = 8, + [256508] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5094), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1551), 5, + ACTIONS(1595), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [257250] = 8, + [256538] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(5280), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(5283), 1, + anon_sym_SEMI, + STATE(388), 1, + sym_terminator, + STATE(1358), 1, + aux_sym_terminator_repeat1, + STATE(5057), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(1571), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [256568] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2880), 1, + aux_sym_terminator_token1, + ACTIONS(2883), 1, + anon_sym_SEMI, + STATE(387), 1, + sym_terminator, + STATE(1358), 1, + aux_sym_terminator_repeat1, + STATE(5057), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(1567), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [256598] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5091), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(690), 5, + ACTIONS(1597), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [257280] = 8, + [256628] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(1198), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(2112), 1, + anon_sym_SEMI, + STATE(390), 1, + sym_terminator, + STATE(1359), 1, + aux_sym_terminator_repeat1, + STATE(5058), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(1595), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [256658] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, anon_sym_SEMI, STATE(155), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5090), 1, + STATE(5056), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(688), 5, + ACTIONS(1599), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [257310] = 8, + [256688] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1172), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(403), 1, + STATE(155), 1, sym_terminator, - STATE(1373), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(5056), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1557), 5, + ACTIONS(1605), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [257340] = 8, + [256718] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1172), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(2096), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(397), 1, + STATE(155), 1, sym_terminator, - STATE(1373), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5086), 1, - aux_sym_block_repeat2, + STATE(5060), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(1553), 5, + ACTIONS(1595), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [257370] = 5, + [256748] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5286), 1, anon_sym_AMP, - ACTIONS(5274), 1, + ACTIONS(5290), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5272), 6, + ACTIONS(5288), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257393] = 5, + [256771] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5292), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(5296), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5278), 6, + ACTIONS(5294), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257416] = 5, + [256794] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5282), 1, + ACTIONS(5298), 1, anon_sym_AMP, - ACTIONS(5286), 1, + ACTIONS(5302), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5284), 6, + ACTIONS(5300), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257439] = 5, + [256817] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5288), 1, + ACTIONS(5304), 1, anon_sym_AMP, - ACTIONS(5292), 1, + ACTIONS(5308), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5290), 6, + ACTIONS(5306), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257462] = 5, + [256840] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5294), 1, + ACTIONS(5310), 1, anon_sym_AMP, - ACTIONS(5298), 1, + ACTIONS(5314), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5296), 6, + ACTIONS(5312), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257485] = 5, + [256863] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5300), 1, + ACTIONS(5316), 1, anon_sym_AMP, - ACTIONS(5304), 1, + ACTIONS(5320), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5302), 6, + ACTIONS(5318), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257508] = 5, + [256886] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5306), 1, + ACTIONS(5322), 1, anon_sym_AMP, - ACTIONS(5310), 1, + ACTIONS(5326), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5308), 6, + ACTIONS(5324), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257531] = 5, + [256909] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5312), 1, + ACTIONS(5328), 1, anon_sym_AMP, - ACTIONS(5316), 1, + ACTIONS(5332), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5314), 6, + ACTIONS(5330), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257554] = 5, + [256932] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5318), 1, + ACTIONS(5334), 1, anon_sym_AMP, - ACTIONS(5322), 1, + ACTIONS(5338), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5320), 6, + ACTIONS(5336), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257577] = 5, + [256955] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5340), 1, anon_sym_AMP, - ACTIONS(5328), 1, + ACTIONS(5344), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5326), 6, + ACTIONS(5342), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257600] = 5, + [256978] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5330), 1, + ACTIONS(5346), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5350), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5332), 6, + ACTIONS(5348), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257623] = 5, + [257001] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5336), 1, + ACTIONS(5352), 1, anon_sym_AMP, - ACTIONS(5340), 1, + ACTIONS(5356), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5338), 6, + ACTIONS(5354), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257646] = 5, + [257024] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5342), 1, + ACTIONS(5358), 1, anon_sym_AMP, - ACTIONS(5346), 1, + ACTIONS(5362), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5344), 6, + ACTIONS(5360), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257669] = 5, + [257047] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5348), 1, + ACTIONS(5364), 1, anon_sym_AMP, - ACTIONS(5352), 1, + ACTIONS(5368), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5350), 6, + ACTIONS(5366), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257692] = 5, + [257070] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5354), 1, + ACTIONS(5370), 1, anon_sym_AMP, - ACTIONS(5358), 1, + ACTIONS(5374), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5356), 6, + ACTIONS(5372), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257715] = 5, + [257093] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5360), 1, + ACTIONS(5376), 1, anon_sym_AMP, - ACTIONS(5364), 1, + ACTIONS(5380), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5362), 6, + ACTIONS(5378), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257738] = 5, + [257116] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5366), 1, + ACTIONS(5382), 1, anon_sym_AMP, - ACTIONS(5370), 1, + ACTIONS(5386), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5368), 6, + ACTIONS(5384), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257761] = 5, + [257139] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5372), 1, + ACTIONS(5388), 1, anon_sym_AMP, - ACTIONS(5376), 1, + ACTIONS(5392), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5374), 6, + ACTIONS(5390), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257784] = 5, + [257162] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5378), 1, + ACTIONS(5394), 1, anon_sym_AMP, - ACTIONS(5382), 1, + ACTIONS(5398), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5380), 6, + ACTIONS(5396), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257807] = 5, + [257185] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5400), 1, anon_sym_AMP, - ACTIONS(5388), 1, + ACTIONS(5404), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5386), 6, + ACTIONS(5402), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257830] = 5, + [257208] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5394), 1, + ACTIONS(5410), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5392), 6, + ACTIONS(5408), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257853] = 5, + [257231] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5396), 1, + ACTIONS(5412), 1, anon_sym_AMP, - ACTIONS(5400), 1, + ACTIONS(5416), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5398), 6, + ACTIONS(5414), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257876] = 5, + [257254] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5402), 1, + ACTIONS(5418), 1, anon_sym_AMP, - ACTIONS(5406), 1, + ACTIONS(5422), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5404), 6, + ACTIONS(5420), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257899] = 5, + [257277] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5408), 1, + ACTIONS(5424), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5428), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5410), 6, + ACTIONS(5426), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257922] = 5, + [257300] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5414), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5418), 1, + ACTIONS(5434), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5416), 6, + ACTIONS(5432), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257945] = 5, + [257323] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5420), 1, + ACTIONS(5436), 1, anon_sym_AMP, - ACTIONS(5424), 1, + ACTIONS(5440), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5422), 6, + ACTIONS(5438), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257968] = 5, + [257346] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5426), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5430), 1, + ACTIONS(5446), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5428), 6, + ACTIONS(5444), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [257991] = 5, + [257369] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5432), 1, + ACTIONS(5448), 1, anon_sym_AMP, - ACTIONS(5436), 1, + ACTIONS(5452), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5434), 6, + ACTIONS(5450), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [258014] = 5, + [257392] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5438), 1, + ACTIONS(5454), 1, anon_sym_AMP, - ACTIONS(5442), 1, + ACTIONS(5458), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5440), 6, + ACTIONS(5456), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [258037] = 5, + [257415] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5444), 1, + ACTIONS(5460), 1, anon_sym_AMP, - ACTIONS(5448), 1, + ACTIONS(5464), 1, anon_sym_AT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(5446), 6, + ACTIONS(5462), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [258060] = 4, + [257438] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(5450), 1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(3), 2, + ACTIONS(1873), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_when, + anon_sym_DASH_GT, + [257456] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5452), 7, - anon_sym_SEMI, + aux_sym_terminator_token1, + ACTIONS(2557), 7, anon_sym_RPAREN, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [258080] = 4, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_when, + anon_sym_DASH_GT, + [257474] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5454), 1, + ACTIONS(5466), 1, aux_sym_terminator_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5456), 7, + ACTIONS(5468), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_after, @@ -430336,15 +429736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [258100] = 4, + [257494] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5458), 1, + ACTIONS(5470), 1, aux_sym_terminator_token1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5268), 7, + ACTIONS(5266), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_after, @@ -430352,14 +429752,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [258120] = 3, + [257514] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(2712), 7, + ACTIONS(2603), 7, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -430367,67 +429767,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_when, anon_sym_DASH_GT, - [258138] = 3, + [257532] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, + ACTIONS(5472), 1, aux_sym_terminator_token1, - ACTIONS(2353), 7, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_when, - anon_sym_DASH_GT, - [258156] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(1857), 7, + ACTIONS(5474), 7, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [257552] = 8, + ACTIONS(5476), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_when, - anon_sym_DASH_GT, - [258174] = 8, - ACTIONS(5460), 1, - anon_sym_DQUOTE, - ACTIONS(5462), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, - sym_escape_sequence, - ACTIONS(5466), 1, - sym_quoted_content_i_double, - STATE(6338), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [258201] = 8, - ACTIONS(5462), 1, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(5468), 1, - anon_sym_DQUOTE, - ACTIONS(5470), 1, - sym_quoted_content_i_double, - STATE(5495), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(5482), 1, + sym_quoted_content_i_curly, + STATE(5970), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430435,18 +429802,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258228] = 8, - ACTIONS(5472), 1, + [257579] = 8, + ACTIONS(5484), 1, anon_sym_SQUOTE, - ACTIONS(5474), 1, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(5478), 1, + ACTIONS(5490), 1, sym_quoted_content_i_single, - STATE(5515), 1, + STATE(6001), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430454,18 +429821,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258255] = 8, - ACTIONS(5480), 1, + [257606] = 8, + ACTIONS(5492), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5482), 1, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(5486), 1, + ACTIONS(5498), 1, sym_quoted_content_i_heredoc_single, - STATE(5517), 1, + STATE(6003), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430473,18 +429840,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258282] = 8, - ACTIONS(5488), 1, + [257633] = 8, + ACTIONS(5500), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5490), 1, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(5494), 1, + ACTIONS(5506), 1, sym_quoted_content_i_heredoc_double, - STATE(5519), 1, + STATE(6005), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430492,18 +429859,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258309] = 8, - ACTIONS(5496), 1, - anon_sym_RPAREN, - ACTIONS(5498), 1, + [257660] = 8, + ACTIONS(5508), 1, + anon_sym_DQUOTE, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(5502), 1, - sym_quoted_content_i_parenthesis, - STATE(6141), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + ACTIONS(5514), 1, + sym_quoted_content_i_double, + STATE(5655), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430511,18 +429878,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258336] = 8, - ACTIONS(5504), 1, - anon_sym_RBRACE, - ACTIONS(5506), 1, + [257687] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(5510), 1, - sym_quoted_content_i_curly, - STATE(6224), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(5516), 1, + anon_sym_DQUOTE, + ACTIONS(5518), 1, + sym_quoted_content_i_double, + STATE(6014), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430530,18 +429897,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258363] = 8, - ACTIONS(5512), 1, - anon_sym_RBRACK, - ACTIONS(5514), 1, + [257714] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(5518), 1, - sym_quoted_content_i_square, - STATE(6248), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + ACTIONS(5520), 1, + anon_sym_SQUOTE, + ACTIONS(5522), 1, + sym_quoted_content_i_single, + STATE(6016), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430549,18 +429916,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258390] = 8, - ACTIONS(5520), 1, - anon_sym_GT, - ACTIONS(5522), 1, + [257741] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5496), 1, sym_escape_sequence, + ACTIONS(5524), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5526), 1, - sym_quoted_content_i_angle, - STATE(5415), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_heredoc_single, + STATE(6018), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430568,18 +429935,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258417] = 8, + [257768] = 8, + ACTIONS(5502), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5504), 1, + sym_escape_sequence, ACTIONS(5528), 1, - anon_sym_PIPE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5530), 1, + sym_quoted_content_i_heredoc_double, + STATE(6020), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [257795] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5512), 1, sym_escape_sequence, + ACTIONS(5532), 1, + anon_sym_DQUOTE, ACTIONS(5534), 1, - sym_quoted_content_i_bar, - STATE(5417), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_double, + STATE(6028), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430587,18 +429973,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258444] = 8, + [257822] = 8, + ACTIONS(5486), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5488), 1, + sym_escape_sequence, ACTIONS(5536), 1, - anon_sym_SLASH, + anon_sym_SQUOTE, ACTIONS(5538), 1, + sym_quoted_content_i_single, + STATE(6030), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [257849] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5496), 1, sym_escape_sequence, + ACTIONS(5540), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5542), 1, - sym_quoted_content_i_slash, - STATE(5420), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_heredoc_single, + STATE(6032), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430606,18 +430011,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258471] = 8, - ACTIONS(5498), 1, + [257876] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5544), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5546), 1, - sym_quoted_content_i_parenthesis, - STATE(5751), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_heredoc_double, + STATE(6034), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430625,18 +430030,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258498] = 8, - ACTIONS(5506), 1, + [257903] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5548), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, ACTIONS(5550), 1, - sym_quoted_content_i_curly, - STATE(5753), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_double, + STATE(6044), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430644,18 +430049,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258525] = 8, - ACTIONS(5514), 1, + [257930] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5552), 1, - anon_sym_RBRACK, + anon_sym_SQUOTE, ACTIONS(5554), 1, - sym_quoted_content_i_square, - STATE(5755), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_single, + STATE(6046), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430663,18 +430068,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258552] = 8, - ACTIONS(5522), 1, + [257957] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5556), 1, - anon_sym_GT, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5558), 1, - sym_quoted_content_i_angle, - STATE(5786), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_heredoc_single, + STATE(6048), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430682,18 +430087,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258579] = 8, - ACTIONS(5530), 1, + [257984] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5560), 1, - anon_sym_PIPE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5562), 1, - sym_quoted_content_i_bar, - STATE(5788), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_heredoc_double, + STATE(6050), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430701,18 +430106,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258606] = 8, - ACTIONS(5538), 1, + [258011] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5564), 1, - anon_sym_SLASH, + anon_sym_DQUOTE, ACTIONS(5566), 1, - sym_quoted_content_i_slash, - STATE(5805), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_double, + STATE(6058), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430720,18 +430125,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258633] = 8, - ACTIONS(5462), 1, + [258038] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5568), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(5570), 1, - sym_quoted_content_i_double, - STATE(6039), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_single, + STATE(6060), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430739,18 +430144,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258660] = 8, - ACTIONS(5474), 1, + [258065] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5572), 1, - anon_sym_SQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5574), 1, - sym_quoted_content_i_single, - STATE(6053), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_heredoc_single, + STATE(6062), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430758,18 +430163,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258687] = 8, - ACTIONS(5482), 1, + [258092] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5576), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5578), 1, - sym_quoted_content_i_heredoc_single, - STATE(6055), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_heredoc_double, + STATE(6064), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430777,18 +430182,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258714] = 8, - ACTIONS(5490), 1, + [258119] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5580), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE, ACTIONS(5582), 1, - sym_quoted_content_i_heredoc_double, - STATE(6069), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_double, + STATE(6070), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430796,18 +430201,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258741] = 8, - ACTIONS(5498), 1, + [258146] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5584), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(5586), 1, - sym_quoted_content_i_parenthesis, - STATE(6317), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_single, + STATE(6072), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430815,18 +430220,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258768] = 8, - ACTIONS(5506), 1, + [258173] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5588), 1, - anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5590), 1, - sym_quoted_content_i_curly, - STATE(6353), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_heredoc_single, + STATE(6074), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430834,18 +430239,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258795] = 8, - ACTIONS(5514), 1, + [258200] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5592), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5594), 1, - sym_quoted_content_i_square, - STATE(6355), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_heredoc_double, + STATE(6076), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430853,18 +430258,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258822] = 8, - ACTIONS(5522), 1, + [258227] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5596), 1, - anon_sym_GT, + anon_sym_DQUOTE, ACTIONS(5598), 1, - sym_quoted_content_i_angle, - STATE(6357), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_double, + STATE(6082), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430872,18 +430277,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258849] = 8, - ACTIONS(5530), 1, + [258254] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5600), 1, - anon_sym_PIPE, + anon_sym_SQUOTE, ACTIONS(5602), 1, - sym_quoted_content_i_bar, - STATE(5936), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_single, + STATE(6084), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430891,18 +430296,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258876] = 8, - ACTIONS(5538), 1, + [258281] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5604), 1, - anon_sym_SLASH, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5606), 1, - sym_quoted_content_i_slash, - STATE(5413), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_heredoc_single, + STATE(6086), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430910,18 +430315,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258903] = 8, - ACTIONS(5498), 1, + [258308] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5608), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5610), 1, - sym_quoted_content_i_parenthesis, - STATE(6332), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_heredoc_double, + STATE(6088), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430929,18 +430334,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258930] = 8, - ACTIONS(5506), 1, + [258335] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5612), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, ACTIONS(5614), 1, - sym_quoted_content_i_curly, - STATE(6343), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_double, + STATE(6098), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430948,18 +430353,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258957] = 8, - ACTIONS(5462), 1, + [258362] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5616), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(5618), 1, - sym_quoted_content_i_double, - STATE(5434), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_single, + STATE(6100), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430967,18 +430372,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [258984] = 8, - ACTIONS(5474), 1, + [258389] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5620), 1, - anon_sym_SQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5622), 1, - sym_quoted_content_i_single, - STATE(5436), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_heredoc_single, + STATE(6102), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -430986,18 +430391,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259011] = 8, - ACTIONS(5482), 1, + [258416] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5624), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5626), 1, - sym_quoted_content_i_heredoc_single, - STATE(5438), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_heredoc_double, + STATE(6104), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431005,18 +430410,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259038] = 8, - ACTIONS(5490), 1, + [258443] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5628), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE, ACTIONS(5630), 1, - sym_quoted_content_i_heredoc_double, - STATE(5440), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_double, + STATE(6113), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431024,18 +430429,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259065] = 8, - ACTIONS(5514), 1, + [258470] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5632), 1, - anon_sym_RBRACK, + anon_sym_SQUOTE, ACTIONS(5634), 1, - sym_quoted_content_i_square, - STATE(6382), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_single, + STATE(6115), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431043,18 +430448,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259092] = 8, - ACTIONS(5498), 1, + [258497] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5636), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5638), 1, - sym_quoted_content_i_parenthesis, - STATE(5470), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_heredoc_single, + STATE(6117), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431062,18 +430467,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259119] = 8, - ACTIONS(5506), 1, + [258524] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5640), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5642), 1, - sym_quoted_content_i_curly, - STATE(5472), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_heredoc_double, + STATE(6119), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431081,18 +430486,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259146] = 8, - ACTIONS(5514), 1, + [258551] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5644), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE, ACTIONS(5646), 1, - sym_quoted_content_i_square, - STATE(5474), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_double, + STATE(6128), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431100,18 +430505,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259173] = 8, - ACTIONS(5522), 1, + [258578] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5648), 1, - anon_sym_GT, + anon_sym_SQUOTE, ACTIONS(5650), 1, - sym_quoted_content_i_angle, - STATE(5476), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_single, + STATE(6130), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431119,18 +430524,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259200] = 8, - ACTIONS(5530), 1, + [258605] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5652), 1, - anon_sym_PIPE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5654), 1, - sym_quoted_content_i_bar, - STATE(5478), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_heredoc_single, + STATE(6132), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431138,18 +430543,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259227] = 8, - ACTIONS(5538), 1, + [258632] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5656), 1, - anon_sym_SLASH, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5658), 1, - sym_quoted_content_i_slash, - STATE(5480), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_heredoc_double, + STATE(6134), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431157,18 +430562,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259254] = 8, - ACTIONS(5522), 1, + [258659] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5660), 1, - anon_sym_GT, + anon_sym_DQUOTE, ACTIONS(5662), 1, - sym_quoted_content_i_angle, - STATE(6385), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_double, + STATE(6142), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431176,18 +430581,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259281] = 8, - ACTIONS(5530), 1, + [258686] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5664), 1, - anon_sym_PIPE, + anon_sym_SQUOTE, ACTIONS(5666), 1, - sym_quoted_content_i_bar, - STATE(6387), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_single, + STATE(6144), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431195,18 +430600,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259308] = 8, - ACTIONS(5538), 1, + [258713] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5668), 1, - anon_sym_SLASH, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5670), 1, - sym_quoted_content_i_slash, - STATE(5630), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_heredoc_single, + STATE(6146), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431214,18 +430619,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259335] = 8, - ACTIONS(5462), 1, + [258740] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5672), 1, - anon_sym_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5674), 1, - sym_quoted_content_i_double, - STATE(5499), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_heredoc_double, + STATE(6148), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431233,18 +430638,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259362] = 8, - ACTIONS(5474), 1, + [258767] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5676), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(5678), 1, - sym_quoted_content_i_single, - STATE(5501), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_double, + STATE(6156), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431252,18 +430657,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259389] = 8, - ACTIONS(5482), 1, + [258794] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5680), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SQUOTE, ACTIONS(5682), 1, - sym_quoted_content_i_heredoc_single, - STATE(5503), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_single, + STATE(6158), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431271,18 +430676,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259416] = 8, - ACTIONS(5490), 1, + [258821] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5684), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5686), 1, - sym_quoted_content_i_heredoc_double, - STATE(5505), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_heredoc_single, + STATE(6160), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431290,18 +430695,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259443] = 8, - ACTIONS(5498), 1, + [258848] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5688), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5690), 1, - sym_quoted_content_i_parenthesis, - STATE(5525), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_heredoc_double, + STATE(6162), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431309,18 +430714,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259470] = 8, - ACTIONS(5506), 1, + [258875] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5692), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, ACTIONS(5694), 1, - sym_quoted_content_i_curly, - STATE(5527), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_double, + STATE(6169), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431328,18 +430733,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259497] = 8, - ACTIONS(5514), 1, + [258902] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5696), 1, - anon_sym_RBRACK, + anon_sym_SQUOTE, ACTIONS(5698), 1, - sym_quoted_content_i_square, - STATE(5529), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_single, + STATE(6171), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431347,18 +430752,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259524] = 8, - ACTIONS(5522), 1, + [258929] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5700), 1, - anon_sym_GT, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5702), 1, - sym_quoted_content_i_angle, - STATE(5531), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_heredoc_single, + STATE(6173), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431366,18 +430771,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259551] = 8, - ACTIONS(5530), 1, + [258956] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5704), 1, - anon_sym_PIPE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5706), 1, - sym_quoted_content_i_bar, - STATE(5533), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_heredoc_double, + STATE(6175), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431385,18 +430790,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259578] = 8, - ACTIONS(5538), 1, + [258983] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5708), 1, - anon_sym_SLASH, + anon_sym_DQUOTE, ACTIONS(5710), 1, - sym_quoted_content_i_slash, - STATE(5535), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_double, + STATE(6183), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431404,18 +430809,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259605] = 8, - ACTIONS(5474), 1, + [259010] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5712), 1, anon_sym_SQUOTE, ACTIONS(5714), 1, sym_quoted_content_i_single, - STATE(6360), 1, + STATE(6185), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431423,18 +430828,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259632] = 8, - ACTIONS(5462), 1, + [259037] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5716), 1, anon_sym_DQUOTE, ACTIONS(5718), 1, sym_quoted_content_i_double, - STATE(5556), 1, + STATE(6191), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431442,18 +430847,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259659] = 8, - ACTIONS(5474), 1, + [259064] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5720), 1, anon_sym_SQUOTE, ACTIONS(5722), 1, sym_quoted_content_i_single, - STATE(5558), 1, + STATE(6193), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431461,18 +430866,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259686] = 8, - ACTIONS(5482), 1, + [259091] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5724), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE, ACTIONS(5726), 1, - sym_quoted_content_i_heredoc_single, - STATE(5560), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_double, + STATE(6199), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431480,18 +430885,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259713] = 8, - ACTIONS(5490), 1, + [259118] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5728), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE, ACTIONS(5730), 1, - sym_quoted_content_i_heredoc_double, - STATE(5562), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_single, + STATE(6201), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431499,18 +430904,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259740] = 8, - ACTIONS(5462), 1, + [259145] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5732), 1, anon_sym_DQUOTE, ACTIONS(5734), 1, sym_quoted_content_i_double, - STATE(6310), 1, + STATE(6207), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431518,18 +430923,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259767] = 8, - ACTIONS(5498), 1, + [259172] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5736), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(5738), 1, - sym_quoted_content_i_parenthesis, - STATE(5938), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_single, + STATE(6209), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431537,18 +430942,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259794] = 8, - ACTIONS(5506), 1, + [259199] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5740), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, ACTIONS(5742), 1, - sym_quoted_content_i_curly, - STATE(5940), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_double, + STATE(6215), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431556,18 +430961,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259821] = 8, - ACTIONS(5514), 1, + [259226] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5744), 1, - anon_sym_RBRACK, + anon_sym_SQUOTE, ACTIONS(5746), 1, - sym_quoted_content_i_square, - STATE(6009), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_single, + STATE(6217), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431575,18 +430980,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259848] = 8, - ACTIONS(5522), 1, + [259253] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5748), 1, - anon_sym_GT, + anon_sym_DQUOTE, ACTIONS(5750), 1, - sym_quoted_content_i_angle, - STATE(6255), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_double, + STATE(6222), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431594,18 +430999,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259875] = 8, - ACTIONS(5530), 1, + [259280] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5752), 1, - anon_sym_PIPE, + anon_sym_SQUOTE, ACTIONS(5754), 1, - sym_quoted_content_i_bar, - STATE(6266), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_single, + STATE(6224), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431613,18 +431018,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259902] = 8, - ACTIONS(5538), 1, + [259307] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5756), 1, - anon_sym_SLASH, + anon_sym_DQUOTE, ACTIONS(5758), 1, - sym_quoted_content_i_slash, - STATE(6268), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_double, + STATE(6229), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431632,18 +431037,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259929] = 8, - ACTIONS(5498), 1, + [259334] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5760), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(5762), 1, - sym_quoted_content_i_parenthesis, - STATE(5583), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_single, + STATE(6231), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431651,18 +431056,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259956] = 8, - ACTIONS(5506), 1, + [259361] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5764), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, ACTIONS(5766), 1, - sym_quoted_content_i_curly, - STATE(5585), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_double, + STATE(6236), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431670,18 +431075,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [259983] = 8, - ACTIONS(5514), 1, + [259388] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5768), 1, - anon_sym_RBRACK, + anon_sym_SQUOTE, ACTIONS(5770), 1, - sym_quoted_content_i_square, - STATE(5587), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_single, + STATE(6238), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431689,18 +431094,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260010] = 8, - ACTIONS(5522), 1, + [259415] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(5772), 1, - anon_sym_GT, + anon_sym_RBRACE, ACTIONS(5774), 1, - sym_quoted_content_i_angle, - STATE(5589), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_curly, + STATE(5637), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431708,18 +431113,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260037] = 8, - ACTIONS(5530), 1, + [259442] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5776), 1, - anon_sym_PIPE, + anon_sym_SQUOTE, ACTIONS(5778), 1, - sym_quoted_content_i_bar, - STATE(5591), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_single, + STATE(5657), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431727,18 +431132,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260064] = 8, - ACTIONS(5538), 1, + [259469] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5780), 1, - anon_sym_SLASH, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5782), 1, - sym_quoted_content_i_slash, - STATE(5593), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_heredoc_single, + STATE(5659), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431746,18 +431151,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260091] = 8, - ACTIONS(5482), 1, + [259496] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5784), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5786), 1, - sym_quoted_content_i_heredoc_single, - STATE(5537), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_heredoc_double, + STATE(5661), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431765,18 +431170,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260118] = 8, - ACTIONS(5462), 1, + [259523] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5788), 1, - anon_sym_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5790), 1, - sym_quoted_content_i_double, - STATE(5610), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_heredoc_double, + STATE(5707), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431784,37 +431189,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260145] = 8, - ACTIONS(5474), 1, + [259550] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5792), 1, - anon_sym_SQUOTE, - ACTIONS(5794), 1, - sym_quoted_content_i_single, - STATE(5612), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [260172] = 8, - ACTIONS(5482), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, - ACTIONS(5796), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5798), 1, + ACTIONS(5794), 1, sym_quoted_content_i_heredoc_single, - STATE(5623), 1, + STATE(5544), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431822,18 +431208,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260199] = 8, - ACTIONS(5490), 1, + [259577] = 8, + ACTIONS(5796), 1, + anon_sym_RBRACK, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, - sym_escape_sequence, ACTIONS(5800), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_escape_sequence, ACTIONS(5802), 1, - sym_quoted_content_i_heredoc_double, - STATE(5625), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_square, + STATE(5639), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431841,37 +431227,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260226] = 8, - ACTIONS(5462), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, - sym_escape_sequence, + [259604] = 8, ACTIONS(5804), 1, - anon_sym_DQUOTE, + anon_sym_GT, ACTIONS(5806), 1, - sym_quoted_content_i_double, - STATE(6082), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [260253] = 8, - ACTIONS(5474), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, - sym_escape_sequence, ACTIONS(5808), 1, - anon_sym_SQUOTE, + sym_escape_sequence, ACTIONS(5810), 1, - sym_quoted_content_i_single, - STATE(5442), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_angle, + STATE(5641), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431879,18 +431246,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260280] = 8, - ACTIONS(5462), 1, + [259631] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5812), 1, - anon_sym_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5814), 1, - sym_quoted_content_i_double, - STATE(5615), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_heredoc_double, + STATE(5546), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431898,37 +431265,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260307] = 8, - ACTIONS(5474), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, - sym_escape_sequence, + [259658] = 8, ACTIONS(5816), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, ACTIONS(5818), 1, - sym_quoted_content_i_single, - STATE(5617), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [260334] = 8, - ACTIONS(5482), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, ACTIONS(5820), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + sym_escape_sequence, ACTIONS(5822), 1, - sym_quoted_content_i_heredoc_single, - STATE(5619), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_parenthesis, + STATE(5887), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431936,37 +431284,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260361] = 8, - ACTIONS(5490), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, - sym_escape_sequence, + [259685] = 8, ACTIONS(5824), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_PIPE, ACTIONS(5826), 1, - sym_quoted_content_i_heredoc_double, - STATE(5621), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [260388] = 8, - ACTIONS(5482), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, ACTIONS(5828), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + sym_escape_sequence, ACTIONS(5830), 1, - sym_quoted_content_i_heredoc_single, - STATE(5445), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_bar, + STATE(6154), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431974,18 +431303,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260415] = 8, - ACTIONS(5490), 1, + [259712] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(5832), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_PIPE, ACTIONS(5834), 1, - sym_quoted_content_i_heredoc_double, - STATE(5454), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_bar, + STATE(5649), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -431993,18 +431322,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260442] = 8, - ACTIONS(5498), 1, + [259739] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5836), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE, ACTIONS(5838), 1, - sym_quoted_content_i_parenthesis, - STATE(5644), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_double, + STATE(5420), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432012,18 +431341,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260469] = 8, - ACTIONS(5506), 1, + [259766] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5840), 1, - anon_sym_RBRACE, + anon_sym_SQUOTE, ACTIONS(5842), 1, - sym_quoted_content_i_curly, - STATE(5646), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_single, + STATE(5422), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432031,18 +431360,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260496] = 8, - ACTIONS(5514), 1, + [259793] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(5844), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(5846), 1, - sym_quoted_content_i_square, - STATE(5648), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_parenthesis, + STATE(6290), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432050,18 +431379,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260523] = 8, - ACTIONS(5522), 1, + [259820] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(5848), 1, - anon_sym_GT, + anon_sym_RBRACE, ACTIONS(5850), 1, - sym_quoted_content_i_angle, - STATE(5650), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_curly, + STATE(6292), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432069,18 +431398,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260550] = 8, - ACTIONS(5530), 1, + [259847] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(5852), 1, - anon_sym_PIPE, + anon_sym_RBRACK, ACTIONS(5854), 1, - sym_quoted_content_i_bar, - STATE(5652), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_square, + STATE(6294), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432088,18 +431417,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260577] = 8, - ACTIONS(5538), 1, + [259874] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(5856), 1, - anon_sym_SLASH, + anon_sym_GT, ACTIONS(5858), 1, - sym_quoted_content_i_slash, - STATE(5654), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_angle, + STATE(6296), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432107,18 +431436,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260604] = 8, - ACTIONS(5498), 1, + [259901] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(5860), 1, - anon_sym_RPAREN, + anon_sym_PIPE, ACTIONS(5862), 1, - sym_quoted_content_i_parenthesis, - STATE(5719), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_bar, + STATE(6298), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432126,37 +431455,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260631] = 8, - ACTIONS(5506), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, - sym_escape_sequence, + [259928] = 8, ACTIONS(5864), 1, - anon_sym_RBRACE, + anon_sym_SLASH, ACTIONS(5866), 1, - sym_quoted_content_i_curly, - STATE(5721), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [260658] = 8, - ACTIONS(5514), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, - sym_escape_sequence, ACTIONS(5868), 1, - anon_sym_RBRACK, + sym_escape_sequence, ACTIONS(5870), 1, - sym_quoted_content_i_square, - STATE(5723), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_slash, + STATE(6300), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432164,18 +431474,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260685] = 8, - ACTIONS(5522), 1, + [259955] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5872), 1, - anon_sym_GT, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5874), 1, - sym_quoted_content_i_angle, - STATE(5725), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_heredoc_single, + STATE(5424), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432183,18 +431493,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260712] = 8, - ACTIONS(5530), 1, + [259982] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(5876), 1, - anon_sym_PIPE, + anon_sym_SLASH, ACTIONS(5878), 1, - sym_quoted_content_i_bar, - STATE(5730), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_slash, + STATE(5651), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432202,18 +431512,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260739] = 8, - ACTIONS(5538), 1, + [260009] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5880), 1, - anon_sym_SLASH, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5882), 1, - sym_quoted_content_i_slash, - STATE(5732), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_heredoc_double, + STATE(5426), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432221,18 +431531,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260766] = 8, - ACTIONS(5462), 1, + [260036] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(5884), 1, - anon_sym_DQUOTE, + anon_sym_RPAREN, ACTIONS(5886), 1, - sym_quoted_content_i_double, - STATE(5676), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_parenthesis, + STATE(5571), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432240,18 +431550,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260793] = 8, - ACTIONS(5474), 1, + [260063] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(5888), 1, - anon_sym_SQUOTE, + anon_sym_RBRACE, ACTIONS(5890), 1, - sym_quoted_content_i_single, - STATE(5678), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_curly, + STATE(5573), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432259,18 +431569,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260820] = 8, - ACTIONS(5482), 1, + [260090] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(5892), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RBRACK, ACTIONS(5894), 1, - sym_quoted_content_i_heredoc_single, - STATE(5680), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_square, + STATE(5575), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432278,18 +431588,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260847] = 8, - ACTIONS(5490), 1, + [260117] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5896), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5898), 1, - sym_quoted_content_i_heredoc_double, - STATE(5682), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_heredoc_single, + STATE(5551), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432297,18 +431607,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260874] = 8, - ACTIONS(5498), 1, + [260144] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(5900), 1, - anon_sym_RPAREN, + anon_sym_GT, ACTIONS(5902), 1, - sym_quoted_content_i_parenthesis, - STATE(5698), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_angle, + STATE(5577), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432316,18 +431626,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260901] = 8, - ACTIONS(5506), 1, + [260171] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(5904), 1, - anon_sym_RBRACE, + anon_sym_PIPE, ACTIONS(5906), 1, - sym_quoted_content_i_curly, - STATE(5700), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_bar, + STATE(5579), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432335,18 +431645,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260928] = 8, - ACTIONS(5514), 1, + [260198] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(5908), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(5910), 1, - sym_quoted_content_i_square, - STATE(5702), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_parenthesis, + STATE(5681), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432354,18 +431664,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260955] = 8, - ACTIONS(5522), 1, + [260225] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(5912), 1, - anon_sym_GT, + anon_sym_RBRACE, ACTIONS(5914), 1, - sym_quoted_content_i_angle, - STATE(5704), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_curly, + STATE(5683), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432373,18 +431683,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [260982] = 8, - ACTIONS(5530), 1, + [260252] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(5916), 1, - anon_sym_PIPE, + anon_sym_RBRACK, ACTIONS(5918), 1, - sym_quoted_content_i_bar, - STATE(5706), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_square, + STATE(5685), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432392,18 +431702,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261009] = 8, - ACTIONS(5538), 1, + [260279] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(5920), 1, - anon_sym_SLASH, + anon_sym_GT, ACTIONS(5922), 1, - sym_quoted_content_i_slash, - STATE(5708), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_angle, + STATE(5687), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432411,18 +431721,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261036] = 8, - ACTIONS(5462), 1, + [260306] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(5924), 1, - anon_sym_DQUOTE, + anon_sym_PIPE, ACTIONS(5926), 1, - sym_quoted_content_i_double, - STATE(5735), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_bar, + STATE(5689), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432430,18 +431740,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261063] = 8, - ACTIONS(5474), 1, + [260333] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(5928), 1, - anon_sym_SQUOTE, + anon_sym_SLASH, ACTIONS(5930), 1, - sym_quoted_content_i_single, - STATE(5737), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_slash, + STATE(5691), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432449,18 +431759,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261090] = 8, - ACTIONS(5482), 1, + [260360] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(5932), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SLASH, ACTIONS(5934), 1, - sym_quoted_content_i_heredoc_single, - STATE(5739), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_slash, + STATE(6234), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432468,18 +431778,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261117] = 8, - ACTIONS(5490), 1, + [260387] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5936), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE, ACTIONS(5938), 1, - sym_quoted_content_i_heredoc_double, - STATE(5741), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_single, + STATE(5443), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432487,18 +431797,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261144] = 8, - ACTIONS(5498), 1, + [260414] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(5940), 1, - anon_sym_RPAREN, + anon_sym_SLASH, ACTIONS(5942), 1, - sym_quoted_content_i_parenthesis, - STATE(5762), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_slash, + STATE(5581), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432506,18 +431816,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261171] = 8, - ACTIONS(5506), 1, + [260441] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5944), 1, - anon_sym_RBRACE, + anon_sym_SQUOTE, ACTIONS(5946), 1, - sym_quoted_content_i_curly, - STATE(5764), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_single, + STATE(6338), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432525,18 +431835,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261198] = 8, - ACTIONS(5514), 1, + [260468] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5948), 1, - anon_sym_RBRACK, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5950), 1, - sym_quoted_content_i_square, - STATE(5766), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_heredoc_single, + STATE(6340), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432544,18 +431854,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261225] = 8, - ACTIONS(5522), 1, + [260495] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5952), 1, - anon_sym_GT, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5954), 1, - sym_quoted_content_i_angle, - STATE(5768), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_heredoc_double, + STATE(6342), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432563,18 +431873,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261252] = 8, - ACTIONS(5530), 1, + [260522] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(5956), 1, - anon_sym_PIPE, + anon_sym_RBRACE, ACTIONS(5958), 1, - sym_quoted_content_i_bar, - STATE(5770), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_curly, + STATE(6358), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432582,18 +431892,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261279] = 8, - ACTIONS(5538), 1, + [260549] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(5960), 1, - anon_sym_SLASH, + anon_sym_DQUOTE, ACTIONS(5962), 1, - sym_quoted_content_i_slash, - STATE(5772), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_double, + STATE(5482), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432601,18 +431911,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261306] = 8, - ACTIONS(5462), 1, + [260576] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(5964), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(5966), 1, - sym_quoted_content_i_double, - STATE(5791), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_single, + STATE(5484), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432620,18 +431930,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261333] = 8, - ACTIONS(5474), 1, + [260603] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(5968), 1, - anon_sym_SQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(5970), 1, - sym_quoted_content_i_single, - STATE(5793), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_heredoc_single, + STATE(5486), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432639,18 +431949,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261360] = 8, - ACTIONS(5482), 1, + [260630] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(5972), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(5974), 1, - sym_quoted_content_i_heredoc_single, - STATE(5795), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_heredoc_double, + STATE(5488), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432658,18 +431968,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261387] = 8, - ACTIONS(5490), 1, + [260657] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(5976), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RBRACK, ACTIONS(5978), 1, - sym_quoted_content_i_heredoc_double, - STATE(5797), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_square, + STATE(6368), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432677,18 +431987,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261414] = 8, - ACTIONS(5498), 1, + [260684] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(5980), 1, - anon_sym_RPAREN, + anon_sym_GT, ACTIONS(5982), 1, - sym_quoted_content_i_parenthesis, - STATE(5807), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_angle, + STATE(6280), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432696,18 +432006,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261441] = 8, - ACTIONS(5506), 1, + [260711] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(5984), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(5986), 1, - sym_quoted_content_i_curly, - STATE(5809), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_parenthesis, + STATE(5447), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432715,18 +432025,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261468] = 8, - ACTIONS(5514), 1, + [260738] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(5988), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(5990), 1, - sym_quoted_content_i_square, - STATE(5811), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_curly, + STATE(5449), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432734,18 +432044,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261495] = 8, - ACTIONS(5522), 1, + [260765] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(5992), 1, - anon_sym_GT, + anon_sym_RBRACK, ACTIONS(5994), 1, - sym_quoted_content_i_angle, - STATE(5813), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_square, + STATE(5451), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432753,18 +432063,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261522] = 8, - ACTIONS(5530), 1, + [260792] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(5996), 1, - anon_sym_PIPE, + anon_sym_GT, ACTIONS(5998), 1, - sym_quoted_content_i_bar, - STATE(5815), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_angle, + STATE(5453), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432772,18 +432082,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261549] = 8, - ACTIONS(5538), 1, + [260819] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6000), 1, - anon_sym_SLASH, + anon_sym_PIPE, ACTIONS(6002), 1, - sym_quoted_content_i_slash, - STATE(5817), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_bar, + STATE(5455), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432791,18 +432101,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261576] = 8, - ACTIONS(5462), 1, + [260846] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6004), 1, anon_sym_DQUOTE, ACTIONS(6006), 1, sym_quoted_content_i_double, - STATE(5825), 1, + STATE(5598), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432810,18 +432120,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261603] = 8, - ACTIONS(5474), 1, + [260873] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6008), 1, anon_sym_SQUOTE, ACTIONS(6010), 1, sym_quoted_content_i_single, - STATE(5827), 1, + STATE(5600), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432829,18 +432139,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261630] = 8, - ACTIONS(5482), 1, + [260900] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6012), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6014), 1, - sym_quoted_content_i_heredoc_single, - STATE(5829), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_double, + STATE(5711), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432848,18 +432158,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261657] = 8, - ACTIONS(5490), 1, + [260927] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6016), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE, ACTIONS(6018), 1, - sym_quoted_content_i_heredoc_double, - STATE(5831), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_single, + STATE(5713), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432867,18 +432177,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261684] = 8, - ACTIONS(5498), 1, + [260954] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(6020), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6022), 1, - sym_quoted_content_i_parenthesis, - STATE(5837), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_heredoc_single, + STATE(5715), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432886,18 +432196,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261711] = 8, - ACTIONS(5506), 1, + [260981] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(6024), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6026), 1, - sym_quoted_content_i_curly, - STATE(5839), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_heredoc_double, + STATE(5717), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432905,18 +432215,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261738] = 8, - ACTIONS(5514), 1, + [261008] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(6028), 1, - anon_sym_RBRACK, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6030), 1, - sym_quoted_content_i_square, - STATE(5841), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_heredoc_single, + STATE(5602), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432924,18 +432234,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261765] = 8, - ACTIONS(5522), 1, + [261035] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6032), 1, - anon_sym_GT, + anon_sym_SQUOTE, ACTIONS(6034), 1, - sym_quoted_content_i_angle, - STATE(5843), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_single, + STATE(6268), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432943,18 +432253,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261792] = 8, - ACTIONS(5530), 1, + [261062] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(6036), 1, - anon_sym_PIPE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6038), 1, - sym_quoted_content_i_bar, - STATE(5845), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_heredoc_double, + STATE(5604), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432962,18 +432272,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261819] = 8, - ACTIONS(5538), 1, + [261089] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6040), 1, - anon_sym_SLASH, + anon_sym_DQUOTE, ACTIONS(6042), 1, - sym_quoted_content_i_slash, - STATE(5847), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_double, + STATE(5735), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -432981,18 +432291,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261846] = 8, - ACTIONS(5462), 1, + [261116] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(6044), 1, - anon_sym_DQUOTE, + anon_sym_RPAREN, ACTIONS(6046), 1, - sym_quoted_content_i_double, - STATE(5856), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_parenthesis, + STATE(6330), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433000,18 +432310,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261873] = 8, - ACTIONS(5474), 1, + [261143] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(6048), 1, - anon_sym_SQUOTE, + anon_sym_RBRACE, ACTIONS(6050), 1, - sym_quoted_content_i_single, - STATE(5858), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_curly, + STATE(6360), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433019,18 +432329,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261900] = 8, - ACTIONS(5482), 1, + [261170] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6052), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SLASH, ACTIONS(6054), 1, - sym_quoted_content_i_heredoc_single, - STATE(5860), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_slash, + STATE(5457), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433038,18 +432348,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261927] = 8, - ACTIONS(5490), 1, + [261197] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(6056), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RPAREN, ACTIONS(6058), 1, - sym_quoted_content_i_heredoc_double, - STATE(5862), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_parenthesis, + STATE(5510), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433057,18 +432367,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261954] = 8, - ACTIONS(5498), 1, + [261224] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(6060), 1, anon_sym_RPAREN, ACTIONS(6062), 1, sym_quoted_content_i_parenthesis, - STATE(5870), 1, + STATE(5742), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433076,18 +432386,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [261981] = 8, - ACTIONS(5506), 1, + [261251] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(6064), 1, anon_sym_RBRACE, ACTIONS(6066), 1, sym_quoted_content_i_curly, - STATE(5872), 1, + STATE(5744), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433095,18 +432405,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262008] = 8, - ACTIONS(5514), 1, + [261278] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6068), 1, anon_sym_RBRACK, ACTIONS(6070), 1, sym_quoted_content_i_square, - STATE(5874), 1, + STATE(5746), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433114,18 +432424,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262035] = 8, - ACTIONS(5522), 1, + [261305] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(6072), 1, anon_sym_GT, ACTIONS(6074), 1, sym_quoted_content_i_angle, - STATE(5876), 1, + STATE(5748), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433133,18 +432443,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262062] = 8, - ACTIONS(5530), 1, + [261332] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6076), 1, anon_sym_PIPE, ACTIONS(6078), 1, sym_quoted_content_i_bar, - STATE(5878), 1, + STATE(5750), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433152,18 +432462,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262089] = 8, - ACTIONS(5538), 1, + [261359] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6080), 1, anon_sym_SLASH, ACTIONS(6082), 1, sym_quoted_content_i_slash, - STATE(5880), 1, + STATE(5752), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433171,18 +432481,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262116] = 8, - ACTIONS(5462), 1, + [261386] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(6084), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, ACTIONS(6086), 1, - sym_quoted_content_i_double, - STATE(5891), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_curly, + STATE(5512), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433190,18 +432500,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262143] = 8, - ACTIONS(5474), 1, + [261413] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6088), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6090), 1, - sym_quoted_content_i_single, - STATE(5893), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_double, + STATE(5755), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433209,18 +432519,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262170] = 8, - ACTIONS(5538), 1, + [261440] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6092), 1, - anon_sym_SLASH, + anon_sym_SQUOTE, ACTIONS(6094), 1, - sym_quoted_content_i_slash, - STATE(6381), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_single, + STATE(5757), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433228,18 +432538,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262197] = 8, - ACTIONS(5490), 1, + [261467] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(6096), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6098), 1, - sym_quoted_content_i_heredoc_double, - STATE(5897), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_heredoc_single, + STATE(5766), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433247,18 +432557,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262224] = 8, - ACTIONS(5498), 1, + [261494] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6100), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(6102), 1, - sym_quoted_content_i_parenthesis, - STATE(5910), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_square, + STATE(5514), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433266,18 +432576,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262251] = 8, - ACTIONS(5506), 1, + [261521] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(6104), 1, - anon_sym_RBRACE, + anon_sym_GT, ACTIONS(6106), 1, - sym_quoted_content_i_curly, - STATE(5912), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_angle, + STATE(5516), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433285,18 +432595,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262278] = 8, - ACTIONS(5514), 1, + [261548] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6108), 1, anon_sym_RBRACK, ACTIONS(6110), 1, sym_quoted_content_i_square, - STATE(5914), 1, + STATE(6277), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433304,18 +432614,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262305] = 8, - ACTIONS(5522), 1, + [261575] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6112), 1, - anon_sym_GT, + anon_sym_PIPE, ACTIONS(6114), 1, - sym_quoted_content_i_angle, - STATE(5916), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_bar, + STATE(5518), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433323,18 +432633,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262332] = 8, - ACTIONS(5530), 1, + [261602] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6116), 1, - anon_sym_PIPE, + anon_sym_SLASH, ACTIONS(6118), 1, - sym_quoted_content_i_bar, - STATE(5918), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_slash, + STATE(5520), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433342,18 +432652,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262359] = 8, - ACTIONS(5538), 1, + [261629] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6120), 1, - anon_sym_SLASH, + anon_sym_RBRACK, ACTIONS(6122), 1, - sym_quoted_content_i_slash, - STATE(5920), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_square, + STATE(6362), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433361,18 +432671,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262386] = 8, - ACTIONS(5462), 1, + [261656] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(6124), 1, - anon_sym_DQUOTE, + anon_sym_GT, ACTIONS(6126), 1, - sym_quoted_content_i_double, - STATE(5931), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_angle, + STATE(6286), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433380,18 +432690,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262413] = 8, - ACTIONS(5474), 1, + [261683] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(6128), 1, - anon_sym_SQUOTE, + anon_sym_GT, ACTIONS(6130), 1, - sym_quoted_content_i_single, - STATE(5933), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_angle, + STATE(6370), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433399,18 +432709,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262440] = 8, - ACTIONS(5482), 1, + [261710] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6132), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_PIPE, ACTIONS(6134), 1, - sym_quoted_content_i_heredoc_single, - STATE(5935), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_bar, + STATE(6279), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433418,18 +432728,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262467] = 8, - ACTIONS(5490), 1, + [261737] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(6136), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6138), 1, - sym_quoted_content_i_heredoc_double, - STATE(5937), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_heredoc_single, + STATE(5476), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433437,18 +432747,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262494] = 8, - ACTIONS(5498), 1, + [261764] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6140), 1, - anon_sym_RPAREN, + anon_sym_SLASH, ACTIONS(6142), 1, - sym_quoted_content_i_parenthesis, - STATE(5946), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_slash, + STATE(5701), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433456,18 +432766,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262521] = 8, - ACTIONS(5506), 1, + [261791] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(6144), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(6146), 1, - sym_quoted_content_i_curly, - STATE(5948), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_parenthesis, + STATE(5623), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433475,18 +432785,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262548] = 8, - ACTIONS(5514), 1, + [261818] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(6148), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(6150), 1, - sym_quoted_content_i_square, - STATE(5950), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_curly, + STATE(5625), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433494,18 +432804,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262575] = 8, - ACTIONS(5522), 1, + [261845] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6152), 1, - anon_sym_GT, + anon_sym_RBRACK, ACTIONS(6154), 1, - sym_quoted_content_i_angle, - STATE(5952), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_square, + STATE(5627), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433513,18 +432823,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262602] = 8, - ACTIONS(5530), 1, + [261872] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(6156), 1, - anon_sym_PIPE, + anon_sym_GT, ACTIONS(6158), 1, - sym_quoted_content_i_bar, - STATE(5954), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_angle, + STATE(5629), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433532,18 +432842,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262629] = 8, - ACTIONS(5538), 1, + [261899] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6160), 1, - anon_sym_SLASH, + anon_sym_PIPE, ACTIONS(6162), 1, - sym_quoted_content_i_slash, - STATE(5956), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_bar, + STATE(5631), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433551,18 +432861,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262656] = 8, - ACTIONS(5462), 1, + [261926] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6164), 1, - anon_sym_DQUOTE, + anon_sym_SLASH, ACTIONS(6166), 1, - sym_quoted_content_i_double, - STATE(5965), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_slash, + STATE(5633), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433570,18 +432880,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262683] = 8, - ACTIONS(5474), 1, + [261953] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6168), 1, - anon_sym_SQUOTE, + anon_sym_PIPE, ACTIONS(6170), 1, - sym_quoted_content_i_single, - STATE(5967), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_bar, + STATE(6283), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433589,18 +432899,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262710] = 8, - ACTIONS(5482), 1, + [261980] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6172), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6174), 1, - sym_quoted_content_i_heredoc_single, - STATE(5969), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_double, + STATE(5708), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433608,18 +432918,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262737] = 8, - ACTIONS(5490), 1, + [262007] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6176), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE, ACTIONS(6178), 1, - sym_quoted_content_i_heredoc_double, - STATE(5971), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_double, + STATE(5772), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433627,18 +432937,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262764] = 8, - ACTIONS(5462), 1, + [262034] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6180), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(6182), 1, - sym_quoted_content_i_double, - STATE(6259), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_single, + STATE(5774), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433646,18 +432956,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262791] = 8, - ACTIONS(5474), 1, + [262061] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(6184), 1, - anon_sym_SQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6186), 1, - sym_quoted_content_i_single, - STATE(6261), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_heredoc_single, + STATE(5776), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433665,18 +432975,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262818] = 8, - ACTIONS(5498), 1, + [262088] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(6188), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6190), 1, - sym_quoted_content_i_parenthesis, - STATE(5977), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_heredoc_double, + STATE(5778), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433684,18 +432994,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262845] = 8, - ACTIONS(5506), 1, + [262115] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6192), 1, - anon_sym_RBRACE, + anon_sym_SLASH, ACTIONS(6194), 1, - sym_quoted_content_i_curly, - STATE(5979), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_slash, + STATE(6301), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433703,18 +433013,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262872] = 8, - ACTIONS(5514), 1, + [262142] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6196), 1, - anon_sym_RBRACK, + anon_sym_SQUOTE, ACTIONS(6198), 1, - sym_quoted_content_i_square, - STATE(5981), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_single, + STATE(5387), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433722,18 +433032,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262899] = 8, - ACTIONS(5522), 1, + [262169] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6200), 1, - anon_sym_GT, + anon_sym_RBRACK, ACTIONS(6202), 1, - sym_quoted_content_i_angle, - STATE(5983), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_square, + STATE(6026), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433741,18 +433051,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262926] = 8, - ACTIONS(5530), 1, + [262196] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6204), 1, - anon_sym_PIPE, + anon_sym_DQUOTE, ACTIONS(6206), 1, - sym_quoted_content_i_bar, - STATE(5985), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_double, + STATE(5779), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433760,18 +433070,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262953] = 8, - ACTIONS(5538), 1, + [262223] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(6208), 1, - anon_sym_SLASH, + anon_sym_RPAREN, ACTIONS(6210), 1, - sym_quoted_content_i_slash, - STATE(5987), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_parenthesis, + STATE(5788), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433779,18 +433089,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [262980] = 8, - ACTIONS(5482), 1, + [262250] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(6212), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RBRACE, ACTIONS(6214), 1, - sym_quoted_content_i_heredoc_single, - STATE(6263), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_curly, + STATE(5790), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433798,18 +433108,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263007] = 8, - ACTIONS(5462), 1, + [262277] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6216), 1, - anon_sym_DQUOTE, + anon_sym_RBRACK, ACTIONS(6218), 1, - sym_quoted_content_i_double, - STATE(5998), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_square, + STATE(5792), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433817,18 +433127,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263034] = 8, - ACTIONS(5474), 1, + [262304] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(6220), 1, - anon_sym_SQUOTE, + anon_sym_GT, ACTIONS(6222), 1, - sym_quoted_content_i_single, - STATE(6000), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_angle, + STATE(5794), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433836,18 +433146,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263061] = 8, - ACTIONS(5482), 1, + [262331] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6224), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_PIPE, ACTIONS(6226), 1, - sym_quoted_content_i_heredoc_single, - STATE(6002), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_bar, + STATE(5796), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433855,18 +433165,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263088] = 8, - ACTIONS(5490), 1, + [262358] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6228), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SLASH, ACTIONS(6230), 1, - sym_quoted_content_i_heredoc_double, - STATE(6004), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_slash, + STATE(5798), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433874,18 +433184,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263115] = 8, - ACTIONS(5490), 1, + [262385] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6232), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE, ACTIONS(6234), 1, - sym_quoted_content_i_heredoc_double, - STATE(6265), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_double, + STATE(6336), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433893,18 +433203,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263142] = 8, - ACTIONS(5462), 1, + [262412] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(6236), 1, - anon_sym_DQUOTE, + anon_sym_RPAREN, ACTIONS(6238), 1, - sym_quoted_content_i_double, - STATE(6012), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_parenthesis, + STATE(5922), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433912,18 +433222,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263169] = 8, - ACTIONS(5474), 1, + [262439] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6240), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6242), 1, - sym_quoted_content_i_single, - STATE(6014), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_double, + STATE(5810), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433931,18 +433241,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263196] = 8, - ACTIONS(5482), 1, + [262466] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6244), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SQUOTE, ACTIONS(6246), 1, - sym_quoted_content_i_heredoc_single, - STATE(6016), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_single, + STATE(5812), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433950,18 +433260,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263223] = 8, - ACTIONS(5490), 1, + [262493] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(6248), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6250), 1, - sym_quoted_content_i_heredoc_double, - STATE(6018), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_heredoc_single, + STATE(5814), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433969,18 +433279,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263250] = 8, - ACTIONS(5462), 1, + [262520] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(6252), 1, - anon_sym_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6254), 1, - sym_quoted_content_i_double, - STATE(6026), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_heredoc_double, + STATE(5816), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -433988,18 +433298,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263277] = 8, - ACTIONS(5474), 1, + [262547] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6256), 1, - anon_sym_SQUOTE, + anon_sym_PIPE, ACTIONS(6258), 1, - sym_quoted_content_i_single, - STATE(6028), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_bar, + STATE(5403), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434007,18 +433317,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263304] = 8, - ACTIONS(5482), 1, + [262574] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(6260), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6262), 1, sym_quoted_content_i_heredoc_single, - STATE(6030), 1, + STATE(5722), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434026,18 +433336,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263331] = 8, - ACTIONS(5490), 1, + [262601] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(6264), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_GT, ACTIONS(6266), 1, - sym_quoted_content_i_heredoc_double, - STATE(6032), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_angle, + STATE(6096), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434045,18 +433355,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263358] = 8, - ACTIONS(5462), 1, + [262628] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(6268), 1, - anon_sym_DQUOTE, + anon_sym_RPAREN, ACTIONS(6270), 1, - sym_quoted_content_i_double, - STATE(6041), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_parenthesis, + STATE(5827), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434064,18 +433374,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263385] = 8, - ACTIONS(5474), 1, + [262655] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(6272), 1, - anon_sym_SQUOTE, + anon_sym_RBRACE, ACTIONS(6274), 1, - sym_quoted_content_i_single, - STATE(6043), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_curly, + STATE(5928), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434083,18 +433393,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263412] = 8, - ACTIONS(5482), 1, + [262682] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6276), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RBRACK, ACTIONS(6278), 1, - sym_quoted_content_i_heredoc_single, - STATE(6045), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_square, + STATE(5930), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434102,18 +433412,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263439] = 8, - ACTIONS(5490), 1, + [262709] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(6280), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RBRACE, ACTIONS(6282), 1, - sym_quoted_content_i_heredoc_double, - STATE(6047), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_curly, + STATE(5829), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434121,18 +433431,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263466] = 8, - ACTIONS(5462), 1, + [262736] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6284), 1, - anon_sym_DQUOTE, + anon_sym_RBRACK, ACTIONS(6286), 1, - sym_quoted_content_i_double, - STATE(6057), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_square, + STATE(5831), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434140,18 +433450,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263493] = 8, - ACTIONS(5474), 1, + [262763] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(6288), 1, - anon_sym_SQUOTE, + anon_sym_GT, ACTIONS(6290), 1, - sym_quoted_content_i_single, - STATE(6059), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_angle, + STATE(5932), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434159,18 +433469,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263520] = 8, - ACTIONS(5482), 1, + [262790] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(6292), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_GT, ACTIONS(6294), 1, - sym_quoted_content_i_heredoc_single, - STATE(6061), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_angle, + STATE(5833), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434178,18 +433488,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263547] = 8, - ACTIONS(5490), 1, + [262817] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6296), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_PIPE, ACTIONS(6298), 1, - sym_quoted_content_i_heredoc_double, - STATE(6063), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_bar, + STATE(5952), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434197,18 +433507,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263574] = 8, - ACTIONS(5462), 1, + [262844] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6300), 1, - anon_sym_DQUOTE, + anon_sym_PIPE, ACTIONS(6302), 1, - sym_quoted_content_i_double, - STATE(6071), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_bar, + STATE(5835), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434216,18 +433526,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263601] = 8, - ACTIONS(5474), 1, + [262871] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6304), 1, - anon_sym_SQUOTE, + anon_sym_SLASH, ACTIONS(6306), 1, - sym_quoted_content_i_single, - STATE(6073), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_slash, + STATE(5837), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434235,18 +433545,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263628] = 8, - ACTIONS(5482), 1, + [262898] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6308), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SLASH, ACTIONS(6310), 1, - sym_quoted_content_i_heredoc_single, - STATE(6075), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_slash, + STATE(5405), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434254,18 +433564,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263655] = 8, - ACTIONS(5490), 1, + [262925] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6312), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE, ACTIONS(6314), 1, - sym_quoted_content_i_heredoc_double, - STATE(6077), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_double, + STATE(5846), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434273,18 +433583,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263682] = 8, - ACTIONS(5462), 1, + [262952] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6316), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(6318), 1, - sym_quoted_content_i_double, - STATE(6086), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_single, + STATE(5848), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434292,18 +433602,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263709] = 8, - ACTIONS(5474), 1, + [262979] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6320), 1, - anon_sym_SQUOTE, + anon_sym_SLASH, ACTIONS(6322), 1, - sym_quoted_content_i_single, - STATE(6088), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_slash, + STATE(5954), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434311,18 +433621,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263736] = 8, - ACTIONS(5482), 1, + [263006] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(6324), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6326), 1, sym_quoted_content_i_heredoc_single, - STATE(6090), 1, + STATE(5850), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434330,18 +433640,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263763] = 8, - ACTIONS(5490), 1, + [263033] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(6328), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6330), 1, sym_quoted_content_i_heredoc_double, - STATE(6092), 1, + STATE(5852), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434349,18 +433659,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263790] = 8, - ACTIONS(5462), 1, + [263060] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(6332), 1, - anon_sym_DQUOTE, + anon_sym_RPAREN, ACTIONS(6334), 1, - sym_quoted_content_i_double, - STATE(6102), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_parenthesis, + STATE(5389), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434368,18 +433678,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263817] = 8, - ACTIONS(5474), 1, + [263087] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(6336), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, ACTIONS(6338), 1, - sym_quoted_content_i_single, - STATE(6104), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_parenthesis, + STATE(6356), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434387,18 +433697,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263844] = 8, - ACTIONS(5482), 1, + [263114] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(6340), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RPAREN, ACTIONS(6342), 1, - sym_quoted_content_i_heredoc_single, - STATE(6106), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_parenthesis, + STATE(5859), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434406,18 +433716,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263871] = 8, - ACTIONS(5490), 1, + [263141] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(6344), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RBRACE, ACTIONS(6346), 1, - sym_quoted_content_i_heredoc_double, - STATE(6108), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_curly, + STATE(5861), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434425,18 +433735,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263898] = 8, - ACTIONS(5462), 1, + [263168] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6348), 1, - anon_sym_DQUOTE, + anon_sym_RBRACK, ACTIONS(6350), 1, - sym_quoted_content_i_double, - STATE(6114), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_square, + STATE(5863), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434444,18 +433754,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263925] = 8, - ACTIONS(5474), 1, + [263195] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(6352), 1, - anon_sym_SQUOTE, + anon_sym_GT, ACTIONS(6354), 1, - sym_quoted_content_i_single, - STATE(6116), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_angle, + STATE(5865), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434463,18 +433773,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263952] = 8, - ACTIONS(5482), 1, + [263222] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6356), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_PIPE, ACTIONS(6358), 1, - sym_quoted_content_i_heredoc_single, - STATE(6118), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_bar, + STATE(5867), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434482,18 +433792,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [263979] = 8, - ACTIONS(5490), 1, + [263249] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6360), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SLASH, ACTIONS(6362), 1, - sym_quoted_content_i_heredoc_double, - STATE(6120), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_slash, + STATE(5869), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434501,18 +433811,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264006] = 8, - ACTIONS(5462), 1, + [263276] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(6364), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, ACTIONS(6366), 1, - sym_quoted_content_i_double, - STATE(6130), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_curly, + STATE(6011), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434520,18 +433830,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264033] = 8, - ACTIONS(5474), 1, + [263303] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6368), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6370), 1, - sym_quoted_content_i_single, - STATE(6132), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_double, + STATE(5879), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434539,18 +433849,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264060] = 8, - ACTIONS(5482), 1, + [263330] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6372), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SQUOTE, ACTIONS(6374), 1, - sym_quoted_content_i_heredoc_single, - STATE(6134), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_single, + STATE(5881), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434558,18 +433868,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264087] = 8, - ACTIONS(5490), 1, + [263357] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(6376), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6378), 1, - sym_quoted_content_i_heredoc_double, - STATE(6136), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_heredoc_single, + STATE(5883), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434577,18 +433887,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264114] = 8, - ACTIONS(5462), 1, + [263384] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(6380), 1, - anon_sym_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6382), 1, - sym_quoted_content_i_double, - STATE(6146), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_heredoc_double, + STATE(5885), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434596,18 +433906,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264141] = 8, - ACTIONS(5474), 1, + [263411] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(6384), 1, - anon_sym_SQUOTE, + anon_sym_RBRACE, ACTIONS(6386), 1, - sym_quoted_content_i_single, - STATE(6148), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_curly, + STATE(5391), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434615,18 +433925,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264168] = 8, - ACTIONS(5482), 1, + [263438] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6388), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6390), 1, - sym_quoted_content_i_heredoc_single, - STATE(6150), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_double, + STATE(5524), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434634,18 +433944,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264195] = 8, - ACTIONS(5490), 1, + [263465] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(6392), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RPAREN, ACTIONS(6394), 1, - sym_quoted_content_i_heredoc_double, - STATE(6152), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_parenthesis, + STATE(5893), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434653,18 +433963,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264222] = 8, - ACTIONS(5462), 1, + [263492] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(6396), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, ACTIONS(6398), 1, - sym_quoted_content_i_double, - STATE(6162), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_curly, + STATE(5895), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434672,18 +433982,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264249] = 8, - ACTIONS(5474), 1, + [263519] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6400), 1, - anon_sym_SQUOTE, + anon_sym_RBRACK, ACTIONS(6402), 1, - sym_quoted_content_i_single, - STATE(6164), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_square, + STATE(5897), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434691,18 +434001,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264276] = 8, - ACTIONS(5482), 1, + [263546] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(6404), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_GT, ACTIONS(6406), 1, - sym_quoted_content_i_heredoc_single, - STATE(6166), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_angle, + STATE(5899), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434710,18 +434020,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264303] = 8, - ACTIONS(5490), 1, + [263573] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6408), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_PIPE, ACTIONS(6410), 1, - sym_quoted_content_i_heredoc_double, - STATE(6168), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_bar, + STATE(5901), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434729,18 +434039,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264330] = 8, - ACTIONS(5462), 1, + [263600] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6412), 1, - anon_sym_DQUOTE, + anon_sym_SLASH, ACTIONS(6414), 1, - sym_quoted_content_i_double, - STATE(6177), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_slash, + STATE(5903), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434748,18 +434058,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264357] = 8, - ACTIONS(5474), 1, + [263627] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6416), 1, anon_sym_SQUOTE, ACTIONS(6418), 1, sym_quoted_content_i_single, - STATE(6179), 1, + STATE(5532), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434767,18 +434077,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264384] = 8, - ACTIONS(5482), 1, + [263654] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6420), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6422), 1, - sym_quoted_content_i_heredoc_single, - STATE(6181), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + sym_quoted_content_i_double, + STATE(5915), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434786,18 +434096,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264411] = 8, - ACTIONS(5490), 1, + [263681] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6424), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE, ACTIONS(6426), 1, - sym_quoted_content_i_heredoc_double, - STATE(6183), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_single, + STATE(5917), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434805,18 +434115,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264438] = 8, - ACTIONS(5462), 1, + [263708] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(6428), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6430), 1, - sym_quoted_content_i_double, - STATE(6189), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_heredoc_single, + STATE(5919), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434824,18 +434134,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264465] = 8, - ACTIONS(5474), 1, + [263735] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(6432), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6434), 1, - sym_quoted_content_i_single, - STATE(6191), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_heredoc_double, + STATE(5921), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434843,18 +434153,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264492] = 8, - ACTIONS(5482), 1, + [263762] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(6436), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6438), 1, sym_quoted_content_i_heredoc_single, - STATE(6193), 1, + STATE(5534), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434862,18 +434172,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264519] = 8, - ACTIONS(5490), 1, + [263789] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6440), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RBRACK, ACTIONS(6442), 1, - sym_quoted_content_i_heredoc_double, - STATE(6195), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_square, + STATE(5393), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434881,18 +434191,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264546] = 8, - ACTIONS(5462), 1, + [263816] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(6444), 1, - anon_sym_DQUOTE, + anon_sym_GT, ACTIONS(6446), 1, - sym_quoted_content_i_double, - STATE(6201), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_angle, + STATE(5395), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434900,18 +434210,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264573] = 8, - ACTIONS(5474), 1, + [263843] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(6448), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, ACTIONS(6450), 1, - sym_quoted_content_i_single, - STATE(6203), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_parenthesis, + STATE(5935), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434919,18 +434229,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264600] = 8, - ACTIONS(5462), 1, + [263870] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(6452), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, ACTIONS(6454), 1, - sym_quoted_content_i_double, - STATE(6207), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_curly, + STATE(5937), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434938,18 +434248,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264627] = 8, - ACTIONS(5474), 1, + [263897] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6456), 1, - anon_sym_SQUOTE, + anon_sym_RBRACK, ACTIONS(6458), 1, - sym_quoted_content_i_single, - STATE(6209), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_square, + STATE(5939), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434957,18 +434267,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264654] = 8, - ACTIONS(5462), 1, + [263924] = 8, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(6460), 1, - anon_sym_DQUOTE, + anon_sym_GT, ACTIONS(6462), 1, - sym_quoted_content_i_double, - STATE(6213), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_angle, + STATE(5941), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434976,18 +434286,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264681] = 8, - ACTIONS(5474), 1, + [263951] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6464), 1, - anon_sym_SQUOTE, + anon_sym_PIPE, ACTIONS(6466), 1, - sym_quoted_content_i_single, - STATE(6215), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_bar, + STATE(6371), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -434995,18 +434305,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264708] = 8, - ACTIONS(5462), 1, + [263978] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6468), 1, - anon_sym_DQUOTE, + anon_sym_SLASH, ACTIONS(6470), 1, - sym_quoted_content_i_double, - STATE(6219), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_slash, + STATE(5945), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435014,18 +434324,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264735] = 8, - ACTIONS(5474), 1, + [264005] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(6472), 1, - anon_sym_SQUOTE, + anon_sym_PIPE, ACTIONS(6474), 1, - sym_quoted_content_i_single, - STATE(6221), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_bar, + STATE(5397), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435033,18 +434343,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264762] = 8, - ACTIONS(5462), 1, + [264032] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6476), 1, anon_sym_DQUOTE, ACTIONS(6478), 1, sym_quoted_content_i_double, - STATE(6227), 1, + STATE(5956), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435052,18 +434362,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264789] = 8, - ACTIONS(5474), 1, + [264059] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6480), 1, anon_sym_SQUOTE, ACTIONS(6482), 1, sym_quoted_content_i_single, - STATE(6229), 1, + STATE(5958), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435071,18 +434381,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264816] = 8, - ACTIONS(5462), 1, + [264086] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(6484), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6486), 1, - sym_quoted_content_i_double, - STATE(6235), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_heredoc_single, + STATE(5960), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435090,18 +434400,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264843] = 8, - ACTIONS(5474), 1, + [264113] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(6488), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6490), 1, - sym_quoted_content_i_single, - STATE(6237), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_heredoc_double, + STATE(5962), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435109,18 +434419,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264870] = 8, - ACTIONS(5462), 1, + [264140] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5868), 1, sym_escape_sequence, ACTIONS(6492), 1, - anon_sym_DQUOTE, + anon_sym_SLASH, ACTIONS(6494), 1, - sym_quoted_content_i_double, - STATE(6242), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + sym_quoted_content_i_slash, + STATE(5399), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435128,18 +434438,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264897] = 8, - ACTIONS(5474), 1, + [264167] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(6496), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6498), 1, - sym_quoted_content_i_single, - STATE(6244), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_heredoc_double, + STATE(5536), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435147,18 +434457,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264924] = 8, - ACTIONS(5462), 1, + [264194] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6500), 1, anon_sym_DQUOTE, ACTIONS(6502), 1, sym_quoted_content_i_double, - STATE(6250), 1, + STATE(5540), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435166,18 +434476,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264951] = 8, - ACTIONS(5474), 1, + [264221] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6504), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6506), 1, - sym_quoted_content_i_single, - STATE(6252), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + sym_quoted_content_i_double, + STATE(6196), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435185,18 +434495,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [264978] = 8, - ACTIONS(5498), 1, + [264248] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6508), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(6510), 1, - sym_quoted_content_i_parenthesis, - STATE(6287), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + sym_quoted_content_i_single, + STATE(6204), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435204,18 +434514,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265005] = 8, - ACTIONS(5506), 1, + [264275] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5496), 1, sym_escape_sequence, ACTIONS(6512), 1, - anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6514), 1, - sym_quoted_content_i_curly, - STATE(6289), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + sym_quoted_content_i_heredoc_single, + STATE(6212), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435223,18 +434533,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265032] = 8, - ACTIONS(5514), 1, + [264302] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(6516), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6518), 1, - sym_quoted_content_i_square, - STATE(6291), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + sym_quoted_content_i_heredoc_double, + STATE(6220), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435242,18 +434552,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265059] = 8, - ACTIONS(5522), 1, + [264329] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(6520), 1, - anon_sym_GT, + anon_sym_RPAREN, ACTIONS(6522), 1, - sym_quoted_content_i_angle, - STATE(6293), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + sym_quoted_content_i_parenthesis, + STATE(5968), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435261,18 +434571,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265086] = 8, - ACTIONS(5530), 1, + [264356] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5504), 1, sym_escape_sequence, ACTIONS(6524), 1, - anon_sym_PIPE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6526), 1, - sym_quoted_content_i_bar, - STATE(6295), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + sym_quoted_content_i_heredoc_double, + STATE(5561), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435280,18 +434590,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265113] = 8, - ACTIONS(5538), 1, + [264383] = 8, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(6528), 1, - anon_sym_SLASH, + anon_sym_RBRACE, ACTIONS(6530), 1, - sym_quoted_content_i_slash, - STATE(6297), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + sym_quoted_content_i_curly, + STATE(6275), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435299,18 +434609,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265140] = 8, - ACTIONS(5490), 1, + [264410] = 8, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5512), 1, sym_escape_sequence, ACTIONS(6532), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE, ACTIONS(6534), 1, - sym_quoted_content_i_heredoc_double, - STATE(5673), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + sym_quoted_content_i_double, + STATE(6109), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435318,18 +434628,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265167] = 8, - ACTIONS(5474), 1, + [264437] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, ACTIONS(6536), 1, anon_sym_SQUOTE, ACTIONS(6538), 1, sym_quoted_content_i_single, - STATE(6341), 1, + STATE(6124), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435337,18 +434647,56 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265194] = 8, - ACTIONS(5482), 1, + [264464] = 8, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(6540), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RBRACK, ACTIONS(6542), 1, + sym_quoted_content_i_square, + STATE(5972), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [264491] = 8, + ACTIONS(5806), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5808), 1, + sym_escape_sequence, + ACTIONS(6544), 1, + anon_sym_GT, + ACTIONS(6546), 1, + sym_quoted_content_i_angle, + STATE(5974), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [264518] = 8, + ACTIONS(5494), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5496), 1, + sym_escape_sequence, + ACTIONS(6548), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6550), 1, sym_quoted_content_i_heredoc_single, - STATE(6346), 1, + STATE(6126), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435356,18 +434704,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265221] = 8, - ACTIONS(5490), 1, + [264545] = 8, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6544), 1, + ACTIONS(6552), 1, + anon_sym_PIPE, + ACTIONS(6554), 1, + sym_quoted_content_i_bar, + STATE(5976), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [264572] = 8, + ACTIONS(5502), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5504), 1, + sym_escape_sequence, + ACTIONS(6556), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6546), 1, + ACTIONS(6558), 1, sym_quoted_content_i_heredoc_double, - STATE(6363), 1, + STATE(6140), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435375,18 +434742,56 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265248] = 8, - ACTIONS(5462), 1, + [264599] = 8, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6548), 1, + ACTIONS(6560), 1, + anon_sym_SLASH, + ACTIONS(6562), 1, + sym_quoted_content_i_slash, + STATE(5978), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [264626] = 8, + ACTIONS(5486), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5488), 1, + sym_escape_sequence, + ACTIONS(6564), 1, + anon_sym_SQUOTE, + ACTIONS(6566), 1, + sym_quoted_content_i_single, + STATE(5542), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [264653] = 8, + ACTIONS(5510), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5512), 1, + sym_escape_sequence, + ACTIONS(6568), 1, anon_sym_DQUOTE, - ACTIONS(6550), 1, + ACTIONS(6570), 1, sym_quoted_content_i_double, - STATE(6324), 1, + STATE(5986), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435394,18 +434799,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265275] = 8, - ACTIONS(5474), 1, + [264680] = 8, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6552), 1, + ACTIONS(6572), 1, anon_sym_SQUOTE, - ACTIONS(6554), 1, + ACTIONS(6574), 1, sym_quoted_content_i_single, - STATE(6327), 1, + STATE(5988), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435413,18 +434818,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265302] = 8, - ACTIONS(5482), 1, + [264707] = 8, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6556), 1, + ACTIONS(6576), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6558), 1, + ACTIONS(6578), 1, sym_quoted_content_i_heredoc_single, - STATE(6330), 1, + STATE(5990), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435432,18 +434837,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265329] = 8, - ACTIONS(5490), 1, + [264734] = 8, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6560), 1, + ACTIONS(6580), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6562), 1, + ACTIONS(6582), 1, sym_quoted_content_i_heredoc_double, - STATE(6333), 1, + STATE(5992), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435451,18 +434856,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265356] = 8, - ACTIONS(5498), 1, + [264761] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6564), 1, + ACTIONS(6584), 1, anon_sym_RPAREN, - ACTIONS(6566), 1, + ACTIONS(6586), 1, sym_quoted_content_i_parenthesis, - STATE(6370), 1, + STATE(6273), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435470,18 +434875,143 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265383] = 8, - ACTIONS(5506), 1, + [264788] = 8, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6568), 1, + ACTIONS(6588), 1, + anon_sym_RPAREN, + ACTIONS(6590), 1, + sym_quoted_content_i_parenthesis, + STATE(5635), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [264815] = 8, + ACTIONS(5502), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5504), 1, + sym_escape_sequence, + ACTIONS(6592), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6594), 1, + sym_quoted_content_i_heredoc_double, + STATE(5724), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [264842] = 8, + ACTIONS(5510), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5512), 1, + sym_escape_sequence, + ACTIONS(6596), 1, + anon_sym_DQUOTE, + ACTIONS(6598), 1, + sym_quoted_content_i_double, + STATE(5999), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [264869] = 8, + ACTIONS(5502), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5504), 1, + sym_escape_sequence, + ACTIONS(6600), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6602), 1, + sym_quoted_content_i_heredoc_double, + STATE(5768), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [264896] = 7, + ACTIONS(5486), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5488), 1, + sym_escape_sequence, + ACTIONS(6604), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [264920] = 7, + ACTIONS(5818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5820), 1, + sym_escape_sequence, + ACTIONS(6606), 1, + anon_sym_RPAREN, + STATE(5408), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [264944] = 7, + ACTIONS(5818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5820), 1, + sym_escape_sequence, + ACTIONS(6606), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [264968] = 7, + ACTIONS(5478), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5480), 1, + sym_escape_sequence, + ACTIONS(6608), 1, anon_sym_RBRACE, - ACTIONS(6570), 1, - sym_quoted_content_i_curly, - STATE(6372), 1, + STATE(5409), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435489,18 +435019,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265410] = 8, - ACTIONS(5514), 1, + [264992] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6572), 1, + ACTIONS(6608), 1, + anon_sym_RBRACE, + STATE(6335), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [265016] = 7, + ACTIONS(5798), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5800), 1, + sym_escape_sequence, + ACTIONS(6610), 1, anon_sym_RBRACK, - ACTIONS(6574), 1, - sym_quoted_content_i_square, - STATE(6374), 1, + STATE(5410), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435508,18 +435053,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265437] = 8, - ACTIONS(5522), 1, + [265040] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6576), 1, + ACTIONS(6610), 1, + anon_sym_RBRACK, + STATE(5401), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [265064] = 7, + ACTIONS(5806), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5808), 1, + sym_escape_sequence, + ACTIONS(6612), 1, anon_sym_GT, - ACTIONS(6578), 1, - sym_quoted_content_i_angle, - STATE(6376), 1, + STATE(5411), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435527,18 +435087,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265464] = 8, - ACTIONS(5530), 1, + [265088] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6580), 1, - anon_sym_PIPE, - ACTIONS(6582), 1, - sym_quoted_content_i_bar, - STATE(6378), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + ACTIONS(6612), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435546,18 +435104,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265491] = 8, - ACTIONS(5482), 1, + [265112] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6584), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6586), 1, - sym_quoted_content_i_heredoc_single, - STATE(5895), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + ACTIONS(6614), 1, + anon_sym_PIPE, + STATE(5412), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435565,16 +435121,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265518] = 7, - ACTIONS(5462), 1, + [265136] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6588), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(6614), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435582,16 +435138,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265542] = 7, - ACTIONS(5538), 1, + [265160] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6590), 1, + ACTIONS(6616), 1, anon_sym_SLASH, - STATE(5426), 1, + STATE(5413), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435599,16 +435155,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265566] = 7, - ACTIONS(5538), 1, + [265184] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6590), 1, + ACTIONS(6616), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435616,34 +435172,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265590] = 8, + [265208] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6592), 1, + ACTIONS(6618), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [265616] = 7, - ACTIONS(5522), 1, + [265234] = 7, + ACTIONS(6620), 1, + anon_sym_RBRACK, + ACTIONS(6622), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(6625), 1, sym_escape_sequence, - ACTIONS(6594), 1, - anon_sym_GT, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(5401), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435651,16 +435207,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265640] = 7, - ACTIONS(5530), 1, + [265258] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6596), 1, + ACTIONS(6628), 1, anon_sym_PIPE, - STATE(5486), 1, + STATE(5464), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435668,16 +435224,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265664] = 7, - ACTIONS(5530), 1, + [265282] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6596), 1, + ACTIONS(6628), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435685,31 +435241,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265688] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6598), 1, - anon_sym_COMMA, - STATE(5898), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + [265306] = 7, + ACTIONS(5866), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5868), 1, + sym_escape_sequence, + ACTIONS(6630), 1, + anon_sym_SLASH, + STATE(5466), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, + sym_interpolation, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(5172), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [265708] = 7, - ACTIONS(5538), 1, + sym_comment, + [265330] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6600), 1, + ACTIONS(6630), 1, anon_sym_SLASH, - STATE(5487), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435717,16 +435275,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265732] = 7, - ACTIONS(5538), 1, + [265354] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6600), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(6632), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435734,16 +435292,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265756] = 7, - ACTIONS(5498), 1, + [265378] = 7, + ACTIONS(6634), 1, + anon_sym_SQUOTE, + ACTIONS(6636), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(6639), 1, sym_escape_sequence, - ACTIONS(6602), 1, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [265402] = 7, + ACTIONS(5818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5820), 1, + sym_escape_sequence, + ACTIONS(6642), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435751,16 +435326,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265780] = 7, - ACTIONS(5506), 1, + [265426] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6604), 1, + ACTIONS(6644), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435768,16 +435343,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265804] = 7, - ACTIONS(5514), 1, + [265450] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6606), 1, + ACTIONS(6646), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435785,16 +435360,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265828] = 7, - ACTIONS(5522), 1, + [265474] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6608), 1, + ACTIONS(6648), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435802,16 +435377,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265852] = 7, - ACTIONS(5530), 1, + [265498] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6610), 1, + ACTIONS(6650), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435819,16 +435394,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265876] = 7, - ACTIONS(5538), 1, + [265522] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6612), 1, + ACTIONS(6652), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435836,34 +435411,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265900] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1665), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6320), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [265926] = 7, - ACTIONS(5498), 1, + [265546] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6614), 1, - anon_sym_RPAREN, - STATE(5446), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + ACTIONS(6654), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435871,16 +435428,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265950] = 7, - ACTIONS(5506), 1, + [265570] = 7, + ACTIONS(6656), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6658), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(6661), 1, sym_escape_sequence, - ACTIONS(6616), 1, - anon_sym_RBRACE, - STATE(6283), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435888,16 +435445,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265974] = 7, - ACTIONS(5514), 1, + [265594] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6618), 1, - anon_sym_RBRACK, - STATE(6173), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + ACTIONS(6664), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435905,16 +435462,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [265998] = 7, - ACTIONS(5522), 1, + [265618] = 7, + ACTIONS(6666), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6668), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(6671), 1, sym_escape_sequence, - ACTIONS(6620), 1, - anon_sym_GT, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435922,34 +435479,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266022] = 8, + [265642] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5452), 1, + STATE(5432), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [266048] = 7, - ACTIONS(5462), 1, + [265668] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6622), 1, + ACTIONS(6674), 1, anon_sym_DQUOTE, - STATE(5453), 1, + STATE(5433), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435957,16 +435514,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266072] = 7, - ACTIONS(5462), 1, + [265692] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6622), 1, + ACTIONS(6674), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435974,16 +435531,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266096] = 7, - ACTIONS(5474), 1, + [265716] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6624), 1, + ACTIONS(6676), 1, anon_sym_SQUOTE, - STATE(5455), 1, + STATE(5434), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -435991,16 +435548,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266120] = 7, - ACTIONS(5474), 1, + [265740] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6624), 1, + ACTIONS(6676), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436008,16 +435565,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266144] = 7, - ACTIONS(5482), 1, + [265764] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6626), 1, + ACTIONS(6678), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5456), 1, + STATE(5435), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436025,16 +435582,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266168] = 7, - ACTIONS(5482), 1, + [265788] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6626), 1, + ACTIONS(6678), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436042,16 +435599,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266192] = 7, - ACTIONS(5490), 1, + [265812] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6628), 1, + ACTIONS(6680), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5457), 1, + STATE(5436), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436059,16 +435616,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266216] = 7, - ACTIONS(5490), 1, + [265836] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6628), 1, + ACTIONS(6680), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436076,34 +435633,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266240] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(6630), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [266266] = 7, - ACTIONS(5474), 1, + [265860] = 7, + ACTIONS(6682), 1, + anon_sym_GT, + ACTIONS(6684), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(6687), 1, sym_escape_sequence, - ACTIONS(6632), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436111,102 +435650,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266290] = 8, + [265884] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(888), 1, + ACTIONS(868), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5464), 1, + STATE(5440), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [266316] = 7, - ACTIONS(5482), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, - ACTIONS(6634), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5553), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [266340] = 7, - ACTIONS(5482), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, - ACTIONS(6634), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [266364] = 7, - ACTIONS(6636), 1, - anon_sym_RPAREN, - ACTIONS(6638), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6641), 1, - sym_escape_sequence, - STATE(5446), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [266388] = 7, - ACTIONS(6644), 1, - anon_sym_SLASH, - ACTIONS(6646), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6649), 1, - sym_escape_sequence, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [266412] = 7, - ACTIONS(5490), 1, + [265910] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6652), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5563), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(6690), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436214,104 +435685,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266436] = 8, + [265934] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1769), 1, + ACTIONS(1759), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5468), 1, + STATE(5445), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [266462] = 7, - ACTIONS(5462), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, - sym_escape_sequence, - ACTIONS(6654), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [266486] = 8, + [265960] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1769), 1, + ACTIONS(1759), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(511), 1, + STATE(505), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [266512] = 8, + [265986] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1769), 1, + ACTIONS(1759), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [266538] = 7, - ACTIONS(5462), 1, + [266012] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6656), 1, + ACTIONS(6692), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [266562] = 7, - ACTIONS(5490), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, - sym_escape_sequence, - ACTIONS(6652), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436319,16 +435756,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266586] = 7, - ACTIONS(5474), 1, + [266036] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6658), 1, + ACTIONS(6694), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436336,16 +435773,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266610] = 7, - ACTIONS(5482), 1, + [266060] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6660), 1, + ACTIONS(6696), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436353,16 +435790,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266634] = 7, - ACTIONS(5490), 1, + [266084] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6662), 1, + ACTIONS(6698), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436370,209 +435807,177 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266658] = 7, - ACTIONS(5474), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, - sym_escape_sequence, - ACTIONS(6664), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [266108] = 8, + ACTIONS(5), 1, sym_comment, - [266682] = 7, - ACTIONS(5482), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, - ACTIONS(6666), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, + ACTIONS(722), 1, aux_sym_terminator_token1, - sym_comment, - [266706] = 7, - ACTIONS(5490), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, - sym_escape_sequence, - ACTIONS(6668), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, - sym_interpolation, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(6700), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [266134] = 8, + ACTIONS(5), 1, sym_comment, - [266730] = 7, - ACTIONS(5530), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, - sym_escape_sequence, - ACTIONS(6670), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, + ACTIONS(6702), 1, aux_sym_terminator_token1, - sym_comment, - [266754] = 7, - ACTIONS(5538), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, - sym_escape_sequence, - ACTIONS(6672), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, - sym_interpolation, + ACTIONS(6705), 1, + anon_sym_SEMI, + ACTIONS(6708), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [266778] = 8, + [266160] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6674), 1, + ACTIONS(6710), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5481), 1, + STATE(5458), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [266804] = 8, + [266186] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6674), 1, + ACTIONS(6710), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [266830] = 8, + [266212] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(9), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(11), 1, anon_sym_SEMI, - ACTIONS(898), 1, - anon_sym_RPAREN, - STATE(157), 1, + ACTIONS(1655), 1, + ts_builtin_sym_end, + STATE(491), 1, sym_terminator, - STATE(1384), 1, + STATE(1375), 1, aux_sym_terminator_repeat1, - STATE(5579), 1, - aux_sym_block_repeat1, + STATE(6244), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [266856] = 8, + [266238] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3146), 1, - anon_sym_end, - ACTIONS(5244), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(5247), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(1155), 1, + ACTIONS(6712), 1, + anon_sym_end, + STATE(157), 1, sym_terminator, - STATE(1388), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5466), 1, - aux_sym_source_repeat1, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [266264] = 7, + ACTIONS(5486), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5488), 1, + sym_escape_sequence, + ACTIONS(6714), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [266882] = 8, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [266288] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1781), 1, + ACTIONS(1797), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(485), 1, + STATE(414), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [266908] = 8, + [266314] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1781), 1, + ACTIONS(1797), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [266934] = 7, - ACTIONS(5498), 1, + [266340] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6676), 1, + ACTIONS(6716), 1, anon_sym_RPAREN, - STATE(5488), 1, + STATE(5467), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436580,16 +435985,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266958] = 7, - ACTIONS(5498), 1, + [266364] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6676), 1, + ACTIONS(6716), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436597,16 +436002,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [266982] = 7, - ACTIONS(5506), 1, + [266388] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6678), 1, + ACTIONS(6718), 1, anon_sym_RBRACE, - STATE(5489), 1, + STATE(5468), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436614,16 +436019,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267006] = 7, - ACTIONS(5506), 1, + [266412] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6678), 1, + ACTIONS(6718), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436631,16 +436036,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267030] = 7, - ACTIONS(5514), 1, + [266436] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6680), 1, + ACTIONS(6720), 1, anon_sym_RBRACK, - STATE(5490), 1, + STATE(5469), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436648,16 +436053,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267054] = 7, - ACTIONS(5514), 1, + [266460] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6680), 1, + ACTIONS(6720), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436665,16 +436070,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267078] = 7, - ACTIONS(5522), 1, + [266484] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6682), 1, + ACTIONS(6722), 1, anon_sym_GT, - STATE(5491), 1, + STATE(5470), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436682,16 +436087,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267102] = 7, - ACTIONS(5522), 1, + [266508] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6682), 1, + ACTIONS(6722), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436699,16 +436104,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267126] = 7, - ACTIONS(5530), 1, + [266532] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6684), 1, + ACTIONS(6724), 1, anon_sym_PIPE, - STATE(5492), 1, + STATE(5471), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436716,16 +436121,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267150] = 7, - ACTIONS(5530), 1, + [266556] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6684), 1, + ACTIONS(6724), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436733,16 +436138,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267174] = 7, - ACTIONS(5538), 1, + [266580] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6686), 1, + ACTIONS(6726), 1, anon_sym_SLASH, - STATE(5493), 1, + STATE(5472), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436750,16 +436155,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267198] = 7, - ACTIONS(5538), 1, + [266604] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6686), 1, + ACTIONS(6726), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436767,34 +436172,49 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267222] = 8, + [266628] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6688), 1, + ACTIONS(6728), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [267248] = 7, - ACTIONS(5498), 1, + [266654] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6730), 1, + anon_sym_COMMA, + STATE(6110), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(2709), 3, + anon_sym_RPAREN, + anon_sym_when, + anon_sym_DASH_GT, + [266674] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6690), 1, + ACTIONS(6732), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436802,16 +436222,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267272] = 7, - ACTIONS(5506), 1, + [266698] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6692), 1, + ACTIONS(6734), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436819,16 +436239,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267296] = 7, - ACTIONS(5514), 1, + [266722] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6694), 1, + ACTIONS(6736), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436836,16 +436256,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267320] = 7, - ACTIONS(5522), 1, + [266746] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6696), 1, + ACTIONS(6738), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436853,16 +436273,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267344] = 7, - ACTIONS(5530), 1, + [266770] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6698), 1, + ACTIONS(6740), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436870,16 +436290,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267368] = 7, - ACTIONS(5538), 1, + [266794] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6742), 1, + anon_sym_COMMA, + STATE(6287), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + ACTIONS(5148), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [266814] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6700), 1, + ACTIONS(6744), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436887,16 +436322,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267392] = 7, - ACTIONS(5498), 1, + [266838] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6702), 1, + ACTIONS(6746), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436904,16 +436339,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267416] = 7, - ACTIONS(5506), 1, + [266862] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6704), 1, + ACTIONS(6748), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436921,16 +436356,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267440] = 7, - ACTIONS(5514), 1, + [266886] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6706), 1, + ACTIONS(6750), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436938,16 +436373,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267464] = 7, - ACTIONS(5522), 1, + [266910] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6708), 1, + ACTIONS(6752), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436955,16 +436390,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267488] = 7, - ACTIONS(5530), 1, + [266934] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6710), 1, + ACTIONS(6754), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436972,16 +436407,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267512] = 7, - ACTIONS(5538), 1, + [266958] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6712), 1, + ACTIONS(6756), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [266982] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1763), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5857), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [267008] = 7, + ACTIONS(5494), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5496), 1, + sym_escape_sequence, + ACTIONS(6758), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5550), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -436989,16 +436459,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267536] = 7, - ACTIONS(5462), 1, + [267032] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(1763), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, + anon_sym_SEMI, + STATE(501), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [267058] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6714), 1, - anon_sym_DQUOTE, - STATE(5595), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(6758), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437006,16 +436494,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267560] = 7, - ACTIONS(5462), 1, + [267082] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1763), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6322), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [267108] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6714), 1, + ACTIONS(6760), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437023,16 +436529,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267584] = 7, - ACTIONS(5474), 1, + [267132] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6716), 1, - anon_sym_SQUOTE, - STATE(5596), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + ACTIONS(6762), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5552), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437040,34 +436546,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267608] = 8, + [267156] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(850), 1, + ACTIONS(890), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5509), 1, + STATE(5496), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [267634] = 7, - ACTIONS(5462), 1, + [267182] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6718), 1, + ACTIONS(6764), 1, anon_sym_DQUOTE, - STATE(5510), 1, + STATE(5497), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437075,16 +436581,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267658] = 7, - ACTIONS(5462), 1, + [267206] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6718), 1, + ACTIONS(6764), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437092,16 +436598,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267682] = 7, - ACTIONS(5474), 1, + [267230] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6720), 1, + ACTIONS(6766), 1, anon_sym_SQUOTE, - STATE(5512), 1, + STATE(5498), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437109,16 +436615,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267706] = 7, - ACTIONS(5474), 1, + [267254] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6720), 1, + ACTIONS(6766), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437126,16 +436632,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267730] = 7, - ACTIONS(5482), 1, + [267278] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6722), 1, + ACTIONS(6768), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5513), 1, + STATE(5499), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437143,16 +436649,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267754] = 7, - ACTIONS(5482), 1, + [267302] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6722), 1, + ACTIONS(6768), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437160,16 +436666,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267778] = 7, - ACTIONS(5490), 1, + [267326] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6724), 1, + ACTIONS(6770), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5514), 1, + STATE(5500), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437177,16 +436683,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267802] = 7, - ACTIONS(5490), 1, + [267350] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6724), 1, + ACTIONS(6770), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [267374] = 7, + ACTIONS(5818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5820), 1, + sym_escape_sequence, + ACTIONS(6772), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [267398] = 7, + ACTIONS(5478), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5480), 1, + sym_escape_sequence, + ACTIONS(6774), 1, + anon_sym_RBRACE, + STATE(6335), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437194,88 +436734,122 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267826] = 8, + [267422] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(852), 1, + ACTIONS(892), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5521), 1, + STATE(5505), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [267852] = 8, + [267448] = 7, + ACTIONS(6776), 1, + anon_sym_PIPE, + ACTIONS(6778), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6781), 1, + sym_escape_sequence, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [267472] = 7, + ACTIONS(5798), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5800), 1, + sym_escape_sequence, + ACTIONS(6784), 1, + anon_sym_RBRACK, + STATE(5401), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [267496] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1625), 1, + ACTIONS(1651), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5523), 1, + STATE(5508), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [267878] = 8, + [267522] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1625), 1, + ACTIONS(1651), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(432), 1, + STATE(433), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [267904] = 8, + [267548] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1625), 1, + ACTIONS(1651), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [267930] = 7, - ACTIONS(5462), 1, + [267574] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6726), 1, + ACTIONS(6786), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437283,34 +436857,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [267954] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(894), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(5609), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [267980] = 7, - ACTIONS(5474), 1, + [267598] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6728), 1, + ACTIONS(6788), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437318,16 +436874,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268004] = 7, - ACTIONS(5482), 1, + [267622] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6730), 1, + ACTIONS(6790), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437335,50 +436891,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268028] = 7, - ACTIONS(5490), 1, + [267646] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6732), 1, + ACTIONS(6792), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [268052] = 7, - ACTIONS(5474), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, - sym_escape_sequence, - ACTIONS(6716), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [268076] = 7, - ACTIONS(5482), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, - ACTIONS(6734), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5597), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437386,16 +436908,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268100] = 7, - ACTIONS(5482), 1, + [267670] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6734), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + ACTIONS(6794), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437403,16 +436925,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268124] = 7, - ACTIONS(5490), 1, + [267694] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6736), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5604), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(6796), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437420,16 +436942,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268148] = 7, - ACTIONS(5490), 1, + [267718] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6736), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(6798), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437437,88 +436959,105 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268172] = 8, + [267742] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6738), 1, + ACTIONS(6800), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5536), 1, + STATE(5521), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [268198] = 8, + [267768] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6738), 1, + ACTIONS(6800), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [268224] = 8, + [267794] = 7, + ACTIONS(5866), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5868), 1, + sym_escape_sequence, + ACTIONS(6802), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [267818] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1635), 1, + ACTIONS(1659), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(436), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [268250] = 8, + [267844] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1635), 1, + ACTIONS(1659), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [268276] = 7, - ACTIONS(5498), 1, + [267870] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6740), 1, + ACTIONS(6804), 1, anon_sym_RPAREN, - STATE(5539), 1, + STATE(5525), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437526,16 +437065,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268300] = 7, - ACTIONS(5498), 1, + [267894] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6740), 1, + ACTIONS(6804), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437543,16 +437082,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268324] = 7, - ACTIONS(5506), 1, + [267918] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6742), 1, + ACTIONS(6806), 1, anon_sym_RBRACE, - STATE(5540), 1, + STATE(5526), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437560,16 +437099,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268348] = 7, - ACTIONS(5506), 1, + [267942] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6742), 1, + ACTIONS(6806), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437577,16 +437116,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268372] = 7, - ACTIONS(5514), 1, + [267966] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6744), 1, + ACTIONS(6808), 1, anon_sym_RBRACK, - STATE(5541), 1, + STATE(5527), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437594,16 +437133,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268396] = 7, - ACTIONS(5514), 1, + [267990] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6744), 1, + ACTIONS(6808), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437611,16 +437150,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268420] = 7, - ACTIONS(5522), 1, + [268014] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6746), 1, + ACTIONS(6810), 1, anon_sym_GT, - STATE(5542), 1, + STATE(5528), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437628,16 +437167,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268444] = 7, - ACTIONS(5522), 1, + [268038] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6746), 1, + ACTIONS(6810), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437645,16 +437184,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268468] = 7, - ACTIONS(5530), 1, + [268062] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6748), 1, + ACTIONS(6812), 1, anon_sym_PIPE, - STATE(5543), 1, + STATE(5529), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437662,16 +437201,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268492] = 7, - ACTIONS(5530), 1, + [268086] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6748), 1, + ACTIONS(6812), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437679,16 +437218,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268516] = 7, - ACTIONS(5538), 1, + [268110] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6750), 1, + ACTIONS(6814), 1, anon_sym_SLASH, - STATE(5544), 1, + STATE(5530), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437696,51 +437235,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268540] = 7, - ACTIONS(5538), 1, + [268134] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6750), 1, + ACTIONS(6814), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [268564] = 8, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [268158] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(6816), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [268184] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6752), 1, - anon_sym_end, + ACTIONS(874), 1, + anon_sym_RPAREN, STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, + STATE(5584), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [268590] = 7, - ACTIONS(5482), 1, + [268210] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6754), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + ACTIONS(6818), 1, + anon_sym_DQUOTE, + STATE(5585), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437748,16 +437305,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268614] = 7, - ACTIONS(5490), 1, + [268234] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6756), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6225), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(6818), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437765,16 +437322,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268638] = 7, - ACTIONS(5498), 1, + [268258] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6758), 1, + ACTIONS(6820), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437782,16 +437339,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268662] = 7, - ACTIONS(5506), 1, + [268282] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6760), 1, + ACTIONS(6822), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437799,16 +437356,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268686] = 7, - ACTIONS(5514), 1, + [268306] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6762), 1, + ACTIONS(6824), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437816,16 +437373,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268710] = 7, - ACTIONS(5522), 1, + [268330] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6764), 1, + ACTIONS(6826), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437833,16 +437390,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268734] = 7, - ACTIONS(5530), 1, + [268354] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6766), 1, + ACTIONS(6828), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437850,16 +437407,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268758] = 7, - ACTIONS(5538), 1, + [268378] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6768), 1, + ACTIONS(6830), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437867,88 +437424,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268782] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1763), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(5863), 1, - aux_sym_block_repeat1, + [268402] = 7, + ACTIONS(5486), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5488), 1, + sym_escape_sequence, + ACTIONS(6832), 1, + anon_sym_SQUOTE, + STATE(5586), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [268808] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(1763), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, - anon_sym_SEMI, - STATE(461), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [268834] = 8, - ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(6770), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6366), 1, - aux_sym_anonymous_function_repeat1, + [268426] = 7, + ACTIONS(5486), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5488), 1, + sym_escape_sequence, + ACTIONS(6832), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [268860] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1763), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6320), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [268886] = 7, - ACTIONS(5462), 1, + sym_comment, + [268450] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6772), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(6834), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5588), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437956,16 +437475,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268910] = 7, - ACTIONS(5462), 1, + [268474] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6774), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(6834), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -437973,34 +437492,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268934] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(6770), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, + [268498] = 7, + ACTIONS(5502), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5504), 1, + sym_escape_sequence, + ACTIONS(6836), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5595), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [268960] = 7, - ACTIONS(5474), 1, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [268522] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6776), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + ACTIONS(6836), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438008,16 +437526,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [268984] = 7, - ACTIONS(5482), 1, + [268546] = 7, + ACTIONS(6838), 1, + anon_sym_SLASH, + ACTIONS(6840), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(6843), 1, sym_escape_sequence, - ACTIONS(6778), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438025,34 +437543,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269008] = 8, + [268570] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(864), 1, + ACTIONS(902), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5569), 1, + STATE(5555), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269034] = 7, - ACTIONS(5462), 1, + [268596] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6780), 1, + ACTIONS(6846), 1, anon_sym_DQUOTE, - STATE(5570), 1, + STATE(5556), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438060,16 +437578,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269058] = 7, - ACTIONS(5462), 1, + [268620] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6780), 1, + ACTIONS(6846), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438077,16 +437595,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269082] = 7, - ACTIONS(5474), 1, + [268644] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6782), 1, + ACTIONS(6848), 1, anon_sym_SQUOTE, - STATE(5571), 1, + STATE(5557), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438094,16 +437612,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269106] = 7, - ACTIONS(5474), 1, + [268668] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6782), 1, + ACTIONS(6848), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438111,16 +437629,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269130] = 7, - ACTIONS(5482), 1, + [268692] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6784), 1, + ACTIONS(6850), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5572), 1, + STATE(5558), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438128,16 +437646,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269154] = 7, - ACTIONS(5482), 1, + [268716] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6784), 1, + ACTIONS(6850), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438145,16 +437663,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269178] = 7, - ACTIONS(5490), 1, + [268740] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6786), 1, + ACTIONS(6852), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5573), 1, + STATE(5559), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438162,16 +437680,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269202] = 7, - ACTIONS(5490), 1, + [268764] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6786), 1, + ACTIONS(6852), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438179,16 +437697,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269226] = 7, - ACTIONS(5490), 1, + [268788] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6788), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(6854), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438196,124 +437714,157 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269250] = 8, + [268812] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(9), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(11), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1777), 1, - ts_builtin_sym_end, - STATE(476), 1, + ACTIONS(880), 1, + anon_sym_end, + STATE(157), 1, sym_terminator, - STATE(1390), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5854), 1, - aux_sym_source_repeat1, + STATE(5607), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269276] = 8, + [268838] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(862), 1, + ACTIONS(904), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5578), 1, + STATE(5564), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269302] = 8, - ACTIONS(5), 1, + [268864] = 7, + ACTIONS(5494), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5496), 1, + sym_escape_sequence, + ACTIONS(6856), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, sym_comment, - ACTIONS(770), 1, + [268888] = 7, + ACTIONS(5494), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5496), 1, + sym_escape_sequence, + ACTIONS(6858), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(902), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(5672), 1, - aux_sym_anonymous_function_repeat1, + sym_comment, + [268912] = 7, + ACTIONS(5502), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5504), 1, + sym_escape_sequence, + ACTIONS(6860), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269328] = 8, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [268936] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1669), 1, + ACTIONS(1701), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5581), 1, + STATE(5569), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269354] = 8, + [268962] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1669), 1, + ACTIONS(1701), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(453), 1, + STATE(454), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269380] = 8, + [268988] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1669), 1, + ACTIONS(1701), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269406] = 7, - ACTIONS(5462), 1, + [269014] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6790), 1, + ACTIONS(6862), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438321,16 +437872,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269430] = 7, - ACTIONS(5474), 1, + [269038] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6792), 1, + ACTIONS(6864), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438338,16 +437889,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269454] = 7, - ACTIONS(5482), 1, + [269062] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6794), 1, + ACTIONS(6866), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438355,16 +437906,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269478] = 7, - ACTIONS(5490), 1, + [269086] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6796), 1, + ACTIONS(6868), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438372,34 +437923,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269502] = 8, + [269110] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1653), 1, + ACTIONS(872), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5727), 1, + STATE(6189), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269528] = 7, - ACTIONS(6798), 1, - anon_sym_DQUOTE, - ACTIONS(6800), 1, + [269136] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(6803), 1, + ACTIONS(5504), 1, sym_escape_sequence, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(6762), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [269160] = 7, + ACTIONS(5502), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5504), 1, + sym_escape_sequence, + ACTIONS(6870), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5416), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438407,124 +437975,142 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269552] = 8, + [269184] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(1653), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(444), 1, + ACTIONS(6872), 1, + anon_sym_end, + STATE(157), 1, sym_terminator, - STATE(1388), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, + STATE(5582), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269578] = 8, + [269210] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6806), 1, + ACTIONS(6872), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5594), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269604] = 8, + [269236] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6806), 1, - anon_sym_end, + ACTIONS(1803), 1, + anon_sym_RPAREN, STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, + STATE(5618), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269630] = 8, + [269262] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1653), 1, - anon_sym_RPAREN, + ACTIONS(6874), 1, + anon_sym_end, STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, - aux_sym_block_repeat1, + STATE(5910), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269656] = 8, + [269288] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1681), 1, + ACTIONS(1803), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(456), 1, + STATE(438), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269682] = 8, + [269314] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(1709), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, + anon_sym_SEMI, + STATE(457), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [269340] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1681), 1, + ACTIONS(1709), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [269708] = 7, - ACTIONS(5498), 1, + [269366] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6808), 1, + ACTIONS(6876), 1, anon_sym_RPAREN, - STATE(5598), 1, + STATE(5589), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438532,16 +438118,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269732] = 7, - ACTIONS(5498), 1, + [269390] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6808), 1, + ACTIONS(6876), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438549,16 +438135,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269756] = 7, - ACTIONS(5506), 1, + [269414] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6810), 1, + ACTIONS(6878), 1, anon_sym_RBRACE, - STATE(5599), 1, + STATE(5590), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438566,16 +438152,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269780] = 7, - ACTIONS(5506), 1, + [269438] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6810), 1, + ACTIONS(6878), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438583,16 +438169,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269804] = 7, - ACTIONS(5514), 1, + [269462] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6812), 1, + ACTIONS(6880), 1, anon_sym_RBRACK, - STATE(5600), 1, + STATE(5591), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438600,16 +438186,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269828] = 7, - ACTIONS(5514), 1, + [269486] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6812), 1, + ACTIONS(6880), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438617,16 +438203,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269852] = 7, - ACTIONS(5522), 1, + [269510] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6814), 1, + ACTIONS(6882), 1, anon_sym_GT, - STATE(5601), 1, + STATE(5592), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438634,16 +438220,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269876] = 7, - ACTIONS(5522), 1, + [269534] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6814), 1, + ACTIONS(6882), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438651,16 +438237,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269900] = 7, - ACTIONS(5530), 1, + [269558] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6816), 1, + ACTIONS(6884), 1, anon_sym_PIPE, - STATE(5602), 1, + STATE(5593), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438668,16 +438254,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269924] = 7, - ACTIONS(5530), 1, + [269582] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6816), 1, + ACTIONS(6884), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438685,16 +438271,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269948] = 7, - ACTIONS(5538), 1, + [269606] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6818), 1, + ACTIONS(6886), 1, anon_sym_SLASH, - STATE(5603), 1, + STATE(5594), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438702,16 +438288,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269972] = 7, - ACTIONS(5538), 1, + [269630] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6818), 1, + ACTIONS(6886), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438719,34 +438305,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [269996] = 8, + [269654] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6820), 1, + ACTIONS(6888), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [269680] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(6874), 1, + anon_sym_end, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [270022] = 7, - ACTIONS(5462), 1, + [269706] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1803), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6322), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [269732] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6822), 1, + ACTIONS(6890), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438754,16 +438376,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270046] = 7, - ACTIONS(5474), 1, + [269756] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6824), 1, + ACTIONS(6892), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438771,16 +438393,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270070] = 7, - ACTIONS(5482), 1, + [269780] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym_terminator_token1, + ACTIONS(11), 1, + anon_sym_SEMI, + ACTIONS(1775), 1, + ts_builtin_sym_end, + STATE(423), 1, + sym_terminator, + STATE(1375), 1, + aux_sym_terminator_repeat1, + STATE(6244), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [269806] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6826), 1, + ACTIONS(6894), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438788,16 +438428,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270094] = 7, - ACTIONS(5498), 1, + [269830] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6828), 1, + ACTIONS(6896), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438805,16 +438445,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270118] = 7, - ACTIONS(5506), 1, + [269854] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6830), 1, + ACTIONS(6898), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438822,16 +438462,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270142] = 7, - ACTIONS(5514), 1, + [269878] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6832), 1, + ACTIONS(6900), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438839,16 +438479,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270166] = 7, - ACTIONS(5522), 1, + [269902] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6834), 1, + ACTIONS(6902), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438856,16 +438496,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270190] = 7, - ACTIONS(5530), 1, + [269926] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6836), 1, + ACTIONS(6904), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438873,16 +438513,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270214] = 7, - ACTIONS(5538), 1, + [269950] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6838), 1, + ACTIONS(6906), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438890,16 +438530,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270238] = 7, - ACTIONS(5490), 1, + [269974] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6840), 1, + ACTIONS(6908), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -438907,174 +438547,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270262] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(6842), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6313), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [270288] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(874), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(5551), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [270314] = 8, + [269998] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(872), 1, + ACTIONS(906), 1, anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(5658), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [270340] = 7, - ACTIONS(5462), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, - sym_escape_sequence, - ACTIONS(6844), 1, - anon_sym_DQUOTE, - STATE(5659), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [270364] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(6842), 1, - anon_sym_end, STATE(156), 1, sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [270390] = 7, - ACTIONS(5462), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, - sym_escape_sequence, - ACTIONS(6844), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [270414] = 7, - ACTIONS(5474), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, - sym_escape_sequence, - ACTIONS(6846), 1, - anon_sym_SQUOTE, - STATE(5667), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [270438] = 7, - ACTIONS(5474), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, - sym_escape_sequence, - ACTIONS(6846), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [270462] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(876), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5631), 1, + STATE(5610), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [270488] = 7, - ACTIONS(5462), 1, + [270024] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6848), 1, + ACTIONS(6910), 1, anon_sym_DQUOTE, - STATE(5632), 1, + STATE(5611), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439082,16 +438582,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270512] = 7, - ACTIONS(5462), 1, + [270048] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6848), 1, + ACTIONS(6910), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439099,16 +438599,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270536] = 7, - ACTIONS(5474), 1, + [270072] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6850), 1, + ACTIONS(6912), 1, anon_sym_SQUOTE, - STATE(5633), 1, + STATE(5612), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439116,16 +438616,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270560] = 7, - ACTIONS(5474), 1, + [270096] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6850), 1, + ACTIONS(6912), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439133,16 +438633,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270584] = 7, - ACTIONS(5482), 1, + [270120] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6852), 1, + ACTIONS(6914), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5634), 1, + STATE(5613), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439150,16 +438650,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270608] = 7, - ACTIONS(5482), 1, + [270144] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6852), 1, + ACTIONS(6914), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439167,16 +438667,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270632] = 7, - ACTIONS(5490), 1, + [270168] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6854), 1, + ACTIONS(6916), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5635), 1, + STATE(5614), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439184,16 +438684,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270656] = 7, - ACTIONS(5490), 1, + [270192] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6854), 1, + ACTIONS(6916), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439201,191 +438701,124 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270680] = 7, - ACTIONS(5482), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, - ACTIONS(6856), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5668), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [270704] = 7, - ACTIONS(5482), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, - ACTIONS(6856), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [270216] = 8, + ACTIONS(5), 1, sym_comment, - [270728] = 7, - ACTIONS(5490), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, - sym_escape_sequence, - ACTIONS(6858), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5669), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, + ACTIONS(722), 1, aux_sym_terminator_token1, - sym_comment, - [270752] = 7, - ACTIONS(5490), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, - sym_escape_sequence, - ACTIONS(6858), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, - sym_interpolation, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(908), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5616), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [270776] = 8, + [270242] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(878), 1, + ACTIONS(6918), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5639), 1, + STATE(5663), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [270802] = 8, + [270268] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3146), 1, - anon_sym_RPAREN, - ACTIONS(5244), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(5247), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(863), 1, + ACTIONS(6918), 1, + anon_sym_end, + STATE(157), 1, sym_terminator, - STATE(1388), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5627), 1, - aux_sym_source_repeat1, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [270828] = 8, + [270294] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1711), 1, + ACTIONS(1743), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5642), 1, + STATE(5621), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [270854] = 8, + [270320] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1711), 1, + ACTIONS(1743), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(473), 1, + STATE(474), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [270880] = 7, - ACTIONS(5538), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, - sym_escape_sequence, - ACTIONS(6860), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [270904] = 8, + [270346] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1711), 1, + ACTIONS(1743), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [270930] = 7, - ACTIONS(5462), 1, + [270372] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6862), 1, + ACTIONS(6920), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439393,16 +438826,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270954] = 7, - ACTIONS(5474), 1, + [270396] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6864), 1, + ACTIONS(6922), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439410,16 +438843,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [270978] = 7, - ACTIONS(5482), 1, + [270420] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6866), 1, + ACTIONS(6924), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439427,16 +438860,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271002] = 7, - ACTIONS(5490), 1, + [270444] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6868), 1, + ACTIONS(6926), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439444,139 +438877,141 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271026] = 8, + [270468] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(9), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(11), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1575), 1, - ts_builtin_sym_end, - STATE(508), 1, + ACTIONS(6928), 1, + anon_sym_end, + STATE(157), 1, sym_terminator, - STATE(1390), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5854), 1, - aux_sym_source_repeat1, + STATE(5634), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [271052] = 8, + [270494] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(884), 1, + ACTIONS(6928), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5692), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [271078] = 8, + [270520] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(1669), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(6870), 1, - anon_sym_end, - STATE(156), 1, + STATE(456), 1, sym_terminator, - STATE(1384), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5655), 1, - aux_sym_anonymous_function_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [271104] = 8, + [270546] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6870), 1, - anon_sym_end, + ACTIONS(1669), 1, + anon_sym_RPAREN, STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, + STATE(6322), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [271130] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6872), 1, - anon_sym_COMMA, - STATE(6339), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + [270572] = 7, + ACTIONS(5818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5820), 1, + sym_escape_sequence, + ACTIONS(6930), 1, + anon_sym_RPAREN, + STATE(5671), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, + sym_interpolation, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(2732), 3, - anon_sym_RPAREN, - anon_sym_when, - anon_sym_DASH_GT, - [271150] = 8, + sym_comment, + [270596] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1717), 1, + ACTIONS(1749), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(475), 1, + STATE(476), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [271176] = 8, + [270622] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1717), 1, + ACTIONS(1749), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [271202] = 7, - ACTIONS(5498), 1, + [270648] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6874), 1, + ACTIONS(6932), 1, anon_sym_RPAREN, - STATE(5660), 1, + STATE(5643), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439584,16 +439019,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271226] = 7, - ACTIONS(5498), 1, + [270672] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6874), 1, + ACTIONS(6932), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439601,16 +439036,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271250] = 7, - ACTIONS(5506), 1, + [270696] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6876), 1, + ACTIONS(6934), 1, anon_sym_RBRACE, - STATE(5661), 1, + STATE(5644), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439618,16 +439053,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271274] = 7, - ACTIONS(5506), 1, + [270720] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6876), 1, + ACTIONS(6934), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439635,16 +439070,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271298] = 7, - ACTIONS(5514), 1, + [270744] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6878), 1, + ACTIONS(6936), 1, anon_sym_RBRACK, - STATE(5662), 1, + STATE(5645), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439652,16 +439087,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271322] = 7, - ACTIONS(5514), 1, + [270768] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6878), 1, + ACTIONS(6936), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439669,16 +439104,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271346] = 7, - ACTIONS(5522), 1, + [270792] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6880), 1, + ACTIONS(6938), 1, anon_sym_GT, - STATE(5663), 1, + STATE(5646), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439686,16 +439121,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271370] = 7, - ACTIONS(5522), 1, + [270816] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6880), 1, + ACTIONS(6938), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439703,16 +439138,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271394] = 7, - ACTIONS(5530), 1, + [270840] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6882), 1, + ACTIONS(6940), 1, anon_sym_PIPE, - STATE(5664), 1, + STATE(5647), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439720,16 +439155,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271418] = 7, - ACTIONS(5530), 1, + [270864] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6882), 1, + ACTIONS(6940), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439737,16 +439172,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271442] = 7, - ACTIONS(5538), 1, + [270888] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6884), 1, + ACTIONS(6942), 1, anon_sym_SLASH, - STATE(5665), 1, + STATE(5648), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439754,16 +439189,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271466] = 7, - ACTIONS(5538), 1, + [270912] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6884), 1, + ACTIONS(6942), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439771,88 +439206,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271490] = 8, + [270936] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6886), 1, + ACTIONS(6944), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [271516] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1707), 1, + [270962] = 7, + ACTIONS(5818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5820), 1, + sym_escape_sequence, + ACTIONS(6930), 1, anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(5717), 1, - aux_sym_block_repeat1, + STATE(6314), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [271542] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(1707), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, - anon_sym_SEMI, - STATE(486), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [271568] = 8, - ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1707), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6320), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [271594] = 7, - ACTIONS(5462), 1, + [270986] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6888), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(6946), 1, + anon_sym_RBRACE, + STATE(5672), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439860,16 +439258,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271618] = 7, - ACTIONS(5498), 1, + [271010] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6890), 1, - anon_sym_RPAREN, - STATE(5446), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + ACTIONS(6946), 1, + anon_sym_RBRACE, + STATE(6335), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439877,16 +439275,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271642] = 7, - ACTIONS(5506), 1, + [271034] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6892), 1, - anon_sym_RBRACE, - STATE(6283), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(6948), 1, + anon_sym_RBRACK, + STATE(5675), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439894,16 +439292,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271666] = 7, - ACTIONS(5514), 1, + [271058] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6894), 1, + ACTIONS(6948), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439911,16 +439309,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271690] = 7, - ACTIONS(5522), 1, + [271082] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6896), 1, + ACTIONS(6950), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5676), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439928,16 +439326,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271714] = 7, - ACTIONS(5530), 1, + [271106] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6898), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + ACTIONS(6950), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439945,16 +439343,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271738] = 7, - ACTIONS(5538), 1, + [271130] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6900), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(6952), 1, + anon_sym_PIPE, + STATE(5677), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439962,16 +439360,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271762] = 7, - ACTIONS(5498), 1, + [271154] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6902), 1, + ACTIONS(6954), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439979,16 +439377,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271786] = 7, - ACTIONS(5474), 1, + [271178] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6904), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + ACTIONS(6956), 1, + anon_sym_RBRACE, + STATE(6335), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -439996,16 +439394,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271810] = 7, - ACTIONS(5482), 1, + [271202] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6906), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + ACTIONS(6958), 1, + anon_sym_RBRACK, + STATE(5401), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440013,16 +439411,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271834] = 7, - ACTIONS(5490), 1, + [271226] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6908), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(6960), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440030,16 +439428,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271858] = 7, - ACTIONS(5474), 1, + [271250] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6910), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + ACTIONS(6962), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440047,52 +439445,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271882] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(6912), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(5868), 1, - aux_sym_anonymous_function_repeat1, + [271274] = 7, + ACTIONS(5866), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5868), 1, + sym_escape_sequence, + ACTIONS(6964), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [271908] = 8, - ACTIONS(5), 1, + ACTIONS(5), 2, + aux_sym_terminator_token1, sym_comment, - ACTIONS(770), 1, + [271298] = 7, + ACTIONS(5826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5828), 1, + sym_escape_sequence, + ACTIONS(6952), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(6912), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, + sym_comment, + [271322] = 7, + ACTIONS(5866), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5868), 1, + sym_escape_sequence, + ACTIONS(6966), 1, + anon_sym_SLASH, + STATE(5693), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [271934] = 7, - ACTIONS(5490), 1, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [271346] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6756), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(6966), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440100,34 +439513,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [271958] = 8, + [271370] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(3150), 1, + anon_sym_RPAREN, + ACTIONS(5268), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(5271), 1, anon_sym_SEMI, - ACTIONS(890), 1, + STATE(883), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(5652), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [271396] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(910), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5687), 1, + STATE(5666), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [271984] = 7, - ACTIONS(5462), 1, + [271422] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6914), 1, + ACTIONS(6968), 1, anon_sym_DQUOTE, - STATE(5688), 1, + STATE(5667), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440135,16 +439566,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272008] = 7, - ACTIONS(5462), 1, + [271446] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6914), 1, + ACTIONS(6968), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440152,16 +439583,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272032] = 7, - ACTIONS(5474), 1, + [271470] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6916), 1, + ACTIONS(6970), 1, anon_sym_SQUOTE, - STATE(5689), 1, + STATE(5668), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440169,16 +439600,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272056] = 7, - ACTIONS(5474), 1, + [271494] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6916), 1, + ACTIONS(6970), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440186,16 +439617,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272080] = 7, - ACTIONS(5482), 1, + [271518] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6918), 1, + ACTIONS(6972), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5690), 1, + STATE(5669), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440203,16 +439634,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272104] = 7, - ACTIONS(5482), 1, + [271542] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6918), 1, + ACTIONS(6972), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440220,16 +439651,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272128] = 7, - ACTIONS(5490), 1, + [271566] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6920), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5691), 1, + STATE(5670), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440237,16 +439668,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272152] = 7, - ACTIONS(5490), 1, + [271590] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6920), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440254,106 +439685,106 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272176] = 8, + [271614] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(892), 1, + ACTIONS(912), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5694), 1, + STATE(5674), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [272202] = 8, + [271640] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1749), 1, - anon_sym_RPAREN, + ACTIONS(6976), 1, + anon_sym_end, STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5696), 1, - aux_sym_block_repeat1, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [272228] = 8, + [271666] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(1749), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(492), 1, + ACTIONS(1773), 1, + anon_sym_RPAREN, + STATE(156), 1, sym_terminator, - STATE(1388), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, + STATE(5679), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [272254] = 8, + [271692] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(1773), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(6922), 1, - anon_sym_end, - STATE(156), 1, + STATE(493), 1, sym_terminator, - STATE(1384), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5774), 1, - aux_sym_anonymous_function_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [272280] = 8, + [271718] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1749), 1, + ACTIONS(1773), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [272306] = 7, - ACTIONS(5462), 1, + [271744] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6924), 1, + ACTIONS(6978), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440361,16 +439792,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272330] = 7, - ACTIONS(5474), 1, + [271768] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6926), 1, + ACTIONS(6980), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440378,16 +439809,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272354] = 7, - ACTIONS(5482), 1, + [271792] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6928), 1, + ACTIONS(6982), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440395,16 +439826,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272378] = 7, - ACTIONS(5490), 1, + [271816] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6930), 1, + ACTIONS(6984), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440412,106 +439843,173 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272402] = 8, + [271840] = 7, + ACTIONS(5818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5820), 1, + sym_escape_sequence, + ACTIONS(6986), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [271864] = 7, + ACTIONS(5478), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5480), 1, + sym_escape_sequence, + ACTIONS(6988), 1, + anon_sym_RBRACE, + STATE(6335), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [271888] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6922), 1, + ACTIONS(6990), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, + STATE(5692), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [272428] = 8, + [271914] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6932), 1, + ACTIONS(6990), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5709), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [272454] = 8, - ACTIONS(5), 1, + [271940] = 7, + ACTIONS(5798), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5800), 1, + sym_escape_sequence, + ACTIONS(6992), 1, + anon_sym_RBRACK, + STATE(5401), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, sym_comment, - ACTIONS(770), 1, + [271964] = 7, + ACTIONS(5806), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5808), 1, + sym_escape_sequence, + ACTIONS(6994), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(6932), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, + sym_comment, + [271988] = 7, + ACTIONS(5826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5828), 1, + sym_escape_sequence, + ACTIONS(6996), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [272480] = 8, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [272012] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1751), 1, + ACTIONS(1779), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(494), 1, + STATE(495), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [272506] = 8, + [272038] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1751), 1, + ACTIONS(1779), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [272532] = 7, - ACTIONS(5498), 1, + [272064] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6934), 1, + ACTIONS(6998), 1, anon_sym_RPAREN, - STATE(5711), 1, + STATE(5695), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440519,16 +440017,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272556] = 7, - ACTIONS(5498), 1, + [272088] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6934), 1, + ACTIONS(6998), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440536,16 +440034,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272580] = 7, - ACTIONS(5506), 1, + [272112] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6936), 1, + ACTIONS(7000), 1, anon_sym_RBRACE, - STATE(5712), 1, + STATE(5696), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440553,16 +440051,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272604] = 7, - ACTIONS(5506), 1, + [272136] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6936), 1, + ACTIONS(7000), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440570,16 +440068,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272628] = 7, - ACTIONS(5514), 1, + [272160] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6938), 1, + ACTIONS(7002), 1, anon_sym_RBRACK, - STATE(5713), 1, + STATE(5697), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440587,16 +440085,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272652] = 7, - ACTIONS(5514), 1, + [272184] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6938), 1, + ACTIONS(7002), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440604,16 +440102,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272676] = 7, - ACTIONS(5522), 1, + [272208] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6940), 1, + ACTIONS(7004), 1, anon_sym_GT, - STATE(5714), 1, + STATE(5698), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440621,16 +440119,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272700] = 7, - ACTIONS(5522), 1, + [272232] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6940), 1, + ACTIONS(7004), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440638,16 +440136,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272724] = 7, - ACTIONS(5530), 1, + [272256] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6942), 1, + ACTIONS(7006), 1, anon_sym_PIPE, - STATE(5715), 1, + STATE(5699), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440655,16 +440153,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272748] = 7, - ACTIONS(5530), 1, + [272280] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6942), 1, + ACTIONS(7006), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440672,16 +440170,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272772] = 7, - ACTIONS(5538), 1, + [272304] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6944), 1, + ACTIONS(7008), 1, anon_sym_SLASH, - STATE(5716), 1, + STATE(5700), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440689,16 +440187,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272796] = 7, - ACTIONS(5538), 1, + [272328] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6944), 1, + ACTIONS(7008), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440706,52 +440204,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272820] = 8, + [272352] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(6946), 1, + ACTIONS(7010), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [272846] = 8, + [272378] = 7, + ACTIONS(5866), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5868), 1, + sym_escape_sequence, + ACTIONS(7012), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [272402] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(1739), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(495), 1, + ACTIONS(894), 1, + anon_sym_RPAREN, + STATE(156), 1, sym_terminator, - STATE(1388), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, + STATE(6245), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [272872] = 7, - ACTIONS(5498), 1, + [272428] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(6948), 1, + ACTIONS(7014), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440759,16 +440274,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272896] = 7, - ACTIONS(5506), 1, + [272452] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(6950), 1, + ACTIONS(7016), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440776,16 +440291,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272920] = 7, - ACTIONS(5514), 1, + [272476] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(6952), 1, + ACTIONS(7018), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440793,16 +440308,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272944] = 7, - ACTIONS(5522), 1, + [272500] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(6954), 1, + ACTIONS(7020), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440810,16 +440325,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272968] = 7, - ACTIONS(5530), 1, + [272524] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6956), 1, + ACTIONS(7022), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440827,68 +440342,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [272992] = 7, - ACTIONS(5538), 1, + [272548] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6958), 1, + ACTIONS(7024), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [273016] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1739), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6320), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [273042] = 7, - ACTIONS(5498), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, - sym_escape_sequence, - ACTIONS(6960), 1, - anon_sym_RPAREN, - STATE(5783), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [273066] = 7, - ACTIONS(5498), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, - sym_escape_sequence, - ACTIONS(6960), 1, - anon_sym_RPAREN, - STATE(5446), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440896,16 +440359,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273090] = 7, - ACTIONS(5506), 1, + [272572] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6962), 1, - anon_sym_RBRACE, - STATE(5784), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(7026), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440913,16 +440376,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273114] = 7, - ACTIONS(5506), 1, + [272596] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(6962), 1, - anon_sym_RBRACE, - STATE(6283), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(7028), 1, + anon_sym_PIPE, + STATE(5429), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440930,67 +440393,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273138] = 7, - ACTIONS(5514), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, - sym_escape_sequence, - ACTIONS(6964), 1, - anon_sym_RBRACK, - STATE(5785), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [272620] = 8, + ACTIONS(5), 1, sym_comment, - [273162] = 7, - ACTIONS(5514), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, - sym_escape_sequence, - ACTIONS(6964), 1, - anon_sym_RBRACK, - STATE(6173), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, + ACTIONS(722), 1, aux_sym_terminator_token1, - sym_comment, - [273186] = 7, - ACTIONS(5522), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, - sym_escape_sequence, - ACTIONS(6966), 1, - anon_sym_GT, - STATE(5798), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, - sym_interpolation, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(7030), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5442), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [273210] = 7, - ACTIONS(5522), 1, + [272646] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6966), 1, - anon_sym_GT, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + ACTIONS(7032), 1, + anon_sym_DQUOTE, + STATE(6246), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -440998,103 +440428,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273234] = 8, + [272670] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(1661), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(448), 1, + ACTIONS(7030), 1, + anon_sym_end, + STATE(157), 1, sym_terminator, - STATE(1388), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [273260] = 8, + [272696] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1661), 1, + ACTIONS(922), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(5477), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [273286] = 7, - ACTIONS(5498), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, - sym_escape_sequence, - ACTIONS(6968), 1, - anon_sym_RPAREN, - STATE(5905), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [273310] = 7, - ACTIONS(5530), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, - sym_escape_sequence, - ACTIONS(6970), 1, - anon_sym_PIPE, - STATE(5799), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [273334] = 7, - ACTIONS(5530), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, - sym_escape_sequence, - ACTIONS(6970), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [273358] = 7, - ACTIONS(5538), 1, + [272722] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6972), 1, - anon_sym_SLASH, - STATE(5800), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(6870), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441102,16 +440481,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273382] = 7, - ACTIONS(5538), 1, + [272746] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, - sym_escape_sequence, - ACTIONS(6972), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(5512), 1, + sym_escape_sequence, + ACTIONS(7032), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441119,34 +440498,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273406] = 8, + [272770] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(896), 1, + ACTIONS(918), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5746), 1, + STATE(5727), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [273432] = 7, - ACTIONS(5462), 1, + [272796] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6974), 1, + ACTIONS(7034), 1, anon_sym_DQUOTE, - STATE(5747), 1, + STATE(5728), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441154,16 +440533,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273456] = 7, - ACTIONS(5462), 1, + [272820] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6974), 1, + ACTIONS(7034), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441171,16 +440550,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273480] = 7, - ACTIONS(5474), 1, + [272844] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6976), 1, + ACTIONS(7036), 1, anon_sym_SQUOTE, - STATE(5748), 1, + STATE(5729), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441188,16 +440567,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273504] = 7, - ACTIONS(5474), 1, + [272868] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6976), 1, + ACTIONS(7036), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441205,16 +440584,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273528] = 7, - ACTIONS(5482), 1, + [272892] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6978), 1, + ACTIONS(7038), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5749), 1, + STATE(5730), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441222,16 +440601,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273552] = 7, - ACTIONS(5482), 1, + [272916] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6978), 1, + ACTIONS(7038), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441239,16 +440618,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273576] = 7, - ACTIONS(5490), 1, + [272940] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6980), 1, + ACTIONS(7040), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5750), 1, + STATE(5731), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441256,16 +440635,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273600] = 7, - ACTIONS(5490), 1, + [272964] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6980), 1, + ACTIONS(7040), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441273,103 +440652,191 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273624] = 8, + [272988] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(900), 1, + ACTIONS(870), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5758), 1, + STATE(5705), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [273650] = 5, + [273014] = 7, + ACTIONS(5486), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5488), 1, + sym_escape_sequence, + ACTIONS(6604), 1, + anon_sym_SQUOTE, + STATE(6249), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [273038] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(6984), 1, - anon_sym_COMMA, - STATE(5418), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(920), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5737), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [273064] = 7, + ACTIONS(5494), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5496), 1, + sym_escape_sequence, + ACTIONS(7042), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6252), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, + sym_interpolation, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(6982), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [273670] = 8, + sym_comment, + [273088] = 7, + ACTIONS(5494), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5496), 1, + sym_escape_sequence, + ACTIONS(7042), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [273112] = 7, + ACTIONS(5502), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5504), 1, + sym_escape_sequence, + ACTIONS(7044), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6253), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [273136] = 7, + ACTIONS(5502), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5504), 1, + sym_escape_sequence, + ACTIONS(7044), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [273160] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1775), 1, + ACTIONS(1799), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5760), 1, + STATE(5740), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [273696] = 8, + [273186] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1775), 1, + ACTIONS(1799), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(510), 1, + STATE(511), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [273722] = 8, + [273212] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1775), 1, + ACTIONS(1799), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [273748] = 7, - ACTIONS(5462), 1, + [273238] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6986), 1, + ACTIONS(7046), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441377,16 +440844,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273772] = 7, - ACTIONS(5474), 1, + [273262] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6988), 1, + ACTIONS(7048), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441394,16 +440861,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273796] = 7, - ACTIONS(5482), 1, + [273286] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(6990), 1, + ACTIONS(7050), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441411,16 +440878,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273820] = 7, - ACTIONS(5490), 1, + [273310] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6992), 1, + ACTIONS(7052), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441428,16 +440895,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273844] = 7, - ACTIONS(5498), 1, + [273334] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6968), 1, - anon_sym_RPAREN, - STATE(5446), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + ACTIONS(7054), 1, + anon_sym_DQUOTE, + STATE(5478), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441445,16 +440912,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273868] = 7, - ACTIONS(5506), 1, + [273358] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(6994), 1, - anon_sym_RBRACE, - STATE(5906), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(7026), 1, + anon_sym_SLASH, + STATE(5506), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441462,16 +440929,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273892] = 7, - ACTIONS(5506), 1, + [273382] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6994), 1, - anon_sym_RBRACE, - STATE(6283), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(7056), 1, + anon_sym_DQUOTE, + STATE(6316), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441479,16 +440946,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273916] = 7, - ACTIONS(5514), 1, + [273406] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(6996), 1, - anon_sym_RBRACK, - STATE(5907), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + ACTIONS(7054), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441496,122 +440963,106 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [273940] = 7, - ACTIONS(5514), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, - sym_escape_sequence, - ACTIONS(6996), 1, - anon_sym_RBRACK, - STATE(6173), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [273430] = 8, + ACTIONS(5), 1, sym_comment, - [273964] = 7, - ACTIONS(5522), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, - sym_escape_sequence, - ACTIONS(6998), 1, - anon_sym_GT, - STATE(5908), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, - sym_interpolation, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(7058), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5753), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [273988] = 8, + [273456] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(7000), 1, + ACTIONS(7058), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5773), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [274014] = 8, + [273482] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(7000), 1, - anon_sym_end, + ACTIONS(888), 1, + anon_sym_RPAREN, STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, + STATE(5806), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [274040] = 8, + [273508] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1779), 1, + ACTIONS(1805), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(512), 1, + STATE(513), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [274066] = 8, + [273534] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1779), 1, + ACTIONS(1805), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [274092] = 7, - ACTIONS(5498), 1, + [273560] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7002), 1, + ACTIONS(7060), 1, anon_sym_RPAREN, - STATE(5776), 1, + STATE(5758), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441619,16 +441070,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274116] = 7, - ACTIONS(5498), 1, + [273584] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7002), 1, + ACTIONS(7060), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441636,16 +441087,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274140] = 7, - ACTIONS(5506), 1, + [273608] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7004), 1, + ACTIONS(7062), 1, anon_sym_RBRACE, - STATE(5777), 1, + STATE(5759), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441653,16 +441104,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274164] = 7, - ACTIONS(5506), 1, + [273632] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7004), 1, + ACTIONS(7062), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441670,16 +441121,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274188] = 7, - ACTIONS(5514), 1, + [273656] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7006), 1, + ACTIONS(7064), 1, anon_sym_RBRACK, - STATE(5778), 1, + STATE(5760), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441687,16 +441138,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274212] = 7, - ACTIONS(5514), 1, + [273680] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7006), 1, + ACTIONS(7064), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441704,16 +441155,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274236] = 7, - ACTIONS(5522), 1, + [273704] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7008), 1, + ACTIONS(7066), 1, anon_sym_GT, - STATE(5779), 1, + STATE(5761), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441721,16 +441172,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274260] = 7, - ACTIONS(5522), 1, + [273728] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7008), 1, + ACTIONS(7066), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441738,16 +441189,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274284] = 7, - ACTIONS(5530), 1, + [273752] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7010), 1, + ACTIONS(7068), 1, anon_sym_PIPE, - STATE(5780), 1, + STATE(5762), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441755,16 +441206,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274308] = 7, - ACTIONS(5530), 1, + [273776] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7010), 1, + ACTIONS(7068), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441772,16 +441223,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274332] = 7, - ACTIONS(5538), 1, + [273800] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7012), 1, + ACTIONS(7070), 1, anon_sym_SLASH, - STATE(5781), 1, + STATE(5763), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441789,16 +441240,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274356] = 7, - ACTIONS(5538), 1, + [273824] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7012), 1, + ACTIONS(7070), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441806,70 +441257,102 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274380] = 8, + [273848] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(7014), 1, + ACTIONS(7072), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [274406] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, + [273874] = 7, + ACTIONS(5510), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5512), 1, + sym_escape_sequence, + ACTIONS(7074), 1, + anon_sym_DQUOTE, + STATE(5807), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(7016), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, + sym_comment, + [273898] = 7, + ACTIONS(5510), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5512), 1, + sym_escape_sequence, + ACTIONS(7074), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [274432] = 8, - ACTIONS(5), 1, + ACTIONS(5), 2, + aux_sym_terminator_token1, sym_comment, - ACTIONS(1527), 1, - anon_sym_end, - ACTIONS(3565), 1, + [273922] = 7, + ACTIONS(5486), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5488), 1, + sym_escape_sequence, + ACTIONS(7076), 1, + anon_sym_SQUOTE, + STATE(5808), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(3568), 1, - anon_sym_SEMI, - STATE(407), 1, - sym_terminator, - STATE(1386), 1, - aux_sym_terminator_repeat1, - STATE(5466), 1, - aux_sym_source_repeat1, + sym_comment, + [273946] = 7, + ACTIONS(5486), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5488), 1, + sym_escape_sequence, + ACTIONS(7076), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [274458] = 7, - ACTIONS(5498), 1, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [273970] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7018), 1, + ACTIONS(7078), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441877,16 +441360,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274482] = 7, - ACTIONS(5506), 1, + [273994] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7020), 1, + ACTIONS(7080), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441894,16 +441377,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274506] = 7, - ACTIONS(5514), 1, + [274018] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7022), 1, + ACTIONS(7082), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441911,16 +441394,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274530] = 7, - ACTIONS(5522), 1, + [274042] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7024), 1, + ACTIONS(7084), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441928,16 +441411,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274554] = 7, - ACTIONS(5530), 1, + [274066] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7026), 1, + ACTIONS(7086), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441945,16 +441428,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274578] = 7, - ACTIONS(5538), 1, + [274090] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7028), 1, + ACTIONS(7088), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441962,34 +441445,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274602] = 8, + [274114] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(1693), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(493), 1, + ACTIONS(896), 1, + anon_sym_end, + STATE(157), 1, sym_terminator, - STATE(1388), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, + STATE(6265), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [274628] = 7, - ACTIONS(5498), 1, + [274140] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7030), 1, - anon_sym_RPAREN, - STATE(5446), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + ACTIONS(7090), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5817), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -441997,16 +441480,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274652] = 7, - ACTIONS(5506), 1, + [274164] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7032), 1, - anon_sym_RBRACE, - STATE(6283), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(7090), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442014,16 +441497,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274676] = 7, - ACTIONS(5514), 1, + [274188] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7034), 1, - anon_sym_RBRACK, - STATE(6173), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + ACTIONS(7092), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5818), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442031,16 +441514,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274700] = 7, - ACTIONS(5522), 1, + [274212] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(6998), 1, - anon_sym_GT, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + ACTIONS(7092), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442048,67 +441531,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274724] = 7, - ACTIONS(5530), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, - sym_escape_sequence, - ACTIONS(7036), 1, - anon_sym_PIPE, - STATE(5928), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [274236] = 8, + ACTIONS(5), 1, sym_comment, - [274748] = 7, - ACTIONS(5530), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, - sym_escape_sequence, - ACTIONS(7036), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, - sym_interpolation, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1683), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6306), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [274262] = 8, + ACTIONS(5), 1, sym_comment, - [274772] = 7, - ACTIONS(5538), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, - sym_escape_sequence, - ACTIONS(7038), 1, - anon_sym_SLASH, - STATE(5929), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, - sym_interpolation, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(898), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5877), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [274796] = 7, - ACTIONS(5462), 1, + [274288] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7040), 1, + ACTIONS(7094), 1, anon_sym_DQUOTE, - STATE(5411), 1, + STATE(5780), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442116,16 +441584,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274820] = 7, - ACTIONS(5462), 1, + [274312] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7040), 1, + ACTIONS(7094), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442133,16 +441601,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274844] = 7, - ACTIONS(5474), 1, + [274336] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7042), 1, + ACTIONS(7096), 1, anon_sym_SQUOTE, - STATE(5802), 1, + STATE(5781), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442150,16 +441618,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274868] = 7, - ACTIONS(5474), 1, + [274360] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7042), 1, + ACTIONS(7096), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442167,16 +441635,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274892] = 7, - ACTIONS(5482), 1, + [274384] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7044), 1, + ACTIONS(7098), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5803), 1, + STATE(5782), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442184,16 +441652,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274916] = 7, - ACTIONS(5482), 1, + [274408] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7044), 1, + ACTIONS(7098), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442201,16 +441669,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274940] = 7, - ACTIONS(5490), 1, + [274432] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7046), 1, + ACTIONS(7100), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5804), 1, + STATE(5783), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442218,16 +441686,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274964] = 7, - ACTIONS(5490), 1, + [274456] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7046), 1, + ACTIONS(7100), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442235,16 +441703,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [274988] = 7, - ACTIONS(5522), 1, + [274480] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7048), 1, - anon_sym_GT, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + ACTIONS(7056), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442252,16 +441720,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275012] = 7, - ACTIONS(5530), 1, + [274504] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7050), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + ACTIONS(7102), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442269,16 +441737,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275036] = 7, - ACTIONS(5538), 1, + [274528] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7052), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(7104), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442286,16 +441754,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275060] = 7, - ACTIONS(5514), 1, + [274552] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7054), 1, - anon_sym_RBRACK, - STATE(6173), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + ACTIONS(7106), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442303,16 +441771,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275084] = 7, - ACTIONS(5474), 1, + [274576] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7056), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + ACTIONS(7108), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442320,16 +441788,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275108] = 7, - ACTIONS(5482), 1, + [274600] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7058), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + ACTIONS(7110), 1, + anon_sym_SQUOTE, + STATE(6345), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442337,50 +441805,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275132] = 7, - ACTIONS(5490), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, - sym_escape_sequence, - ACTIONS(7060), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, - sym_interpolation, + [274624] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(1683), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, + anon_sym_SEMI, + STATE(492), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [274650] = 8, + ACTIONS(5), 1, sym_comment, - [275156] = 7, - ACTIONS(5538), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, - sym_escape_sequence, - ACTIONS(7038), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, - sym_interpolation, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1645), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5912), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [275180] = 7, - ACTIONS(5498), 1, + [274676] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7062), 1, + ACTIONS(7112), 1, anon_sym_RPAREN, - STATE(5818), 1, + STATE(5799), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442388,16 +441858,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275204] = 7, - ACTIONS(5498), 1, + [274700] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7062), 1, + ACTIONS(7112), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442405,16 +441875,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275228] = 7, - ACTIONS(5506), 1, + [274724] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7064), 1, + ACTIONS(7114), 1, anon_sym_RBRACE, - STATE(5819), 1, + STATE(5800), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442422,16 +441892,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275252] = 7, - ACTIONS(5506), 1, + [274748] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7064), 1, + ACTIONS(7114), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442439,16 +441909,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275276] = 7, - ACTIONS(5514), 1, + [274772] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7066), 1, + ACTIONS(7116), 1, anon_sym_RBRACK, - STATE(5820), 1, + STATE(5801), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442456,16 +441926,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275300] = 7, - ACTIONS(5514), 1, + [274796] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7066), 1, + ACTIONS(7116), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442473,16 +441943,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275324] = 7, - ACTIONS(5522), 1, + [274820] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7068), 1, + ACTIONS(7118), 1, anon_sym_GT, - STATE(5821), 1, + STATE(5802), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442490,16 +441960,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275348] = 7, - ACTIONS(5522), 1, + [274844] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7068), 1, + ACTIONS(7118), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442507,16 +441977,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275372] = 7, - ACTIONS(5530), 1, + [274868] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7070), 1, + ACTIONS(7120), 1, anon_sym_PIPE, - STATE(5822), 1, + STATE(5803), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442524,16 +441994,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275396] = 7, - ACTIONS(5530), 1, + [274892] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7070), 1, + ACTIONS(7120), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442541,16 +442011,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275420] = 7, - ACTIONS(5538), 1, + [274916] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7072), 1, + ACTIONS(7122), 1, anon_sym_SLASH, - STATE(5823), 1, + STATE(5804), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442558,16 +442028,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275444] = 7, - ACTIONS(5538), 1, + [274940] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7072), 1, + ACTIONS(7122), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442575,16 +442045,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275468] = 7, - ACTIONS(5498), 1, + [274964] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7074), 1, + ACTIONS(7124), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442592,16 +442062,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275492] = 7, - ACTIONS(5506), 1, + [274988] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7076), 1, + ACTIONS(7126), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442609,16 +442079,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275516] = 7, - ACTIONS(5514), 1, + [275012] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7078), 1, + ACTIONS(7128), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442626,33 +442096,103 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275540] = 7, - ACTIONS(5522), 1, + [275036] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7080), 1, + ACTIONS(7130), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [275060] = 7, + ACTIONS(5826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5828), 1, + sym_escape_sequence, + ACTIONS(7132), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [275084] = 7, + ACTIONS(5866), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5868), 1, + sym_escape_sequence, + ACTIONS(7134), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [275564] = 7, - ACTIONS(5530), 1, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [275108] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(1645), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, + anon_sym_SEMI, + STATE(434), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [275134] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1645), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6322), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [275160] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7082), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + ACTIONS(7136), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442660,16 +442200,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275588] = 7, - ACTIONS(5538), 1, + [275184] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7084), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(7138), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442677,16 +442217,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275612] = 7, - ACTIONS(5462), 1, + [275208] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7086), 1, + ACTIONS(7140), 1, anon_sym_DQUOTE, - STATE(5832), 1, + STATE(5819), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442694,16 +442234,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275636] = 7, - ACTIONS(5462), 1, + [275232] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7086), 1, + ACTIONS(7140), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442711,16 +442251,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275660] = 7, - ACTIONS(5474), 1, + [275256] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7088), 1, + ACTIONS(7142), 1, anon_sym_SQUOTE, - STATE(5833), 1, + STATE(5820), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442728,16 +442268,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275684] = 7, - ACTIONS(5474), 1, + [275280] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7088), 1, + ACTIONS(7142), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442745,16 +442285,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275708] = 7, - ACTIONS(5482), 1, + [275304] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7090), 1, + ACTIONS(7144), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5834), 1, + STATE(5821), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442762,16 +442302,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275732] = 7, - ACTIONS(5482), 1, + [275328] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7090), 1, + ACTIONS(7144), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442779,16 +442319,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275756] = 7, - ACTIONS(5490), 1, + [275352] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7092), 1, + ACTIONS(7146), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5835), 1, + STATE(5822), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442796,16 +442336,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275780] = 7, - ACTIONS(5490), 1, + [275376] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7092), 1, + ACTIONS(7146), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442813,16 +442353,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275804] = 7, - ACTIONS(5462), 1, + [275400] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7094), 1, + ACTIONS(7148), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [275424] = 7, + ACTIONS(5502), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5504), 1, + sym_escape_sequence, + ACTIONS(7150), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [275448] = 7, + ACTIONS(5510), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5512), 1, + sym_escape_sequence, + ACTIONS(7152), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442830,16 +442404,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275828] = 7, - ACTIONS(5474), 1, + [275472] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7096), 1, + ACTIONS(7154), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442847,16 +442421,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275852] = 7, - ACTIONS(5482), 1, + [275496] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7098), 1, + ACTIONS(7156), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442864,16 +442438,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275876] = 7, - ACTIONS(5490), 1, + [275520] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7100), 1, + ACTIONS(7158), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442881,16 +442455,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275900] = 7, - ACTIONS(5498), 1, + [275544] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7102), 1, + ACTIONS(6714), 1, + anon_sym_SQUOTE, + STATE(5547), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [275568] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1571), 1, anon_sym_RPAREN, - STATE(5848), 1, + ACTIONS(7160), 1, + aux_sym_terminator_token1, + ACTIONS(7163), 1, + anon_sym_SEMI, + STATE(411), 1, + sym_terminator, + STATE(1377), 1, + aux_sym_terminator_repeat1, + STATE(5652), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [275594] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(1793), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, + anon_sym_SEMI, + STATE(468), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [275620] = 7, + ACTIONS(5818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5820), 1, + sym_escape_sequence, + ACTIONS(7166), 1, + anon_sym_RPAREN, + STATE(5838), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442898,16 +442525,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275924] = 7, - ACTIONS(5498), 1, + [275644] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7102), 1, + ACTIONS(7166), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442915,16 +442542,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275948] = 7, - ACTIONS(5506), 1, + [275668] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7104), 1, + ACTIONS(7168), 1, anon_sym_RBRACE, - STATE(5849), 1, + STATE(5839), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442932,16 +442559,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275972] = 7, - ACTIONS(5506), 1, + [275692] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7104), 1, + ACTIONS(7168), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442949,16 +442576,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [275996] = 7, - ACTIONS(5514), 1, + [275716] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7106), 1, + ACTIONS(7170), 1, anon_sym_RBRACK, - STATE(5850), 1, + STATE(5840), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442966,16 +442593,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276020] = 7, - ACTIONS(5514), 1, + [275740] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7106), 1, + ACTIONS(7170), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -442983,16 +442610,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276044] = 7, - ACTIONS(5522), 1, + [275764] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7108), 1, + ACTIONS(7172), 1, anon_sym_GT, - STATE(5851), 1, + STATE(5841), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443000,16 +442627,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276068] = 7, - ACTIONS(5522), 1, + [275788] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7108), 1, + ACTIONS(7172), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443017,16 +442644,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276092] = 7, - ACTIONS(5530), 1, + [275812] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7110), 1, + ACTIONS(7174), 1, anon_sym_PIPE, - STATE(5852), 1, + STATE(5842), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443034,16 +442661,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276116] = 7, - ACTIONS(5530), 1, + [275836] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7110), 1, + ACTIONS(7174), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443051,16 +442678,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276140] = 7, - ACTIONS(5538), 1, + [275860] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7112), 1, + ACTIONS(7176), 1, anon_sym_SLASH, - STATE(5853), 1, + STATE(5843), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443068,16 +442695,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276164] = 7, - ACTIONS(5538), 1, + [275884] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7112), 1, + ACTIONS(7176), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443085,16 +442712,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276188] = 7, - ACTIONS(5498), 1, + [275908] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7114), 1, + ACTIONS(7178), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443102,16 +442729,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276212] = 7, - ACTIONS(5506), 1, + [275932] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7116), 1, + ACTIONS(7180), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443119,16 +442746,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276236] = 7, - ACTIONS(5514), 1, + [275956] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7118), 1, + ACTIONS(7182), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443136,16 +442763,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276260] = 7, - ACTIONS(5522), 1, + [275980] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7120), 1, + ACTIONS(7184), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443153,16 +442780,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276284] = 7, - ACTIONS(5530), 1, + [276004] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7122), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443170,16 +442797,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276308] = 7, - ACTIONS(5538), 1, + [276028] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7124), 1, + ACTIONS(7188), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443187,34 +442814,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276332] = 8, + [276052] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3144), 1, - ts_builtin_sym_end, - ACTIONS(5244), 1, - aux_sym_terminator_token1, - ACTIONS(5247), 1, - anon_sym_SEMI, - STATE(546), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(5854), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, + ACTIONS(7192), 1, + anon_sym_COMMA, + STATE(5465), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - [276358] = 7, - ACTIONS(5462), 1, + aux_sym_terminator_token1, + ACTIONS(7190), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [276072] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7126), 1, + ACTIONS(7194), 1, anon_sym_DQUOTE, - STATE(5864), 1, + STATE(5853), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443222,16 +442846,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276382] = 7, - ACTIONS(5462), 1, + [276096] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7126), 1, + ACTIONS(7194), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443239,16 +442863,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276406] = 7, - ACTIONS(5474), 1, + [276120] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7128), 1, + ACTIONS(7196), 1, anon_sym_SQUOTE, - STATE(5865), 1, + STATE(5854), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443256,16 +442880,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276430] = 7, - ACTIONS(5474), 1, + [276144] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7128), 1, + ACTIONS(7196), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443273,16 +442897,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276454] = 7, - ACTIONS(5482), 1, + [276168] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7130), 1, + ACTIONS(7198), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5866), 1, + STATE(5855), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443290,16 +442914,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276478] = 7, - ACTIONS(5482), 1, + [276192] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7130), 1, + ACTIONS(7198), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443307,16 +442931,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276502] = 7, - ACTIONS(5490), 1, + [276216] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7132), 1, + ACTIONS(7200), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5867), 1, + STATE(5856), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443324,16 +442948,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276526] = 7, - ACTIONS(5490), 1, + [276240] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7132), 1, + ACTIONS(7200), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443341,34 +442965,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276550] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1693), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6320), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [276576] = 7, - ACTIONS(5462), 1, + [276264] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7134), 1, + ACTIONS(7202), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443376,16 +442982,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276600] = 7, - ACTIONS(5474), 1, + [276288] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7136), 1, + ACTIONS(7204), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443393,16 +442999,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276624] = 7, - ACTIONS(5482), 1, + [276312] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7138), 1, + ACTIONS(7206), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443410,16 +443016,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276648] = 7, - ACTIONS(5490), 1, + [276336] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7140), 1, + ACTIONS(7208), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443427,34 +443033,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276672] = 8, + [276360] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(7142), 1, - anon_sym_end, + ACTIONS(1793), 1, + anon_sym_RPAREN, STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, + STATE(6322), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [276698] = 7, - ACTIONS(5498), 1, + [276386] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7144), 1, + ACTIONS(7210), 1, anon_sym_RPAREN, - STATE(5881), 1, + STATE(5870), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443462,16 +443068,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276722] = 7, - ACTIONS(5498), 1, + [276410] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7144), 1, + ACTIONS(7210), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443479,16 +443085,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276746] = 7, - ACTIONS(5506), 1, + [276434] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7146), 1, + ACTIONS(7212), 1, anon_sym_RBRACE, - STATE(5882), 1, + STATE(5871), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443496,16 +443102,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276770] = 7, - ACTIONS(5506), 1, + [276458] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7146), 1, + ACTIONS(7212), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443513,16 +443119,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276794] = 7, - ACTIONS(5514), 1, + [276482] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7148), 1, + ACTIONS(7214), 1, anon_sym_RBRACK, - STATE(5883), 1, + STATE(5872), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443530,16 +443136,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276818] = 7, - ACTIONS(5514), 1, + [276506] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7148), 1, + ACTIONS(7214), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443547,16 +443153,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276842] = 7, - ACTIONS(5522), 1, + [276530] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7150), 1, + ACTIONS(7216), 1, anon_sym_GT, - STATE(5884), 1, + STATE(5873), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443564,16 +443170,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276866] = 7, - ACTIONS(5522), 1, + [276554] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7150), 1, + ACTIONS(7216), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443581,16 +443187,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276890] = 7, - ACTIONS(5530), 1, + [276578] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7152), 1, + ACTIONS(7218), 1, anon_sym_PIPE, - STATE(5885), 1, + STATE(5874), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443598,16 +443204,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276914] = 7, - ACTIONS(5530), 1, + [276602] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7152), 1, + ACTIONS(7218), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443615,16 +443221,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276938] = 7, - ACTIONS(5538), 1, + [276626] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7154), 1, + ACTIONS(7220), 1, anon_sym_SLASH, - STATE(5886), 1, + STATE(5875), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443632,16 +443238,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276962] = 7, - ACTIONS(5538), 1, + [276650] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7154), 1, + ACTIONS(7220), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443649,16 +443255,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [276986] = 7, - ACTIONS(5498), 1, + [276674] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7156), 1, + ACTIONS(7222), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443666,16 +443272,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277010] = 7, - ACTIONS(5506), 1, + [276698] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7158), 1, + ACTIONS(7224), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443683,16 +443289,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277034] = 7, - ACTIONS(5514), 1, + [276722] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7160), 1, + ACTIONS(7226), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443700,16 +443306,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277058] = 7, - ACTIONS(5522), 1, + [276746] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7162), 1, + ACTIONS(7228), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443717,16 +443323,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277082] = 7, - ACTIONS(5530), 1, + [276770] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7164), 1, + ACTIONS(7230), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443734,33 +443340,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277106] = 7, - ACTIONS(5538), 1, + [276794] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7166), 1, + ACTIONS(7232), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [277130] = 7, - ACTIONS(7168), 1, - anon_sym_SQUOTE, - ACTIONS(7170), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7173), 1, - sym_escape_sequence, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443768,52 +443357,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277154] = 8, + [276818] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(7176), 1, + ACTIONS(7234), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5441), 1, + STATE(5997), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [277180] = 8, + [276844] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(7176), 1, + ACTIONS(7234), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [277206] = 7, - ACTIONS(5462), 1, + [276870] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7178), 1, + ACTIONS(7236), 1, anon_sym_DQUOTE, - STATE(5900), 1, + STATE(5888), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443821,16 +443410,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277230] = 7, - ACTIONS(5462), 1, + [276894] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7178), 1, + ACTIONS(7236), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443838,16 +443427,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277254] = 7, - ACTIONS(5474), 1, + [276918] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7180), 1, + ACTIONS(7238), 1, anon_sym_SQUOTE, - STATE(5901), 1, + STATE(5889), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443855,16 +443444,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277278] = 7, - ACTIONS(5474), 1, + [276942] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7180), 1, + ACTIONS(7238), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443872,16 +443461,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277302] = 7, - ACTIONS(5482), 1, + [276966] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7182), 1, + ACTIONS(7240), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5902), 1, + STATE(5890), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443889,16 +443478,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277326] = 7, - ACTIONS(5482), 1, + [276990] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7182), 1, + ACTIONS(7240), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443906,16 +443495,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277350] = 7, - ACTIONS(5490), 1, + [277014] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7184), 1, + ACTIONS(7242), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5903), 1, + STATE(5891), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443923,16 +443512,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277374] = 7, - ACTIONS(5490), 1, + [277038] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7184), 1, + ACTIONS(7242), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443940,49 +443529,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277398] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7186), 1, - anon_sym_COMMA, - STATE(5898), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(2353), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [277418] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(904), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6359), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [277444] = 7, - ACTIONS(5462), 1, + [277062] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7189), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(7244), 1, + anon_sym_RPAREN, + STATE(5489), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -443990,16 +443546,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277468] = 7, - ACTIONS(5474), 1, + [277086] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7191), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + ACTIONS(7244), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444007,16 +443563,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277492] = 7, - ACTIONS(5482), 1, + [277110] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7193), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + ACTIONS(7246), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444024,16 +443580,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277516] = 7, - ACTIONS(5490), 1, + [277134] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7195), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(7248), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444041,67 +443597,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277540] = 7, - ACTIONS(5482), 1, + [277158] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7197), 1, + ACTIONS(7250), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [277564] = 7, - ACTIONS(5498), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, - sym_escape_sequence, - ACTIONS(7199), 1, - anon_sym_RPAREN, - STATE(5446), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [277588] = 7, - ACTIONS(5506), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, - sym_escape_sequence, - ACTIONS(7201), 1, - anon_sym_RBRACE, - STATE(6283), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [277612] = 7, - ACTIONS(5514), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, - sym_escape_sequence, - ACTIONS(7203), 1, - anon_sym_RBRACK, - STATE(6173), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444109,16 +443614,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277636] = 7, - ACTIONS(5522), 1, + [277182] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7205), 1, - anon_sym_GT, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + ACTIONS(7252), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444126,16 +443631,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277660] = 7, - ACTIONS(5498), 1, + [277206] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7207), 1, + ACTIONS(7254), 1, anon_sym_RPAREN, - STATE(5921), 1, + STATE(5904), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444143,16 +443648,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277684] = 7, - ACTIONS(5498), 1, + [277230] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7207), 1, + ACTIONS(7254), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444160,16 +443665,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277708] = 7, - ACTIONS(5506), 1, + [277254] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7209), 1, + ACTIONS(7256), 1, anon_sym_RBRACE, - STATE(5922), 1, + STATE(5905), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444177,16 +443682,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277732] = 7, - ACTIONS(5506), 1, + [277278] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7209), 1, + ACTIONS(7256), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444194,16 +443699,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277756] = 7, - ACTIONS(5514), 1, + [277302] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7211), 1, + ACTIONS(7258), 1, anon_sym_RBRACK, - STATE(5923), 1, + STATE(5906), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444211,16 +443716,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277780] = 7, - ACTIONS(5514), 1, + [277326] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7211), 1, + ACTIONS(7258), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444228,16 +443733,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277804] = 7, - ACTIONS(5522), 1, + [277350] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7213), 1, + ACTIONS(7260), 1, anon_sym_GT, - STATE(5924), 1, + STATE(5907), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444245,16 +443750,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277828] = 7, - ACTIONS(5522), 1, + [277374] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7213), 1, + ACTIONS(7260), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444262,16 +443767,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277852] = 7, - ACTIONS(5530), 1, + [277398] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7215), 1, + ACTIONS(7262), 1, anon_sym_PIPE, - STATE(5925), 1, + STATE(5908), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444279,16 +443784,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277876] = 7, - ACTIONS(5530), 1, + [277422] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7215), 1, + ACTIONS(7262), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444296,16 +443801,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277900] = 7, - ACTIONS(5538), 1, + [277446] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7217), 1, + ACTIONS(7264), 1, anon_sym_SLASH, - STATE(5926), 1, + STATE(5909), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444313,16 +443818,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277924] = 7, - ACTIONS(5538), 1, + [277470] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7217), 1, + ACTIONS(7264), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444330,16 +443835,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277948] = 7, - ACTIONS(5498), 1, + [277494] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7219), 1, + ACTIONS(7266), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444347,16 +443852,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277972] = 7, - ACTIONS(5506), 1, + [277518] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7221), 1, + ACTIONS(7268), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444364,16 +443869,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [277996] = 7, - ACTIONS(5514), 1, + [277542] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7223), 1, + ACTIONS(7270), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444381,16 +443886,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278020] = 7, - ACTIONS(5522), 1, + [277566] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7225), 1, + ACTIONS(7272), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444398,16 +443903,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278044] = 7, - ACTIONS(5530), 1, + [277590] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7227), 1, + ACTIONS(7274), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444415,16 +443920,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278068] = 7, - ACTIONS(5538), 1, + [277614] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7229), 1, + ACTIONS(7276), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444432,50 +443937,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278092] = 7, - ACTIONS(5498), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, - sym_escape_sequence, - ACTIONS(7231), 1, - anon_sym_RPAREN, - STATE(6393), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, - sym_interpolation, + [277638] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(7278), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [277664] = 8, + ACTIONS(5), 1, sym_comment, - [278116] = 7, - ACTIONS(5530), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, - sym_escape_sequence, - ACTIONS(7233), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, - sym_interpolation, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(1661), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, + anon_sym_SEMI, + STATE(439), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [277690] = 8, + ACTIONS(5), 1, sym_comment, - [278140] = 7, - ACTIONS(5538), 1, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1661), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6322), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [277716] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7235), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(7280), 1, + anon_sym_RPAREN, + STATE(6039), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444483,16 +444008,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278164] = 7, - ACTIONS(5462), 1, + [277740] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7237), 1, + ACTIONS(7282), 1, anon_sym_DQUOTE, - STATE(5941), 1, + STATE(5924), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444500,16 +444025,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278188] = 7, - ACTIONS(5462), 1, + [277764] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7237), 1, + ACTIONS(7282), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444517,16 +444042,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278212] = 7, - ACTIONS(5474), 1, + [277788] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7239), 1, + ACTIONS(7284), 1, anon_sym_SQUOTE, - STATE(5942), 1, + STATE(5925), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444534,16 +444059,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278236] = 7, - ACTIONS(5474), 1, + [277812] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7239), 1, + ACTIONS(7284), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444551,16 +444076,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278260] = 7, - ACTIONS(5482), 1, + [277836] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7241), 1, + ACTIONS(7286), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5943), 1, + STATE(5926), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444568,16 +444093,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278284] = 7, - ACTIONS(5482), 1, + [277860] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7241), 1, + ACTIONS(7286), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444585,16 +444110,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278308] = 7, - ACTIONS(5530), 1, + [277884] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7243), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + ACTIONS(7288), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5927), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444602,16 +444127,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278332] = 7, - ACTIONS(5490), 1, + [277908] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7245), 1, + ACTIONS(7288), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444619,16 +444144,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278356] = 7, - ACTIONS(5498), 1, + [277932] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7231), 1, + ACTIONS(7280), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444636,16 +444161,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278380] = 7, - ACTIONS(5506), 1, + [277956] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7247), 1, + ACTIONS(7290), 1, anon_sym_RBRACE, - STATE(6394), 1, + STATE(6040), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444653,16 +444178,101 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278404] = 7, - ACTIONS(5506), 1, + [277980] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7247), 1, + ACTIONS(7292), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [278004] = 7, + ACTIONS(5486), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5488), 1, + sym_escape_sequence, + ACTIONS(7294), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [278028] = 7, + ACTIONS(5494), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5496), 1, + sym_escape_sequence, + ACTIONS(7296), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [278052] = 7, + ACTIONS(5502), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5504), 1, + sym_escape_sequence, + ACTIONS(7298), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [278076] = 7, + ACTIONS(5478), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5480), 1, + sym_escape_sequence, + ACTIONS(7290), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [278100] = 7, + ACTIONS(5798), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5800), 1, + sym_escape_sequence, + ACTIONS(7300), 1, + anon_sym_RBRACK, + STATE(6041), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444670,16 +444280,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278428] = 7, - ACTIONS(5462), 1, + [278124] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7249), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(7300), 1, + anon_sym_RBRACK, + STATE(5401), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444687,16 +444297,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278452] = 7, - ACTIONS(5474), 1, + [278148] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7251), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + ACTIONS(7302), 1, + anon_sym_GT, + STATE(6042), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444704,16 +444314,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278476] = 7, - ACTIONS(5482), 1, + [278172] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7253), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + ACTIONS(7302), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444721,16 +444331,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278500] = 7, - ACTIONS(5490), 1, + [278196] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7255), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(7304), 1, + anon_sym_PIPE, + STATE(6055), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444738,16 +444348,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278524] = 7, - ACTIONS(5498), 1, + [278220] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7257), 1, + ACTIONS(7306), 1, anon_sym_RPAREN, - STATE(5957), 1, + STATE(5946), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444755,16 +444365,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278548] = 7, - ACTIONS(5498), 1, + [278244] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7257), 1, + ACTIONS(7306), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444772,16 +444382,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278572] = 7, - ACTIONS(5506), 1, + [278268] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7259), 1, + ACTIONS(7308), 1, anon_sym_RBRACE, - STATE(5958), 1, + STATE(5947), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444789,16 +444399,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278596] = 7, - ACTIONS(5506), 1, + [278292] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7259), 1, + ACTIONS(7308), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444806,16 +444416,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278620] = 7, - ACTIONS(5514), 1, + [278316] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7261), 1, + ACTIONS(7310), 1, anon_sym_RBRACK, - STATE(5959), 1, + STATE(5948), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444823,16 +444433,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278644] = 7, - ACTIONS(5514), 1, + [278340] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7261), 1, + ACTIONS(7310), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444840,16 +444450,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278668] = 7, - ACTIONS(5522), 1, + [278364] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7263), 1, + ACTIONS(7312), 1, anon_sym_GT, - STATE(5960), 1, + STATE(5949), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444857,16 +444467,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278692] = 7, - ACTIONS(5522), 1, + [278388] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7263), 1, + ACTIONS(7312), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444874,16 +444484,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278716] = 7, - ACTIONS(5530), 1, + [278412] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7265), 1, + ACTIONS(7314), 1, anon_sym_PIPE, - STATE(5961), 1, + STATE(5950), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444891,33 +444501,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278740] = 7, - ACTIONS(5530), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, - sym_escape_sequence, - ACTIONS(7265), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, - sym_interpolation, + [278436] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1807), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6322), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [278764] = 7, - ACTIONS(5538), 1, + [278462] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7267), 1, + ACTIONS(7316), 1, anon_sym_SLASH, - STATE(5962), 1, + STATE(5951), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444925,16 +444536,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278788] = 7, - ACTIONS(5538), 1, + [278486] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7267), 1, + ACTIONS(7316), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444942,16 +444553,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278812] = 7, - ACTIONS(5498), 1, + [278510] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7269), 1, + ACTIONS(7318), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444959,16 +444570,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278836] = 7, - ACTIONS(5506), 1, + [278534] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7271), 1, + ACTIONS(7320), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444976,16 +444587,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278860] = 7, - ACTIONS(5514), 1, + [278558] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7273), 1, + ACTIONS(7322), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -444993,16 +444604,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278884] = 7, - ACTIONS(5522), 1, + [278582] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7275), 1, + ACTIONS(7324), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445010,16 +444621,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278908] = 7, - ACTIONS(5530), 1, + [278606] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7277), 1, + ACTIONS(7326), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445027,16 +444638,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278932] = 7, - ACTIONS(5538), 1, + [278630] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7279), 1, + ACTIONS(7328), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445044,16 +444655,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278956] = 7, - ACTIONS(5514), 1, + [278654] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7281), 1, - anon_sym_RBRACK, - STATE(5801), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + ACTIONS(7304), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445061,16 +444672,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [278980] = 7, - ACTIONS(5462), 1, + [278678] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5868), 1, + sym_escape_sequence, + ACTIONS(7330), 1, + anon_sym_SLASH, + STATE(6056), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [278702] = 7, + ACTIONS(5866), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7283), 1, + ACTIONS(7330), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [278726] = 7, + ACTIONS(5510), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5512), 1, + sym_escape_sequence, + ACTIONS(7332), 1, anon_sym_DQUOTE, - STATE(5972), 1, + STATE(5963), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445078,16 +444723,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279004] = 7, - ACTIONS(5462), 1, + [278750] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7283), 1, + ACTIONS(7332), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445095,16 +444740,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279028] = 7, - ACTIONS(5474), 1, + [278774] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7285), 1, + ACTIONS(7334), 1, anon_sym_SQUOTE, - STATE(5973), 1, + STATE(5964), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445112,16 +444757,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279052] = 7, - ACTIONS(5474), 1, + [278798] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7285), 1, + ACTIONS(7334), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445129,16 +444774,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279076] = 7, - ACTIONS(5482), 1, + [278822] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7287), 1, + ACTIONS(7336), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5974), 1, + STATE(5965), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445146,16 +444791,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279100] = 7, - ACTIONS(5482), 1, + [278846] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7287), 1, + ACTIONS(7336), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445163,16 +444808,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279124] = 7, - ACTIONS(5490), 1, + [278870] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7289), 1, + ACTIONS(7338), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5975), 1, + STATE(5966), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445180,16 +444825,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279148] = 7, - ACTIONS(5490), 1, + [278894] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7289), 1, + ACTIONS(7338), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445197,16 +444842,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279172] = 7, - ACTIONS(5462), 1, + [278918] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7291), 1, + ACTIONS(7340), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445214,16 +444859,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279196] = 7, - ACTIONS(5474), 1, + [278942] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7293), 1, + ACTIONS(7342), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445231,16 +444876,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279220] = 7, - ACTIONS(5482), 1, + [278966] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7295), 1, + ACTIONS(7344), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445248,16 +444893,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279244] = 7, - ACTIONS(5490), 1, + [278990] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7297), 1, + ACTIONS(7346), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445265,16 +444910,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279268] = 7, - ACTIONS(5498), 1, + [279014] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7299), 1, + ACTIONS(7348), 1, anon_sym_RPAREN, - STATE(5988), 1, + STATE(5979), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445282,16 +444927,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279292] = 7, - ACTIONS(5498), 1, + [279038] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7299), 1, + ACTIONS(7348), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445299,16 +444944,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279316] = 7, - ACTIONS(5506), 1, + [279062] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7301), 1, + ACTIONS(7350), 1, anon_sym_RBRACE, - STATE(5989), 1, + STATE(5980), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445316,16 +444961,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279340] = 7, - ACTIONS(5506), 1, + [279086] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7301), 1, + ACTIONS(7350), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445333,16 +444978,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279364] = 7, - ACTIONS(5514), 1, + [279110] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7303), 1, + ACTIONS(7352), 1, anon_sym_RBRACK, - STATE(5990), 1, + STATE(5981), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445350,16 +444995,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279388] = 7, - ACTIONS(5514), 1, + [279134] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7303), 1, + ACTIONS(7352), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445367,16 +445012,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279412] = 7, - ACTIONS(5522), 1, + [279158] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7305), 1, + ACTIONS(7354), 1, anon_sym_GT, - STATE(5991), 1, + STATE(5982), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445384,16 +445029,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279436] = 7, - ACTIONS(5522), 1, + [279182] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7305), 1, + ACTIONS(7354), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445401,16 +445046,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279460] = 7, - ACTIONS(5530), 1, + [279206] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7307), 1, + ACTIONS(7356), 1, anon_sym_PIPE, - STATE(5992), 1, + STATE(5983), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445418,16 +445063,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279484] = 7, - ACTIONS(5530), 1, + [279230] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7307), 1, + ACTIONS(7356), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445435,16 +445080,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279508] = 7, - ACTIONS(5538), 1, + [279254] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7309), 1, + ACTIONS(7358), 1, anon_sym_SLASH, - STATE(5993), 1, + STATE(5984), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445452,16 +445097,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279532] = 7, - ACTIONS(5538), 1, + [279278] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7309), 1, + ACTIONS(7358), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445469,16 +445114,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279556] = 7, - ACTIONS(5498), 1, + [279302] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7311), 1, + ACTIONS(7360), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445486,16 +445131,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279580] = 7, - ACTIONS(5506), 1, + [279326] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7313), 1, + ACTIONS(7362), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445503,16 +445148,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279604] = 7, - ACTIONS(5514), 1, + [279350] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7315), 1, + ACTIONS(7364), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445520,16 +445165,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279628] = 7, - ACTIONS(5522), 1, + [279374] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7317), 1, + ACTIONS(7366), 1, anon_sym_GT, - STATE(6010), 1, + STATE(5427), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445537,16 +445182,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279652] = 7, - ACTIONS(5530), 1, + [279398] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7319), 1, + ACTIONS(7368), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(5492), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445554,50 +445199,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279676] = 7, - ACTIONS(5538), 1, + [279422] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7321), 1, + ACTIONS(7370), 1, anon_sym_SLASH, - STATE(5447), 1, + STATE(5537), 1, aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [279700] = 7, - ACTIONS(5522), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, - sym_escape_sequence, - ACTIONS(7323), 1, - anon_sym_GT, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [279724] = 7, - ACTIONS(5522), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, - sym_escape_sequence, - ACTIONS(7325), 1, - anon_sym_GT, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445605,33 +445216,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279748] = 7, - ACTIONS(5530), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, - sym_escape_sequence, - ACTIONS(7327), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [279772] = 7, - ACTIONS(5462), 1, + [279446] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7329), 1, + ACTIONS(7372), 1, anon_sym_DQUOTE, - STATE(6005), 1, + STATE(5993), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445639,16 +445233,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279796] = 7, - ACTIONS(5462), 1, + [279470] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7329), 1, + ACTIONS(7372), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445656,16 +445250,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279820] = 7, - ACTIONS(5474), 1, + [279494] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7331), 1, + ACTIONS(7374), 1, anon_sym_SQUOTE, - STATE(6006), 1, + STATE(5994), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445673,16 +445267,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279844] = 7, - ACTIONS(5474), 1, + [279518] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7331), 1, + ACTIONS(7374), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445690,16 +445284,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279868] = 7, - ACTIONS(5482), 1, + [279542] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7333), 1, + ACTIONS(7376), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6007), 1, + STATE(5995), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445707,16 +445301,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279892] = 7, - ACTIONS(5482), 1, + [279566] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7333), 1, + ACTIONS(7376), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445724,16 +445318,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279916] = 7, - ACTIONS(5490), 1, + [279590] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7335), 1, + ACTIONS(7378), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6008), 1, + STATE(5996), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445741,16 +445335,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279940] = 7, - ACTIONS(5490), 1, + [279614] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7335), 1, + ACTIONS(7378), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445758,16 +445352,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279964] = 7, - ACTIONS(5462), 1, + [279638] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7337), 1, + ACTIONS(7380), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445775,16 +445369,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [279988] = 7, - ACTIONS(5474), 1, + [279662] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7339), 1, + ACTIONS(7382), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445792,16 +445386,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280012] = 7, - ACTIONS(5482), 1, + [279686] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7341), 1, + ACTIONS(7384), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445809,16 +445403,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280036] = 7, - ACTIONS(5490), 1, + [279710] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7343), 1, + ACTIONS(7386), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445826,50 +445420,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280060] = 7, - ACTIONS(5514), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, - sym_escape_sequence, - ACTIONS(7281), 1, - anon_sym_RBRACK, - STATE(6173), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [279734] = 8, + ACTIONS(5), 1, sym_comment, - [280084] = 7, - ACTIONS(7345), 1, - anon_sym_GT, - ACTIONS(7347), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7350), 1, - sym_escape_sequence, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, - sym_interpolation, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(7388), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [280108] = 7, - ACTIONS(5462), 1, + [279760] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7353), 1, + ACTIONS(7390), 1, anon_sym_DQUOTE, - STATE(6019), 1, + STATE(6006), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445877,16 +445455,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280132] = 7, - ACTIONS(5462), 1, + [279784] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7353), 1, + ACTIONS(7390), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445894,16 +445472,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280156] = 7, - ACTIONS(5474), 1, + [279808] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7355), 1, + ACTIONS(7392), 1, anon_sym_SQUOTE, - STATE(6020), 1, + STATE(6007), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445911,16 +445489,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280180] = 7, - ACTIONS(5474), 1, + [279832] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7355), 1, + ACTIONS(7392), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445928,16 +445506,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280204] = 7, - ACTIONS(5482), 1, + [279856] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7357), 1, + ACTIONS(7394), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6021), 1, + STATE(6008), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445945,16 +445523,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280228] = 7, - ACTIONS(5482), 1, + [279880] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7357), 1, + ACTIONS(7394), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445962,16 +445540,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280252] = 7, - ACTIONS(5490), 1, + [279904] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7359), 1, + ACTIONS(7396), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6022), 1, + STATE(6009), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445979,16 +445557,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280276] = 7, - ACTIONS(5490), 1, + [279928] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7359), 1, + ACTIONS(7396), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -445996,16 +445574,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280300] = 7, - ACTIONS(5462), 1, + [279952] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7361), 1, + ACTIONS(7398), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446013,16 +445591,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280324] = 7, - ACTIONS(5474), 1, + [279976] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7363), 1, + ACTIONS(7400), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446030,16 +445608,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280348] = 7, - ACTIONS(5482), 1, + [280000] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7365), 1, + ACTIONS(7402), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446047,16 +445625,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280372] = 7, - ACTIONS(5490), 1, + [280024] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7367), 1, + ACTIONS(7404), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446064,16 +445642,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280396] = 7, - ACTIONS(5522), 1, + [280048] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7369), 1, - anon_sym_GT, - STATE(5995), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + ACTIONS(7406), 1, + anon_sym_RBRACE, + STATE(5490), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446081,16 +445659,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280420] = 7, - ACTIONS(5530), 1, + [280072] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7371), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + ACTIONS(7406), 1, + anon_sym_RBRACE, + STATE(6335), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446098,16 +445676,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280444] = 7, - ACTIONS(5462), 1, + [280096] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(900), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5583), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [280122] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7373), 1, + ACTIONS(7408), 1, anon_sym_DQUOTE, - STATE(6033), 1, + STATE(6021), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446115,16 +445711,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280468] = 7, - ACTIONS(5462), 1, + [280146] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7373), 1, + ACTIONS(7408), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446132,16 +445728,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280492] = 7, - ACTIONS(5474), 1, + [280170] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7375), 1, + ACTIONS(7410), 1, anon_sym_SQUOTE, - STATE(6034), 1, + STATE(6022), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446149,16 +445745,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280516] = 7, - ACTIONS(5474), 1, + [280194] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7375), 1, + ACTIONS(7410), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446166,16 +445762,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280540] = 7, - ACTIONS(5482), 1, + [280218] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7377), 1, + ACTIONS(7412), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6035), 1, + STATE(6023), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446183,16 +445779,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280564] = 7, - ACTIONS(5482), 1, + [280242] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7377), 1, + ACTIONS(7412), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446200,16 +445796,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280588] = 7, - ACTIONS(5490), 1, + [280266] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7379), 1, + ACTIONS(7414), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6036), 1, + STATE(6024), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446217,16 +445813,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280612] = 7, - ACTIONS(5490), 1, + [280290] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7379), 1, + ACTIONS(7414), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446234,16 +445830,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280636] = 7, - ACTIONS(5462), 1, + [280314] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7381), 1, + ACTIONS(7416), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446251,16 +445847,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280660] = 7, - ACTIONS(5474), 1, + [280338] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7383), 1, + ACTIONS(7418), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446268,16 +445864,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280684] = 7, - ACTIONS(5482), 1, + [280362] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7385), 1, + ACTIONS(7420), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446285,16 +445881,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280708] = 7, - ACTIONS(5490), 1, + [280386] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7387), 1, + ACTIONS(7422), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446302,34 +445898,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280732] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(854), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6142), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [280758] = 7, - ACTIONS(5462), 1, + [280410] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7389), 1, - anon_sym_DQUOTE, - STATE(6143), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(7424), 1, + anon_sym_RBRACK, + STATE(5493), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446337,16 +445915,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280782] = 7, - ACTIONS(5462), 1, + [280434] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7389), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(7424), 1, + anon_sym_RBRACK, + STATE(5401), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446354,16 +445932,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280806] = 7, - ACTIONS(5462), 1, + [280458] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7391), 1, + ACTIONS(7426), 1, anon_sym_DQUOTE, - STATE(6048), 1, + STATE(6035), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446371,16 +445949,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280830] = 7, - ACTIONS(5462), 1, + [280482] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7391), 1, + ACTIONS(7426), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446388,16 +445966,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280854] = 7, - ACTIONS(5474), 1, + [280506] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7393), 1, + ACTIONS(7428), 1, anon_sym_SQUOTE, - STATE(6049), 1, + STATE(6036), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446405,16 +445983,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280878] = 7, - ACTIONS(5474), 1, + [280530] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7393), 1, + ACTIONS(7428), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446422,16 +446000,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280902] = 7, - ACTIONS(5482), 1, + [280554] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7395), 1, + ACTIONS(7430), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6050), 1, + STATE(6037), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446439,16 +446017,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280926] = 7, - ACTIONS(5482), 1, + [280578] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7395), 1, + ACTIONS(7430), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446456,16 +446034,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280950] = 7, - ACTIONS(5490), 1, + [280602] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7397), 1, + ACTIONS(7432), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6051), 1, + STATE(6038), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446473,16 +446051,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280974] = 7, - ACTIONS(5490), 1, + [280626] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7397), 1, + ACTIONS(7432), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446490,16 +446068,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [280998] = 7, - ACTIONS(5462), 1, + [280650] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7399), 1, + ACTIONS(7434), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446507,16 +446085,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281022] = 7, - ACTIONS(5474), 1, + [280674] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7401), 1, + ACTIONS(7436), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446524,16 +446102,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281046] = 7, - ACTIONS(5482), 1, + [280698] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7403), 1, + ACTIONS(7438), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446541,16 +446119,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281070] = 7, - ACTIONS(5490), 1, + [280722] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7405), 1, + ACTIONS(7440), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446558,16 +446136,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281094] = 7, - ACTIONS(5474), 1, + [280746] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7407), 1, - anon_sym_SQUOTE, - STATE(6157), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + ACTIONS(7442), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446575,16 +446153,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281118] = 7, - ACTIONS(5474), 1, + [280770] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7407), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + ACTIONS(7444), 1, + anon_sym_RBRACE, + STATE(6335), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446592,16 +446170,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281142] = 7, - ACTIONS(5482), 1, + [280794] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7409), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6158), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + ACTIONS(7446), 1, + anon_sym_RBRACK, + STATE(5401), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446609,16 +446187,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281166] = 7, - ACTIONS(5482), 1, + [280818] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7409), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + ACTIONS(7448), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446626,16 +446204,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281190] = 7, - ACTIONS(5462), 1, + [280842] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7411), 1, + ACTIONS(7450), 1, anon_sym_DQUOTE, - STATE(6064), 1, + STATE(6051), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446643,16 +446221,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281214] = 7, - ACTIONS(5462), 1, + [280866] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7411), 1, + ACTIONS(7450), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446660,16 +446238,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281238] = 7, - ACTIONS(5474), 1, + [280890] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7413), 1, + ACTIONS(7452), 1, anon_sym_SQUOTE, - STATE(6065), 1, + STATE(6052), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446677,16 +446255,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281262] = 7, - ACTIONS(5474), 1, + [280914] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7413), 1, + ACTIONS(7452), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446694,16 +446272,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281286] = 7, - ACTIONS(5482), 1, + [280938] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7415), 1, + ACTIONS(7454), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6066), 1, + STATE(6053), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446711,16 +446289,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281310] = 7, - ACTIONS(5482), 1, + [280962] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7415), 1, + ACTIONS(7454), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446728,16 +446306,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281334] = 7, - ACTIONS(5490), 1, + [280986] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7417), 1, + ACTIONS(7456), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6067), 1, + STATE(6054), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446745,16 +446323,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281358] = 7, - ACTIONS(5490), 1, + [281010] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7417), 1, + ACTIONS(7456), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446762,16 +446340,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281382] = 7, - ACTIONS(5462), 1, + [281034] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7419), 1, + ACTIONS(7458), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446779,16 +446357,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281406] = 7, - ACTIONS(5474), 1, + [281058] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7421), 1, + ACTIONS(7460), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446796,16 +446374,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281430] = 7, - ACTIONS(5482), 1, + [281082] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7423), 1, + ACTIONS(7462), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446813,16 +446391,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281454] = 7, - ACTIONS(5490), 1, + [281106] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7425), 1, + ACTIONS(7464), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446830,16 +446408,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281478] = 7, - ACTIONS(5490), 1, + [281130] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7427), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6159), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(7466), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446847,16 +446425,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281502] = 7, - ACTIONS(5490), 1, + [281154] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7427), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(7468), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446864,16 +446442,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281526] = 7, - ACTIONS(5462), 1, + [281178] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7429), 1, + ACTIONS(7470), 1, anon_sym_DQUOTE, - STATE(6078), 1, + STATE(6065), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446881,16 +446459,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281550] = 7, - ACTIONS(5462), 1, + [281202] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7429), 1, + ACTIONS(7470), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446898,16 +446476,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281574] = 7, - ACTIONS(5474), 1, + [281226] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7431), 1, + ACTIONS(7472), 1, anon_sym_SQUOTE, - STATE(6079), 1, + STATE(6066), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446915,16 +446493,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281598] = 7, - ACTIONS(5474), 1, + [281250] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7431), 1, + ACTIONS(7472), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446932,16 +446510,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281622] = 7, - ACTIONS(5482), 1, + [281274] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7433), 1, + ACTIONS(7474), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6080), 1, + STATE(6067), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446949,16 +446527,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281646] = 7, - ACTIONS(5482), 1, + [281298] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7433), 1, + ACTIONS(7474), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446966,16 +446544,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281670] = 7, - ACTIONS(5490), 1, + [281322] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7435), 1, + ACTIONS(7476), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6081), 1, + STATE(6068), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -446983,16 +446561,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281694] = 7, - ACTIONS(5490), 1, + [281346] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7435), 1, + ACTIONS(7476), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447000,16 +446578,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281718] = 7, - ACTIONS(5462), 1, + [281370] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7437), 1, + ACTIONS(7478), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447017,16 +446595,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281742] = 7, - ACTIONS(5474), 1, + [281394] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7439), 1, + ACTIONS(7480), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447034,16 +446612,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281766] = 7, - ACTIONS(5482), 1, + [281418] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7441), 1, + ACTIONS(7482), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447051,67 +446629,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281790] = 7, - ACTIONS(5490), 1, + [281442] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7443), 1, + ACTIONS(7484), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [281814] = 7, - ACTIONS(5462), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, - sym_escape_sequence, - ACTIONS(7445), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [281838] = 7, - ACTIONS(5474), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, - sym_escape_sequence, - ACTIONS(6632), 1, - anon_sym_SQUOTE, - STATE(5552), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [281862] = 7, - ACTIONS(7447), 1, - anon_sym_PIPE, - ACTIONS(7449), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7452), 1, - sym_escape_sequence, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447119,16 +446646,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281886] = 7, - ACTIONS(5462), 1, + [281466] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7455), 1, + ACTIONS(7486), 1, anon_sym_DQUOTE, - STATE(6093), 1, + STATE(6077), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447136,16 +446663,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281910] = 7, - ACTIONS(5462), 1, + [281490] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7455), 1, + ACTIONS(7486), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447153,16 +446680,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281934] = 7, - ACTIONS(5474), 1, + [281514] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7457), 1, + ACTIONS(7488), 1, anon_sym_SQUOTE, - STATE(6094), 1, + STATE(6078), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447170,16 +446697,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281958] = 7, - ACTIONS(5474), 1, + [281538] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7457), 1, + ACTIONS(7488), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447187,16 +446714,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [281982] = 7, - ACTIONS(5482), 1, + [281562] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7459), 1, + ACTIONS(7490), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6095), 1, + STATE(6079), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447204,16 +446731,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282006] = 7, - ACTIONS(5482), 1, + [281586] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7459), 1, + ACTIONS(7490), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447221,16 +446748,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282030] = 7, - ACTIONS(5490), 1, + [281610] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7461), 1, + ACTIONS(7492), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6096), 1, + STATE(6080), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447238,16 +446765,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282054] = 7, - ACTIONS(5490), 1, + [281634] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7461), 1, + ACTIONS(7492), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447255,16 +446782,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282078] = 7, - ACTIONS(5462), 1, + [281658] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7463), 1, + ACTIONS(7494), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447272,50 +446799,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282102] = 7, - ACTIONS(5474), 1, + [281682] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7465), 1, + ACTIONS(7496), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [282126] = 7, - ACTIONS(5482), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, - ACTIONS(7467), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [282150] = 7, - ACTIONS(5490), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, - sym_escape_sequence, - ACTIONS(7469), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447323,70 +446816,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282174] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(1697), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, - anon_sym_SEMI, - STATE(481), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [282200] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(866), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6233), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [282226] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1697), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6320), 1, - aux_sym_block_repeat1, + [281706] = 7, + ACTIONS(5494), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5496), 1, + sym_escape_sequence, + ACTIONS(7498), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [282252] = 7, - ACTIONS(5538), 1, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [281730] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7471), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(7500), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447394,16 +446850,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282276] = 7, - ACTIONS(5462), 1, + [281754] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7473), 1, + ACTIONS(7502), 1, anon_sym_DQUOTE, - STATE(6109), 1, + STATE(6089), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447411,16 +446867,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282300] = 7, - ACTIONS(5462), 1, + [281778] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7473), 1, + ACTIONS(7502), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447428,16 +446884,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282324] = 7, - ACTIONS(5474), 1, + [281802] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7475), 1, + ACTIONS(7504), 1, anon_sym_SQUOTE, - STATE(6110), 1, + STATE(6090), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447445,16 +446901,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282348] = 7, - ACTIONS(5474), 1, + [281826] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7475), 1, + ACTIONS(7504), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447462,16 +446918,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282372] = 7, - ACTIONS(5482), 1, + [281850] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7477), 1, + ACTIONS(7506), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6111), 1, + STATE(6091), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447479,16 +446935,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282396] = 7, - ACTIONS(5482), 1, + [281874] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7477), 1, + ACTIONS(7506), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447496,16 +446952,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282420] = 7, - ACTIONS(5490), 1, + [281898] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7479), 1, + ACTIONS(7508), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6112), 1, + STATE(6092), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447513,16 +446969,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282444] = 7, - ACTIONS(5490), 1, + [281922] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7479), 1, + ACTIONS(7508), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447530,16 +446986,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282468] = 7, - ACTIONS(5462), 1, + [281946] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7481), 1, + ACTIONS(7510), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447547,16 +447003,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282492] = 7, - ACTIONS(5474), 1, + [281970] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7483), 1, + ACTIONS(7512), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447564,16 +447020,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282516] = 7, - ACTIONS(5482), 1, + [281994] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7485), 1, + ACTIONS(7514), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447581,16 +447037,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282540] = 7, - ACTIONS(5490), 1, + [282018] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7487), 1, + ACTIONS(7516), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447598,16 +447054,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282564] = 7, - ACTIONS(5462), 1, + [282042] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5808), 1, + sym_escape_sequence, + ACTIONS(7518), 1, + anon_sym_GT, + STATE(5501), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [282066] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(884), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6259), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [282092] = 7, + ACTIONS(5510), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7489), 1, + ACTIONS(7520), 1, anon_sym_DQUOTE, - STATE(6121), 1, + STATE(6260), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447615,16 +447106,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282588] = 7, - ACTIONS(5462), 1, + [282116] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5808), 1, + sym_escape_sequence, + ACTIONS(7518), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [282140] = 7, + ACTIONS(5510), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7489), 1, + ACTIONS(7522), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6105), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447632,16 +447140,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282612] = 7, - ACTIONS(5474), 1, + [282164] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5512), 1, + sym_escape_sequence, + ACTIONS(7522), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [282188] = 7, + ACTIONS(5486), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7491), 1, + ACTIONS(7524), 1, anon_sym_SQUOTE, - STATE(6122), 1, + STATE(6106), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447649,16 +447174,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282636] = 7, - ACTIONS(5474), 1, + [282212] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7491), 1, + ACTIONS(7524), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447666,16 +447191,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282660] = 7, - ACTIONS(5482), 1, + [282236] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7493), 1, + ACTIONS(7526), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6123), 1, + STATE(6107), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447683,16 +447208,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282684] = 7, - ACTIONS(5482), 1, + [282260] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7493), 1, + ACTIONS(7526), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447700,16 +447225,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282708] = 7, - ACTIONS(5490), 1, + [282284] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7495), 1, + ACTIONS(7528), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6124), 1, + STATE(6108), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447717,16 +447242,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282732] = 7, - ACTIONS(5490), 1, + [282308] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7495), 1, + ACTIONS(7528), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447734,16 +447259,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282756] = 7, - ACTIONS(5462), 1, + [282332] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7497), 1, + ACTIONS(7530), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447751,16 +447276,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282780] = 7, - ACTIONS(5474), 1, + [282356] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7499), 1, + ACTIONS(7532), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447768,16 +447293,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282804] = 7, - ACTIONS(5482), 1, + [282380] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7501), 1, + ACTIONS(7534), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447785,16 +447310,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282828] = 7, - ACTIONS(5490), 1, + [282404] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7503), 1, + ACTIONS(7536), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447802,16 +447327,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282852] = 7, - ACTIONS(5498), 1, + [282428] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7505), 1, - anon_sym_RPAREN, - STATE(5482), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + ACTIONS(7520), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447819,34 +447344,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282876] = 8, + [282452] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1713), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6315), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, + ACTIONS(6730), 1, + anon_sym_COMMA, + STATE(6320), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - [282902] = 7, - ACTIONS(7507), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7509), 1, + aux_sym_terminator_token1, + ACTIONS(2687), 3, + anon_sym_RPAREN, + anon_sym_when, + anon_sym_DASH_GT, + [282472] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(7512), 1, + ACTIONS(5488), 1, sym_escape_sequence, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + ACTIONS(7538), 1, + anon_sym_SQUOTE, + STATE(6261), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447854,34 +447376,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282926] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(1713), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, - anon_sym_SEMI, - STATE(479), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [282952] = 7, - ACTIONS(5462), 1, + [282496] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7515), 1, + ACTIONS(7540), 1, anon_sym_DQUOTE, - STATE(6137), 1, + STATE(6120), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447889,16 +447393,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [282976] = 7, - ACTIONS(5462), 1, + [282520] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7515), 1, + ACTIONS(7540), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447906,16 +447410,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283000] = 7, - ACTIONS(5474), 1, + [282544] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7517), 1, + ACTIONS(7542), 1, anon_sym_SQUOTE, - STATE(6138), 1, + STATE(6121), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447923,16 +447427,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283024] = 7, - ACTIONS(5474), 1, + [282568] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7517), 1, + ACTIONS(7542), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447940,16 +447444,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283048] = 7, - ACTIONS(5482), 1, + [282592] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7519), 1, + ACTIONS(7544), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6139), 1, + STATE(6122), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447957,16 +447461,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283072] = 7, - ACTIONS(5482), 1, + [282616] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7519), 1, + ACTIONS(7544), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447974,16 +447478,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283096] = 7, - ACTIONS(5490), 1, + [282640] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7521), 1, + ACTIONS(7546), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6140), 1, + STATE(6123), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -447991,16 +447495,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283120] = 7, - ACTIONS(5490), 1, + [282664] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7521), 1, + ACTIONS(7546), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448008,16 +447512,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283144] = 7, - ACTIONS(5462), 1, + [282688] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7523), 1, + ACTIONS(7548), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448025,16 +447529,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283168] = 7, - ACTIONS(5474), 1, + [282712] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7525), 1, + ACTIONS(7550), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448042,16 +447546,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283192] = 7, - ACTIONS(5482), 1, + [282736] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7527), 1, + ACTIONS(7552), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448059,16 +447563,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283216] = 7, - ACTIONS(5490), 1, + [282760] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7529), 1, + ACTIONS(7554), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448076,16 +447580,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283240] = 7, - ACTIONS(5498), 1, + [282784] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7505), 1, - anon_sym_RPAREN, - STATE(5446), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + ACTIONS(7538), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448093,34 +447597,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283264] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1713), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6320), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [283290] = 7, - ACTIONS(5462), 1, + [282808] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7531), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(7556), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6262), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448128,16 +447614,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283314] = 7, - ACTIONS(5506), 1, + [282832] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7533), 1, - anon_sym_RBRACE, - STATE(5483), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(7556), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448145,16 +447631,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283338] = 7, - ACTIONS(5462), 1, + [282856] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7535), 1, + ACTIONS(7558), 1, anon_sym_DQUOTE, - STATE(6153), 1, + STATE(6135), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448162,16 +447648,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283362] = 7, - ACTIONS(5462), 1, + [282880] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7535), 1, + ACTIONS(7558), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448179,16 +447665,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283386] = 7, - ACTIONS(5474), 1, + [282904] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7537), 1, + ACTIONS(7560), 1, anon_sym_SQUOTE, - STATE(6154), 1, + STATE(6136), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448196,16 +447682,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283410] = 7, - ACTIONS(5474), 1, + [282928] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7537), 1, + ACTIONS(7560), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448213,16 +447699,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283434] = 7, - ACTIONS(5482), 1, + [282952] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7539), 1, + ACTIONS(7562), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6155), 1, + STATE(6137), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448230,16 +447716,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283458] = 7, - ACTIONS(5482), 1, + [282976] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7539), 1, + ACTIONS(7562), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448247,16 +447733,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283482] = 7, - ACTIONS(5490), 1, + [283000] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7541), 1, + ACTIONS(7564), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6156), 1, + STATE(6138), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448264,16 +447750,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283506] = 7, - ACTIONS(5490), 1, + [283024] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7541), 1, + ACTIONS(7564), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448281,16 +447767,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283530] = 7, - ACTIONS(5462), 1, + [283048] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7543), 1, + ACTIONS(7566), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448298,16 +447784,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283554] = 7, - ACTIONS(5474), 1, + [283072] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7545), 1, + ACTIONS(7568), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448315,16 +447801,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283578] = 7, - ACTIONS(5482), 1, + [283096] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7547), 1, + ACTIONS(7570), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448332,50 +447818,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283602] = 7, - ACTIONS(5490), 1, + [283120] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7549), 1, + ACTIONS(7572), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [283626] = 7, - ACTIONS(5474), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, - sym_escape_sequence, - ACTIONS(7551), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [283650] = 7, - ACTIONS(5482), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, - ACTIONS(7553), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448383,16 +447835,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283674] = 7, - ACTIONS(5490), 1, + [283144] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7555), 1, + ACTIONS(7574), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(6263), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448400,16 +447852,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283698] = 7, - ACTIONS(5538), 1, + [283168] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7557), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(7574), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448417,16 +447869,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283722] = 7, - ACTIONS(5462), 1, + [283192] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7559), 1, + ACTIONS(7576), 1, anon_sym_DQUOTE, - STATE(6169), 1, + STATE(6149), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448434,16 +447886,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283746] = 7, - ACTIONS(5462), 1, + [283216] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7559), 1, + ACTIONS(7576), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448451,16 +447903,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283770] = 7, - ACTIONS(5474), 1, + [283240] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7561), 1, + ACTIONS(7578), 1, anon_sym_SQUOTE, - STATE(6170), 1, + STATE(6150), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448468,16 +447920,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283794] = 7, - ACTIONS(5474), 1, + [283264] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7561), 1, + ACTIONS(7578), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448485,16 +447937,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283818] = 7, - ACTIONS(5482), 1, + [283288] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7563), 1, + ACTIONS(7580), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6171), 1, + STATE(6151), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448502,16 +447954,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283842] = 7, - ACTIONS(5482), 1, + [283312] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7563), 1, + ACTIONS(7580), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448519,16 +447971,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283866] = 7, - ACTIONS(5490), 1, + [283336] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7565), 1, + ACTIONS(7582), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6172), 1, + STATE(6152), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448536,16 +447988,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283890] = 7, - ACTIONS(5490), 1, + [283360] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7565), 1, + ACTIONS(7582), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448553,16 +448005,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283914] = 7, - ACTIONS(5462), 1, + [283384] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7567), 1, + ACTIONS(7584), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448570,16 +448022,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283938] = 7, - ACTIONS(5474), 1, + [283408] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7569), 1, + ACTIONS(7586), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448587,16 +448039,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283962] = 7, - ACTIONS(5482), 1, + [283432] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7571), 1, + ACTIONS(7588), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448604,16 +448056,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [283986] = 7, - ACTIONS(5490), 1, + [283456] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7573), 1, + ACTIONS(7590), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448621,16 +448073,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284010] = 7, - ACTIONS(7575), 1, - anon_sym_RBRACK, - ACTIONS(7577), 1, + [283480] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(7580), 1, + ACTIONS(5828), 1, sym_escape_sequence, - STATE(6173), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + ACTIONS(7592), 1, + anon_sym_PIPE, + STATE(5502), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448638,52 +448090,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284034] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1665), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6099), 1, - aux_sym_block_repeat1, + [283504] = 7, + ACTIONS(5826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5828), 1, + sym_escape_sequence, + ACTIONS(7592), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [284060] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(1665), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, - anon_sym_SEMI, - STATE(463), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [284086] = 7, - ACTIONS(5462), 1, + sym_comment, + [283528] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7583), 1, + ACTIONS(7594), 1, anon_sym_DQUOTE, - STATE(6184), 1, + STATE(6163), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448691,16 +448124,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284110] = 7, - ACTIONS(5462), 1, + [283552] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7583), 1, + ACTIONS(7594), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448708,16 +448141,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284134] = 7, - ACTIONS(5474), 1, + [283576] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7585), 1, + ACTIONS(7596), 1, anon_sym_SQUOTE, - STATE(6185), 1, + STATE(6164), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448725,16 +448158,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284158] = 7, - ACTIONS(5474), 1, + [283600] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7585), 1, + ACTIONS(7596), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448742,16 +448175,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284182] = 7, - ACTIONS(5482), 1, + [283624] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7587), 1, + ACTIONS(7598), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6186), 1, + STATE(6165), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448759,16 +448192,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284206] = 7, - ACTIONS(5482), 1, + [283648] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7587), 1, + ACTIONS(7598), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448776,16 +448209,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284230] = 7, - ACTIONS(5490), 1, + [283672] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7589), 1, + ACTIONS(7600), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6187), 1, + STATE(6166), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448793,16 +448226,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284254] = 7, - ACTIONS(5490), 1, + [283696] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7589), 1, + ACTIONS(7600), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448810,16 +448243,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284278] = 7, - ACTIONS(5462), 1, + [283720] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7591), 1, + ACTIONS(7602), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448827,16 +448260,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284302] = 7, - ACTIONS(5474), 1, + [283744] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7593), 1, + ACTIONS(7604), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448844,16 +448277,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284326] = 7, - ACTIONS(5482), 1, + [283768] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7595), 1, + ACTIONS(7606), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448861,16 +448294,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284350] = 7, - ACTIONS(5490), 1, + [283792] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7597), 1, + ACTIONS(7608), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448878,16 +448311,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284374] = 7, - ACTIONS(5462), 1, + [283816] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5868), 1, + sym_escape_sequence, + ACTIONS(7610), 1, + anon_sym_SLASH, + STATE(5503), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [283840] = 7, + ACTIONS(5510), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7599), 1, + ACTIONS(7612), 1, anon_sym_DQUOTE, - STATE(6196), 1, + STATE(6176), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448895,16 +448345,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284398] = 7, - ACTIONS(5462), 1, + [283864] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7599), 1, + ACTIONS(7612), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448912,16 +448362,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284422] = 7, - ACTIONS(5474), 1, + [283888] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7601), 1, + ACTIONS(7614), 1, anon_sym_SQUOTE, - STATE(6197), 1, + STATE(6177), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448929,16 +448379,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284446] = 7, - ACTIONS(5474), 1, + [283912] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7601), 1, + ACTIONS(7614), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448946,16 +448396,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284470] = 7, - ACTIONS(5482), 1, + [283936] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7603), 1, + ACTIONS(7616), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6198), 1, + STATE(6178), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448963,16 +448413,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284494] = 7, - ACTIONS(5482), 1, + [283960] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7603), 1, + ACTIONS(7616), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448980,16 +448430,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284518] = 7, - ACTIONS(5490), 1, + [283984] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7605), 1, + ACTIONS(7618), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6199), 1, + STATE(6179), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -448997,16 +448447,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284542] = 7, - ACTIONS(5490), 1, + [284008] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7605), 1, + ACTIONS(7618), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449014,16 +448464,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284566] = 7, - ACTIONS(5462), 1, + [284032] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7607), 1, + ACTIONS(7620), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449031,16 +448481,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284590] = 7, - ACTIONS(5474), 1, + [284056] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7609), 1, + ACTIONS(7622), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449048,16 +448498,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284614] = 7, - ACTIONS(5482), 1, + [284080] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7611), 1, + ACTIONS(7624), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449065,16 +448515,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284638] = 7, - ACTIONS(5490), 1, + [284104] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7613), 1, + ACTIONS(7626), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449082,16 +448532,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284662] = 7, - ACTIONS(5462), 1, + [284128] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5820), 1, + sym_escape_sequence, + ACTIONS(7628), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [284152] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(914), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6251), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [284178] = 7, + ACTIONS(5510), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7615), 1, + ACTIONS(7630), 1, anon_sym_DQUOTE, - STATE(6204), 1, + STATE(6186), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449099,16 +448584,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284686] = 7, - ACTIONS(5462), 1, + [284202] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7615), 1, + ACTIONS(7630), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449116,16 +448601,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284710] = 7, - ACTIONS(5474), 1, + [284226] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7617), 1, + ACTIONS(7632), 1, anon_sym_SQUOTE, - STATE(6205), 1, + STATE(6187), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449133,16 +448618,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284734] = 7, - ACTIONS(5474), 1, + [284250] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7617), 1, + ACTIONS(7632), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449150,16 +448635,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284758] = 7, - ACTIONS(5462), 1, + [284274] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7619), 1, + ACTIONS(7634), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449167,16 +448652,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284782] = 7, - ACTIONS(5474), 1, + [284298] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7621), 1, + ACTIONS(7636), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449184,16 +448669,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284806] = 7, - ACTIONS(5462), 1, + [284322] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7623), 1, + ACTIONS(7638), 1, anon_sym_DQUOTE, - STATE(6210), 1, + STATE(6254), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [284346] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1683), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6322), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [284372] = 7, + ACTIONS(5510), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5512), 1, + sym_escape_sequence, + ACTIONS(7640), 1, + anon_sym_DQUOTE, + STATE(6194), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449201,16 +448721,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284830] = 7, - ACTIONS(5462), 1, + [284396] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7623), 1, + ACTIONS(7640), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449218,16 +448738,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284854] = 7, - ACTIONS(5474), 1, + [284420] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7625), 1, + ACTIONS(7642), 1, anon_sym_SQUOTE, - STATE(6211), 1, + STATE(6195), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449235,16 +448755,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284878] = 7, - ACTIONS(5474), 1, + [284444] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7625), 1, + ACTIONS(7642), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449252,16 +448772,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284902] = 7, - ACTIONS(5462), 1, + [284468] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7627), 1, + ACTIONS(7644), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449269,16 +448789,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284926] = 7, - ACTIONS(5474), 1, + [284492] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7629), 1, + ACTIONS(7646), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449286,16 +448806,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284950] = 7, - ACTIONS(5462), 1, + [284516] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7631), 1, + ACTIONS(7638), 1, anon_sym_DQUOTE, - STATE(6216), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449303,16 +448823,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284974] = 7, - ACTIONS(5462), 1, + [284540] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5488), 1, + sym_escape_sequence, + ACTIONS(7648), 1, + anon_sym_SQUOTE, + STATE(6255), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [284564] = 7, + ACTIONS(5510), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7631), 1, + ACTIONS(7650), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6202), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449320,16 +448857,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [284998] = 7, - ACTIONS(5474), 1, + [284588] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5512), 1, + sym_escape_sequence, + ACTIONS(7650), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [284612] = 7, + ACTIONS(5486), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7633), 1, + ACTIONS(7652), 1, anon_sym_SQUOTE, - STATE(6217), 1, + STATE(6203), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449337,16 +448891,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285022] = 7, - ACTIONS(5474), 1, + [284636] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7633), 1, + ACTIONS(7652), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449354,16 +448908,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285046] = 7, - ACTIONS(5462), 1, + [284660] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7635), 1, + ACTIONS(7654), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449371,16 +448925,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285070] = 7, - ACTIONS(5474), 1, + [284684] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7637), 1, + ACTIONS(7656), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449388,16 +448942,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285094] = 7, - ACTIONS(5462), 1, + [284708] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5488), 1, + sym_escape_sequence, + ACTIONS(7648), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [284732] = 7, + ACTIONS(5494), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7639), 1, + ACTIONS(7658), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6256), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [284756] = 7, + ACTIONS(5510), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5512), 1, + sym_escape_sequence, + ACTIONS(7660), 1, anon_sym_DQUOTE, - STATE(6222), 1, + STATE(6210), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449405,16 +448993,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285118] = 7, - ACTIONS(5462), 1, + [284780] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7639), 1, + ACTIONS(7660), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449422,16 +449010,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285142] = 7, - ACTIONS(5474), 1, + [284804] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7641), 1, + ACTIONS(7662), 1, anon_sym_SQUOTE, - STATE(6223), 1, + STATE(6211), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449439,16 +449027,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285166] = 7, - ACTIONS(5474), 1, + [284828] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7641), 1, + ACTIONS(7662), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449456,16 +449044,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285190] = 7, - ACTIONS(5462), 1, + [284852] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7643), 1, + ACTIONS(7664), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449473,16 +449061,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285214] = 7, - ACTIONS(5474), 1, + [284876] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7645), 1, + ACTIONS(7666), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449490,16 +449078,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285238] = 7, - ACTIONS(5506), 1, + [284900] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7533), 1, - anon_sym_RBRACE, - STATE(6283), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(7658), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449507,16 +449095,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285262] = 7, - ACTIONS(5490), 1, + [284924] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7647), 1, + ACTIONS(7668), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(6257), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449524,16 +449112,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285286] = 7, - ACTIONS(5462), 1, + [284948] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7649), 1, + ACTIONS(7670), 1, anon_sym_DQUOTE, - STATE(6230), 1, + STATE(6218), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449541,16 +449129,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285310] = 7, - ACTIONS(5462), 1, + [284972] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7649), 1, + ACTIONS(7670), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449558,16 +449146,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285334] = 7, - ACTIONS(5474), 1, + [284996] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7651), 1, + ACTIONS(7672), 1, anon_sym_SQUOTE, - STATE(6231), 1, + STATE(6219), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449575,16 +449163,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285358] = 7, - ACTIONS(5474), 1, + [285020] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7651), 1, + ACTIONS(7672), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449592,16 +449180,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285382] = 7, - ACTIONS(5462), 1, + [285044] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7653), 1, + ACTIONS(7674), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449609,16 +449197,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285406] = 7, - ACTIONS(5474), 1, + [285068] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7655), 1, + ACTIONS(7676), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449626,52 +449214,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285430] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(7657), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(5414), 1, - aux_sym_anonymous_function_repeat1, + [285092] = 7, + ACTIONS(5502), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5504), 1, + sym_escape_sequence, + ACTIONS(7668), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [285456] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(7657), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [285482] = 7, - ACTIONS(5462), 1, + sym_comment, + [285116] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7659), 1, + ACTIONS(7678), 1, anon_sym_DQUOTE, - STATE(6238), 1, + STATE(6225), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449679,16 +449248,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285506] = 7, - ACTIONS(5462), 1, + [285140] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7659), 1, + ACTIONS(7678), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449696,16 +449265,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285530] = 7, - ACTIONS(5474), 1, + [285164] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7661), 1, + ACTIONS(7680), 1, anon_sym_SQUOTE, - STATE(6239), 1, + STATE(6226), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449713,16 +449282,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285554] = 7, - ACTIONS(5474), 1, + [285188] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7661), 1, + ACTIONS(7680), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449730,16 +449299,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285578] = 7, - ACTIONS(5462), 1, + [285212] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7663), 1, + ACTIONS(7682), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449747,16 +449316,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285602] = 7, - ACTIONS(5474), 1, + [285236] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7665), 1, + ACTIONS(7684), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449764,33 +449333,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285626] = 7, - ACTIONS(5514), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, - sym_escape_sequence, - ACTIONS(7667), 1, - anon_sym_RBRACK, - STATE(5484), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, - sym_interpolation, + [285260] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(886), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6329), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [285650] = 7, - ACTIONS(5462), 1, + [285286] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7669), 1, + ACTIONS(7686), 1, anon_sym_DQUOTE, - STATE(6245), 1, + STATE(6232), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449798,16 +449368,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285674] = 7, - ACTIONS(5462), 1, + [285310] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7669), 1, + ACTIONS(7686), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449815,16 +449385,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285698] = 7, - ACTIONS(5474), 1, + [285334] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7671), 1, + ACTIONS(7688), 1, anon_sym_SQUOTE, - STATE(6246), 1, + STATE(6233), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449832,16 +449402,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285722] = 7, - ACTIONS(5474), 1, + [285358] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7671), 1, + ACTIONS(7688), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449849,16 +449419,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285746] = 7, - ACTIONS(5462), 1, + [285382] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7673), 1, + ACTIONS(7690), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449866,16 +449436,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285770] = 7, - ACTIONS(5474), 1, + [285406] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7675), 1, + ACTIONS(7692), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449883,33 +449453,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285794] = 7, - ACTIONS(7677), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7679), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7682), 1, - sym_escape_sequence, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [285818] = 7, - ACTIONS(5514), 1, + [285430] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7667), 1, - anon_sym_RBRACK, - STATE(6173), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + ACTIONS(7610), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449917,16 +449470,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285842] = 7, - ACTIONS(5462), 1, + [285454] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7685), 1, + ACTIONS(7694), 1, anon_sym_DQUOTE, - STATE(6253), 1, + STATE(6239), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449934,16 +449487,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285866] = 7, - ACTIONS(5462), 1, + [285478] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7685), 1, + ACTIONS(7694), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449951,16 +449504,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285890] = 7, - ACTIONS(5474), 1, + [285502] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7687), 1, + ACTIONS(7696), 1, anon_sym_SQUOTE, - STATE(6254), 1, + STATE(6240), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449968,16 +449521,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285914] = 7, - ACTIONS(5474), 1, + [285526] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7687), 1, + ACTIONS(7696), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -449985,16 +449538,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285938] = 7, - ACTIONS(5462), 1, + [285550] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7689), 1, + ACTIONS(7698), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450002,16 +449555,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285962] = 7, - ACTIONS(5474), 1, + [285574] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7691), 1, + ACTIONS(7700), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450019,68 +449572,106 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [285986] = 7, - ACTIONS(5522), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, - sym_escape_sequence, - ACTIONS(7369), 1, - anon_sym_GT, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, - sym_interpolation, + [285598] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1787), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6285), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [285624] = 8, + ACTIONS(5), 1, sym_comment, - [286010] = 7, - ACTIONS(5530), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, - sym_escape_sequence, - ACTIONS(7693), 1, - anon_sym_PIPE, - STATE(5996), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, - sym_interpolation, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(1787), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, + anon_sym_SEMI, + STATE(425), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, + [285650] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(916), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6267), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [285676] = 8, + ACTIONS(5), 1, sym_comment, - [286034] = 8, + ACTIONS(3148), 1, + ts_builtin_sym_end, + ACTIONS(5268), 1, + aux_sym_terminator_token1, + ACTIONS(5271), 1, + anon_sym_SEMI, + STATE(945), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6244), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [285702] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(860), 1, + ACTIONS(1787), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6273), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [286060] = 7, - ACTIONS(5462), 1, + [285728] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7695), 1, + ACTIONS(7702), 1, anon_sym_DQUOTE, - STATE(6274), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450088,50 +449679,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286084] = 7, - ACTIONS(5462), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, - sym_escape_sequence, - ACTIONS(7695), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, - sym_interpolation, + [285752] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1729), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6271), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [285778] = 8, + ACTIONS(5), 1, sym_comment, - [286108] = 7, - ACTIONS(5474), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, - sym_escape_sequence, - ACTIONS(7697), 1, - anon_sym_SQUOTE, - STATE(6275), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, - sym_interpolation, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1689), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6354), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [286132] = 7, - ACTIONS(5474), 1, + [285804] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450139,50 +449732,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286156] = 7, - ACTIONS(5482), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, - ACTIONS(7699), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6276), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, - sym_interpolation, + [285828] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1581), 1, + aux_sym_terminator_token1, + ACTIONS(1729), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, + anon_sym_SEMI, + STATE(472), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [285854] = 8, + ACTIONS(5), 1, sym_comment, - [286180] = 7, - ACTIONS(5482), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, - ACTIONS(7699), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, - sym_interpolation, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1729), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6322), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [286204] = 7, - ACTIONS(5490), 1, + [285880] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7701), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6277), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(7706), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450190,16 +449785,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286228] = 7, - ACTIONS(5490), 1, + [285904] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450207,16 +449802,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286252] = 7, - ACTIONS(5530), 1, + [285928] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7693), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + ACTIONS(7710), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450224,16 +449819,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286276] = 7, - ACTIONS(5538), 1, + [285952] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7703), 1, - anon_sym_SLASH, - STATE(6160), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(7712), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450241,16 +449836,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286300] = 7, - ACTIONS(5538), 1, + [285976] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7703), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(7714), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450258,34 +449853,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286324] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(870), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6280), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [286350] = 7, - ACTIONS(5506), 1, + [286000] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7705), 1, - anon_sym_RBRACE, - STATE(6283), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(7716), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450293,70 +449870,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286374] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1655), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6285), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [286400] = 8, + [286024] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1655), 1, + ACTIONS(1689), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(450), 1, + STATE(453), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [286426] = 8, + [286050] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1655), 1, + ACTIONS(1689), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [286452] = 7, - ACTIONS(5462), 1, + [286076] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7707), 1, + ACTIONS(7718), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6331), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450364,16 +449923,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286476] = 7, - ACTIONS(5474), 1, + [286100] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7709), 1, + ACTIONS(7720), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450381,16 +449940,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286500] = 7, - ACTIONS(5482), 1, + [286124] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7711), 1, + ACTIONS(7722), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, + STATE(5415), 1, aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450398,16 +449957,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286524] = 7, - ACTIONS(5490), 1, + [286148] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7713), 1, + ACTIONS(7724), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, + STATE(5417), 1, aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450415,69 +449974,88 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286548] = 7, - ACTIONS(5522), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, - sym_escape_sequence, - ACTIONS(6594), 1, - anon_sym_GT, - STATE(5485), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, - sym_interpolation, + [286172] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(7726), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(6302), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [286198] = 8, + ACTIONS(5), 1, sym_comment, - [286572] = 8, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(7726), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [286224] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(7715), 1, + ACTIONS(7728), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6299), 1, + STATE(6313), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [286598] = 8, + [286250] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(7715), 1, + ACTIONS(7728), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [286624] = 7, - ACTIONS(5462), 1, + [286276] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7717), 1, - anon_sym_DQUOTE, - STATE(5549), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(7110), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450485,34 +450063,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286648] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1523), 1, - anon_sym_RPAREN, - ACTIONS(7719), 1, - aux_sym_terminator_token1, - ACTIONS(7722), 1, - anon_sym_SEMI, - STATE(405), 1, - sym_terminator, - STATE(1394), 1, - aux_sym_terminator_repeat1, - STATE(5627), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [286674] = 7, - ACTIONS(7725), 1, - anon_sym_RBRACE, - ACTIONS(7727), 1, + [286300] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(7730), 1, + ACTIONS(5496), 1, sym_escape_sequence, - STATE(6283), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(6858), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5414), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450520,52 +450080,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286698] = 8, + [286324] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1671), 1, + ACTIONS(1745), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(458), 1, + STATE(481), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [286724] = 8, + [286350] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1671), 1, + ACTIONS(1745), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [286750] = 7, - ACTIONS(5498), 1, + [286376] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7733), 1, + ACTIONS(7730), 1, anon_sym_RPAREN, - STATE(6303), 1, + STATE(6318), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450573,16 +450133,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286774] = 7, - ACTIONS(5498), 1, + [286400] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7733), 1, + ACTIONS(7730), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450590,16 +450150,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286798] = 7, - ACTIONS(5506), 1, + [286424] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7735), 1, + ACTIONS(7732), 1, anon_sym_RBRACE, - STATE(6304), 1, + STATE(6319), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450607,16 +450167,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286822] = 7, - ACTIONS(5506), 1, + [286448] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7735), 1, + ACTIONS(7732), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450624,16 +450184,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286846] = 7, - ACTIONS(5514), 1, + [286472] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7737), 1, + ACTIONS(7734), 1, anon_sym_RBRACK, - STATE(6305), 1, + STATE(6321), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450641,16 +450201,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286870] = 7, - ACTIONS(5514), 1, + [286496] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7737), 1, + ACTIONS(7734), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450658,16 +450218,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286894] = 7, - ACTIONS(5522), 1, + [286520] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7739), 1, + ACTIONS(7736), 1, anon_sym_GT, - STATE(6306), 1, + STATE(6323), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450675,16 +450235,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286918] = 7, - ACTIONS(5522), 1, + [286544] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7739), 1, - anon_sym_GT, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + ACTIONS(7028), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450692,16 +450252,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286942] = 7, - ACTIONS(5530), 1, + [286568] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7741), 1, - anon_sym_PIPE, - STATE(6307), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + ACTIONS(7736), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450709,16 +450269,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286966] = 7, - ACTIONS(5530), 1, + [286592] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7741), 1, + ACTIONS(7738), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(6324), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450726,33 +450286,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [286990] = 7, - ACTIONS(5538), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, - sym_escape_sequence, - ACTIONS(7743), 1, - anon_sym_SLASH, - STATE(6308), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, - sym_interpolation, + [286616] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1567), 1, + anon_sym_end, + ACTIONS(3609), 1, + aux_sym_terminator_token1, + ACTIONS(3612), 1, + anon_sym_SEMI, + STATE(412), 1, + sym_terminator, + STATE(1378), 1, + aux_sym_terminator_repeat1, + STATE(6315), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [287014] = 7, - ACTIONS(5538), 1, + [286642] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7743), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(7738), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450760,106 +450321,118 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287038] = 8, + [286666] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1527), 1, - anon_sym_RPAREN, - ACTIONS(3714), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(3717), 1, + ACTIONS(1643), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(410), 1, + STATE(441), 1, sym_terminator, - STATE(1394), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(5627), 1, - aux_sym_source_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [287064] = 8, + [286692] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(7745), 1, - anon_sym_end, + ACTIONS(1643), 1, + anon_sym_RPAREN, STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, + STATE(6322), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [287090] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(1641), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, - anon_sym_SEMI, - STATE(451), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, + [286718] = 7, + ACTIONS(5806), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5808), 1, + sym_escape_sequence, + ACTIONS(7740), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [287116] = 8, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [286742] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(7742), 1, + anon_sym_COMMA, + STATE(6287), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1641), 1, + ACTIONS(2603), 3, anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6320), 1, - aux_sym_block_repeat1, + anon_sym_RBRACE, + anon_sym_RBRACK, + [286762] = 7, + ACTIONS(5866), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5868), 1, + sym_escape_sequence, + ACTIONS(7745), 1, + anon_sym_SLASH, + STATE(6325), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [287142] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(1645), 1, + sym_comment, + [286786] = 7, + ACTIONS(5818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5820), 1, + sym_escape_sequence, + ACTIONS(7747), 1, anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6301), 1, - aux_sym_block_repeat1, + STATE(6307), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [287168] = 7, - ACTIONS(5498), 1, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [286810] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, ACTIONS(7747), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450867,16 +450440,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287192] = 7, - ACTIONS(5506), 1, + [286834] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, ACTIONS(7749), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6308), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450884,16 +450457,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287216] = 7, - ACTIONS(5514), 1, + [286858] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5480), 1, + sym_escape_sequence, + ACTIONS(7749), 1, + anon_sym_RBRACE, + STATE(6335), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [286882] = 7, + ACTIONS(5798), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5800), 1, sym_escape_sequence, ACTIONS(7751), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(6309), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450901,16 +450491,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287240] = 7, - ACTIONS(5522), 1, + [286906] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5800), 1, + sym_escape_sequence, + ACTIONS(7751), 1, + anon_sym_RBRACK, + STATE(5401), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [286930] = 7, + ACTIONS(5806), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5808), 1, sym_escape_sequence, ACTIONS(7753), 1, anon_sym_GT, - STATE(6010), 1, + STATE(6310), 1, aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450918,16 +450525,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287264] = 7, - ACTIONS(5530), 1, + [286954] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5808), 1, + sym_escape_sequence, + ACTIONS(7753), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [286978] = 7, + ACTIONS(5826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5828), 1, sym_escape_sequence, ACTIONS(7755), 1, anon_sym_PIPE, - STATE(6084), 1, + STATE(6311), 1, aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450935,16 +450559,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287288] = 7, - ACTIONS(5538), 1, + [287002] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7757), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(7755), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450952,34 +450576,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287312] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3266), 1, - anon_sym_RPAREN, - ACTIONS(5250), 1, - aux_sym_terminator_token1, - ACTIONS(5253), 1, - anon_sym_SEMI, - STATE(836), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, + [287026] = 7, + ACTIONS(5866), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5868), 1, + sym_escape_sequence, + ACTIONS(7757), 1, + anon_sym_SLASH, + STATE(6312), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [287338] = 7, - ACTIONS(5462), 1, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [287050] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7717), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(7757), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -450987,16 +450610,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287362] = 7, - ACTIONS(5474), 1, + [287074] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7759), 1, - anon_sym_SQUOTE, - STATE(5670), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + ACTIONS(7745), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451004,88 +450627,106 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287386] = 8, + [287098] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(1727), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(724), 1, anon_sym_SEMI, - STATE(482), 1, + ACTIONS(7759), 1, + anon_sym_end, + STATE(157), 1, sym_terminator, - STATE(1388), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [287412] = 8, + [287124] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(1567), 1, + anon_sym_RPAREN, + ACTIONS(3717), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(3720), 1, anon_sym_SEMI, - ACTIONS(7761), 1, + STATE(410), 1, + sym_terminator, + STATE(1377), 1, + aux_sym_terminator_repeat1, + STATE(5652), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [287150] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1571), 1, anon_sym_end, - STATE(156), 1, + ACTIONS(7761), 1, + aux_sym_terminator_token1, + ACTIONS(7764), 1, + anon_sym_SEMI, + STATE(405), 1, sym_terminator, - STATE(1384), 1, + STATE(1378), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, + STATE(6315), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [287438] = 8, + [287176] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1645), 1, + ACTIONS(1777), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(434), 1, + STATE(459), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [287464] = 8, + [287202] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1727), 1, + ACTIONS(1777), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [287490] = 7, - ACTIONS(5498), 1, + [287228] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7763), 1, + ACTIONS(7767), 1, anon_sym_RPAREN, - STATE(5421), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451093,16 +450734,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287514] = 7, - ACTIONS(5498), 1, + [287252] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7763), 1, - anon_sym_RPAREN, - STATE(5446), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + ACTIONS(7769), 1, + anon_sym_RBRACE, + STATE(6335), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451110,16 +450751,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287538] = 7, - ACTIONS(5506), 1, + [287276] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7765), 1, - anon_sym_RBRACE, - STATE(5422), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(7771), 1, + anon_sym_RBRACK, + STATE(5401), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451127,67 +450768,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287562] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7767), 1, - anon_sym_COMMA, - STATE(6319), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + [287300] = 7, + ACTIONS(5806), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5808), 1, + sym_escape_sequence, + ACTIONS(7773), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, + sym_interpolation, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(2353), 3, - anon_sym_RPAREN, - anon_sym_when, - anon_sym_DASH_GT, - [287582] = 8, - ACTIONS(5), 1, sym_comment, - ACTIONS(5262), 1, - aux_sym_terminator_token1, - ACTIONS(5265), 1, - anon_sym_SEMI, - ACTIONS(5268), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6320), 1, - aux_sym_block_repeat1, + [287324] = 7, + ACTIONS(5826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5828), 1, + sym_escape_sequence, + ACTIONS(7775), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [287608] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(856), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6347), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [287634] = 7, - ACTIONS(5462), 1, + sym_comment, + [287348] = 7, + ACTIONS(5866), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5868), 1, sym_escape_sequence, - ACTIONS(7770), 1, - anon_sym_DQUOTE, - STATE(6348), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(7777), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451195,34 +450819,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287658] = 8, + [287372] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(868), 1, - anon_sym_RPAREN, + ACTIONS(7779), 1, + anon_sym_end, STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(5548), 1, - aux_sym_block_repeat1, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [287684] = 7, - ACTIONS(5462), 1, + [287398] = 7, + ACTIONS(7781), 1, + anon_sym_RPAREN, + ACTIONS(7783), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(7786), 1, sym_escape_sequence, - ACTIONS(7770), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6314), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451230,65 +450854,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287708] = 5, + [287422] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(7772), 1, - anon_sym_COMMA, - STATE(6325), 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(2689), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [287728] = 7, - ACTIONS(5474), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, - sym_escape_sequence, - ACTIONS(7775), 1, - anon_sym_SQUOTE, - STATE(6350), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, + ACTIONS(3150), 1, + anon_sym_end, + ACTIONS(5268), 1, aux_sym_terminator_token1, - sym_comment, - [287752] = 7, - ACTIONS(5474), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, - sym_escape_sequence, - ACTIONS(7775), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, - sym_interpolation, + ACTIONS(5271), 1, + anon_sym_SEMI, + STATE(943), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6315), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [287776] = 7, - ACTIONS(5498), 1, + [287448] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7777), 1, - anon_sym_RPAREN, - STATE(5666), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + ACTIONS(7789), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451296,67 +450889,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287800] = 7, - ACTIONS(5482), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, - ACTIONS(7779), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6351), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [287472] = 8, + ACTIONS(5), 1, sym_comment, - [287824] = 7, - ACTIONS(5482), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, - sym_escape_sequence, - ACTIONS(7779), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, + ACTIONS(3270), 1, + anon_sym_RPAREN, + ACTIONS(5274), 1, aux_sym_terminator_token1, - sym_comment, - [287848] = 7, - ACTIONS(5490), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, - sym_escape_sequence, - ACTIONS(7781), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6352), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, - sym_interpolation, + ACTIONS(5277), 1, + anon_sym_SEMI, + STATE(1005), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [287872] = 7, - ACTIONS(5498), 1, + [287498] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7777), 1, + ACTIONS(7791), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451364,16 +450924,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287896] = 7, - ACTIONS(5490), 1, + [287522] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7781), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(7793), 1, + anon_sym_RBRACE, + STATE(6335), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451381,34 +450941,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287920] = 8, + [287546] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(880), 1, - anon_sym_RPAREN, - STATE(157), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(5427), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, + ACTIONS(7795), 1, + anon_sym_COMMA, + STATE(6320), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - [287946] = 7, - ACTIONS(5462), 1, + aux_sym_terminator_token1, + ACTIONS(2603), 3, + anon_sym_RPAREN, + anon_sym_when, + anon_sym_DASH_GT, + [287566] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7783), 1, - anon_sym_DQUOTE, - STATE(5450), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(7798), 1, + anon_sym_RBRACK, + STATE(5401), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451416,34 +450973,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [287970] = 8, + [287590] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(5260), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(5263), 1, anon_sym_SEMI, - ACTIONS(858), 1, - anon_sym_end, + ACTIONS(5266), 1, + anon_sym_RPAREN, STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6362), 1, - aux_sym_anonymous_function_repeat1, + STATE(6322), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [287996] = 7, - ACTIONS(5506), 1, + [287616] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7785), 1, - anon_sym_RBRACE, - STATE(6270), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(7800), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451451,16 +451008,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288020] = 7, - ACTIONS(5462), 1, + [287640] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7783), 1, - anon_sym_DQUOTE, - STATE(5575), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + ACTIONS(7802), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, + sym_interpolation, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [287664] = 7, + ACTIONS(5866), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5868), 1, + sym_escape_sequence, + ACTIONS(7804), 1, + anon_sym_SLASH, + STATE(5537), 1, + aux_sym_quoted_i_slash_repeat1, + STATE(6472), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451468,31 +451042,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288044] = 5, + [287688] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6872), 1, + ACTIONS(7806), 1, anon_sym_COMMA, - STATE(6319), 1, - aux_sym_keywords_repeat1, + STATE(6326), 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(2738), 3, + ACTIONS(2696), 3, anon_sym_RPAREN, - anon_sym_when, - anon_sym_DASH_GT, - [288064] = 7, - ACTIONS(5474), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + [287708] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7787), 1, - anon_sym_SQUOTE, - STATE(5458), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + ACTIONS(7809), 1, + anon_sym_RPAREN, + STATE(6180), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451500,51 +451074,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288088] = 7, - ACTIONS(5474), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, - sym_escape_sequence, - ACTIONS(7787), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, - sym_interpolation, + [287732] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(7811), 1, + anon_sym_end, + STATE(157), 1, + sym_terminator, + STATE(1371), 1, + aux_sym_terminator_repeat1, + STATE(5437), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [288112] = 8, + [287758] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1759), 1, - anon_sym_RPAREN, + ACTIONS(7811), 1, + anon_sym_end, STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6368), 1, - aux_sym_block_repeat1, + STATE(5438), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [288138] = 7, - ACTIONS(5506), 1, + [287784] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7785), 1, - anon_sym_RBRACE, - STATE(6283), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(7809), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym_quoted_i_parenthesis_repeat1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451552,16 +451127,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288162] = 7, - ACTIONS(5482), 1, + [287808] = 7, + ACTIONS(7813), 1, + anon_sym_DQUOTE, + ACTIONS(7815), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(7818), 1, sym_escape_sequence, - ACTIONS(7789), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5459), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451569,34 +451144,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288186] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1543), 1, - aux_sym_terminator_token1, - ACTIONS(1759), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, - anon_sym_SEMI, - STATE(505), 1, - sym_terminator, - STATE(1388), 1, - aux_sym_terminator_repeat1, - STATE(6309), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [288212] = 7, - ACTIONS(5482), 1, + [287832] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7789), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + ACTIONS(7821), 1, + anon_sym_RBRACE, + STATE(6335), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451604,51 +451161,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288236] = 8, + [287856] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1759), 1, + ACTIONS(876), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6348), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [288262] = 7, - ACTIONS(5462), 1, + [287882] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7791), 1, + ACTIONS(7823), 1, anon_sym_DQUOTE, - STATE(5575), 1, + STATE(6349), 1, aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [288286] = 7, - ACTIONS(5490), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, - sym_escape_sequence, - ACTIONS(7793), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5460), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451656,16 +451196,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288310] = 7, - ACTIONS(5474), 1, + [287906] = 7, + ACTIONS(7825), 1, + anon_sym_RBRACE, + ACTIONS(7827), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(7830), 1, sym_escape_sequence, - ACTIONS(7795), 1, - anon_sym_SQUOTE, - STATE(5887), 1, - aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6335), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451673,16 +451213,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288334] = 7, - ACTIONS(5482), 1, + [287930] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7797), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6127), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + ACTIONS(7823), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451690,16 +451230,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288358] = 7, - ACTIONS(5490), 1, + [287954] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7799), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(7833), 1, + anon_sym_SQUOTE, + STATE(6350), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451707,16 +451247,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288382] = 7, - ACTIONS(5506), 1, + [287978] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7765), 1, - anon_sym_RBRACE, - STATE(6283), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(7833), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451724,16 +451264,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288406] = 7, - ACTIONS(5514), 1, + [288002] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7801), 1, - anon_sym_RBRACK, - STATE(5423), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + ACTIONS(7835), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6351), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451741,16 +451281,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288430] = 7, - ACTIONS(5514), 1, + [288026] = 7, + ACTIONS(5494), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5496), 1, sym_escape_sequence, - ACTIONS(7801), 1, - anon_sym_RBRACK, - STATE(6173), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + ACTIONS(7835), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451758,16 +451298,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288454] = 7, - ACTIONS(5522), 1, + [288050] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7803), 1, - anon_sym_GT, - STATE(5424), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + ACTIONS(7837), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6352), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451775,16 +451315,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288478] = 7, - ACTIONS(5522), 1, + [288074] = 7, + ACTIONS(5502), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5504), 1, sym_escape_sequence, - ACTIONS(7803), 1, - anon_sym_GT, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + ACTIONS(7837), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451792,16 +451332,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288502] = 7, - ACTIONS(5530), 1, + [288098] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7243), 1, - anon_sym_PIPE, - STATE(5425), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + ACTIONS(7839), 1, + anon_sym_RBRACE, + STATE(6332), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451809,34 +451349,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288526] = 8, + [288122] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1645), 1, - anon_sym_RPAREN, + ACTIONS(878), 1, + anon_sym_end, STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, - aux_sym_block_repeat1, + STATE(6367), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [288552] = 7, - ACTIONS(5474), 1, + [288148] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5476), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(7759), 1, + ACTIONS(7841), 1, anon_sym_SQUOTE, - STATE(5887), 1, + STATE(5407), 1, aux_sym_quoted_i_single_repeat1, - STATE(6569), 1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451844,52 +451384,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288576] = 8, + [288172] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(7805), 1, - anon_sym_end, + ACTIONS(1795), 1, + anon_sym_RPAREN, STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6389), 1, - aux_sym_anonymous_function_repeat1, + STATE(5943), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [288602] = 8, + [288198] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(1795), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, anon_sym_SEMI, - ACTIONS(7805), 1, - anon_sym_end, + STATE(512), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + [288224] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(722), 1, + aux_sym_terminator_token1, + ACTIONS(724), 1, + anon_sym_SEMI, + ACTIONS(1795), 1, + anon_sym_RPAREN, STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, + STATE(6322), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [288628] = 7, - ACTIONS(5490), 1, + [288250] = 7, + ACTIONS(5510), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5512), 1, sym_escape_sequence, - ACTIONS(7793), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6247), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(7843), 1, + anon_sym_DQUOTE, + STATE(6331), 1, + aux_sym_quoted_i_double_repeat1, + STATE(6577), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451897,16 +451455,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288652] = 7, - ACTIONS(5482), 1, + [288274] = 7, + ACTIONS(5486), 1, anon_sym_POUND_LBRACE, - ACTIONS(5484), 1, + ACTIONS(5488), 1, sym_escape_sequence, - ACTIONS(6754), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5904), 1, - aux_sym_quoted_i_heredoc_single_repeat1, - STATE(6485), 1, + ACTIONS(7845), 1, + anon_sym_SQUOTE, + STATE(5407), 1, + aux_sym_quoted_i_single_repeat1, + STATE(6522), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -451914,88 +451472,86 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288676] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1523), 1, - anon_sym_end, - ACTIONS(7807), 1, - aux_sym_terminator_token1, - ACTIONS(7810), 1, - anon_sym_SEMI, - STATE(412), 1, - sym_terminator, - STATE(1386), 1, - aux_sym_terminator_repeat1, - STATE(5466), 1, - aux_sym_source_repeat1, + [288298] = 7, + ACTIONS(5494), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5496), 1, + sym_escape_sequence, + ACTIONS(7847), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5415), 1, + aux_sym_quoted_i_heredoc_single_repeat1, + STATE(6396), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [288702] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, + ACTIONS(5), 2, aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(7813), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(6384), 1, - aux_sym_anonymous_function_repeat1, + sym_comment, + [288322] = 7, + ACTIONS(5502), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5504), 1, + sym_escape_sequence, + ACTIONS(7849), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5417), 1, + aux_sym_quoted_i_heredoc_double_repeat1, + STATE(6419), 1, + sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [288728] = 8, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + [288346] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1543), 1, + ACTIONS(1581), 1, aux_sym_terminator_token1, - ACTIONS(1771), 1, + ACTIONS(1707), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(2831), 1, anon_sym_SEMI, - STATE(514), 1, + STATE(463), 1, sym_terminator, - STATE(1388), 1, + STATE(1376), 1, aux_sym_terminator_repeat1, - STATE(6309), 1, + STATE(6317), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [288754] = 8, + [288372] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(1771), 1, + ACTIONS(1707), 1, anon_sym_RPAREN, - STATE(157), 1, + STATE(156), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6320), 1, + STATE(6322), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [288780] = 7, - ACTIONS(5498), 1, + [288398] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7815), 1, + ACTIONS(7851), 1, anon_sym_RPAREN, - STATE(5428), 1, + STATE(5460), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452003,16 +451559,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288804] = 7, - ACTIONS(5498), 1, + [288422] = 7, + ACTIONS(5818), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5820), 1, sym_escape_sequence, - ACTIONS(7815), 1, + ACTIONS(7851), 1, anon_sym_RPAREN, - STATE(5446), 1, + STATE(6314), 1, aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + STATE(6588), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452020,16 +451576,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288828] = 7, - ACTIONS(5506), 1, + [288446] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7817), 1, + ACTIONS(7853), 1, anon_sym_RBRACE, - STATE(5429), 1, + STATE(5461), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452037,50 +451593,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288852] = 7, - ACTIONS(5506), 1, + [288470] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7817), 1, + ACTIONS(7853), 1, anon_sym_RBRACE, - STATE(6283), 1, + STATE(6335), 1, aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [288876] = 7, - ACTIONS(5514), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, - sym_escape_sequence, - ACTIONS(7819), 1, - anon_sym_RBRACK, - STATE(5430), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [288900] = 7, - ACTIONS(5514), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, - sym_escape_sequence, - ACTIONS(7819), 1, - anon_sym_RBRACK, - STATE(6173), 1, - aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452088,67 +451610,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [288924] = 7, - ACTIONS(5522), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, - sym_escape_sequence, - ACTIONS(7821), 1, - anon_sym_GT, - STATE(5431), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, + [288494] = 8, + ACTIONS(5), 1, sym_comment, - [288948] = 7, - ACTIONS(5522), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, - sym_escape_sequence, - ACTIONS(7821), 1, - anon_sym_GT, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, + ACTIONS(1581), 1, aux_sym_terminator_token1, - sym_comment, - [288972] = 7, - ACTIONS(5530), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, - sym_escape_sequence, - ACTIONS(7823), 1, - anon_sym_PIPE, - STATE(5461), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, - sym_interpolation, + ACTIONS(1807), 1, + anon_sym_RPAREN, + ACTIONS(2831), 1, + anon_sym_SEMI, + STATE(448), 1, + sym_terminator, + STATE(1376), 1, + aux_sym_terminator_repeat1, + STATE(6317), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [288996] = 7, - ACTIONS(5530), 1, + [288520] = 7, + ACTIONS(5478), 1, anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5480), 1, sym_escape_sequence, - ACTIONS(7823), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, + ACTIONS(7839), 1, + anon_sym_RBRACE, + STATE(6335), 1, + aux_sym_quoted_i_curly_repeat1, + STATE(6614), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452156,16 +451645,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289020] = 7, - ACTIONS(5514), 1, + [288544] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7825), 1, + ACTIONS(7855), 1, anon_sym_RBRACK, - STATE(6390), 1, + STATE(6364), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452173,16 +451662,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289044] = 7, - ACTIONS(5538), 1, + [288568] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7827), 1, - anon_sym_SLASH, - STATE(5462), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(7855), 1, + anon_sym_RBRACK, + STATE(5401), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452190,16 +451679,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289068] = 7, - ACTIONS(5538), 1, + [288592] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7827), 1, - anon_sym_SLASH, - STATE(5447), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, + ACTIONS(7740), 1, + anon_sym_GT, + STATE(5406), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452207,16 +451696,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289092] = 7, - ACTIONS(5514), 1, + [288616] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7825), 1, + ACTIONS(7857), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452224,16 +451713,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289116] = 7, - ACTIONS(5522), 1, + [288640] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7829), 1, - anon_sym_GT, - STATE(5994), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, + ACTIONS(7859), 1, + anon_sym_RBRACK, + STATE(5462), 1, + aux_sym_quoted_i_square_repeat1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452241,137 +451730,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289140] = 8, + [288664] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(7831), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(7834), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(7837), 1, + ACTIONS(7861), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, + STATE(5400), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [289166] = 7, - ACTIONS(5522), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5524), 1, - sym_escape_sequence, - ACTIONS(7829), 1, - anon_sym_GT, - STATE(6010), 1, - aux_sym_quoted_i_angle_repeat1, - STATE(6629), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [289190] = 7, - ACTIONS(5530), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, - sym_escape_sequence, - ACTIONS(7839), 1, - anon_sym_PIPE, - STATE(6024), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [289214] = 7, - ACTIONS(5530), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5532), 1, - sym_escape_sequence, - ACTIONS(7839), 1, - anon_sym_PIPE, - STATE(6084), 1, - aux_sym_quoted_i_bar_repeat1, - STATE(6632), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [289238] = 7, - ACTIONS(5538), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5540), 1, - sym_escape_sequence, - ACTIONS(6860), 1, - anon_sym_SLASH, - STATE(6100), 1, - aux_sym_quoted_i_slash_repeat1, - STATE(6609), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [289262] = 8, + [288690] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(770), 1, + ACTIONS(722), 1, aux_sym_terminator_token1, - ACTIONS(772), 1, + ACTIONS(724), 1, anon_sym_SEMI, - ACTIONS(7841), 1, + ACTIONS(7861), 1, anon_sym_end, - STATE(156), 1, + STATE(157), 1, sym_terminator, - STATE(1384), 1, + STATE(1371), 1, aux_sym_terminator_repeat1, - STATE(6384), 1, + STATE(5438), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - [289288] = 7, - ACTIONS(5514), 1, + [288716] = 7, + ACTIONS(5798), 1, anon_sym_POUND_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5800), 1, sym_escape_sequence, - ACTIONS(7843), 1, + ACTIONS(7859), 1, anon_sym_RBRACK, - STATE(6173), 1, + STATE(5401), 1, aux_sym_quoted_i_square_repeat1, - STATE(6624), 1, - sym_interpolation, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - [289312] = 7, - ACTIONS(5462), 1, - anon_sym_POUND_LBRACE, - ACTIONS(5464), 1, - sym_escape_sequence, - ACTIONS(7445), 1, - anon_sym_DQUOTE, - STATE(5550), 1, - aux_sym_quoted_i_double_repeat1, - STATE(6519), 1, + STATE(6617), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452379,34 +451783,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289336] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(770), 1, - aux_sym_terminator_token1, - ACTIONS(772), 1, - anon_sym_SEMI, - ACTIONS(882), 1, - anon_sym_end, - STATE(156), 1, - sym_terminator, - STATE(1384), 1, - aux_sym_terminator_repeat1, - STATE(5889), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - [289362] = 7, - ACTIONS(5498), 1, + [288740] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7845), 1, - anon_sym_RPAREN, - STATE(5446), 1, - aux_sym_quoted_i_parenthesis_repeat1, - STATE(6555), 1, + ACTIONS(7863), 1, + anon_sym_GT, + STATE(5463), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452414,16 +451800,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289386] = 7, - ACTIONS(5506), 1, + [288764] = 7, + ACTIONS(5806), 1, anon_sym_POUND_LBRACE, - ACTIONS(5508), 1, + ACTIONS(5808), 1, sym_escape_sequence, - ACTIONS(7847), 1, - anon_sym_RBRACE, - STATE(6283), 1, - aux_sym_quoted_i_curly_repeat1, - STATE(6571), 1, + ACTIONS(7863), 1, + anon_sym_GT, + STATE(5427), 1, + aux_sym_quoted_i_angle_repeat1, + STATE(6529), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452431,16 +451817,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289410] = 7, - ACTIONS(5490), 1, + [288788] = 7, + ACTIONS(5826), 1, anon_sym_POUND_LBRACE, - ACTIONS(5492), 1, + ACTIONS(5828), 1, sym_escape_sequence, - ACTIONS(7245), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5944), 1, - aux_sym_quoted_i_heredoc_double_repeat1, - STATE(6408), 1, + ACTIONS(7314), 1, + anon_sym_PIPE, + STATE(5492), 1, + aux_sym_quoted_i_bar_repeat1, + STATE(6613), 1, sym_interpolation, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452448,292 +451834,220 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289434] = 6, - ACTIONS(7849), 1, - anon_sym_SLASH, - ACTIONS(7851), 1, - sym_escape_sequence, - ACTIONS(7853), 1, - sym_quoted_content_slash, - STATE(6988), 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, - [289455] = 6, - ACTIONS(7855), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7857), 1, - sym_escape_sequence, - ACTIONS(7859), 1, - sym_quoted_content_heredoc_single, - STATE(6646), 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, - [289476] = 6, - ACTIONS(7861), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7863), 1, - sym_escape_sequence, + [288812] = 6, ACTIONS(7865), 1, - sym_quoted_content_heredoc_double, - STATE(6670), 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, - [289497] = 6, + anon_sym_RBRACE, ACTIONS(7867), 1, - anon_sym_RBRACK, - ACTIONS(7869), 1, sym_escape_sequence, - ACTIONS(7871), 1, - sym_quoted_content_square, - STATE(7085), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(7869), 1, + sym_quoted_content_curly, + STATE(6847), 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, - [289518] = 4, + [288833] = 6, + ACTIONS(7871), 1, + anon_sym_RPAREN, + ACTIONS(7873), 1, + sym_escape_sequence, ACTIONS(7875), 1, - sym_quoted_content_i_square, + sym_quoted_content_parenthesis, + STATE(6744), 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, - ACTIONS(7873), 3, - anon_sym_RBRACK, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [289535] = 6, - ACTIONS(7857), 1, - sym_escape_sequence, + [288854] = 6, ACTIONS(7877), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE, ACTIONS(7879), 1, - sym_quoted_content_heredoc_single, - STATE(6877), 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, - [289556] = 6, - ACTIONS(7881), 1, - anon_sym_GT, - ACTIONS(7883), 1, sym_escape_sequence, - ACTIONS(7885), 1, - sym_quoted_content_angle, - STATE(6936), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(7881), 1, + sym_quoted_content_double, + STATE(6746), 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, - [289577] = 6, + [288875] = 6, ACTIONS(7883), 1, + anon_sym_SQUOTE, + ACTIONS(7885), 1, sym_escape_sequence, ACTIONS(7887), 1, - anon_sym_GT, - ACTIONS(7889), 1, - sym_quoted_content_angle, - STATE(7182), 1, - aux_sym_quoted_angle_repeat1, + sym_quoted_content_single, + STATE(6889), 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, - [289598] = 6, + [288896] = 6, + ACTIONS(7889), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(7891), 1, - anon_sym_PIPE, - ACTIONS(7893), 1, sym_escape_sequence, - ACTIONS(7895), 1, - sym_quoted_content_bar, - STATE(7241), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(7893), 1, + sym_quoted_content_heredoc_single, + STATE(6891), 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, - [289619] = 6, + [288917] = 6, + ACTIONS(7895), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(7897), 1, - anon_sym_RBRACE, - ACTIONS(7899), 1, sym_escape_sequence, - ACTIONS(7901), 1, - sym_quoted_content_curly, - STATE(6732), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(7899), 1, + sym_quoted_content_heredoc_double, + STATE(6894), 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, - [289640] = 6, - ACTIONS(7869), 1, + [288938] = 6, + ACTIONS(7867), 1, sym_escape_sequence, + ACTIONS(7901), 1, + anon_sym_RBRACE, ACTIONS(7903), 1, - anon_sym_RBRACK, - ACTIONS(7905), 1, - sym_quoted_content_square, - STATE(6832), 1, - aux_sym_quoted_square_repeat1, + sym_quoted_content_curly, + STATE(6904), 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, - [289661] = 6, - ACTIONS(7851), 1, - sym_escape_sequence, + [288959] = 6, + ACTIONS(7905), 1, + anon_sym_RBRACK, ACTIONS(7907), 1, - anon_sym_SLASH, + sym_escape_sequence, ACTIONS(7909), 1, - sym_quoted_content_slash, - STATE(7249), 1, - aux_sym_quoted_slash_repeat1, + sym_quoted_content_square, + STATE(6906), 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, - [289682] = 4, + [288980] = 6, + ACTIONS(7911), 1, + anon_sym_GT, ACTIONS(7913), 1, - sym_quoted_content_i_heredoc_double, + sym_escape_sequence, + ACTIONS(7915), 1, + sym_quoted_content_angle, + STATE(6911), 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, - ACTIONS(7911), 3, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [289699] = 6, - ACTIONS(7915), 1, - anon_sym_RPAREN, + [289001] = 6, ACTIONS(7917), 1, - sym_escape_sequence, + anon_sym_PIPE, ACTIONS(7919), 1, - sym_quoted_content_parenthesis, - STATE(7171), 1, - aux_sym_quoted_parenthesis_repeat1, + sym_escape_sequence, + ACTIONS(7921), 1, + sym_quoted_content_bar, + STATE(6917), 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, - [289720] = 6, - ACTIONS(7921), 1, - anon_sym_DQUOTE, + [289022] = 6, ACTIONS(7923), 1, - sym_escape_sequence, + anon_sym_SLASH, ACTIONS(7925), 1, - sym_quoted_content_double, - STATE(7243), 1, - aux_sym_quoted_double_repeat1, + sym_escape_sequence, + ACTIONS(7927), 1, + sym_quoted_content_slash, + STATE(6999), 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, - [289741] = 5, + [289043] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, + ACTIONS(1064), 1, anon_sym_DQUOTE, - ACTIONS(235), 1, + ACTIONS(1066), 1, anon_sym_SQUOTE, - STATE(1670), 2, + STATE(3460), 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, - [289760] = 4, - ACTIONS(7929), 1, - sym_quoted_content_i_angle, - ACTIONS(3), 2, + [289062] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1124), 1, + anon_sym_DQUOTE, + ACTIONS(1126), 1, + anon_sym_SQUOTE, + STATE(4510), 2, + sym_quoted_i_double, + sym_quoted_i_single, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, aux_sym_terminator_token1, - sym_comment, - ACTIONS(7927), 3, - anon_sym_GT, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [289777] = 6, - ACTIONS(7883), 1, - sym_escape_sequence, + [289081] = 4, ACTIONS(7931), 1, - anon_sym_GT, - ACTIONS(7933), 1, - sym_quoted_content_angle, - STATE(6886), 1, - aux_sym_quoted_angle_repeat1, + 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, - [289798] = 6, - ACTIONS(7893), 1, + ACTIONS(7929), 3, + anon_sym_RPAREN, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(7935), 1, - anon_sym_PIPE, - ACTIONS(7937), 1, - sym_quoted_content_bar, - STATE(6920), 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, - [289819] = 6, - ACTIONS(7917), 1, + [289098] = 6, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(7939), 1, + ACTIONS(7933), 1, anon_sym_RPAREN, - ACTIONS(7941), 1, + ACTIONS(7935), 1, sym_quoted_content_parenthesis, - STATE(7193), 1, + STATE(6674), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452741,14 +452055,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289840] = 6, - ACTIONS(7923), 1, + [289119] = 6, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(7943), 1, + ACTIONS(7937), 1, anon_sym_DQUOTE, - ACTIONS(7945), 1, + ACTIONS(7939), 1, sym_quoted_content_double, - STATE(7195), 1, + STATE(6676), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452756,14 +452070,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289861] = 6, - ACTIONS(7947), 1, - anon_sym_SQUOTE, - ACTIONS(7949), 1, + [289140] = 6, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(7951), 1, + ACTIONS(7941), 1, + anon_sym_SQUOTE, + ACTIONS(7943), 1, sym_quoted_content_single, - STATE(7197), 1, + STATE(6678), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452771,14 +452085,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289882] = 6, - ACTIONS(7857), 1, + [289161] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(7953), 1, + ACTIONS(7945), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7955), 1, + ACTIONS(7947), 1, sym_quoted_content_heredoc_single, - STATE(7199), 1, + STATE(6680), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452786,14 +452100,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289903] = 6, - ACTIONS(7863), 1, + [289182] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(7957), 1, + ACTIONS(7949), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7959), 1, + ACTIONS(7951), 1, sym_quoted_content_heredoc_double, - STATE(7201), 1, + STATE(6686), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452801,14 +452115,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289924] = 6, - ACTIONS(7899), 1, + [289203] = 6, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(7961), 1, + ACTIONS(7953), 1, anon_sym_RBRACE, - ACTIONS(7963), 1, + ACTIONS(7955), 1, sym_quoted_content_curly, - STATE(7203), 1, + STATE(6709), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452816,29 +452130,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289945] = 6, - ACTIONS(7851), 1, - sym_escape_sequence, - ACTIONS(7965), 1, - anon_sym_SLASH, - ACTIONS(7967), 1, - sym_quoted_content_slash, - STATE(6924), 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, - [289966] = 6, - ACTIONS(7869), 1, + [289224] = 6, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(7969), 1, + ACTIONS(7957), 1, anon_sym_RBRACK, - ACTIONS(7971), 1, + ACTIONS(7959), 1, sym_quoted_content_square, - STATE(7205), 1, + STATE(6711), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452846,14 +452145,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [289987] = 6, - ACTIONS(7883), 1, + [289245] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(7973), 1, + ACTIONS(7961), 1, anon_sym_GT, - ACTIONS(7975), 1, + ACTIONS(7963), 1, sym_quoted_content_angle, - STATE(7207), 1, + STATE(6723), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452861,14 +452160,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290008] = 6, - ACTIONS(7893), 1, + [289266] = 6, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(7977), 1, + ACTIONS(7965), 1, anon_sym_PIPE, - ACTIONS(7979), 1, + ACTIONS(7967), 1, sym_quoted_content_bar, - STATE(7209), 1, + STATE(6725), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452876,14 +452175,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290029] = 6, - ACTIONS(7851), 1, + [289287] = 6, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(7981), 1, + ACTIONS(7969), 1, anon_sym_SLASH, - ACTIONS(7983), 1, + ACTIONS(7971), 1, sym_quoted_content_slash, - STATE(7211), 1, + STATE(6729), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452891,100 +452190,41 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290050] = 4, - ACTIONS(7875), 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(7873), 3, - anon_sym_RBRACE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [290067] = 4, - ACTIONS(7875), 1, - sym_quoted_content_i_double, + [289308] = 4, + ACTIONS(7975), 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(7873), 3, - anon_sym_DQUOTE, + ACTIONS(7973), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_POUND_LBRACE, sym_escape_sequence, - [290084] = 6, - ACTIONS(7917), 1, - sym_escape_sequence, - ACTIONS(7985), 1, - anon_sym_RPAREN, - ACTIONS(7987), 1, - sym_quoted_content_parenthesis, - STATE(6644), 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, - [290105] = 6, - ACTIONS(7883), 1, - sym_escape_sequence, - ACTIONS(7989), 1, - anon_sym_GT, - ACTIONS(7991), 1, - sym_quoted_content_angle, - STATE(7105), 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, - [290126] = 6, - ACTIONS(7893), 1, - sym_escape_sequence, - ACTIONS(7993), 1, - anon_sym_PIPE, - ACTIONS(7995), 1, - sym_quoted_content_bar, - STATE(7107), 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, - [290147] = 6, - ACTIONS(7851), 1, - sym_escape_sequence, - ACTIONS(7997), 1, - anon_sym_SLASH, - ACTIONS(7999), 1, - sym_quoted_content_slash, - STATE(7164), 1, - aux_sym_quoted_slash_repeat1, - ACTIONS(3), 2, + [289325] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7977), 1, + anon_sym_COMMA, + STATE(6326), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(1190), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, aux_sym_terminator_token1, - sym_comment, - [290168] = 6, - ACTIONS(7917), 1, + [289344] = 6, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8001), 1, + ACTIONS(7979), 1, anon_sym_RPAREN, - ACTIONS(8003), 1, + ACTIONS(7981), 1, sym_quoted_content_parenthesis, - STATE(6898), 1, + STATE(6727), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -452992,14 +452232,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290189] = 6, - ACTIONS(7923), 1, + [289365] = 6, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8005), 1, + ACTIONS(7983), 1, anon_sym_DQUOTE, - ACTIONS(8007), 1, + ACTIONS(7985), 1, sym_quoted_content_double, - STATE(6900), 1, + STATE(6733), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453007,14 +452247,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290210] = 6, - ACTIONS(7949), 1, + [289386] = 6, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8009), 1, + ACTIONS(7987), 1, anon_sym_SQUOTE, - ACTIONS(8011), 1, + ACTIONS(7989), 1, sym_quoted_content_single, - STATE(6902), 1, + STATE(6737), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453022,14 +452262,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290231] = 6, - ACTIONS(7857), 1, + [289407] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8013), 1, + ACTIONS(7991), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8015), 1, + ACTIONS(7993), 1, sym_quoted_content_heredoc_single, - STATE(6904), 1, + STATE(6739), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453037,14 +452277,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290252] = 6, - ACTIONS(7863), 1, + [289428] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8017), 1, + ACTIONS(7995), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8019), 1, + ACTIONS(7997), 1, sym_quoted_content_heredoc_double, - STATE(6906), 1, + STATE(6741), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453052,14 +452292,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290273] = 6, - ACTIONS(7899), 1, + [289449] = 6, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8021), 1, + ACTIONS(7999), 1, anon_sym_RBRACE, - ACTIONS(8023), 1, + ACTIONS(8001), 1, sym_quoted_content_curly, - STATE(6908), 1, + STATE(6794), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453067,14 +452307,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290294] = 6, - ACTIONS(7869), 1, + [289470] = 6, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8025), 1, + ACTIONS(8003), 1, anon_sym_RBRACK, - ACTIONS(8027), 1, + ACTIONS(8005), 1, sym_quoted_content_square, - STATE(6910), 1, + STATE(6796), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453082,14 +452322,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290315] = 6, - ACTIONS(7883), 1, + [289491] = 4, + ACTIONS(7931), 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(7929), 3, + anon_sym_PIPE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(8029), 1, + [289508] = 6, + ACTIONS(7913), 1, + sym_escape_sequence, + ACTIONS(8007), 1, anon_sym_GT, - ACTIONS(8031), 1, + ACTIONS(8009), 1, sym_quoted_content_angle, - STATE(6912), 1, + STATE(6798), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453097,14 +452350,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290336] = 6, - ACTIONS(7893), 1, + [289529] = 6, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8033), 1, + ACTIONS(8011), 1, anon_sym_PIPE, - ACTIONS(8035), 1, + ACTIONS(8013), 1, sym_quoted_content_bar, - STATE(6914), 1, + STATE(6812), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453112,14 +452365,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290357] = 6, - ACTIONS(7851), 1, + [289550] = 6, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8037), 1, + ACTIONS(8015), 1, anon_sym_SLASH, - ACTIONS(8039), 1, + ACTIONS(8017), 1, sym_quoted_content_slash, - STATE(6917), 1, + STATE(6814), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453127,71 +452380,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290378] = 6, - ACTIONS(7863), 1, + [289571] = 6, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8041), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8043), 1, - sym_quoted_content_heredoc_double, - STATE(6885), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(8019), 1, + anon_sym_RPAREN, + ACTIONS(8021), 1, + sym_quoted_content_parenthesis, + STATE(7022), 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, - [290399] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(626), 1, - anon_sym_DQUOTE, - ACTIONS(628), 1, - anon_sym_SQUOTE, - STATE(4007), 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, - [290418] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(455), 1, + [289592] = 6, + ACTIONS(7879), 1, + sym_escape_sequence, + ACTIONS(8023), 1, anon_sym_DQUOTE, - ACTIONS(457), 1, - anon_sym_SQUOTE, - STATE(3164), 2, - sym_quoted_i_double, - sym_quoted_i_single, - ACTIONS(3), 3, + ACTIONS(8025), 1, + sym_quoted_content_double, + STATE(7024), 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, - [290437] = 5, - ACTIONS(5), 1, sym_comment, - ACTIONS(572), 1, - anon_sym_DQUOTE, - ACTIONS(574), 1, - anon_sym_SQUOTE, - STATE(3387), 2, - sym_quoted_i_double, - sym_quoted_i_single, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [290456] = 6, - ACTIONS(7949), 1, + [289613] = 6, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8045), 1, + ACTIONS(8027), 1, anon_sym_SQUOTE, - ACTIONS(8047), 1, + ACTIONS(8029), 1, sym_quoted_content_single, - STATE(6869), 1, + STATE(7046), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453199,143 +452425,159 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290477] = 6, - ACTIONS(7899), 1, + [289634] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8049), 1, - anon_sym_RBRACE, - ACTIONS(8051), 1, - sym_quoted_content_curly, - STATE(6937), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(8031), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8033), 1, + sym_quoted_content_heredoc_single, + STATE(7051), 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, - [290498] = 6, - ACTIONS(7869), 1, + [289655] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8053), 1, - anon_sym_RBRACK, - ACTIONS(8055), 1, - sym_quoted_content_square, - STATE(6946), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(8035), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8037), 1, + sym_quoted_content_heredoc_double, + STATE(7054), 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, - [290519] = 4, - ACTIONS(7875), 1, - sym_quoted_content_i_bar, + [289676] = 6, + ACTIONS(7867), 1, + sym_escape_sequence, + ACTIONS(8039), 1, + anon_sym_RBRACE, + ACTIONS(8041), 1, + sym_quoted_content_curly, + STATE(7056), 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, - ACTIONS(7873), 3, - anon_sym_PIPE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [290536] = 6, - ACTIONS(7917), 1, + [289697] = 6, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8057), 1, - anon_sym_RPAREN, - ACTIONS(8059), 1, - sym_quoted_content_parenthesis, - STATE(6835), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(8043), 1, + anon_sym_RBRACK, + ACTIONS(8045), 1, + sym_quoted_content_square, + STATE(7058), 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, - [290557] = 6, - ACTIONS(7923), 1, + [289718] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8061), 1, - anon_sym_DQUOTE, - ACTIONS(8063), 1, - sym_quoted_content_double, - STATE(6842), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(8047), 1, + anon_sym_GT, + ACTIONS(8049), 1, + sym_quoted_content_angle, + STATE(7060), 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, - [290578] = 6, - ACTIONS(7949), 1, + [289739] = 6, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8065), 1, - anon_sym_SQUOTE, - ACTIONS(8067), 1, - sym_quoted_content_single, - STATE(6844), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(8051), 1, + anon_sym_PIPE, + ACTIONS(8053), 1, + sym_quoted_content_bar, + STATE(7062), 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, - [290599] = 6, - ACTIONS(7857), 1, + [289760] = 6, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8069), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8071), 1, - sym_quoted_content_heredoc_single, - STATE(6847), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(8055), 1, + anon_sym_SLASH, + ACTIONS(8057), 1, + sym_quoted_content_slash, + STATE(7064), 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, - [290620] = 4, - ACTIONS(7929), 1, - sym_quoted_content_i_single, + [289781] = 4, + ACTIONS(8061), 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(7927), 3, - anon_sym_SQUOTE, + ACTIONS(8059), 3, + anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_POUND_LBRACE, sym_escape_sequence, - [290637] = 4, - ACTIONS(7929), 1, - sym_quoted_content_i_parenthesis, + [289798] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8063), 1, + anon_sym_COMMA, + STATE(6576), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(8065), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [289817] = 4, + ACTIONS(8069), 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(7927), 3, - anon_sym_RPAREN, + ACTIONS(8067), 3, + anon_sym_GT, anon_sym_POUND_LBRACE, sym_escape_sequence, - [290654] = 6, - ACTIONS(7917), 1, + [289834] = 6, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8073), 1, + ACTIONS(8071), 1, anon_sym_RPAREN, - ACTIONS(8075), 1, + ACTIONS(8073), 1, sym_quoted_content_parenthesis, - STATE(7054), 1, + STATE(7030), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453343,42 +452585,44 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290675] = 6, - ACTIONS(7917), 1, + [289855] = 6, + ACTIONS(7879), 1, sym_escape_sequence, + ACTIONS(8075), 1, + anon_sym_DQUOTE, ACTIONS(8077), 1, - anon_sym_RPAREN, - ACTIONS(8079), 1, - sym_quoted_content_parenthesis, - STATE(6992), 1, - aux_sym_quoted_parenthesis_repeat1, + sym_quoted_content_double, + STATE(7033), 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, - [290696] = 4, - ACTIONS(7875), 1, - sym_quoted_content_i_single, + [289876] = 6, + ACTIONS(7873), 1, + sym_escape_sequence, + ACTIONS(8079), 1, + anon_sym_RPAREN, + ACTIONS(8081), 1, + sym_quoted_content_parenthesis, + STATE(6625), 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, - ACTIONS(7873), 3, - anon_sym_SQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [290713] = 6, - ACTIONS(7923), 1, + [289897] = 6, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8081), 1, - anon_sym_DQUOTE, ACTIONS(8083), 1, + anon_sym_DQUOTE, + ACTIONS(8085), 1, sym_quoted_content_double, - STATE(7010), 1, + STATE(6627), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453386,14 +452630,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290734] = 6, - ACTIONS(7949), 1, + [289918] = 6, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8085), 1, - anon_sym_SQUOTE, ACTIONS(8087), 1, + anon_sym_SQUOTE, + ACTIONS(8089), 1, sym_quoted_content_single, - STATE(7012), 1, + STATE(6629), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453401,27 +452645,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290755] = 4, - ACTIONS(7929), 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(7927), 3, - anon_sym_PIPE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [290772] = 6, - ACTIONS(7857), 1, + [289939] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8089), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8091), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8093), 1, sym_quoted_content_heredoc_single, - STATE(7052), 1, + STATE(6631), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453429,29 +452660,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290793] = 6, - ACTIONS(7923), 1, + [289960] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8093), 1, - anon_sym_DQUOTE, ACTIONS(8095), 1, - sym_quoted_content_double, - STATE(6837), 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, - [290814] = 6, - ACTIONS(7863), 1, - sym_escape_sequence, - ACTIONS(8097), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8099), 1, + ACTIONS(8097), 1, sym_quoted_content_heredoc_double, - STATE(7175), 1, + STATE(6633), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453459,116 +452675,104 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290835] = 6, - ACTIONS(7917), 1, + [289981] = 6, + ACTIONS(7867), 1, sym_escape_sequence, + ACTIONS(8099), 1, + anon_sym_RBRACE, ACTIONS(8101), 1, - anon_sym_RPAREN, - ACTIONS(8103), 1, - sym_quoted_content_parenthesis, - STATE(7015), 1, - aux_sym_quoted_parenthesis_repeat1, + sym_quoted_content_curly, + STATE(6635), 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, - [290856] = 6, - ACTIONS(7923), 1, + [290002] = 6, + ACTIONS(7907), 1, sym_escape_sequence, + ACTIONS(8103), 1, + anon_sym_RBRACK, ACTIONS(8105), 1, - anon_sym_DQUOTE, - ACTIONS(8107), 1, - sym_quoted_content_double, - STATE(7017), 1, - aux_sym_quoted_double_repeat1, + sym_quoted_content_square, + STATE(6637), 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, - [290877] = 6, - ACTIONS(7917), 1, + [290023] = 6, + ACTIONS(7913), 1, sym_escape_sequence, + ACTIONS(8107), 1, + anon_sym_GT, ACTIONS(8109), 1, - anon_sym_RPAREN, - ACTIONS(8111), 1, - sym_quoted_content_parenthesis, - STATE(6649), 1, - aux_sym_quoted_parenthesis_repeat1, + sym_quoted_content_angle, + STATE(6639), 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, - [290898] = 6, - ACTIONS(7923), 1, + [290044] = 6, + ACTIONS(7919), 1, sym_escape_sequence, + ACTIONS(8111), 1, + anon_sym_PIPE, ACTIONS(8113), 1, - anon_sym_DQUOTE, - ACTIONS(8115), 1, - sym_quoted_content_double, - STATE(6651), 1, - aux_sym_quoted_double_repeat1, + sym_quoted_content_bar, + STATE(6641), 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, - [290919] = 6, - ACTIONS(7949), 1, + [290065] = 6, + ACTIONS(7925), 1, sym_escape_sequence, + ACTIONS(8115), 1, + anon_sym_SLASH, ACTIONS(8117), 1, - anon_sym_SQUOTE, - ACTIONS(8119), 1, - sym_quoted_content_single, - STATE(6653), 1, - aux_sym_quoted_single_repeat1, + sym_quoted_content_slash, + STATE(6643), 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, - [290940] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_DQUOTE, - ACTIONS(29), 1, + [290086] = 6, + ACTIONS(7885), 1, + sym_escape_sequence, + ACTIONS(8119), 1, anon_sym_SQUOTE, - STATE(4113), 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, - [290959] = 4, - ACTIONS(7929), 1, - sym_quoted_content_i_curly, + ACTIONS(8121), 1, + sym_quoted_content_single, + STATE(7041), 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, - ACTIONS(7927), 3, - anon_sym_RBRACE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [290976] = 6, - ACTIONS(7857), 1, + [290107] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8121), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8123), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8125), 1, sym_quoted_content_heredoc_single, - STATE(6655), 1, + STATE(7074), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453576,14 +452780,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [290997] = 6, - ACTIONS(7863), 1, + [290128] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(640), 1, + anon_sym_DQUOTE, + ACTIONS(642), 1, + anon_sym_SQUOTE, + STATE(3175), 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, + [290147] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8125), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(8127), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8129), 1, sym_quoted_content_heredoc_double, - STATE(6657), 1, + STATE(7077), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453591,104 +452809,102 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291018] = 6, - ACTIONS(7899), 1, + [290168] = 6, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8129), 1, - anon_sym_RBRACE, ACTIONS(8131), 1, - sym_quoted_content_curly, - STATE(6659), 1, - aux_sym_quoted_curly_repeat1, + anon_sym_RPAREN, + ACTIONS(8133), 1, + sym_quoted_content_parenthesis, + STATE(6849), 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, - [291039] = 6, - ACTIONS(7869), 1, + [290189] = 6, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8133), 1, - anon_sym_RBRACK, ACTIONS(8135), 1, - sym_quoted_content_square, - STATE(6661), 1, - aux_sym_quoted_square_repeat1, + anon_sym_DQUOTE, + ACTIONS(8137), 1, + sym_quoted_content_double, + STATE(6851), 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, - [291060] = 6, - ACTIONS(7883), 1, + [290210] = 6, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8137), 1, - anon_sym_GT, ACTIONS(8139), 1, - sym_quoted_content_angle, - STATE(6663), 1, - aux_sym_quoted_angle_repeat1, + anon_sym_SQUOTE, + ACTIONS(8141), 1, + sym_quoted_content_single, + STATE(6855), 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, - [291081] = 6, - ACTIONS(7893), 1, + [290231] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8141), 1, - anon_sym_PIPE, ACTIONS(8143), 1, - sym_quoted_content_bar, - STATE(6665), 1, - aux_sym_quoted_bar_repeat1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8145), 1, + sym_quoted_content_heredoc_single, + STATE(6857), 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, - [291102] = 6, - ACTIONS(7851), 1, + [290252] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8145), 1, - anon_sym_SLASH, ACTIONS(8147), 1, - sym_quoted_content_slash, - STATE(6667), 1, - aux_sym_quoted_slash_repeat1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8149), 1, + sym_quoted_content_heredoc_double, + STATE(6859), 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, - [291123] = 6, - ACTIONS(7863), 1, - sym_escape_sequence, - ACTIONS(8149), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8151), 1, - sym_quoted_content_heredoc_double, - STATE(6851), 1, - aux_sym_quoted_heredoc_double_repeat1, + [290273] = 4, + ACTIONS(7931), 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, - [291144] = 6, - ACTIONS(7899), 1, + ACTIONS(7929), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(8153), 1, + [290290] = 6, + ACTIONS(7867), 1, + sym_escape_sequence, + ACTIONS(8151), 1, anon_sym_RBRACE, - ACTIONS(8155), 1, + ACTIONS(8153), 1, sym_quoted_content_curly, - STATE(6854), 1, + STATE(6861), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453696,14 +452912,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291165] = 6, - ACTIONS(7869), 1, + [290311] = 6, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8157), 1, + ACTIONS(8155), 1, anon_sym_RBRACK, - ACTIONS(8159), 1, + ACTIONS(8157), 1, sym_quoted_content_square, - STATE(6875), 1, + STATE(6863), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453711,14 +452927,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291186] = 6, - ACTIONS(7883), 1, + [290332] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8161), 1, + ACTIONS(8159), 1, anon_sym_GT, - ACTIONS(8163), 1, + ACTIONS(8161), 1, sym_quoted_content_angle, - STATE(6879), 1, + STATE(6865), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453726,57 +452942,88 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291207] = 6, - ACTIONS(7949), 1, + [290353] = 6, + ACTIONS(7919), 1, sym_escape_sequence, + ACTIONS(8163), 1, + anon_sym_PIPE, ACTIONS(8165), 1, + sym_quoted_content_bar, + STATE(6878), 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, + [290374] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(349), 1, + anon_sym_DQUOTE, + ACTIONS(351), 1, anon_sym_SQUOTE, + STATE(2307), 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, + [290393] = 6, + ACTIONS(7925), 1, + sym_escape_sequence, ACTIONS(8167), 1, - sym_quoted_content_single, - STATE(6871), 1, - aux_sym_quoted_single_repeat1, + anon_sym_SLASH, + ACTIONS(8169), 1, + sym_quoted_content_slash, + STATE(6880), 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, - [291228] = 6, - ACTIONS(7893), 1, + [290414] = 6, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8169), 1, - anon_sym_PIPE, ACTIONS(8171), 1, - sym_quoted_content_bar, - STATE(6881), 1, - aux_sym_quoted_bar_repeat1, + anon_sym_RBRACE, + ACTIONS(8173), 1, + sym_quoted_content_curly, + STATE(7170), 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, - [291249] = 4, + [290435] = 6, + ACTIONS(7907), 1, + sym_escape_sequence, ACTIONS(8175), 1, - sym_quoted_content_i_heredoc_single, + anon_sym_RBRACK, + ACTIONS(8177), 1, + sym_quoted_content_square, + STATE(7207), 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, - ACTIONS(8173), 3, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [291266] = 6, - ACTIONS(7917), 1, + [290456] = 6, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8177), 1, - anon_sym_RPAREN, ACTIONS(8179), 1, + anon_sym_RPAREN, + ACTIONS(8181), 1, sym_quoted_content_parenthesis, - STATE(7109), 1, + STATE(6689), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453784,14 +453031,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291287] = 6, - ACTIONS(7923), 1, + [290477] = 6, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8181), 1, - anon_sym_DQUOTE, ACTIONS(8183), 1, + anon_sym_DQUOTE, + ACTIONS(8185), 1, sym_quoted_content_double, - STATE(7111), 1, + STATE(6691), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453799,14 +453046,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291308] = 6, - ACTIONS(7949), 1, + [290498] = 6, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8185), 1, - anon_sym_SQUOTE, ACTIONS(8187), 1, + anon_sym_SQUOTE, + ACTIONS(8189), 1, sym_quoted_content_single, - STATE(7113), 1, + STATE(6693), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453814,14 +453061,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291329] = 6, - ACTIONS(7857), 1, + [290519] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8189), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8191), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8193), 1, sym_quoted_content_heredoc_single, - STATE(7115), 1, + STATE(6695), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453829,14 +453076,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291350] = 6, - ACTIONS(7863), 1, + [290540] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8193), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(8195), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8197), 1, sym_quoted_content_heredoc_double, - STATE(7117), 1, + STATE(6697), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453844,14 +453091,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291371] = 6, - ACTIONS(7899), 1, + [290561] = 6, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8197), 1, - anon_sym_RBRACE, ACTIONS(8199), 1, + anon_sym_RBRACE, + ACTIONS(8201), 1, sym_quoted_content_curly, - STATE(7119), 1, + STATE(6699), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453859,14 +453106,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291392] = 6, - ACTIONS(7869), 1, + [290582] = 6, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8201), 1, - anon_sym_RBRACK, ACTIONS(8203), 1, + anon_sym_RBRACK, + ACTIONS(8205), 1, sym_quoted_content_square, - STATE(7121), 1, + STATE(6701), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453874,14 +453121,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291413] = 6, - ACTIONS(7883), 1, + [290603] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8205), 1, - anon_sym_GT, ACTIONS(8207), 1, + anon_sym_GT, + ACTIONS(8209), 1, sym_quoted_content_angle, - STATE(7123), 1, + STATE(6703), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453889,14 +453136,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291434] = 6, - ACTIONS(7893), 1, + [290624] = 6, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8209), 1, - anon_sym_PIPE, ACTIONS(8211), 1, + anon_sym_PIPE, + ACTIONS(8213), 1, sym_quoted_content_bar, - STATE(7125), 1, + STATE(6705), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453904,14 +453151,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291455] = 6, - ACTIONS(7851), 1, + [290645] = 6, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8213), 1, - anon_sym_SLASH, ACTIONS(8215), 1, + anon_sym_SLASH, + ACTIONS(8217), 1, sym_quoted_content_slash, - STATE(7127), 1, + STATE(6707), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453919,29 +453166,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291476] = 6, - ACTIONS(7851), 1, + [290666] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_DQUOTE, + ACTIONS(85), 1, + anon_sym_SQUOTE, + STATE(1961), 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, + [290685] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8217), 1, - anon_sym_SLASH, ACTIONS(8219), 1, - sym_quoted_content_slash, - STATE(6883), 1, - aux_sym_quoted_slash_repeat1, + anon_sym_GT, + ACTIONS(8221), 1, + sym_quoted_content_angle, + STATE(7212), 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, - [291497] = 6, - ACTIONS(7917), 1, + [290706] = 6, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8221), 1, - anon_sym_RPAREN, ACTIONS(8223), 1, + anon_sym_RPAREN, + ACTIONS(8225), 1, sym_quoted_content_parenthesis, - STATE(6839), 1, + STATE(6783), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453949,27 +453210,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291518] = 4, - ACTIONS(7929), 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(7927), 3, - anon_sym_RBRACK, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [291535] = 6, - ACTIONS(7923), 1, + [290727] = 6, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8225), 1, - anon_sym_DQUOTE, ACTIONS(8227), 1, + anon_sym_DQUOTE, + ACTIONS(8229), 1, sym_quoted_content_double, - STATE(6841), 1, + STATE(6801), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453977,14 +453225,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291556] = 6, - ACTIONS(7949), 1, + [290748] = 6, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8229), 1, - anon_sym_SQUOTE, ACTIONS(8231), 1, + anon_sym_SQUOTE, + ACTIONS(8233), 1, sym_quoted_content_single, - STATE(6850), 1, + STATE(6803), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -453992,14 +453240,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291577] = 6, - ACTIONS(7857), 1, + [290769] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8233), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8235), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8237), 1, sym_quoted_content_heredoc_single, - STATE(6855), 1, + STATE(6805), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454007,14 +453255,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291598] = 6, - ACTIONS(7863), 1, + [290790] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8237), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(8239), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8241), 1, sym_quoted_content_heredoc_double, - STATE(6858), 1, + STATE(6807), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454022,14 +453270,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291619] = 6, - ACTIONS(7899), 1, + [290811] = 6, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8241), 1, - anon_sym_RBRACE, ACTIONS(8243), 1, + anon_sym_RBRACE, + ACTIONS(8245), 1, sym_quoted_content_curly, - STATE(6860), 1, + STATE(6809), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454037,14 +453285,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291640] = 6, - ACTIONS(7869), 1, + [290832] = 6, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8245), 1, - anon_sym_RBRACK, ACTIONS(8247), 1, + anon_sym_RBRACK, + ACTIONS(8249), 1, sym_quoted_content_square, - STATE(6862), 1, + STATE(6811), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454052,14 +453300,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291661] = 6, - ACTIONS(7883), 1, + [290853] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8249), 1, - anon_sym_GT, ACTIONS(8251), 1, + anon_sym_GT, + ACTIONS(8253), 1, sym_quoted_content_angle, - STATE(6864), 1, + STATE(6816), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454067,29 +453315,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291682] = 6, - ACTIONS(7883), 1, - sym_escape_sequence, - ACTIONS(8253), 1, - anon_sym_GT, - ACTIONS(8255), 1, - sym_quoted_content_angle, - STATE(6949), 1, - aux_sym_quoted_angle_repeat1, + [290874] = 4, + ACTIONS(8257), 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, - [291703] = 6, - ACTIONS(7893), 1, + ACTIONS(8255), 3, + anon_sym_SLASH, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [290891] = 6, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8257), 1, - anon_sym_PIPE, ACTIONS(8259), 1, + anon_sym_PIPE, + ACTIONS(8261), 1, sym_quoted_content_bar, - STATE(6956), 1, + STATE(6818), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454097,14 +453343,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291724] = 6, - ACTIONS(7851), 1, + [290912] = 6, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8261), 1, - anon_sym_SLASH, ACTIONS(8263), 1, + anon_sym_SLASH, + ACTIONS(8265), 1, sym_quoted_content_slash, - STATE(7263), 1, + STATE(6820), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454112,14 +453358,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291745] = 6, - ACTIONS(7917), 1, + [290933] = 6, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8265), 1, - anon_sym_RPAREN, ACTIONS(8267), 1, + anon_sym_RPAREN, + ACTIONS(8269), 1, sym_quoted_content_parenthesis, - STATE(6752), 1, + STATE(6760), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454127,14 +453373,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291766] = 6, - ACTIONS(7923), 1, + [290954] = 6, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8269), 1, - anon_sym_DQUOTE, ACTIONS(8271), 1, + anon_sym_DQUOTE, + ACTIONS(8273), 1, sym_quoted_content_double, - STATE(6754), 1, + STATE(6762), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454142,14 +453388,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291787] = 6, - ACTIONS(7949), 1, + [290975] = 6, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8273), 1, - anon_sym_SQUOTE, ACTIONS(8275), 1, + anon_sym_SQUOTE, + ACTIONS(8277), 1, sym_quoted_content_single, - STATE(6756), 1, + STATE(6764), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454157,14 +453403,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291808] = 6, - ACTIONS(7857), 1, + [290996] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8277), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8279), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8281), 1, sym_quoted_content_heredoc_single, - STATE(6758), 1, + STATE(6766), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454172,14 +453418,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291829] = 6, - ACTIONS(7863), 1, + [291017] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8281), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(8283), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8285), 1, sym_quoted_content_heredoc_double, - STATE(6761), 1, + STATE(6768), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454187,14 +453433,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291850] = 6, - ACTIONS(7899), 1, + [291038] = 6, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8285), 1, - anon_sym_RBRACE, ACTIONS(8287), 1, + anon_sym_RBRACE, + ACTIONS(8289), 1, sym_quoted_content_curly, - STATE(6763), 1, + STATE(6770), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454202,14 +453448,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291871] = 6, - ACTIONS(7869), 1, + [291059] = 6, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8289), 1, - anon_sym_RBRACK, ACTIONS(8291), 1, + anon_sym_RBRACK, + ACTIONS(8293), 1, sym_quoted_content_square, - STATE(6766), 1, + STATE(6772), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454217,422 +453463,384 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [291892] = 6, - ACTIONS(7917), 1, + [291080] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8293), 1, - anon_sym_RPAREN, ACTIONS(8295), 1, - sym_quoted_content_parenthesis, - STATE(6970), 1, - aux_sym_quoted_parenthesis_repeat1, + anon_sym_GT, + ACTIONS(8297), 1, + sym_quoted_content_angle, + STATE(6774), 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, - [291913] = 6, - ACTIONS(7923), 1, + [291101] = 6, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8297), 1, - anon_sym_DQUOTE, ACTIONS(8299), 1, - sym_quoted_content_double, - STATE(6972), 1, - aux_sym_quoted_double_repeat1, + anon_sym_PIPE, + ACTIONS(8301), 1, + sym_quoted_content_bar, + STATE(6776), 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, - [291934] = 6, - ACTIONS(7949), 1, + [291122] = 6, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8301), 1, - anon_sym_SQUOTE, ACTIONS(8303), 1, - sym_quoted_content_single, - STATE(6974), 1, - aux_sym_quoted_single_repeat1, + anon_sym_SLASH, + ACTIONS(8305), 1, + sym_quoted_content_slash, + STATE(6778), 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, - [291955] = 4, - ACTIONS(8307), 1, - sym_quoted_content_i_double, - ACTIONS(3), 2, + [291143] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(770), 1, + anon_sym_DQUOTE, + ACTIONS(772), 1, + anon_sym_SQUOTE, + STATE(4163), 2, + sym_quoted_i_double, + sym_quoted_i_single, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, aux_sym_terminator_token1, + [291162] = 5, + ACTIONS(5), 1, sym_comment, - ACTIONS(8305), 3, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [291972] = 6, - ACTIONS(7857), 1, + ACTIONS(530), 1, + anon_sym_SQUOTE, + STATE(3811), 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, + [291181] = 6, + ACTIONS(7873), 1, sym_escape_sequence, + ACTIONS(8307), 1, + anon_sym_RPAREN, ACTIONS(8309), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8311), 1, - sym_quoted_content_heredoc_single, - STATE(6976), 1, - aux_sym_quoted_heredoc_single_repeat1, + sym_quoted_content_parenthesis, + STATE(6958), 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, - [291993] = 6, - ACTIONS(7863), 1, + [291202] = 6, + ACTIONS(7879), 1, sym_escape_sequence, + ACTIONS(8311), 1, + anon_sym_DQUOTE, ACTIONS(8313), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8315), 1, - sym_quoted_content_heredoc_double, - STATE(6978), 1, - aux_sym_quoted_heredoc_double_repeat1, + sym_quoted_content_double, + STATE(6960), 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, - [292014] = 6, - ACTIONS(7899), 1, + [291223] = 6, + ACTIONS(7885), 1, sym_escape_sequence, + ACTIONS(8315), 1, + anon_sym_SQUOTE, ACTIONS(8317), 1, - anon_sym_RBRACE, - ACTIONS(8319), 1, - sym_quoted_content_curly, - STATE(6980), 1, - aux_sym_quoted_curly_repeat1, + sym_quoted_content_single, + STATE(6962), 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, - [292035] = 6, - ACTIONS(7869), 1, + [291244] = 6, + ACTIONS(7891), 1, sym_escape_sequence, + ACTIONS(8319), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8321), 1, - anon_sym_RBRACK, - ACTIONS(8323), 1, - sym_quoted_content_square, - STATE(6982), 1, - aux_sym_quoted_square_repeat1, + sym_quoted_content_heredoc_single, + STATE(6980), 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, - [292056] = 4, - ACTIONS(7875), 1, - sym_quoted_content_i_heredoc_double, + [291265] = 6, + ACTIONS(7897), 1, + sym_escape_sequence, + ACTIONS(8323), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8325), 1, + sym_quoted_content_heredoc_double, + STATE(6986), 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, - ACTIONS(7873), 3, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [292073] = 6, - ACTIONS(7883), 1, + [291286] = 6, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8325), 1, - anon_sym_GT, ACTIONS(8327), 1, - sym_quoted_content_angle, - STATE(6984), 1, - aux_sym_quoted_angle_repeat1, + anon_sym_RBRACE, + ACTIONS(8329), 1, + sym_quoted_content_curly, + STATE(6988), 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, - [292094] = 6, - ACTIONS(7893), 1, + [291307] = 6, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8329), 1, - anon_sym_PIPE, ACTIONS(8331), 1, - sym_quoted_content_bar, - STATE(6986), 1, - aux_sym_quoted_bar_repeat1, + anon_sym_RBRACK, + ACTIONS(8333), 1, + sym_quoted_content_square, + STATE(6990), 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, - [292115] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1106), 1, - anon_sym_DQUOTE, - ACTIONS(1108), 1, - anon_sym_SQUOTE, - STATE(4604), 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, - [292134] = 6, - ACTIONS(7851), 1, - sym_escape_sequence, - ACTIONS(8333), 1, - anon_sym_SLASH, - ACTIONS(8335), 1, - sym_quoted_content_slash, - STATE(7159), 1, - aux_sym_quoted_slash_repeat1, + [291328] = 4, + ACTIONS(8069), 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, - [292155] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1048), 1, - anon_sym_DQUOTE, - ACTIONS(1050), 1, - anon_sym_SQUOTE, - STATE(3459), 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, - [292174] = 6, - ACTIONS(7923), 1, + ACTIONS(8067), 3, + anon_sym_PIPE, + anon_sym_POUND_LBRACE, sym_escape_sequence, + [291345] = 6, + ACTIONS(7919), 1, + sym_escape_sequence, + ACTIONS(8335), 1, + anon_sym_PIPE, ACTIONS(8337), 1, - anon_sym_DQUOTE, - ACTIONS(8339), 1, - sym_quoted_content_double, - STATE(6643), 1, - aux_sym_quoted_double_repeat1, + sym_quoted_content_bar, + STATE(7230), 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, - [292195] = 5, - ACTIONS(5), 1, - sym_comment, + [291366] = 6, + ACTIONS(7925), 1, + sym_escape_sequence, + ACTIONS(8339), 1, + anon_sym_SLASH, ACTIONS(8341), 1, - anon_sym_COMMA, - STATE(6325), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(1168), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3), 3, + sym_quoted_content_slash, + STATE(6920), 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, - [292214] = 6, - ACTIONS(7949), 1, + sym_comment, + [291387] = 6, + ACTIONS(7913), 1, sym_escape_sequence, ACTIONS(8343), 1, - anon_sym_SQUOTE, + anon_sym_GT, ACTIONS(8345), 1, - sym_quoted_content_single, - STATE(6716), 1, - aux_sym_quoted_single_repeat1, + sym_quoted_content_angle, + STATE(6993), 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, - [292235] = 6, - ACTIONS(7857), 1, + [291408] = 6, + ACTIONS(7919), 1, sym_escape_sequence, ACTIONS(8347), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_PIPE, ACTIONS(8349), 1, - sym_quoted_content_heredoc_single, - STATE(6718), 1, - aux_sym_quoted_heredoc_single_repeat1, + sym_quoted_content_bar, + STATE(6995), 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, - [292256] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1373), 1, - anon_sym_DQUOTE, - ACTIONS(1375), 1, - anon_sym_SQUOTE, - STATE(4521), 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, - [292275] = 6, - ACTIONS(7863), 1, + [291429] = 6, + ACTIONS(7925), 1, sym_escape_sequence, ACTIONS(8351), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SLASH, ACTIONS(8353), 1, - sym_quoted_content_heredoc_double, - STATE(6720), 1, - aux_sym_quoted_heredoc_double_repeat1, + sym_quoted_content_slash, + STATE(6997), 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, - [292296] = 6, - ACTIONS(7899), 1, + [291450] = 6, + ACTIONS(7873), 1, sym_escape_sequence, ACTIONS(8355), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(8357), 1, - sym_quoted_content_curly, - STATE(6722), 1, - aux_sym_quoted_curly_repeat1, + sym_quoted_content_parenthesis, + STATE(6931), 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, - [292317] = 6, - ACTIONS(7869), 1, + [291471] = 6, + ACTIONS(7879), 1, sym_escape_sequence, ACTIONS(8359), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE, ACTIONS(8361), 1, - sym_quoted_content_square, - STATE(6724), 1, - aux_sym_quoted_square_repeat1, + sym_quoted_content_double, + STATE(6933), 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, - [292338] = 6, - ACTIONS(7883), 1, + [291492] = 6, + ACTIONS(7885), 1, sym_escape_sequence, ACTIONS(8363), 1, - anon_sym_GT, + anon_sym_SQUOTE, ACTIONS(8365), 1, - sym_quoted_content_angle, - STATE(6726), 1, - aux_sym_quoted_angle_repeat1, + sym_quoted_content_single, + STATE(6935), 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, - [292359] = 6, - ACTIONS(7893), 1, + [291513] = 6, + ACTIONS(7891), 1, sym_escape_sequence, ACTIONS(8367), 1, - anon_sym_PIPE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8369), 1, - sym_quoted_content_bar, - STATE(6728), 1, - aux_sym_quoted_bar_repeat1, + sym_quoted_content_heredoc_single, + STATE(6937), 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, - [292380] = 5, + [291534] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(8371), 1, - anon_sym_COMMA, - STATE(6542), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(8373), 2, - anon_sym_when, - anon_sym_DASH_GT, + ACTIONS(25), 1, + anon_sym_DQUOTE, + ACTIONS(27), 1, + anon_sym_SQUOTE, + STATE(4073), 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, - [292399] = 4, - ACTIONS(7929), 1, - sym_quoted_content_i_heredoc_double, + [291553] = 6, + ACTIONS(7867), 1, + sym_escape_sequence, + ACTIONS(8371), 1, + anon_sym_RBRACE, + ACTIONS(8373), 1, + sym_quoted_content_curly, + STATE(6941), 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, - ACTIONS(7927), 3, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_LBRACE, + [291574] = 6, + ACTIONS(7907), 1, sym_escape_sequence, - [292416] = 5, - ACTIONS(5), 1, - sym_comment, ACTIONS(8375), 1, - anon_sym_COMMA, - STATE(6542), 1, - aux_sym_stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(4043), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [292435] = 6, - ACTIONS(7851), 1, - sym_escape_sequence, - ACTIONS(8378), 1, - anon_sym_SLASH, - ACTIONS(8380), 1, - sym_quoted_content_slash, - STATE(6730), 1, - aux_sym_quoted_slash_repeat1, + anon_sym_RBRACK, + ACTIONS(8377), 1, + sym_quoted_content_square, + STATE(6943), 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, - [292456] = 6, - ACTIONS(7883), 1, + [291595] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8382), 1, + ACTIONS(8379), 1, anon_sym_GT, - ACTIONS(8384), 1, + ACTIONS(8381), 1, sym_quoted_content_angle, - STATE(6768), 1, + STATE(6945), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454640,27 +453848,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [292477] = 4, - ACTIONS(7929), 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(7927), 3, - anon_sym_DQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [292494] = 6, - ACTIONS(7893), 1, + [291616] = 6, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8386), 1, + ACTIONS(8383), 1, anon_sym_PIPE, - ACTIONS(8388), 1, + ACTIONS(8385), 1, sym_quoted_content_bar, - STATE(6770), 1, + STATE(6947), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454668,14 +453863,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [292515] = 6, - ACTIONS(7851), 1, + [291637] = 6, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8390), 1, + ACTIONS(8387), 1, anon_sym_SLASH, - ACTIONS(8392), 1, + ACTIONS(8389), 1, sym_quoted_content_slash, - STATE(6772), 1, + STATE(6949), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454683,29 +453878,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [292536] = 6, - ACTIONS(7893), 1, + [291658] = 6, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8394), 1, - anon_sym_PIPE, - ACTIONS(8396), 1, - sym_quoted_content_bar, - STATE(6866), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(8391), 1, + anon_sym_RPAREN, + ACTIONS(8393), 1, + sym_quoted_content_parenthesis, + STATE(6909), 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, - [292557] = 6, - ACTIONS(7917), 1, + [291679] = 6, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8398), 1, + ACTIONS(8395), 1, anon_sym_RPAREN, - ACTIONS(8400), 1, + ACTIONS(8397), 1, sym_quoted_content_parenthesis, - STATE(6952), 1, + STATE(7217), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454713,29 +453908,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [292578] = 6, - ACTIONS(7851), 1, + [291700] = 6, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8402), 1, - anon_sym_SLASH, - ACTIONS(8404), 1, - sym_quoted_content_slash, - STATE(6868), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(8399), 1, + anon_sym_DQUOTE, + ACTIONS(8401), 1, + sym_quoted_content_double, + STATE(7224), 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, - [292599] = 6, - ACTIONS(7949), 1, + [291721] = 6, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8406), 1, + ACTIONS(8403), 1, anon_sym_SQUOTE, - ACTIONS(8408), 1, + ACTIONS(8405), 1, sym_quoted_content_single, - STATE(7024), 1, + STATE(7227), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454743,14 +453938,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [292620] = 6, - ACTIONS(7857), 1, + [291742] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8410), 1, + ACTIONS(8407), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8412), 1, + ACTIONS(8409), 1, sym_quoted_content_heredoc_single, - STATE(7026), 1, + STATE(7247), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454758,102 +453953,185 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [292641] = 6, - ACTIONS(7923), 1, + [291763] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8414), 1, - anon_sym_DQUOTE, - ACTIONS(8416), 1, - sym_quoted_content_double, - STATE(7057), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(8411), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8413), 1, + sym_quoted_content_heredoc_double, + STATE(7250), 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, - [292662] = 6, - ACTIONS(7949), 1, + [291784] = 6, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8418), 1, - anon_sym_SQUOTE, - ACTIONS(8420), 1, - sym_quoted_content_single, - STATE(7061), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(8415), 1, + anon_sym_RBRACE, + ACTIONS(8417), 1, + sym_quoted_content_curly, + STATE(7252), 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, - [292683] = 4, - ACTIONS(8424), 1, - sym_quoted_content_i_parenthesis, + [291805] = 6, + ACTIONS(7907), 1, + sym_escape_sequence, + ACTIONS(8419), 1, + anon_sym_RBRACK, + ACTIONS(8421), 1, + sym_quoted_content_square, + STATE(7254), 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, - ACTIONS(8422), 3, - anon_sym_RPAREN, - anon_sym_POUND_LBRACE, + [291826] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - [292700] = 6, - ACTIONS(7863), 1, + ACTIONS(8423), 1, + anon_sym_GT, + ACTIONS(8425), 1, + sym_quoted_content_angle, + STATE(6979), 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, + [291847] = 6, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8426), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8428), 1, - sym_quoted_content_heredoc_double, - STATE(7034), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(8427), 1, + anon_sym_PIPE, + ACTIONS(8429), 1, + sym_quoted_content_bar, + STATE(6991), 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, - [292721] = 6, - ACTIONS(7857), 1, + [291868] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(432), 1, + anon_sym_DQUOTE, + ACTIONS(434), 1, + anon_sym_SQUOTE, + STATE(3273), 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, + [291887] = 6, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8430), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8432), 1, - sym_quoted_content_heredoc_single, - STATE(7080), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(8431), 1, + anon_sym_SLASH, + ACTIONS(8433), 1, + sym_quoted_content_slash, + STATE(7228), 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, - [292742] = 6, - ACTIONS(7863), 1, + [291908] = 4, + ACTIONS(8437), 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(8435), 3, + anon_sym_SQUOTE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(8434), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8436), 1, - sym_quoted_content_heredoc_double, - STATE(7084), 1, - aux_sym_quoted_heredoc_double_repeat1, + [291925] = 4, + ACTIONS(8069), 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, - [292763] = 6, - ACTIONS(7923), 1, + ACTIONS(8067), 3, + anon_sym_RPAREN, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [291942] = 4, + ACTIONS(7931), 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(7929), 3, + anon_sym_SQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [291959] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(247), 1, + anon_sym_DQUOTE, + ACTIONS(249), 1, + anon_sym_SQUOTE, + STATE(1722), 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, + [291978] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1369), 1, + anon_sym_DQUOTE, + ACTIONS(1371), 1, + anon_sym_SQUOTE, + STATE(4591), 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, + [291997] = 6, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8438), 1, + ACTIONS(8439), 1, anon_sym_DQUOTE, - ACTIONS(8440), 1, + ACTIONS(8441), 1, sym_quoted_content_double, - STATE(6954), 1, + STATE(6822), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454861,14 +454139,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [292784] = 6, - ACTIONS(7949), 1, + [292018] = 6, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8442), 1, + ACTIONS(8443), 1, anon_sym_SQUOTE, - ACTIONS(8444), 1, + ACTIONS(8445), 1, sym_quoted_content_single, - STATE(7005), 1, + STATE(6669), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454876,8 +454154,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [292805] = 4, - ACTIONS(7875), 1, + [292039] = 4, + ACTIONS(8449), 1, sym_quoted_content_i_angle, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454885,18 +454163,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - ACTIONS(7873), 3, + ACTIONS(8447), 3, anon_sym_GT, anon_sym_POUND_LBRACE, sym_escape_sequence, - [292822] = 6, - ACTIONS(7857), 1, + [292056] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8446), 1, + ACTIONS(8451), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8448), 1, + ACTIONS(8453), 1, sym_quoted_content_heredoc_single, - STATE(7007), 1, + STATE(6981), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454904,14 +454182,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [292843] = 6, - ACTIONS(7863), 1, + [292077] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8450), 1, + ACTIONS(8455), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8452), 1, + ACTIONS(8457), 1, sym_quoted_content_heredoc_double, - STATE(7027), 1, + STATE(7100), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454919,14 +454197,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [292864] = 6, - ACTIONS(7899), 1, + [292098] = 6, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8454), 1, + ACTIONS(8459), 1, anon_sym_RBRACE, - ACTIONS(8456), 1, + ACTIONS(8461), 1, sym_quoted_content_curly, - STATE(7029), 1, + STATE(7231), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454934,43 +454212,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [292885] = 6, - ACTIONS(7869), 1, - sym_escape_sequence, - ACTIONS(8458), 1, - anon_sym_RBRACK, - ACTIONS(8460), 1, - sym_quoted_content_square, - STATE(7031), 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, - [292906] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(726), 1, - anon_sym_DQUOTE, - ACTIONS(728), 1, - anon_sym_SQUOTE, - STATE(4271), 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, - [292925] = 6, - ACTIONS(7917), 1, + [292119] = 6, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8462), 1, + ACTIONS(8463), 1, anon_sym_RPAREN, - ACTIONS(8464), 1, + ACTIONS(8465), 1, sym_quoted_content_parenthesis, - STATE(7092), 1, + STATE(7078), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -454978,40 +454227,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [292946] = 4, - ACTIONS(7875), 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(7873), 3, - anon_sym_SLASH, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [292963] = 4, - ACTIONS(8468), 1, - sym_quoted_content_i_single, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - ACTIONS(8466), 3, - anon_sym_SQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [292980] = 6, - ACTIONS(7923), 1, + [292140] = 6, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8470), 1, + ACTIONS(8467), 1, anon_sym_DQUOTE, - ACTIONS(8472), 1, + ACTIONS(8469), 1, sym_quoted_content_double, - STATE(7131), 1, + STATE(7081), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455019,27 +454242,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293001] = 4, - ACTIONS(8476), 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(8474), 3, - anon_sym_RBRACE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [293018] = 6, - ACTIONS(7949), 1, + [292161] = 6, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8478), 1, + ACTIONS(8471), 1, anon_sym_SQUOTE, - ACTIONS(8480), 1, + ACTIONS(8473), 1, sym_quoted_content_single, - STATE(7138), 1, + STATE(7083), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455047,14 +454257,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293039] = 6, - ACTIONS(7857), 1, + [292182] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8482), 1, + ACTIONS(8475), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8484), 1, + ACTIONS(8477), 1, sym_quoted_content_heredoc_single, - STATE(7140), 1, + STATE(7085), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455062,14 +454272,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293060] = 6, - ACTIONS(7863), 1, + [292203] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8486), 1, + ACTIONS(8479), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8488), 1, + ACTIONS(8481), 1, sym_quoted_content_heredoc_double, - STATE(7142), 1, + STATE(7087), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455077,14 +454287,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293081] = 6, - ACTIONS(7899), 1, + [292224] = 6, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8490), 1, + ACTIONS(8483), 1, anon_sym_RBRACE, - ACTIONS(8492), 1, + ACTIONS(8485), 1, sym_quoted_content_curly, - STATE(7157), 1, + STATE(7089), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455092,27 +454302,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293102] = 4, - ACTIONS(7875), 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(7873), 3, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [293119] = 6, - ACTIONS(7869), 1, + [292245] = 6, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8494), 1, + ACTIONS(8487), 1, anon_sym_RBRACK, - ACTIONS(8496), 1, + ACTIONS(8489), 1, sym_quoted_content_square, - STATE(7161), 1, + STATE(7091), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455120,14 +454317,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293140] = 6, - ACTIONS(7883), 1, + [292266] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8498), 1, + ACTIONS(8491), 1, anon_sym_GT, - ACTIONS(8500), 1, + ACTIONS(8493), 1, sym_quoted_content_angle, - STATE(7163), 1, + STATE(7093), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455135,14 +454332,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293161] = 6, - ACTIONS(7893), 1, + [292287] = 6, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8502), 1, + ACTIONS(8495), 1, anon_sym_PIPE, - ACTIONS(8504), 1, + ACTIONS(8497), 1, sym_quoted_content_bar, - STATE(7166), 1, + STATE(7095), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455150,14 +454347,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293182] = 6, - ACTIONS(7851), 1, + [292308] = 6, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8506), 1, + ACTIONS(8499), 1, anon_sym_SLASH, - ACTIONS(8508), 1, + ACTIONS(8501), 1, sym_quoted_content_slash, - STATE(7170), 1, + STATE(7097), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455165,58 +454362,74 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293203] = 6, - ACTIONS(7899), 1, + [292329] = 6, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8510), 1, - anon_sym_RBRACE, - ACTIONS(8512), 1, - sym_quoted_content_curly, - STATE(7088), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(8503), 1, + anon_sym_RPAREN, + ACTIONS(8505), 1, + sym_quoted_content_parenthesis, + STATE(7107), 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, - [293224] = 6, - ACTIONS(7917), 1, + [292350] = 6, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8514), 1, - anon_sym_RPAREN, - ACTIONS(8516), 1, - sym_quoted_content_parenthesis, - STATE(7058), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(8507), 1, + anon_sym_DQUOTE, + ACTIONS(8509), 1, + sym_quoted_content_double, + STATE(7109), 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, - [293245] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(918), 1, - anon_sym_DQUOTE, - ACTIONS(920), 1, + [292371] = 6, + ACTIONS(7885), 1, + sym_escape_sequence, + ACTIONS(8511), 1, anon_sym_SQUOTE, - STATE(2270), 2, - sym_quoted_i_double, - sym_quoted_i_single, - ACTIONS(3), 3, + ACTIONS(8513), 1, + sym_quoted_content_single, + STATE(7111), 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, - [293264] = 6, - ACTIONS(7917), 1, + sym_comment, + [292392] = 6, + ACTIONS(7907), 1, + sym_escape_sequence, + ACTIONS(8515), 1, + anon_sym_RBRACK, + ACTIONS(8517), 1, + sym_quoted_content_square, + STATE(6916), 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, + [292413] = 6, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8518), 1, + ACTIONS(8519), 1, anon_sym_RPAREN, - ACTIONS(8520), 1, + ACTIONS(8521), 1, sym_quoted_content_parenthesis, - STATE(6778), 1, + STATE(7127), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455224,14 +454437,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293285] = 6, - ACTIONS(7923), 1, + [292434] = 6, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8522), 1, + ACTIONS(8523), 1, anon_sym_DQUOTE, - ACTIONS(8524), 1, + ACTIONS(8525), 1, sym_quoted_content_double, - STATE(6780), 1, + STATE(7133), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455239,14 +454452,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293306] = 6, - ACTIONS(7949), 1, + [292455] = 6, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8526), 1, + ACTIONS(8527), 1, anon_sym_SQUOTE, - ACTIONS(8528), 1, + ACTIONS(8529), 1, sym_quoted_content_single, - STATE(6782), 1, + STATE(7136), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455254,14 +454467,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293327] = 6, - ACTIONS(7857), 1, + [292476] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8530), 1, + ACTIONS(8531), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8532), 1, + ACTIONS(8533), 1, sym_quoted_content_heredoc_single, - STATE(6784), 1, + STATE(7138), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455269,14 +454482,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293348] = 6, - ACTIONS(7863), 1, + [292497] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8534), 1, + ACTIONS(8535), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8536), 1, + ACTIONS(8537), 1, sym_quoted_content_heredoc_double, - STATE(6786), 1, + STATE(7140), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455284,14 +454497,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293369] = 6, - ACTIONS(7899), 1, + [292518] = 6, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8538), 1, + ACTIONS(8539), 1, anon_sym_RBRACE, - ACTIONS(8540), 1, + ACTIONS(8541), 1, sym_quoted_content_curly, - STATE(6788), 1, + STATE(7144), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455299,59 +454512,59 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293390] = 6, - ACTIONS(7917), 1, + [292539] = 6, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8542), 1, - anon_sym_RPAREN, - ACTIONS(8544), 1, - sym_quoted_content_parenthesis, - STATE(7258), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(8543), 1, + anon_sym_RBRACK, + ACTIONS(8545), 1, + sym_quoted_content_square, + STATE(7147), 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, - [293411] = 6, - ACTIONS(7923), 1, + [292560] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8546), 1, - anon_sym_DQUOTE, - ACTIONS(8548), 1, - sym_quoted_content_double, - STATE(7261), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(8547), 1, + anon_sym_GT, + ACTIONS(8549), 1, + sym_quoted_content_angle, + STATE(7164), 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, - [293432] = 6, - ACTIONS(7949), 1, + [292581] = 6, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8550), 1, - anon_sym_SQUOTE, - ACTIONS(8552), 1, - sym_quoted_content_single, - STATE(7264), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(8551), 1, + anon_sym_PIPE, + ACTIONS(8553), 1, + sym_quoted_content_bar, + STATE(7167), 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, - [293453] = 6, - ACTIONS(7857), 1, + [292602] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8554), 1, + ACTIONS(8555), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8556), 1, + ACTIONS(8557), 1, sym_quoted_content_heredoc_single, - STATE(7266), 1, + STATE(7113), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455359,14 +454572,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293474] = 6, - ACTIONS(7863), 1, + [292623] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8558), 1, + ACTIONS(8559), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8560), 1, + ACTIONS(8561), 1, sym_quoted_content_heredoc_double, - STATE(7268), 1, + STATE(7115), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455374,14 +454587,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293495] = 6, - ACTIONS(7899), 1, + [292644] = 6, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8562), 1, + ACTIONS(8563), 1, anon_sym_RBRACE, - ACTIONS(8564), 1, + ACTIONS(8565), 1, sym_quoted_content_curly, - STATE(7270), 1, + STATE(7117), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455389,14 +454602,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293516] = 6, - ACTIONS(7869), 1, + [292665] = 6, + ACTIONS(7925), 1, + sym_escape_sequence, + ACTIONS(8567), 1, + anon_sym_SLASH, + ACTIONS(8569), 1, + sym_quoted_content_slash, + STATE(7169), 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, + [292686] = 6, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8571), 1, anon_sym_RBRACK, - ACTIONS(8568), 1, + ACTIONS(8573), 1, sym_quoted_content_square, - STATE(7272), 1, + STATE(7120), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455404,14 +454632,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293537] = 6, - ACTIONS(7883), 1, + [292707] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8570), 1, + ACTIONS(8575), 1, anon_sym_GT, - ACTIONS(8572), 1, + ACTIONS(8577), 1, sym_quoted_content_angle, - STATE(7274), 1, + STATE(7122), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455419,14 +454647,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293558] = 6, - ACTIONS(7893), 1, + [292728] = 6, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8574), 1, + ACTIONS(8579), 1, anon_sym_PIPE, - ACTIONS(8576), 1, + ACTIONS(8581), 1, sym_quoted_content_bar, - STATE(7276), 1, + STATE(7125), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455434,14 +454662,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293579] = 6, - ACTIONS(7851), 1, + [292749] = 6, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8583), 1, anon_sym_SLASH, - ACTIONS(8580), 1, + ACTIONS(8585), 1, sym_quoted_content_slash, - STATE(7278), 1, + STATE(7128), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455449,29 +454677,41 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293600] = 6, - ACTIONS(7869), 1, - sym_escape_sequence, - ACTIONS(8582), 1, - anon_sym_RBRACK, - ACTIONS(8584), 1, - sym_quoted_content_square, - STATE(6790), 1, - aux_sym_quoted_square_repeat1, + [292770] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(582), 1, + anon_sym_DQUOTE, + ACTIONS(584), 1, + anon_sym_SQUOTE, + STATE(3970), 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, + [292789] = 4, + ACTIONS(7931), 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, - [293621] = 6, - ACTIONS(7883), 1, + ACTIONS(7929), 3, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [292806] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8586), 1, + ACTIONS(8587), 1, anon_sym_GT, - ACTIONS(8588), 1, + ACTIONS(8589), 1, sym_quoted_content_angle, - STATE(6792), 1, + STATE(6825), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455479,14 +454719,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293642] = 6, - ACTIONS(7893), 1, + [292827] = 6, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8591), 1, anon_sym_PIPE, - ACTIONS(8592), 1, + ACTIONS(8593), 1, sym_quoted_content_bar, - STATE(6794), 1, + STATE(7238), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455494,14 +454734,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293663] = 6, - ACTIONS(7851), 1, + [292848] = 6, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8594), 1, + ACTIONS(8595), 1, anon_sym_SLASH, - ACTIONS(8596), 1, + ACTIONS(8597), 1, sym_quoted_content_slash, - STATE(6796), 1, + STATE(7236), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455509,57 +454749,85 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293684] = 6, - ACTIONS(7923), 1, + [292869] = 4, + ACTIONS(8069), 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(8067), 3, + anon_sym_RBRACE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(8598), 1, - anon_sym_DQUOTE, - ACTIONS(8600), 1, - sym_quoted_content_double, - STATE(7062), 1, - aux_sym_quoted_double_repeat1, + [292886] = 4, + ACTIONS(8069), 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, - [293705] = 6, - ACTIONS(7949), 1, + ACTIONS(8067), 3, + anon_sym_RBRACK, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(8602), 1, - anon_sym_SQUOTE, - ACTIONS(8604), 1, - sym_quoted_content_single, - STATE(7065), 1, - aux_sym_quoted_single_repeat1, + [292903] = 6, + ACTIONS(7873), 1, + sym_escape_sequence, + ACTIONS(8599), 1, + anon_sym_RPAREN, + ACTIONS(8601), 1, + sym_quoted_content_parenthesis, + STATE(7070), 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, - [293726] = 4, - ACTIONS(7929), 1, - sym_quoted_content_i_slash, + [292924] = 6, + ACTIONS(7879), 1, + sym_escape_sequence, + ACTIONS(8603), 1, + anon_sym_DQUOTE, + ACTIONS(8605), 1, + sym_quoted_content_double, + STATE(7174), 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, - ACTIONS(7927), 3, - anon_sym_SLASH, - anon_sym_POUND_LBRACE, + [292945] = 6, + ACTIONS(7885), 1, sym_escape_sequence, - [293743] = 6, - ACTIONS(7857), 1, + ACTIONS(8607), 1, + anon_sym_SQUOTE, + ACTIONS(8609), 1, + sym_quoted_content_single, + STATE(7180), 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, + [292966] = 6, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8606), 1, + ACTIONS(8611), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8608), 1, + ACTIONS(8613), 1, sym_quoted_content_heredoc_single, - STATE(7067), 1, + STATE(7204), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455567,14 +454835,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293764] = 6, - ACTIONS(7863), 1, + [292987] = 6, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8610), 1, + ACTIONS(8615), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8612), 1, + ACTIONS(8617), 1, sym_quoted_content_heredoc_double, - STATE(7069), 1, + STATE(6619), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455582,27 +454850,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293785] = 4, - ACTIONS(8616), 1, - sym_quoted_content_i_slash, + [293008] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8619), 1, + anon_sym_COMMA, + STATE(6576), 1, + aux_sym_stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3969), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [293027] = 4, + ACTIONS(8624), 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(8614), 3, - anon_sym_SLASH, + ACTIONS(8622), 3, + anon_sym_DQUOTE, anon_sym_POUND_LBRACE, sym_escape_sequence, - [293802] = 6, - ACTIONS(7899), 1, + [293044] = 4, + ACTIONS(7931), 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(7929), 3, + anon_sym_DQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [293061] = 4, + ACTIONS(8069), 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(8067), 3, + anon_sym_DQUOTE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(8618), 1, + [293078] = 6, + ACTIONS(7867), 1, + sym_escape_sequence, + ACTIONS(8626), 1, anon_sym_RBRACE, - ACTIONS(8620), 1, + ACTIONS(8628), 1, sym_quoted_content_curly, - STATE(7071), 1, + STATE(6644), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455610,14 +454918,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293823] = 6, - ACTIONS(7869), 1, + [293099] = 6, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8622), 1, + ACTIONS(8630), 1, anon_sym_RBRACK, - ACTIONS(8624), 1, + ACTIONS(8632), 1, sym_quoted_content_square, - STATE(7073), 1, + STATE(6755), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455625,14 +454933,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293844] = 6, - ACTIONS(7883), 1, + [293120] = 6, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8626), 1, + ACTIONS(8634), 1, anon_sym_GT, - ACTIONS(8628), 1, + ACTIONS(8636), 1, sym_quoted_content_angle, - STATE(7075), 1, + STATE(6821), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455640,14 +454948,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293865] = 6, - ACTIONS(7893), 1, + [293141] = 6, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8630), 1, + ACTIONS(8638), 1, anon_sym_PIPE, - ACTIONS(8632), 1, + ACTIONS(8640), 1, sym_quoted_content_bar, - STATE(7077), 1, + STATE(6846), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455655,14 +454963,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293886] = 6, - ACTIONS(7851), 1, + [293162] = 6, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8634), 1, + ACTIONS(8642), 1, anon_sym_SLASH, - ACTIONS(8636), 1, + ACTIONS(8644), 1, sym_quoted_content_slash, - STATE(7079), 1, + STATE(6913), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455670,52 +454978,49 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [293907] = 6, - ACTIONS(7899), 1, - sym_escape_sequence, - ACTIONS(8638), 1, - anon_sym_RBRACE, - ACTIONS(8640), 1, - sym_quoted_content_curly, - STATE(7036), 1, - aux_sym_quoted_curly_repeat1, + [293183] = 4, + ACTIONS(8069), 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, - [293928] = 6, - ACTIONS(7869), 1, + ACTIONS(8067), 3, + anon_sym_SLASH, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(8642), 1, - anon_sym_RBRACK, - ACTIONS(8644), 1, - sym_quoted_content_square, - STATE(7043), 1, - aux_sym_quoted_square_repeat1, - ACTIONS(3), 2, + [293200] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(181), 1, + anon_sym_DQUOTE, + ACTIONS(183), 1, + anon_sym_SQUOTE, + STATE(1552), 2, + sym_quoted_i_double, + sym_quoted_i_single, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, aux_sym_terminator_token1, - sym_comment, - [293949] = 5, + [293219] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(934), 1, anon_sym_DQUOTE, - ACTIONS(87), 1, + ACTIONS(936), 1, anon_sym_SQUOTE, - STATE(1935), 2, + STATE(2118), 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, - [293968] = 4, - ACTIONS(7875), 1, + [293238] = 4, + ACTIONS(8648), 1, sym_quoted_content_i_parenthesis, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -455723,307 +455028,308 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - ACTIONS(7873), 3, + ACTIONS(8646), 3, anon_sym_RPAREN, anon_sym_POUND_LBRACE, sym_escape_sequence, - [293985] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(520), 1, - anon_sym_DQUOTE, - ACTIONS(522), 1, - anon_sym_SQUOTE, - STATE(4014), 2, - sym_quoted_i_double, - sym_quoted_i_single, - ACTIONS(3), 3, + [293255] = 4, + ACTIONS(7931), 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, - [294004] = 6, - ACTIONS(7883), 1, - sym_escape_sequence, - ACTIONS(8646), 1, + sym_comment, + ACTIONS(7929), 3, anon_sym_GT, - ACTIONS(8648), 1, - sym_quoted_content_angle, - STATE(7046), 1, - aux_sym_quoted_angle_repeat1, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [293272] = 4, + ACTIONS(8069), 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, - [294025] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(181), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, + ACTIONS(8067), 3, anon_sym_SQUOTE, - STATE(1744), 2, - sym_quoted_i_double, - sym_quoted_i_single, - ACTIONS(3), 3, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [293289] = 4, + ACTIONS(8069), 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, - [294044] = 6, - ACTIONS(7893), 1, + sym_comment, + ACTIONS(8067), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [293306] = 4, + ACTIONS(7931), 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(7929), 3, + anon_sym_SLASH, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [293323] = 6, + ACTIONS(7873), 1, sym_escape_sequence, ACTIONS(8650), 1, - anon_sym_PIPE, + anon_sym_RPAREN, ACTIONS(8652), 1, - sym_quoted_content_bar, - STATE(7048), 1, - aux_sym_quoted_bar_repeat1, + sym_quoted_content_parenthesis, + STATE(7258), 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, - [294065] = 6, - ACTIONS(7851), 1, + [293344] = 6, + ACTIONS(7879), 1, sym_escape_sequence, ACTIONS(8654), 1, - anon_sym_SLASH, + anon_sym_DQUOTE, ACTIONS(8656), 1, - sym_quoted_content_slash, - STATE(7051), 1, - aux_sym_quoted_slash_repeat1, + sym_quoted_content_double, + STATE(6622), 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, - [294086] = 4, + [293365] = 6, + ACTIONS(7885), 1, + sym_escape_sequence, + ACTIONS(8658), 1, + anon_sym_SQUOTE, ACTIONS(8660), 1, - sym_quoted_content_i_square, + sym_quoted_content_single, + STATE(7260), 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, - ACTIONS(8658), 3, - anon_sym_RBRACK, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [294103] = 6, - ACTIONS(7893), 1, + [293386] = 6, + ACTIONS(7891), 1, sym_escape_sequence, ACTIONS(8662), 1, - anon_sym_PIPE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8664), 1, - sym_quoted_content_bar, - STATE(7236), 1, - aux_sym_quoted_bar_repeat1, + sym_quoted_content_heredoc_single, + STATE(6921), 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, - [294124] = 6, - ACTIONS(7917), 1, + [293407] = 6, + ACTIONS(7897), 1, sym_escape_sequence, ACTIONS(8666), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(8668), 1, - sym_quoted_content_parenthesis, - STATE(6967), 1, - aux_sym_quoted_parenthesis_repeat1, + sym_quoted_content_heredoc_double, + STATE(6923), 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, - [294145] = 6, - ACTIONS(7923), 1, + [293428] = 6, + ACTIONS(7867), 1, sym_escape_sequence, ACTIONS(8670), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, ACTIONS(8672), 1, - sym_quoted_content_double, - STATE(6989), 1, - aux_sym_quoted_double_repeat1, + sym_quoted_content_curly, + STATE(6928), 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, - [294166] = 6, - ACTIONS(7949), 1, + [293449] = 6, + ACTIONS(7907), 1, sym_escape_sequence, ACTIONS(8674), 1, - anon_sym_SQUOTE, + anon_sym_RBRACK, ACTIONS(8676), 1, - sym_quoted_content_single, - STATE(6990), 1, - aux_sym_quoted_single_repeat1, + sym_quoted_content_square, + STATE(6950), 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, - [294187] = 4, + [293470] = 6, + ACTIONS(7913), 1, + sym_escape_sequence, + ACTIONS(8678), 1, + anon_sym_GT, ACTIONS(8680), 1, - sym_quoted_content_i_angle, + sym_quoted_content_angle, + STATE(7239), 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, - ACTIONS(8678), 3, - anon_sym_GT, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [294204] = 6, - ACTIONS(7851), 1, + [293491] = 6, + ACTIONS(7919), 1, sym_escape_sequence, ACTIONS(8682), 1, - anon_sym_SLASH, + anon_sym_PIPE, ACTIONS(8684), 1, - sym_quoted_content_slash, - STATE(6765), 1, - aux_sym_quoted_slash_repeat1, + sym_quoted_content_bar, + STATE(7243), 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, - [294225] = 6, - ACTIONS(7899), 1, + [293512] = 6, + ACTIONS(7925), 1, sym_escape_sequence, ACTIONS(8686), 1, - anon_sym_RBRACE, + anon_sym_SLASH, ACTIONS(8688), 1, - sym_quoted_content_curly, - STATE(7177), 1, - aux_sym_quoted_curly_repeat1, + sym_quoted_content_slash, + STATE(7245), 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, - [294246] = 4, + [293533] = 6, + ACTIONS(7873), 1, + sym_escape_sequence, + ACTIONS(8690), 1, + anon_sym_RPAREN, ACTIONS(8692), 1, - sym_quoted_content_i_bar, + sym_quoted_content_parenthesis, + STATE(6670), 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, - ACTIONS(8690), 3, - anon_sym_PIPE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [294263] = 6, - ACTIONS(7869), 1, + [293554] = 6, + ACTIONS(7879), 1, sym_escape_sequence, ACTIONS(8694), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE, ACTIONS(8696), 1, - sym_quoted_content_square, - STATE(7180), 1, - aux_sym_quoted_square_repeat1, + sym_quoted_content_double, + STATE(6684), 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, - [294284] = 6, - ACTIONS(7857), 1, + [293575] = 6, + ACTIONS(7885), 1, sym_escape_sequence, ACTIONS(8698), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SQUOTE, ACTIONS(8700), 1, - sym_quoted_content_heredoc_single, - STATE(7282), 1, - aux_sym_quoted_heredoc_single_repeat1, + sym_quoted_content_single, + STATE(6736), 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, - [294305] = 6, - ACTIONS(7863), 1, + [293596] = 6, + ACTIONS(7891), 1, sym_escape_sequence, ACTIONS(8702), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8704), 1, - sym_quoted_content_heredoc_double, - STATE(6958), 1, - aux_sym_quoted_heredoc_double_repeat1, + sym_quoted_content_heredoc_single, + STATE(6829), 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, - [294326] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(345), 1, - anon_sym_DQUOTE, - ACTIONS(347), 1, - anon_sym_SQUOTE, - STATE(2364), 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, - [294345] = 6, - ACTIONS(7899), 1, + [293617] = 6, + ACTIONS(7897), 1, sym_escape_sequence, ACTIONS(8706), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(8708), 1, - sym_quoted_content_curly, - STATE(6959), 1, - aux_sym_quoted_curly_repeat1, + sym_quoted_content_heredoc_double, + STATE(6833), 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, - [294366] = 4, - ACTIONS(7929), 1, - sym_quoted_content_i_heredoc_single, + [293638] = 4, + ACTIONS(7931), 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(7927), 3, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7929), 3, + anon_sym_RBRACK, anon_sym_POUND_LBRACE, sym_escape_sequence, - [294383] = 6, - ACTIONS(7869), 1, + [293655] = 6, + ACTIONS(7907), 1, sym_escape_sequence, ACTIONS(8710), 1, anon_sym_RBRACK, ACTIONS(8712), 1, sym_quoted_content_square, - STATE(7132), 1, + STATE(6867), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456031,14 +455337,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294404] = 6, - ACTIONS(7883), 1, + [293676] = 6, + ACTIONS(7913), 1, sym_escape_sequence, ACTIONS(8714), 1, anon_sym_GT, ACTIONS(8716), 1, sym_quoted_content_angle, - STATE(7134), 1, + STATE(7209), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456046,14 +455352,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294425] = 6, - ACTIONS(7893), 1, + [293697] = 6, + ACTIONS(7919), 1, sym_escape_sequence, ACTIONS(8718), 1, anon_sym_PIPE, ACTIONS(8720), 1, sym_quoted_content_bar, - STATE(7136), 1, + STATE(6671), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456061,40 +455367,133 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294446] = 6, - ACTIONS(7917), 1, + [293718] = 4, + ACTIONS(8069), 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(8067), 3, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(8722), 1, - anon_sym_RPAREN, + [293735] = 4, ACTIONS(8724), 1, - sym_quoted_content_parenthesis, - STATE(6713), 1, - aux_sym_quoted_parenthesis_repeat1, + 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, - [294467] = 5, - ACTIONS(7923), 1, + ACTIONS(8722), 3, + anon_sym_PIPE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [293752] = 4, + ACTIONS(8728), 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(8726), 3, + anon_sym_RBRACE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [293769] = 4, + ACTIONS(7931), 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(7929), 3, + anon_sym_RBRACE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [293786] = 6, + ACTIONS(7925), 1, + sym_escape_sequence, + ACTIONS(8730), 1, + anon_sym_SLASH, + ACTIONS(8732), 1, + sym_quoted_content_slash, + STATE(7003), 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, + [293807] = 4, + ACTIONS(8736), 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(8734), 3, + anon_sym_RBRACK, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [293824] = 6, + ACTIONS(7897), 1, + sym_escape_sequence, + ACTIONS(8738), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8740), 1, + sym_quoted_content_heredoc_double, + STATE(6939), 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, + [293845] = 5, + ACTIONS(7897), 1, + sym_escape_sequence, + ACTIONS(8742), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, + [293863] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8726), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(8744), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6876), 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, - [294485] = 5, - ACTIONS(7917), 1, + [293881] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8728), 1, + ACTIONS(8746), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456102,12 +455501,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294503] = 5, - ACTIONS(7923), 1, + [293899] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8730), 1, + ACTIONS(8748), 1, anon_sym_DQUOTE, - STATE(6704), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456115,36 +455514,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294521] = 5, - ACTIONS(7857), 1, + [293917] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8732), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(8750), 1, + anon_sym_RBRACE, + STATE(6661), 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, - [294539] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - ACTIONS(3796), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_GT_GT, - [294553] = 5, - ACTIONS(7917), 1, + [293935] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8734), 1, + ACTIONS(8752), 1, anon_sym_RPAREN, - STATE(6672), 1, + STATE(6648), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456152,12 +455540,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294571] = 5, - ACTIONS(7917), 1, + [293953] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8734), 1, + ACTIONS(8752), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456165,12 +455553,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294589] = 5, - ACTIONS(7923), 1, + [293971] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8736), 1, + ACTIONS(8754), 1, anon_sym_DQUOTE, - STATE(6673), 1, + STATE(6649), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456178,12 +455566,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294607] = 5, - ACTIONS(7923), 1, + [293989] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8736), 1, + ACTIONS(8754), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456191,12 +455579,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294625] = 5, - ACTIONS(7949), 1, + [294007] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8738), 1, + ACTIONS(8756), 1, anon_sym_SQUOTE, - STATE(6674), 1, + STATE(6650), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456204,12 +455592,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294643] = 5, - ACTIONS(7949), 1, + [294025] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8738), 1, + ACTIONS(8756), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456217,12 +455605,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294661] = 5, - ACTIONS(7857), 1, + [294043] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8740), 1, + ACTIONS(8758), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6675), 1, + STATE(6651), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456230,12 +455618,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294679] = 5, - ACTIONS(7857), 1, + [294061] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8740), 1, + ACTIONS(8758), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456243,12 +455631,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294697] = 5, - ACTIONS(7863), 1, + [294079] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8742), 1, + ACTIONS(8760), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6676), 1, + STATE(6652), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456256,12 +455644,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294715] = 5, - ACTIONS(7863), 1, + [294097] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8742), 1, + ACTIONS(8760), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456269,12 +455657,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294733] = 5, - ACTIONS(7899), 1, + [294115] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8744), 1, + ACTIONS(8762), 1, anon_sym_RBRACE, - STATE(6677), 1, + STATE(6653), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456282,12 +455670,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294751] = 5, - ACTIONS(7899), 1, + [294133] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8744), 1, + ACTIONS(8762), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456295,12 +455683,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294769] = 5, - ACTIONS(7869), 1, + [294151] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8746), 1, + ACTIONS(8764), 1, anon_sym_RBRACK, - STATE(6678), 1, + STATE(6654), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456308,12 +455696,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294787] = 5, - ACTIONS(7869), 1, + [294169] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8746), 1, + ACTIONS(8764), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456321,12 +455709,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294805] = 5, - ACTIONS(7883), 1, + [294187] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8748), 1, + ACTIONS(8766), 1, anon_sym_GT, - STATE(6679), 1, + STATE(6655), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456334,12 +455722,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294823] = 5, - ACTIONS(7883), 1, + [294205] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8748), 1, + ACTIONS(8766), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456347,12 +455735,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294841] = 5, - ACTIONS(7893), 1, + [294223] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8750), 1, + ACTIONS(8768), 1, anon_sym_PIPE, - STATE(6680), 1, + STATE(6656), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456360,12 +455748,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294859] = 5, - ACTIONS(7893), 1, + [294241] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8750), 1, + ACTIONS(8768), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456373,12 +455761,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294877] = 5, - ACTIONS(7851), 1, + [294259] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8752), 1, + ACTIONS(8770), 1, anon_sym_SLASH, - STATE(6681), 1, + STATE(6657), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456386,12 +455774,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294895] = 5, - ACTIONS(7851), 1, + [294277] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8752), 1, + ACTIONS(8770), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456399,64 +455787,61 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294913] = 5, - ACTIONS(8754), 1, - anon_sym_GT, - ACTIONS(8756), 1, + [294295] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(8750), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [294931] = 5, - ACTIONS(7863), 1, - sym_escape_sequence, - ACTIONS(8759), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6822), 1, - aux_sym_quoted_heredoc_double_repeat1, + [294313] = 4, + ACTIONS(8774), 1, + sym_quoted_content_single, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294949] = 5, - ACTIONS(7863), 1, + ACTIONS(8772), 2, + anon_sym_SQUOTE, sym_escape_sequence, - ACTIONS(8759), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + [294329] = 3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [294967] = 5, - ACTIONS(7899), 1, + ACTIONS(6682), 3, + anon_sym_GT, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(8761), 1, - anon_sym_RBRACE, - STATE(6823), 1, - aux_sym_quoted_curly_repeat1, + [294343] = 5, + ACTIONS(7919), 1, + sym_escape_sequence, + ACTIONS(8776), 1, + anon_sym_PIPE, + STATE(7049), 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, - [294985] = 5, - ACTIONS(7917), 1, + [294361] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8763), 1, + ACTIONS(8778), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456464,12 +455849,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295003] = 5, - ACTIONS(7923), 1, + [294379] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8765), 1, + ACTIONS(8780), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456477,12 +455862,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295021] = 5, - ACTIONS(7949), 1, + [294397] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8767), 1, + ACTIONS(8782), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456490,12 +455875,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295039] = 5, - ACTIONS(7857), 1, + [294415] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8769), 1, + ACTIONS(8784), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456503,12 +455888,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295057] = 5, - ACTIONS(7863), 1, + [294433] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8771), 1, + ACTIONS(8786), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456516,12 +455901,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295075] = 5, - ACTIONS(7899), 1, + [294451] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8773), 1, + ACTIONS(8788), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456529,12 +455914,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295093] = 5, - ACTIONS(7869), 1, + [294469] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8775), 1, + ACTIONS(8790), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456542,12 +455927,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295111] = 5, - ACTIONS(7883), 1, + [294487] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8777), 1, + ACTIONS(8792), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456555,12 +455940,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295129] = 5, - ACTIONS(7893), 1, + [294505] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8779), 1, + ACTIONS(8794), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456568,12 +455953,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295147] = 5, - ACTIONS(7851), 1, + [294523] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8781), 1, + ACTIONS(8796), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456581,168 +455966,153 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295165] = 5, - ACTIONS(7917), 1, + [294541] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8783), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(8798), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [295183] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1168), 1, - anon_sym_GT_GT, - ACTIONS(8785), 1, - anon_sym_COMMA, - STATE(7041), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [295201] = 5, - ACTIONS(7917), 1, + [294559] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8787), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(8800), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [295219] = 5, - ACTIONS(7923), 1, + [294577] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8789), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(8802), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [295237] = 5, - ACTIONS(7923), 1, + [294595] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8791), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(8804), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [295255] = 5, - ACTIONS(7949), 1, + [294613] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8793), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(8806), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [295273] = 5, - ACTIONS(7857), 1, + [294631] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8795), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(8808), 1, + anon_sym_GT, + STATE(6683), 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, - [295291] = 5, - ACTIONS(7863), 1, + [294649] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8797), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(8810), 1, + anon_sym_PIPE, + STATE(6735), 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, - [295309] = 5, - ACTIONS(7857), 1, + [294667] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8799), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(8812), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [295327] = 5, - ACTIONS(7899), 1, + [294685] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8801), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(8814), 1, + anon_sym_SLASH, + STATE(6823), 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, - [295345] = 5, - ACTIONS(7869), 1, - sym_escape_sequence, - ACTIONS(8803), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + [294703] = 3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295363] = 5, - ACTIONS(7883), 1, + ACTIONS(6666), 3, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(8805), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + [294717] = 5, + ACTIONS(7873), 1, + sym_escape_sequence, + ACTIONS(8816), 1, + anon_sym_RPAREN, + STATE(6918), 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, - [295381] = 5, - ACTIONS(7949), 1, + [294735] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8807), 1, + ACTIONS(8818), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456750,103 +456120,103 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295399] = 5, - ACTIONS(7857), 1, + [294753] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8809), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(8816), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [295417] = 5, - ACTIONS(7863), 1, + [294771] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8811), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(8776), 1, + anon_sym_PIPE, + STATE(6735), 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, - [295435] = 5, - ACTIONS(7899), 1, + [294789] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8813), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(8820), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [295453] = 5, - ACTIONS(7869), 1, + [294807] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8815), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(8822), 1, + anon_sym_RPAREN, + STATE(6748), 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, - [295471] = 5, - ACTIONS(7883), 1, + [294825] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8817), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(8822), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [295489] = 5, - ACTIONS(7893), 1, + [294843] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8819), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + STATE(6749), 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, - [295507] = 5, - ACTIONS(7851), 1, + [294861] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8821), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [295525] = 5, - ACTIONS(7949), 1, + [294879] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8823), 1, + ACTIONS(8826), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(6750), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456854,86 +456224,116 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295543] = 5, - ACTIONS(7917), 1, + [294897] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8825), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(8826), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [295561] = 5, - ACTIONS(7923), 1, + [294915] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8827), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(8828), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6751), 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, - [295579] = 5, - ACTIONS(7949), 1, + [294933] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8829), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(8828), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [295597] = 3, + [294951] = 5, + ACTIONS(7897), 1, + sym_escape_sequence, + ACTIONS(8830), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6752), 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, - ACTIONS(6636), 3, - anon_sym_RPAREN, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [295611] = 5, - ACTIONS(7857), 1, + [294969] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8831), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(8832), 1, + anon_sym_DQUOTE, + STATE(6998), 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, - [295629] = 3, + [294987] = 5, + ACTIONS(8834), 1, + anon_sym_GT, + ACTIONS(8836), 1, + sym_escape_sequence, + STATE(6683), 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, - ACTIONS(6798), 3, + [295005] = 5, + ACTIONS(7879), 1, + sym_escape_sequence, + ACTIONS(8832), 1, anon_sym_DQUOTE, - anon_sym_POUND_LBRACE, + STATE(6970), 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, + [295023] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - [295643] = 5, - ACTIONS(7863), 1, + ACTIONS(8839), 1, + anon_sym_PIPE, + STATE(6735), 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, + [295041] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8833), 1, + ACTIONS(8830), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456941,38 +456341,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295661] = 5, - ACTIONS(8835), 1, - anon_sym_SQUOTE, - ACTIONS(8837), 1, + [295059] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(8841), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6881), 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, - [295679] = 5, - ACTIONS(7899), 1, + [295077] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8840), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(8843), 1, + anon_sym_RPAREN, + STATE(6713), 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, - [295697] = 5, - ACTIONS(7917), 1, + [295095] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8842), 1, + ACTIONS(8843), 1, anon_sym_RPAREN, - STATE(6737), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -456980,25 +456380,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295715] = 5, - ACTIONS(7917), 1, + [295113] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8842), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(8845), 1, + anon_sym_DQUOTE, + STATE(6714), 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, - [295733] = 5, - ACTIONS(7923), 1, + [295131] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8726), 1, + ACTIONS(8845), 1, anon_sym_DQUOTE, - STATE(6738), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457006,12 +456406,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295751] = 5, - ACTIONS(7949), 1, + [295149] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8844), 1, + ACTIONS(8847), 1, anon_sym_SQUOTE, - STATE(6739), 1, + STATE(6715), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457019,12 +456419,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295769] = 5, - ACTIONS(7949), 1, + [295167] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8844), 1, + ACTIONS(8847), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457032,12 +456432,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295787] = 5, - ACTIONS(7857), 1, + [295185] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8846), 1, + ACTIONS(8849), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6740), 1, + STATE(6716), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457045,12 +456445,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295805] = 5, - ACTIONS(7857), 1, + [295203] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8846), 1, + ACTIONS(8849), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457058,12 +456458,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295823] = 5, - ACTIONS(7863), 1, + [295221] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8848), 1, + ACTIONS(8851), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6741), 1, + STATE(6717), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457071,12 +456471,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295841] = 5, - ACTIONS(7863), 1, + [295239] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8848), 1, + ACTIONS(8851), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457084,12 +456484,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295859] = 5, - ACTIONS(7899), 1, + [295257] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8850), 1, + ACTIONS(8853), 1, anon_sym_RBRACE, - STATE(6742), 1, + STATE(6718), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457097,12 +456497,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295877] = 5, - ACTIONS(7899), 1, + [295275] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8850), 1, + ACTIONS(8853), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457110,12 +456510,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295895] = 5, - ACTIONS(7869), 1, + [295293] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8852), 1, + ACTIONS(8855), 1, anon_sym_RBRACK, - STATE(6743), 1, + STATE(6719), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457123,12 +456523,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295913] = 5, - ACTIONS(7869), 1, + [295311] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8852), 1, + ACTIONS(8855), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457136,12 +456536,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295931] = 5, - ACTIONS(7883), 1, + [295329] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8854), 1, + ACTIONS(8857), 1, anon_sym_GT, - STATE(6744), 1, + STATE(6720), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457149,12 +456549,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295949] = 5, - ACTIONS(7883), 1, + [295347] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8854), 1, + ACTIONS(8857), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457162,12 +456562,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295967] = 5, - ACTIONS(7893), 1, + [295365] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8856), 1, + ACTIONS(8859), 1, anon_sym_PIPE, - STATE(6745), 1, + STATE(6721), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457175,12 +456575,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [295985] = 5, - ACTIONS(7893), 1, + [295383] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8856), 1, + ACTIONS(8859), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457188,12 +456588,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296003] = 5, - ACTIONS(7851), 1, + [295401] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8858), 1, + ACTIONS(8861), 1, anon_sym_SLASH, - STATE(6746), 1, + STATE(6722), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457201,12 +456601,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296021] = 5, - ACTIONS(7851), 1, + [295419] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8858), 1, + ACTIONS(8861), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457214,25 +456614,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296039] = 5, - ACTIONS(7869), 1, - sym_escape_sequence, - ACTIONS(8860), 1, - anon_sym_RBRACK, - STATE(7281), 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, - [296057] = 5, - ACTIONS(7899), 1, + [295437] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8761), 1, + ACTIONS(8863), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(6828), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457240,25 +456627,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296075] = 5, - ACTIONS(7917), 1, + [295455] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8862), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(8863), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [296093] = 5, - ACTIONS(7869), 1, + [295473] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8864), 1, + ACTIONS(8865), 1, anon_sym_RBRACK, - STATE(6824), 1, + STATE(6854), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457266,38 +456653,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296111] = 5, - ACTIONS(7917), 1, + [295491] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8866), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(8865), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [296129] = 5, - ACTIONS(7857), 1, + [295509] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8868), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(8867), 1, + anon_sym_GT, + STATE(6873), 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, - [296147] = 5, - ACTIONS(7917), 1, + [295527] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8870), 1, + ACTIONS(8869), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457305,12 +456692,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296165] = 5, - ACTIONS(7923), 1, + [295545] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8872), 1, + ACTIONS(8871), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457318,12 +456705,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296183] = 5, - ACTIONS(7949), 1, + [295563] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8874), 1, + ACTIONS(8873), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457331,12 +456718,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296201] = 5, - ACTIONS(7857), 1, + [295581] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8876), 1, + ACTIONS(8875), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457344,12 +456731,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296219] = 5, - ACTIONS(7863), 1, + [295599] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8878), 1, + ACTIONS(8877), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457357,12 +456744,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296237] = 5, - ACTIONS(7899), 1, + [295617] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8880), 1, + ACTIONS(8879), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457370,12 +456757,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296255] = 5, - ACTIONS(7869), 1, + [295635] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8882), 1, + ACTIONS(8881), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457383,12 +456770,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296273] = 5, - ACTIONS(7883), 1, + [295653] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8884), 1, + ACTIONS(8883), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457396,38 +456783,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296291] = 5, - ACTIONS(7893), 1, - sym_escape_sequence, - ACTIONS(8886), 1, - anon_sym_PIPE, - STATE(6874), 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, - [296309] = 5, - ACTIONS(7851), 1, - sym_escape_sequence, - ACTIONS(8888), 1, - anon_sym_SLASH, - STATE(7090), 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, - [296327] = 5, - ACTIONS(7893), 1, + [295671] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8890), 1, + ACTIONS(8885), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457435,12 +456796,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296345] = 5, - ACTIONS(7851), 1, + [295689] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8892), 1, + ACTIONS(8887), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457448,12 +456809,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296363] = 5, - ACTIONS(7883), 1, + [295707] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8894), 1, + ACTIONS(8867), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457461,10 +456822,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296381] = 5, - ACTIONS(7893), 1, + [295725] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8896), 1, + ACTIONS(8889), 1, anon_sym_PIPE, STATE(6874), 1, aux_sym_quoted_bar_repeat1, @@ -457474,25 +456835,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296399] = 5, - ACTIONS(7917), 1, + [295743] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(8898), 1, - anon_sym_RPAREN, - STATE(6797), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(8889), 1, + anon_sym_PIPE, + STATE(6735), 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, - [296417] = 5, - ACTIONS(7917), 1, + [295761] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8898), 1, + ACTIONS(8891), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(6871), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457500,103 +456861,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296435] = 5, - ACTIONS(7923), 1, - sym_escape_sequence, - ACTIONS(8900), 1, - anon_sym_DQUOTE, - STATE(6798), 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, - [296453] = 5, - ACTIONS(7923), 1, - sym_escape_sequence, - ACTIONS(8900), 1, - anon_sym_DQUOTE, - STATE(7286), 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, - [296471] = 5, - ACTIONS(7949), 1, - sym_escape_sequence, - ACTIONS(8902), 1, - anon_sym_SQUOTE, - STATE(6799), 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, - [296489] = 5, - ACTIONS(7949), 1, - sym_escape_sequence, - ACTIONS(8902), 1, - anon_sym_SQUOTE, - STATE(6710), 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, - [296507] = 5, - ACTIONS(7857), 1, - sym_escape_sequence, - ACTIONS(8904), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6800), 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, - [296525] = 5, - ACTIONS(7857), 1, - sym_escape_sequence, - ACTIONS(8904), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 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, - [296543] = 5, - ACTIONS(7863), 1, + [295779] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8906), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6801), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(8891), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [296561] = 5, - ACTIONS(7851), 1, + [295797] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8908), 1, + ACTIONS(8893), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6875), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457604,64 +456887,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296579] = 5, - ACTIONS(7863), 1, - sym_escape_sequence, - ACTIONS(8906), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 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, - [296597] = 5, - ACTIONS(7899), 1, - sym_escape_sequence, - ACTIONS(8910), 1, - anon_sym_RBRACE, - STATE(6802), 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, - [296615] = 5, - ACTIONS(7899), 1, - sym_escape_sequence, - ACTIONS(8910), 1, - anon_sym_RBRACE, - STATE(7037), 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, - [296633] = 5, - ACTIONS(7869), 1, - sym_escape_sequence, - ACTIONS(8912), 1, - anon_sym_RBRACK, - STATE(6813), 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, - [296651] = 5, - ACTIONS(7851), 1, + [295815] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8914), 1, + ACTIONS(8893), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457669,207 +456900,90 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296669] = 5, - ACTIONS(7869), 1, - sym_escape_sequence, - ACTIONS(8912), 1, - anon_sym_RBRACK, - STATE(7281), 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, - [296687] = 5, - ACTIONS(7883), 1, - sym_escape_sequence, - ACTIONS(8916), 1, - anon_sym_GT, - STATE(6815), 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, - [296705] = 5, - ACTIONS(7883), 1, - sym_escape_sequence, - ACTIONS(8916), 1, - anon_sym_GT, - STATE(6668), 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, - [296723] = 5, - ACTIONS(7893), 1, - sym_escape_sequence, - ACTIONS(8918), 1, - anon_sym_PIPE, - STATE(6816), 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, - [296741] = 5, - ACTIONS(7893), 1, - sym_escape_sequence, - ACTIONS(8918), 1, - anon_sym_PIPE, - STATE(6874), 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, - [296759] = 5, - ACTIONS(7851), 1, + [295833] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8920), 1, - anon_sym_SLASH, - STATE(6817), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(8895), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [296777] = 5, - ACTIONS(7851), 1, + [295851] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8920), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(8897), 1, + anon_sym_SQUOTE, + STATE(7000), 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, - [296795] = 5, - ACTIONS(8922), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8924), 1, + [295869] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(8899), 1, + anon_sym_DQUOTE, + STATE(6872), 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, - [296813] = 5, - ACTIONS(7883), 1, + [295887] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8927), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(8899), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [296831] = 5, - ACTIONS(7863), 1, + [295905] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8929), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(8901), 1, + anon_sym_SQUOTE, + STATE(6882), 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, - [296849] = 5, - ACTIONS(7893), 1, - sym_escape_sequence, - ACTIONS(8931), 1, + [295923] = 5, + ACTIONS(8903), 1, anon_sym_PIPE, - STATE(6874), 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, - [296867] = 5, - ACTIONS(7917), 1, - sym_escape_sequence, - ACTIONS(8933), 1, - anon_sym_RPAREN, - STATE(6803), 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, - [296885] = 5, - ACTIONS(7917), 1, - sym_escape_sequence, - ACTIONS(8933), 1, - anon_sym_RPAREN, - STATE(6947), 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, - [296903] = 5, - ACTIONS(7923), 1, - sym_escape_sequence, - ACTIONS(8935), 1, - anon_sym_DQUOTE, - STATE(6804), 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, - [296921] = 5, - ACTIONS(7923), 1, + ACTIONS(8905), 1, sym_escape_sequence, - ACTIONS(8935), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + STATE(6735), 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, - [296939] = 5, - ACTIONS(7949), 1, + [295941] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8937), 1, + ACTIONS(8897), 1, anon_sym_SQUOTE, - STATE(6805), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457877,12 +456991,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296957] = 5, - ACTIONS(7949), 1, + [295959] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8937), 1, + ACTIONS(8901), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457890,12 +457004,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296975] = 5, - ACTIONS(7857), 1, + [295977] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8939), 1, + ACTIONS(8908), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6806), 1, + STATE(6883), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457903,12 +457017,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [296993] = 5, - ACTIONS(7857), 1, + [295995] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8939), 1, + ACTIONS(8908), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457916,12 +457030,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297011] = 5, - ACTIONS(7863), 1, + [296013] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8941), 1, + ACTIONS(8910), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6807), 1, + STATE(6884), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457929,12 +457043,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297029] = 5, - ACTIONS(7863), 1, + [296031] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8941), 1, + ACTIONS(8910), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457942,25 +457056,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297047] = 5, - ACTIONS(7899), 1, - sym_escape_sequence, - ACTIONS(8943), 1, - anon_sym_RBRACE, - STATE(6808), 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, - [297065] = 5, - ACTIONS(7899), 1, + [296049] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8943), 1, + ACTIONS(8912), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(6885), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -457968,116 +457069,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297083] = 5, - ACTIONS(7869), 1, - sym_escape_sequence, - ACTIONS(8945), 1, - anon_sym_RBRACK, - STATE(6809), 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, - [297101] = 5, - ACTIONS(7869), 1, - sym_escape_sequence, - ACTIONS(8945), 1, - anon_sym_RBRACK, - STATE(7281), 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, - [297119] = 5, - ACTIONS(7883), 1, - sym_escape_sequence, - ACTIONS(8947), 1, - anon_sym_GT, - STATE(6810), 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, - [297137] = 5, - ACTIONS(7883), 1, - sym_escape_sequence, - ACTIONS(8947), 1, - anon_sym_GT, - STATE(6668), 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, - [297155] = 5, - ACTIONS(7893), 1, - sym_escape_sequence, - ACTIONS(8949), 1, - anon_sym_PIPE, - STATE(6811), 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, - [297173] = 5, - ACTIONS(7893), 1, - sym_escape_sequence, - ACTIONS(8949), 1, - anon_sym_PIPE, - STATE(6874), 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, - [297191] = 5, - ACTIONS(7851), 1, - sym_escape_sequence, - ACTIONS(8951), 1, - anon_sym_SLASH, - STATE(6812), 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, - [297209] = 5, - ACTIONS(7851), 1, + [296067] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8951), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(8914), 1, + anon_sym_RPAREN, + STATE(7182), 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, - [297227] = 5, - ACTIONS(7917), 1, + [296085] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8953), 1, + ACTIONS(8914), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458085,12 +457095,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297245] = 5, - ACTIONS(7923), 1, + [296103] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8955), 1, + ACTIONS(8916), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(7183), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458098,64 +457108,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297263] = 5, - ACTIONS(7949), 1, - sym_escape_sequence, - ACTIONS(8957), 1, - anon_sym_SQUOTE, - STATE(6710), 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, - [297281] = 5, - ACTIONS(7857), 1, - sym_escape_sequence, - ACTIONS(8959), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 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, - [297299] = 5, - ACTIONS(7863), 1, + [296121] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8961), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(8916), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [297317] = 5, - ACTIONS(7899), 1, + [296139] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8963), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(8918), 1, + anon_sym_SQUOTE, + STATE(7200), 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, - [297335] = 5, - ACTIONS(7917), 1, + [296157] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8965), 1, + ACTIONS(8920), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458163,12 +457147,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297353] = 5, - ACTIONS(7923), 1, + [296175] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8967), 1, + ACTIONS(8922), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458176,12 +457160,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297371] = 5, - ACTIONS(7949), 1, + [296193] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8969), 1, + ACTIONS(8924), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458189,12 +457173,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297389] = 5, - ACTIONS(7857), 1, + [296211] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8971), 1, + ACTIONS(8926), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458202,12 +457186,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297407] = 5, - ACTIONS(7863), 1, + [296229] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(8973), 1, + ACTIONS(8928), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458215,25 +457199,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297425] = 5, - ACTIONS(7899), 1, - sym_escape_sequence, - ACTIONS(8975), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + [296247] = 4, + ACTIONS(8932), 1, + sym_quoted_content_double, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297443] = 5, - ACTIONS(7869), 1, + ACTIONS(8930), 2, + anon_sym_DQUOTE, sym_escape_sequence, - ACTIONS(8977), 1, + [296263] = 5, + ACTIONS(7907), 1, + sym_escape_sequence, + ACTIONS(8934), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6662), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458241,127 +457224,129 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297461] = 5, - ACTIONS(7883), 1, + [296281] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(8979), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(8934), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [297479] = 5, - ACTIONS(7893), 1, + [296299] = 5, + ACTIONS(8936), 1, + anon_sym_RBRACK, + ACTIONS(8938), 1, sym_escape_sequence, - ACTIONS(8981), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + STATE(6756), 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, - [297497] = 5, - ACTIONS(7851), 1, + [296317] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8983), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(8941), 1, + anon_sym_RPAREN, + STATE(7071), 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, - [297515] = 5, - ACTIONS(7869), 1, + [296335] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8985), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(8943), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7002), 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, - [297533] = 3, + [296353] = 5, + ACTIONS(7873), 1, + sym_escape_sequence, + ACTIONS(8945), 1, + anon_sym_RPAREN, + STATE(6784), 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, - ACTIONS(7575), 3, - anon_sym_RBRACK, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [297547] = 5, - ACTIONS(7883), 1, + [296371] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(8987), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(8945), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [297565] = 5, - ACTIONS(7893), 1, + [296389] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8989), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(8947), 1, + anon_sym_DQUOTE, + STATE(6785), 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, - [297583] = 5, - ACTIONS(7851), 1, + [296407] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8991), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(8947), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [297601] = 5, - ACTIONS(7923), 1, + [296425] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8993), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(8949), 1, + anon_sym_SQUOTE, + STATE(6786), 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, - [297619] = 5, - ACTIONS(7949), 1, + [296443] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(8995), 1, + ACTIONS(8949), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458369,25 +457354,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297637] = 5, - ACTIONS(7899), 1, + [296461] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8997), 1, - anon_sym_RBRACE, - STATE(6942), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(8951), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6787), 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, - [297655] = 5, - ACTIONS(7857), 1, + [296479] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(8999), 1, + ACTIONS(8951), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458395,12 +457380,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297673] = 5, - ACTIONS(7863), 1, + [296497] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9001), 1, + ACTIONS(8953), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(6788), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458408,12 +457393,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297691] = 5, - ACTIONS(7899), 1, + [296515] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9003), 1, + ACTIONS(8953), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, + [296533] = 5, + ACTIONS(7867), 1, + sym_escape_sequence, + ACTIONS(8955), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(6789), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458421,12 +457419,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297709] = 5, - ACTIONS(7869), 1, + [296551] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9005), 1, + ACTIONS(8955), 1, + anon_sym_RBRACE, + STATE(7259), 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, + [296569] = 5, + ACTIONS(7907), 1, + sym_escape_sequence, + ACTIONS(8957), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6790), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458434,12 +457445,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297727] = 5, - ACTIONS(7883), 1, + [296587] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9007), 1, + ACTIONS(8957), 1, + anon_sym_RBRACK, + STATE(6756), 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, + [296605] = 5, + ACTIONS(7913), 1, + sym_escape_sequence, + ACTIONS(8959), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6791), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458447,23 +457471,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297745] = 3, + [296623] = 5, + ACTIONS(7913), 1, + sym_escape_sequence, + ACTIONS(8959), 1, + anon_sym_GT, + STATE(6683), 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, - ACTIONS(7168), 3, - anon_sym_SQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [297759] = 5, - ACTIONS(7893), 1, + [296641] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9009), 1, + ACTIONS(8961), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6792), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458471,73 +457497,77 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297777] = 3, + [296659] = 5, + ACTIONS(7919), 1, + sym_escape_sequence, + ACTIONS(8961), 1, + anon_sym_PIPE, + STATE(6735), 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, - ACTIONS(7345), 3, - anon_sym_GT, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [297791] = 5, - ACTIONS(7949), 1, + [296677] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9011), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(8963), 1, + anon_sym_SLASH, + STATE(6793), 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, - [297809] = 3, + [296695] = 5, + ACTIONS(7925), 1, + sym_escape_sequence, + ACTIONS(8963), 1, + anon_sym_SLASH, + STATE(6823), 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, - ACTIONS(7507), 3, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [297823] = 5, - ACTIONS(7851), 1, + [296713] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9013), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(8965), 1, + anon_sym_GT, + STATE(6663), 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, - [297841] = 5, - ACTIONS(7869), 1, + [296731] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(8864), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(8967), 1, + anon_sym_GT, + STATE(7008), 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, - [297859] = 5, - ACTIONS(7851), 1, + [296749] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9015), 1, + ACTIONS(8969), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458545,12 +457575,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297877] = 5, - ACTIONS(7917), 1, + [296767] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9017), 1, + ACTIONS(8971), 1, anon_sym_RPAREN, - STATE(7004), 1, + STATE(6834), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458558,12 +457588,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297895] = 5, - ACTIONS(7917), 1, + [296785] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9017), 1, + ACTIONS(8971), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458571,25 +457601,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297913] = 5, - ACTIONS(7923), 1, + [296803] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9019), 1, - anon_sym_DQUOTE, - STATE(7009), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(8973), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [297931] = 5, - ACTIONS(7923), 1, + [296821] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8730), 1, + ACTIONS(8975), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458597,231 +457627,246 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [297949] = 5, - ACTIONS(7917), 1, + [296839] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9021), 1, - anon_sym_RPAREN, - STATE(6889), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(8977), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [297967] = 5, - ACTIONS(7917), 1, + [296857] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9021), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(8979), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [297985] = 5, - ACTIONS(7923), 1, + [296875] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9023), 1, - anon_sym_DQUOTE, - STATE(6890), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(8981), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [298003] = 5, - ACTIONS(7923), 1, + [296893] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9023), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(8983), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [298021] = 5, - ACTIONS(7923), 1, + [296911] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9019), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(8985), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [298039] = 5, - ACTIONS(7949), 1, + [296929] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9025), 1, - anon_sym_SQUOTE, - STATE(7018), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(8987), 1, + anon_sym_GT, + STATE(6683), 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, - [298057] = 5, - ACTIONS(7949), 1, + [296947] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9025), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(8989), 1, + anon_sym_PIPE, + STATE(6735), 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, - [298075] = 5, - ACTIONS(7857), 1, + [296965] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9027), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(7019), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(8991), 1, + anon_sym_SLASH, + STATE(6823), 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, - [298093] = 5, - ACTIONS(7949), 1, + [296983] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9029), 1, - anon_sym_SQUOTE, - STATE(6891), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(8912), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [298111] = 5, - ACTIONS(7857), 1, + [297001] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9027), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(8993), 1, + anon_sym_RBRACK, + STATE(6895), 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, - [298129] = 3, + [297019] = 5, + ACTIONS(7907), 1, + sym_escape_sequence, + ACTIONS(8993), 1, + anon_sym_RBRACK, + STATE(6756), 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, - ACTIONS(7447), 3, - anon_sym_PIPE, - anon_sym_POUND_LBRACE, + [297037] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - [298143] = 5, - ACTIONS(7863), 1, + ACTIONS(8995), 1, + anon_sym_GT, + STATE(6896), 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, + [297055] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9031), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(7020), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(8995), 1, + anon_sym_GT, + STATE(6683), 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, - [298161] = 5, - ACTIONS(7949), 1, + [297073] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9029), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(8997), 1, + anon_sym_PIPE, + STATE(6897), 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, - [298179] = 5, - ACTIONS(7863), 1, + [297091] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9031), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(8999), 1, + anon_sym_DQUOTE, + STATE(6835), 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, - [298197] = 5, - ACTIONS(7899), 1, + [297109] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9033), 1, - anon_sym_RBRACE, - STATE(7021), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(8999), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [298215] = 5, - ACTIONS(7857), 1, + [297127] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9035), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6892), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9001), 1, + anon_sym_SQUOTE, + STATE(6836), 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, - [298233] = 5, - ACTIONS(7899), 1, + [297145] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9033), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9001), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [298251] = 5, - ACTIONS(7857), 1, + [297163] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9035), 1, + ACTIONS(9003), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(6837), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458829,25 +457874,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298269] = 5, - ACTIONS(7869), 1, + [297181] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9037), 1, - anon_sym_RBRACK, - STATE(7104), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9003), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [298287] = 5, - ACTIONS(7863), 1, + [297199] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9039), 1, + ACTIONS(9005), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6893), 1, + STATE(6838), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458855,12 +457900,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298305] = 5, - ACTIONS(7863), 1, + [297217] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9039), 1, + ACTIONS(9005), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458868,12 +457913,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298323] = 5, - ACTIONS(7899), 1, + [297235] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9041), 1, + ACTIONS(9007), 1, anon_sym_RBRACE, - STATE(6894), 1, + STATE(6839), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458881,12 +457926,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298341] = 5, - ACTIONS(7899), 1, + [297253] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9041), 1, + ACTIONS(9007), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458894,12 +457939,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298359] = 5, - ACTIONS(7869), 1, + [297271] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9043), 1, + ACTIONS(9009), 1, anon_sym_RBRACK, - STATE(6895), 1, + STATE(6840), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458907,12 +457952,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298377] = 5, - ACTIONS(7869), 1, + [297289] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9043), 1, + ACTIONS(9009), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458920,12 +457965,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298395] = 5, - ACTIONS(7883), 1, + [297307] = 5, + ACTIONS(7919), 1, + sym_escape_sequence, + ACTIONS(8997), 1, + anon_sym_PIPE, + STATE(6735), 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, + [297325] = 5, + ACTIONS(7925), 1, + sym_escape_sequence, + ACTIONS(9011), 1, + anon_sym_SLASH, + STATE(6898), 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, + [297343] = 5, + ACTIONS(7925), 1, + sym_escape_sequence, + ACTIONS(9011), 1, + anon_sym_SLASH, + STATE(6823), 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, + [297361] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9045), 1, + ACTIONS(9013), 1, anon_sym_GT, - STATE(6896), 1, + STATE(6842), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458933,12 +458017,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298413] = 5, - ACTIONS(7883), 1, + [297379] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9045), 1, + ACTIONS(9013), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458946,12 +458030,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298431] = 5, - ACTIONS(7893), 1, + [297397] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9047), 1, + ACTIONS(9015), 1, anon_sym_PIPE, - STATE(6918), 1, + STATE(6843), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458959,12 +458043,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298449] = 5, - ACTIONS(7893), 1, + [297415] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9047), 1, + ACTIONS(9015), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458972,12 +458056,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298467] = 5, - ACTIONS(7851), 1, + [297433] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9049), 1, + ACTIONS(9017), 1, anon_sym_SLASH, - STATE(6919), 1, + STATE(6844), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458985,12 +458069,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298485] = 5, - ACTIONS(7851), 1, + [297451] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9049), 1, + ACTIONS(9017), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -458998,64 +458082,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298503] = 5, - ACTIONS(7949), 1, + [297469] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9051), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(8965), 1, + anon_sym_GT, + STATE(6683), 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, - [298521] = 5, - ACTIONS(7949), 1, + [297487] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9053), 1, - anon_sym_SQUOTE, - STATE(6705), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9019), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [298539] = 5, - ACTIONS(7949), 1, + [297505] = 5, + ACTIONS(9021), 1, + anon_sym_SLASH, + ACTIONS(9023), 1, sym_escape_sequence, - ACTIONS(9053), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + STATE(6823), 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, - [298557] = 5, - ACTIONS(7857), 1, + [297523] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9055), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6707), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9026), 1, + anon_sym_RBRACK, + STATE(6665), 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, - [298575] = 5, - ACTIONS(7883), 1, + [297541] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9057), 1, + ACTIONS(8967), 1, anon_sym_GT, - STATE(6825), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459063,51 +458147,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298593] = 5, - ACTIONS(9059), 1, - anon_sym_PIPE, - ACTIONS(9061), 1, - sym_escape_sequence, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + [297559] = 3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298611] = 5, - ACTIONS(7869), 1, + ACTIONS(6634), 3, + anon_sym_SQUOTE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9037), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + [297573] = 3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298629] = 5, - ACTIONS(7883), 1, + ACTIONS(6776), 3, + anon_sym_PIPE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9064), 1, - anon_sym_GT, - STATE(7144), 1, - aux_sym_quoted_angle_repeat1, + [297587] = 5, + ACTIONS(7867), 1, + sym_escape_sequence, + ACTIONS(9028), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [298647] = 5, - ACTIONS(7857), 1, + [297605] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9055), 1, + ACTIONS(8943), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459115,128 +458195,129 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298665] = 4, - ACTIONS(9068), 1, - sym_quoted_content_heredoc_double, + [297623] = 5, + ACTIONS(7919), 1, + sym_escape_sequence, + ACTIONS(9030), 1, + anon_sym_PIPE, + STATE(6664), 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, - ACTIONS(9066), 2, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_escape_sequence, - [298681] = 5, - ACTIONS(7883), 1, + [297641] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9064), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9032), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7006), 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, - [298699] = 5, - ACTIONS(7893), 1, + [297659] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9070), 1, - anon_sym_PIPE, - STATE(7145), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(8818), 1, + anon_sym_SQUOTE, + STATE(7213), 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, - [298717] = 5, - ACTIONS(7893), 1, + [297677] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9070), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9032), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [298735] = 5, - ACTIONS(7851), 1, + [297695] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9072), 1, - anon_sym_SLASH, - STATE(7156), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9034), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [298753] = 5, - ACTIONS(7851), 1, + [297713] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9072), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9036), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [298771] = 5, - ACTIONS(7863), 1, + [297731] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9074), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6709), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9038), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [298789] = 5, - ACTIONS(7863), 1, + [297749] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9074), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9040), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [298807] = 5, - ACTIONS(7883), 1, + [297767] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9057), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9042), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [298825] = 5, - ACTIONS(7899), 1, + [297785] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9076), 1, + ACTIONS(9044), 1, anon_sym_RBRACE, - STATE(6711), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459244,90 +458325,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298843] = 5, - ACTIONS(7893), 1, + [297803] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9078), 1, - anon_sym_PIPE, - STATE(6827), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9046), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [298861] = 5, - ACTIONS(7917), 1, - sym_escape_sequence, - ACTIONS(9080), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + [297821] = 4, + ACTIONS(9050), 1, + sym_quoted_content_square, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298879] = 5, - ACTIONS(7923), 1, + ACTIONS(9048), 2, + anon_sym_RBRACK, sym_escape_sequence, - ACTIONS(9082), 1, - anon_sym_DQUOTE, - STATE(7286), 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, - [298897] = 5, - ACTIONS(7949), 1, + [297837] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9084), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9052), 1, + anon_sym_GT, + STATE(6683), 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, - [298915] = 5, - ACTIONS(7857), 1, + [297855] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9086), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9054), 1, + anon_sym_PIPE, + STATE(6735), 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, - [298933] = 5, - ACTIONS(7863), 1, + [297873] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9088), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9056), 1, + anon_sym_SLASH, + STATE(6823), 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, - [298951] = 5, - ACTIONS(7899), 1, + [297891] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9090), 1, + ACTIONS(9058), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(7009), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459335,38 +458402,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [298969] = 5, - ACTIONS(7869), 1, + [297909] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9092), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9030), 1, + anon_sym_PIPE, + STATE(6735), 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, - [298987] = 5, - ACTIONS(7883), 1, + [297927] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9094), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9058), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [299005] = 5, - ACTIONS(7917), 1, + [297945] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9096), 1, + ACTIONS(9060), 1, anon_sym_RPAREN, - STATE(6925), 1, + STATE(6951), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459374,12 +458441,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299023] = 5, - ACTIONS(7917), 1, + [297963] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9096), 1, + ACTIONS(9060), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459387,12 +458454,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299041] = 5, - ACTIONS(7923), 1, + [297981] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9098), 1, + ACTIONS(9062), 1, anon_sym_DQUOTE, - STATE(6926), 1, + STATE(6952), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459400,12 +458467,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299059] = 5, - ACTIONS(7923), 1, + [297999] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9098), 1, + ACTIONS(9062), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459413,12 +458480,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299077] = 5, - ACTIONS(7949), 1, + [298017] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9100), 1, + ACTIONS(9064), 1, + anon_sym_RBRACK, + STATE(7044), 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, + [298035] = 5, + ACTIONS(7885), 1, + sym_escape_sequence, + ACTIONS(9066), 1, anon_sym_SQUOTE, - STATE(6927), 1, + STATE(6953), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459426,12 +458506,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299095] = 5, - ACTIONS(7949), 1, + [298053] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9100), 1, + ACTIONS(9068), 1, + anon_sym_RBRACK, + STATE(6756), 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, + [298071] = 5, + ACTIONS(7885), 1, + sym_escape_sequence, + ACTIONS(9066), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459439,12 +458532,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299113] = 5, - ACTIONS(7857), 1, + [298089] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9102), 1, + ACTIONS(9070), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6928), 1, + STATE(6954), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459452,12 +458545,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299131] = 5, - ACTIONS(7857), 1, + [298107] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9102), 1, + ACTIONS(9070), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459465,12 +458558,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299149] = 5, - ACTIONS(7863), 1, + [298125] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9104), 1, + ACTIONS(9072), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6929), 1, + STATE(6955), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459478,12 +458571,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299167] = 5, - ACTIONS(7863), 1, + [298143] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9104), 1, + ACTIONS(9072), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459491,12 +458584,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299185] = 5, - ACTIONS(7899), 1, + [298161] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9106), 1, + ACTIONS(9074), 1, anon_sym_RBRACE, - STATE(6930), 1, + STATE(6956), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459504,12 +458597,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299203] = 5, - ACTIONS(7899), 1, + [298179] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9106), 1, + ACTIONS(9074), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459517,12 +458610,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299221] = 5, - ACTIONS(7869), 1, + [298197] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9108), 1, + ACTIONS(9076), 1, anon_sym_RBRACK, - STATE(6931), 1, + STATE(6975), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459530,12 +458623,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299239] = 5, - ACTIONS(7869), 1, + [298215] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9108), 1, + ACTIONS(9076), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459543,12 +458636,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299257] = 5, - ACTIONS(7883), 1, + [298233] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9110), 1, + ACTIONS(9078), 1, anon_sym_GT, - STATE(6932), 1, + STATE(6976), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459556,12 +458649,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299275] = 5, - ACTIONS(7883), 1, + [298251] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9110), 1, + ACTIONS(9078), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459569,12 +458662,116 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299293] = 5, - ACTIONS(7893), 1, + [298269] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9112), 1, + ACTIONS(9080), 1, anon_sym_PIPE, - STATE(6933), 1, + STATE(6977), 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, + [298287] = 5, + ACTIONS(7907), 1, + sym_escape_sequence, + ACTIONS(9064), 1, + anon_sym_RBRACK, + STATE(6756), 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, + [298305] = 5, + ACTIONS(7873), 1, + sym_escape_sequence, + ACTIONS(9082), 1, + anon_sym_RPAREN, + STATE(7222), 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, + [298323] = 5, + ACTIONS(7879), 1, + sym_escape_sequence, + ACTIONS(9084), 1, + anon_sym_DQUOTE, + STATE(6970), 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, + [298341] = 5, + ACTIONS(7885), 1, + sym_escape_sequence, + ACTIONS(9086), 1, + anon_sym_SQUOTE, + STATE(7246), 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, + [298359] = 5, + ACTIONS(7873), 1, + sym_escape_sequence, + ACTIONS(9088), 1, + anon_sym_RPAREN, + STATE(7222), 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, + [298377] = 5, + ACTIONS(7879), 1, + sym_escape_sequence, + ACTIONS(9090), 1, + anon_sym_DQUOTE, + STATE(6970), 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, + [298395] = 5, + ACTIONS(7913), 1, + sym_escape_sequence, + ACTIONS(9092), 1, + anon_sym_GT, + STATE(6683), 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, + [298413] = 5, + ACTIONS(7919), 1, + sym_escape_sequence, + ACTIONS(9094), 1, + anon_sym_PIPE, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459582,12 +458779,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299311] = 5, - ACTIONS(7893), 1, + [298431] = 5, + ACTIONS(7925), 1, + sym_escape_sequence, + ACTIONS(9096), 1, + anon_sym_SLASH, + STATE(6823), 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, + [298449] = 5, + ACTIONS(7891), 1, + sym_escape_sequence, + ACTIONS(9098), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, + [298467] = 5, + ACTIONS(7897), 1, + sym_escape_sequence, + ACTIONS(9100), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, + [298485] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9112), 1, + ACTIONS(9080), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459595,23 +458831,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299329] = 3, + [298503] = 5, + ACTIONS(7925), 1, + sym_escape_sequence, + ACTIONS(9102), 1, + anon_sym_SLASH, + STATE(6978), 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, - ACTIONS(6644), 3, - anon_sym_SLASH, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [299343] = 5, - ACTIONS(7851), 1, + [298521] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9114), 1, + ACTIONS(9102), 1, anon_sym_SLASH, - STATE(6934), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459619,167 +458857,167 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299361] = 5, - ACTIONS(7851), 1, + [298539] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9114), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9104), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [299379] = 5, - ACTIONS(7893), 1, + [298557] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9116), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9106), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [299397] = 5, - ACTIONS(7851), 1, + [298575] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9118), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9108), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [299415] = 5, - ACTIONS(7893), 1, + [298593] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9078), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9110), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [299433] = 4, - ACTIONS(9122), 1, - sym_quoted_content_angle, + [298611] = 5, + ACTIONS(7867), 1, + sym_escape_sequence, + ACTIONS(9112), 1, + anon_sym_RBRACE, + STATE(7259), 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, - ACTIONS(9120), 2, - anon_sym_GT, - sym_escape_sequence, - [299449] = 5, - ACTIONS(7851), 1, + [298629] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9124), 1, - anon_sym_SLASH, - STATE(6831), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9114), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [299467] = 5, - ACTIONS(7863), 1, + [298647] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9126), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9116), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [299485] = 5, - ACTIONS(7851), 1, + [298665] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9124), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9118), 1, + anon_sym_GT, + STATE(6683), 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, - [299503] = 5, - ACTIONS(7917), 1, + [298683] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9128), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(8918), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [299521] = 5, - ACTIONS(7923), 1, + [298701] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9130), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9120), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7201), 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, - [299539] = 5, - ACTIONS(7949), 1, + [298719] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9132), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9120), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [299557] = 5, - ACTIONS(7857), 1, - sym_escape_sequence, - ACTIONS(9134), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + [298737] = 4, + ACTIONS(9124), 1, + sym_quoted_content_heredoc_single, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299575] = 5, - ACTIONS(7863), 1, + ACTIONS(9122), 2, + anon_sym_SQUOTE_SQUOTE_SQUOTE, sym_escape_sequence, - ACTIONS(9136), 1, + [298753] = 5, + ACTIONS(7897), 1, + sym_escape_sequence, + ACTIONS(9126), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7202), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459787,25 +459025,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299593] = 5, - ACTIONS(7899), 1, + [298771] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9138), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9126), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [299611] = 5, - ACTIONS(7869), 1, + [298789] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9140), 1, + ACTIONS(9128), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459813,12 +459051,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299629] = 5, - ACTIONS(7883), 1, + [298807] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9142), 1, + ACTIONS(9130), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459826,12 +459064,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299647] = 5, - ACTIONS(7893), 1, + [298825] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9144), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459839,12 +459077,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299665] = 5, - ACTIONS(7851), 1, + [298843] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9146), 1, + ACTIONS(9134), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459852,129 +459090,102 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299683] = 5, - ACTIONS(9148), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9150), 1, + [298861] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9136), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [299701] = 5, - ACTIONS(7883), 1, + [298879] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9153), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9138), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [299719] = 5, - ACTIONS(7899), 1, + [298897] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9076), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9140), 1, + anon_sym_SLASH, + STATE(6666), 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, - [299737] = 5, - ACTIONS(7899), 1, - sym_escape_sequence, - ACTIONS(9155), 1, - anon_sym_RBRACE, - STATE(7037), 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, + [298915] = 4, + ACTIONS(5), 1, sym_comment, - [299755] = 5, - ACTIONS(7869), 1, - sym_escape_sequence, - ACTIONS(9157), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, - ACTIONS(3), 2, + ACTIONS(9142), 1, + anon_sym_RPAREN, + ACTIONS(9144), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, aux_sym_terminator_token1, - sym_comment, - [299773] = 5, - ACTIONS(7883), 1, + [298931] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9159), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9146), 1, + anon_sym_RBRACE, + STATE(7203), 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, - [299791] = 5, - ACTIONS(7893), 1, + [298949] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9161), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9146), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [299809] = 5, - ACTIONS(7899), 1, + [298967] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9163), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9148), 1, + anon_sym_RBRACK, + STATE(7205), 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, - [299827] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9165), 1, - anon_sym_RPAREN, - ACTIONS(9167), 1, - anon_sym_COMMA, - STATE(6325), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [299845] = 5, - ACTIONS(7869), 1, + [298985] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9169), 1, + ACTIONS(9148), 1, anon_sym_RBRACK, - STATE(6731), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -459982,38 +459193,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299863] = 5, - ACTIONS(7917), 1, + [299003] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9171), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9150), 1, + anon_sym_PIPE, + STATE(6735), 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, - [299881] = 5, - ACTIONS(7869), 1, + [299021] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9169), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9152), 1, + anon_sym_SLASH, + STATE(6823), 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, - [299899] = 5, - ACTIONS(9173), 1, - anon_sym_RPAREN, - ACTIONS(9175), 1, + [299039] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - STATE(6947), 1, + ACTIONS(9154), 1, + anon_sym_RPAREN, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460021,12 +459232,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299917] = 5, - ACTIONS(7883), 1, + [299057] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9178), 1, + ACTIONS(9156), 1, anon_sym_GT, - STATE(6774), 1, + STATE(7206), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460034,12 +459245,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299935] = 5, - ACTIONS(7883), 1, + [299075] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9178), 1, + ACTIONS(9156), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460047,12 +459258,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299953] = 5, - ACTIONS(7893), 1, + [299093] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9180), 1, + ACTIONS(9158), 1, anon_sym_PIPE, - STATE(6776), 1, + STATE(7208), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460060,77 +459271,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [299971] = 5, - ACTIONS(7917), 1, - sym_escape_sequence, - ACTIONS(9182), 1, - anon_sym_RPAREN, - STATE(6684), 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, - [299989] = 5, - ACTIONS(7917), 1, + [299111] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9182), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9140), 1, + anon_sym_SLASH, + STATE(6823), 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, - [300007] = 5, - ACTIONS(7923), 1, + [299129] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9184), 1, - anon_sym_DQUOTE, - STATE(6685), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9160), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [300025] = 5, - ACTIONS(7923), 1, + [299147] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9184), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9162), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [300043] = 5, - ACTIONS(7949), 1, + [299165] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9186), 1, - anon_sym_SQUOTE, - STATE(6694), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9026), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [300061] = 5, - ACTIONS(7893), 1, + [299183] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9180), 1, + ACTIONS(9158), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460138,12 +459336,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300079] = 5, - ACTIONS(7917), 1, + [299201] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9188), 1, + ACTIONS(9164), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460151,154 +459349,153 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300097] = 5, - ACTIONS(7863), 1, + [299219] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9190), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9166), 1, + anon_sym_SLASH, + STATE(7103), 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, - [300115] = 5, - ACTIONS(7899), 1, + [299237] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(8997), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9166), 1, + anon_sym_SLASH, + STATE(6823), 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, - [300133] = 4, - ACTIONS(9194), 1, - sym_quoted_content_single, + [299255] = 5, + ACTIONS(7891), 1, + sym_escape_sequence, + ACTIONS(8744), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - ACTIONS(9192), 2, - anon_sym_SQUOTE, - sym_escape_sequence, - [300149] = 5, - ACTIONS(7857), 1, + [299273] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9196), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6736), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9168), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6877), 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, - [300167] = 5, - ACTIONS(7851), 1, + [299291] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9198), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9168), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [300185] = 5, - ACTIONS(7923), 1, + [299309] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9200), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9170), 1, + anon_sym_SLASH, + STATE(7210), 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, - [300203] = 5, - ACTIONS(7851), 1, - sym_escape_sequence, - ACTIONS(9202), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + [299327] = 4, + ACTIONS(9174), 1, + sym_quoted_content_curly, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300221] = 5, - ACTIONS(7917), 1, + ACTIONS(9172), 2, + anon_sym_RBRACE, sym_escape_sequence, - ACTIONS(9204), 1, - anon_sym_RPAREN, - STATE(6735), 1, - aux_sym_quoted_parenthesis_repeat1, + [299343] = 4, + ACTIONS(9178), 1, + sym_quoted_content_heredoc_double, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300239] = 5, - ACTIONS(7851), 1, + ACTIONS(9176), 2, + anon_sym_DQUOTE_DQUOTE_DQUOTE, sym_escape_sequence, - ACTIONS(9206), 1, - anon_sym_SLASH, - STATE(6833), 1, - aux_sym_quoted_slash_repeat1, + [299359] = 5, + ACTIONS(7867), 1, + sym_escape_sequence, + ACTIONS(9180), 1, + anon_sym_RBRACE, + STATE(6886), 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, - [300257] = 5, - ACTIONS(7917), 1, + [299377] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9204), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9180), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [300275] = 5, - ACTIONS(7923), 1, + [299395] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9208), 1, - anon_sym_DQUOTE, - STATE(6818), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9182), 1, + anon_sym_RBRACK, + STATE(6887), 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, - [300293] = 5, - ACTIONS(7917), 1, + [299413] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9210), 1, + ACTIONS(9184), 1, anon_sym_RPAREN, - STATE(6994), 1, + STATE(6964), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460306,12 +459503,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300311] = 5, - ACTIONS(7917), 1, + [299431] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9210), 1, + ACTIONS(9184), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460319,12 +459516,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300329] = 5, - ACTIONS(7923), 1, + [299449] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9212), 1, + ACTIONS(9186), 1, anon_sym_DQUOTE, - STATE(6995), 1, + STATE(6965), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460332,12 +459529,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300347] = 5, - ACTIONS(7923), 1, + [299467] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9212), 1, + ACTIONS(9186), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460345,12 +459542,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300365] = 5, - ACTIONS(7949), 1, + [299485] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9214), 1, + ACTIONS(9188), 1, anon_sym_SQUOTE, - STATE(6996), 1, + STATE(6966), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460358,12 +459555,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300383] = 5, - ACTIONS(7949), 1, + [299503] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9214), 1, + ACTIONS(9188), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460371,12 +459568,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300401] = 5, - ACTIONS(7857), 1, + [299521] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9216), 1, + ACTIONS(9190), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6997), 1, + STATE(6967), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460384,12 +459581,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300419] = 5, - ACTIONS(7857), 1, + [299539] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9216), 1, + ACTIONS(9190), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460397,12 +459594,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300437] = 5, - ACTIONS(7863), 1, + [299557] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9218), 1, + ACTIONS(9192), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6998), 1, + STATE(6968), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460410,12 +459607,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300455] = 5, - ACTIONS(7863), 1, + [299575] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9218), 1, + ACTIONS(9192), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460423,12 +459620,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300473] = 5, - ACTIONS(7899), 1, + [299593] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9220), 1, + ACTIONS(9194), 1, anon_sym_RBRACE, - STATE(6999), 1, + STATE(6969), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460436,12 +459633,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300491] = 5, - ACTIONS(7899), 1, + [299611] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9220), 1, + ACTIONS(9194), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460449,12 +459646,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300509] = 5, - ACTIONS(7869), 1, + [299629] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9222), 1, + ACTIONS(9196), 1, anon_sym_RBRACK, - STATE(7000), 1, + STATE(6971), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460462,12 +459659,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300527] = 5, - ACTIONS(7869), 1, + [299647] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9222), 1, + ACTIONS(9196), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460475,12 +459672,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300545] = 5, - ACTIONS(7883), 1, + [299665] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9224), 1, + ACTIONS(9198), 1, anon_sym_GT, - STATE(7001), 1, + STATE(6972), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460488,12 +459685,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300563] = 5, - ACTIONS(7883), 1, + [299683] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9224), 1, + ACTIONS(9198), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460501,12 +459698,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300581] = 5, - ACTIONS(7893), 1, + [299701] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9226), 1, + ACTIONS(9200), 1, anon_sym_PIPE, - STATE(7002), 1, + STATE(6973), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460514,12 +459711,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300599] = 5, - ACTIONS(7893), 1, + [299719] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9226), 1, + ACTIONS(9200), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460527,12 +459724,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300617] = 5, - ACTIONS(7851), 1, + [299737] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9228), 1, + ACTIONS(9202), 1, anon_sym_SLASH, - STATE(7003), 1, + STATE(6974), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460540,12 +459737,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300635] = 5, - ACTIONS(7851), 1, + [299755] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9228), 1, + ACTIONS(9202), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460553,12 +459750,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300653] = 5, - ACTIONS(7923), 1, + [299773] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9208), 1, + ACTIONS(9182), 1, + anon_sym_RBRACK, + STATE(6756), 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, + [299791] = 5, + ACTIONS(7873), 1, + sym_escape_sequence, + ACTIONS(9204), 1, + anon_sym_RPAREN, + STATE(7222), 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, + [299809] = 5, + ACTIONS(7879), 1, + sym_escape_sequence, + ACTIONS(9206), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460566,12 +459789,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300671] = 5, - ACTIONS(7949), 1, + [299827] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9230), 1, + ACTIONS(9208), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460579,12 +459802,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300689] = 5, - ACTIONS(7917), 1, + [299845] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9232), 1, + ACTIONS(9210), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, + [299863] = 5, + ACTIONS(7897), 1, + sym_escape_sequence, + ACTIONS(9212), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, + [299881] = 5, + ACTIONS(7867), 1, + sym_escape_sequence, + ACTIONS(9214), 1, + anon_sym_RBRACE, + STATE(7259), 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, + [299899] = 5, + ACTIONS(7873), 1, + sym_escape_sequence, + ACTIONS(9216), 1, anon_sym_RPAREN, - STATE(6682), 1, + STATE(7010), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460592,12 +459854,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300707] = 5, - ACTIONS(7917), 1, + [299917] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9232), 1, + ACTIONS(9216), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460605,12 +459867,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300725] = 5, - ACTIONS(7923), 1, + [299935] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9234), 1, + ACTIONS(9218), 1, anon_sym_DQUOTE, - STATE(6686), 1, + STATE(7011), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460618,12 +459880,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300743] = 5, - ACTIONS(7917), 1, + [299953] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9236), 1, + ACTIONS(9218), 1, + anon_sym_DQUOTE, + STATE(6970), 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, + [299971] = 5, + ACTIONS(7885), 1, + sym_escape_sequence, + ACTIONS(9220), 1, + anon_sym_SQUOTE, + STATE(7012), 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, + [299989] = 5, + ACTIONS(7885), 1, + sym_escape_sequence, + ACTIONS(9220), 1, + anon_sym_SQUOTE, + STATE(7246), 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, + [300007] = 5, + ACTIONS(7891), 1, + sym_escape_sequence, + ACTIONS(9222), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7013), 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, + [300025] = 5, + ACTIONS(7873), 1, + sym_escape_sequence, + ACTIONS(9224), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460631,12 +459945,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300761] = 5, - ACTIONS(7923), 1, + [300043] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9238), 1, + ACTIONS(9226), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460644,12 +459958,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300779] = 5, - ACTIONS(7949), 1, + [300061] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9240), 1, + ACTIONS(9228), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460657,12 +459971,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300797] = 5, - ACTIONS(7857), 1, + [300079] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9242), 1, + ACTIONS(9230), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460670,12 +459984,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300815] = 5, - ACTIONS(7863), 1, + [300097] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9244), 1, + ACTIONS(9232), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460683,12 +459997,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300833] = 5, - ACTIONS(7899), 1, + [300115] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9246), 1, + ACTIONS(9234), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460696,12 +460010,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300851] = 5, - ACTIONS(7869), 1, + [300133] = 5, + ACTIONS(9236), 1, + anon_sym_DQUOTE, + ACTIONS(9238), 1, + sym_escape_sequence, + STATE(6970), 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, + [300151] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9248), 1, + ACTIONS(9241), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460709,12 +460036,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300869] = 5, - ACTIONS(7883), 1, + [300169] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9250), 1, + ACTIONS(9243), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460722,12 +460049,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300887] = 5, - ACTIONS(7893), 1, + [300187] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9252), 1, + ACTIONS(9245), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460735,12 +460062,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300905] = 5, - ACTIONS(7851), 1, + [300205] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9254), 1, + ACTIONS(9247), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -460748,387 +460075,415 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [300923] = 5, - ACTIONS(7917), 1, + [300223] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9256), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9249), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [300941] = 5, - ACTIONS(7949), 1, + [300241] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9186), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9251), 1, + anon_sym_GT, + STATE(6683), 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, - [300959] = 5, - ACTIONS(7857), 1, + [300259] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9258), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6695), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9253), 1, + anon_sym_PIPE, + STATE(6735), 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, - [300977] = 5, - ACTIONS(7857), 1, + [300277] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9258), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9255), 1, + anon_sym_SLASH, + STATE(6823), 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, - [300995] = 5, - ACTIONS(7863), 1, + [300295] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9260), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6696), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9257), 1, + anon_sym_GT, + STATE(6683), 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, - [301013] = 5, - ACTIONS(7923), 1, + [300313] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9262), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9222), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [301031] = 5, - ACTIONS(7923), 1, + [300331] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9234), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(8841), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [301049] = 5, - ACTIONS(7949), 1, + [300349] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9264), 1, - anon_sym_SQUOTE, - STATE(6687), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9259), 1, + anon_sym_PIPE, + STATE(7068), 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, - [301067] = 5, - ACTIONS(7949), 1, + [300367] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9264), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9261), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7233), 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, - [301085] = 5, - ACTIONS(7857), 1, + [300385] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9266), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6688), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9263), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7015), 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, - [301103] = 5, - ACTIONS(7917), 1, + [300403] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3961), 1, + anon_sym_RPAREN, + ACTIONS(9265), 1, + anon_sym_COMMA, + STATE(6985), 1, + aux_sym_stab_clause_arguments_with_parentheses_repeat1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [300421] = 5, + ACTIONS(7897), 1, + sym_escape_sequence, + ACTIONS(9263), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, + [300439] = 5, + ACTIONS(7867), 1, sym_escape_sequence, ACTIONS(9268), 1, - anon_sym_RPAREN, - STATE(7184), 1, - aux_sym_quoted_parenthesis_repeat1, + anon_sym_RBRACE, + STATE(7034), 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, - [301121] = 5, - ACTIONS(7917), 1, + [300457] = 5, + ACTIONS(7867), 1, sym_escape_sequence, ACTIONS(9268), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + anon_sym_RBRACE, + STATE(7259), 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, - [301139] = 5, - ACTIONS(7923), 1, + [300475] = 5, + ACTIONS(7907), 1, sym_escape_sequence, ACTIONS(9270), 1, - anon_sym_DQUOTE, - STATE(7185), 1, - aux_sym_quoted_double_repeat1, + anon_sym_RBRACK, + STATE(7035), 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, - [301157] = 5, - ACTIONS(7923), 1, + [300493] = 5, + ACTIONS(7907), 1, sym_escape_sequence, ACTIONS(9270), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + anon_sym_RBRACK, + STATE(6756), 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, - [301175] = 5, - ACTIONS(7949), 1, + [300511] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9272), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9259), 1, + anon_sym_PIPE, + STATE(6735), 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, - [301193] = 5, - ACTIONS(7857), 1, + [300529] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9274), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9272), 1, + anon_sym_GT, + STATE(7037), 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, - [301211] = 5, - ACTIONS(7863), 1, + [300547] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9276), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9272), 1, + anon_sym_GT, + STATE(6683), 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, - [301229] = 5, - ACTIONS(7899), 1, + [300565] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9278), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9274), 1, + anon_sym_PIPE, + STATE(7040), 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, - [301247] = 5, - ACTIONS(7949), 1, + [300583] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9280), 1, - anon_sym_SQUOTE, - STATE(7186), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9274), 1, + anon_sym_PIPE, + STATE(6735), 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, - [301265] = 3, + [300601] = 5, + ACTIONS(7925), 1, + sym_escape_sequence, + ACTIONS(9276), 1, + anon_sym_SLASH, + STATE(7042), 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, - ACTIONS(7677), 3, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [301279] = 5, - ACTIONS(7949), 1, + [300619] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9280), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9276), 1, + anon_sym_SLASH, + STATE(6823), 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, - [301297] = 5, - ACTIONS(7857), 1, + [300637] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9282), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(7230), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9278), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [301315] = 5, - ACTIONS(7857), 1, + [300655] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9282), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9170), 1, + anon_sym_SLASH, + STATE(6823), 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, - [301333] = 5, - ACTIONS(7863), 1, + [300673] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9260), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9280), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [301351] = 5, - ACTIONS(7899), 1, + [300691] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9284), 1, - anon_sym_RBRACE, - STATE(6697), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9282), 1, + anon_sym_SLASH, + STATE(7052), 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, - [301369] = 5, - ACTIONS(7899), 1, + [300709] = 5, + ACTIONS(7891), 1, sym_escape_sequence, ACTIONS(9284), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [301387] = 5, - ACTIONS(7869), 1, + [300727] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9286), 1, - anon_sym_RBRACK, - STATE(6698), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9282), 1, + anon_sym_SLASH, + STATE(6823), 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, - [301405] = 5, - ACTIONS(7869), 1, + [300745] = 5, + ACTIONS(7873), 1, sym_escape_sequence, ACTIONS(9286), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + anon_sym_RPAREN, + STATE(7222), 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, - [301423] = 5, - ACTIONS(7883), 1, + [300763] = 5, + ACTIONS(7879), 1, sym_escape_sequence, ACTIONS(9288), 1, - anon_sym_GT, - STATE(6699), 1, - aux_sym_quoted_angle_repeat1, + anon_sym_DQUOTE, + STATE(6970), 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, - [301441] = 5, - ACTIONS(7863), 1, + [300781] = 5, + ACTIONS(7897), 1, sym_escape_sequence, ACTIONS(9290), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(7231), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461136,38 +460491,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [301459] = 5, - ACTIONS(7863), 1, - sym_escape_sequence, - ACTIONS(9290), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + [300799] = 4, + ACTIONS(9294), 1, + sym_quoted_content_angle, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [301477] = 5, - ACTIONS(7899), 1, + ACTIONS(9292), 2, + anon_sym_GT, sym_escape_sequence, - ACTIONS(9292), 1, - anon_sym_RBRACE, - STATE(7232), 1, - aux_sym_quoted_curly_repeat1, + [300815] = 5, + ACTIONS(7913), 1, + sym_escape_sequence, + ACTIONS(9296), 1, + anon_sym_GT, + STATE(6683), 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, - [301495] = 5, - ACTIONS(7899), 1, + [300833] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9292), 1, + ACTIONS(9298), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461175,166 +460529,115 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [301513] = 5, - ACTIONS(9294), 1, - anon_sym_RBRACE, - ACTIONS(9296), 1, + [300851] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - STATE(7037), 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, - [301531] = 4, - ACTIONS(9301), 1, - sym_quoted_content_parenthesis, + ACTIONS(9300), 1, + anon_sym_RPAREN, + STATE(7222), 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, - ACTIONS(9299), 2, - anon_sym_RPAREN, - sym_escape_sequence, - [301547] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_RPAREN, - ACTIONS(9303), 1, - anon_sym_COMMA, - STATE(7250), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [301565] = 5, - ACTIONS(7869), 1, + [300869] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9305), 1, - anon_sym_RBRACK, - STATE(7234), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9302), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [301583] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2689), 1, - anon_sym_GT_GT, - ACTIONS(9307), 1, - anon_sym_COMMA, - STATE(7041), 1, - aux_sym_items_with_trailing_separator_repeat1, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [301601] = 5, - ACTIONS(7883), 1, + [300887] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9153), 1, - anon_sym_GT, - STATE(7285), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9304), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [301619] = 5, - ACTIONS(7869), 1, + [300905] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9305), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9306), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [301637] = 4, + [300923] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9310), 1, + ACTIONS(9308), 1, anon_sym_RPAREN, - ACTIONS(9312), 2, + ACTIONS(2153), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [301653] = 5, - ACTIONS(7883), 1, - sym_escape_sequence, - ACTIONS(9314), 1, - anon_sym_GT, - STATE(7235), 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, - [301671] = 5, - ACTIONS(7883), 1, + [300939] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9314), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9310), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [301689] = 5, - ACTIONS(7893), 1, + [300957] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9316), 1, - anon_sym_PIPE, - STATE(7237), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9019), 1, + anon_sym_DQUOTE, + STATE(7235), 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, - [301707] = 5, - ACTIONS(7893), 1, + [300975] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9316), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9312), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [301725] = 5, - ACTIONS(7851), 1, + [300993] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9318), 1, + ACTIONS(9314), 1, anon_sym_SLASH, - STATE(7238), 1, + STATE(7069), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461342,51 +460645,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [301743] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4035), 1, - anon_sym_RPAREN, - ACTIONS(9320), 1, - anon_sym_COMMA, - STATE(7050), 1, - aux_sym_stab_clause_arguments_with_parentheses_repeat1, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [301761] = 5, - ACTIONS(7851), 1, + [301011] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9318), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9316), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [301779] = 5, - ACTIONS(7857), 1, + [301029] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9266), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9318), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [301797] = 5, - ACTIONS(7917), 1, + [301047] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9323), 1, + ACTIONS(9320), 1, anon_sym_RPAREN, - STATE(6957), 1, + STATE(7072), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461394,12 +460684,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [301815] = 5, - ACTIONS(7917), 1, + [301065] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9323), 1, + ACTIONS(9320), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461407,25 +460697,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [301833] = 5, - ACTIONS(7917), 1, + [301083] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9325), 1, - anon_sym_RPAREN, - STATE(7093), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9322), 1, + anon_sym_DQUOTE, + STATE(7073), 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, - [301851] = 5, - ACTIONS(7923), 1, + [301101] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9327), 1, + ACTIONS(9322), 1, anon_sym_DQUOTE, - STATE(6963), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461433,25 +460723,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [301869] = 5, - ACTIONS(7923), 1, - sym_escape_sequence, - ACTIONS(9327), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + [301119] = 3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [301887] = 5, - ACTIONS(7917), 1, + ACTIONS(7781), 3, + anon_sym_RPAREN, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9325), 1, + [301133] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2709), 1, anon_sym_RPAREN, - STATE(6947), 1, + ACTIONS(9324), 1, + anon_sym_COMMA, + STATE(7028), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [301151] = 5, + ACTIONS(7873), 1, + sym_escape_sequence, + ACTIONS(9326), 1, + anon_sym_RPAREN, + STATE(6868), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461459,51 +460760,77 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [301905] = 5, - ACTIONS(7949), 1, - sym_escape_sequence, - ACTIONS(9329), 1, - anon_sym_SQUOTE, - STATE(6829), 1, - aux_sym_quoted_single_repeat1, - ACTIONS(3), 2, + [301169] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2687), 1, + anon_sym_RPAREN, + ACTIONS(9324), 1, + anon_sym_COMMA, + STATE(6287), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, aux_sym_terminator_token1, + [301187] = 5, + ACTIONS(5), 1, sym_comment, - [301923] = 5, - ACTIONS(7923), 1, + ACTIONS(5148), 1, + anon_sym_GT_GT, + ACTIONS(9328), 1, + anon_sym_COMMA, + STATE(7184), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [301205] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9331), 1, - anon_sym_DQUOTE, - STATE(7094), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9326), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [301941] = 5, - ACTIONS(7949), 1, + [301223] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2696), 1, + anon_sym_GT_GT, + ACTIONS(9330), 1, + anon_sym_COMMA, + STATE(7031), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [301241] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9329), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9333), 1, + anon_sym_DQUOTE, + STATE(6869), 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, - [301959] = 5, - ACTIONS(7923), 1, + [301259] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9331), 1, + ACTIONS(9333), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461511,38 +460838,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [301977] = 5, - ACTIONS(7949), 1, + [301277] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9333), 1, - anon_sym_SQUOTE, - STATE(7095), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9335), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [301995] = 5, - ACTIONS(7857), 1, + [301295] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9335), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(7167), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9337), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [302013] = 5, - ACTIONS(7949), 1, + [301313] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9333), 1, + ACTIONS(9339), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(6870), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461550,90 +460877,99 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302031] = 5, - ACTIONS(7857), 1, + [301331] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9337), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(7096), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9341), 1, + anon_sym_GT, + STATE(6683), 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, - [302049] = 5, - ACTIONS(7857), 1, - sym_escape_sequence, - ACTIONS(9337), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, - ACTIONS(3), 2, + [301349] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, aux_sym_terminator_token1, + ACTIONS(3789), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [301363] = 5, + ACTIONS(5), 1, sym_comment, - [302067] = 5, - ACTIONS(7863), 1, + ACTIONS(1190), 1, + anon_sym_GT_GT, + ACTIONS(9343), 1, + anon_sym_COMMA, + STATE(7031), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [301381] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9339), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(7097), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9345), 1, + anon_sym_PIPE, + STATE(6735), 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, - [302085] = 5, - ACTIONS(7863), 1, + [301399] = 5, + ACTIONS(7885), 1, sym_escape_sequence, ACTIONS(9339), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + anon_sym_SQUOTE, + STATE(7246), 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, - [302103] = 5, - ACTIONS(7899), 1, + [301417] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9341), 1, - anon_sym_RBRACE, - STATE(7098), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9347), 1, + anon_sym_SLASH, + STATE(6823), 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, - [302121] = 5, - ACTIONS(7899), 1, - sym_escape_sequence, - ACTIONS(9341), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + [301435] = 3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302139] = 5, - ACTIONS(7869), 1, + ACTIONS(6838), 3, + anon_sym_SLASH, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9343), 1, + [301449] = 5, + ACTIONS(7907), 1, + sym_escape_sequence, + ACTIONS(9349), 1, anon_sym_RBRACK, - STATE(7100), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461641,38 +460977,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302157] = 5, - ACTIONS(7869), 1, + [301467] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9343), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9351), 1, + anon_sym_SQUOTE, + STATE(7102), 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, - [302175] = 5, - ACTIONS(7883), 1, + [301485] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9345), 1, - anon_sym_GT, - STATE(7101), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9351), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [302193] = 5, - ACTIONS(7883), 1, + [301503] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9345), 1, + ACTIONS(9353), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461680,25 +461016,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302211] = 5, - ACTIONS(7893), 1, + [301521] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9347), 1, - anon_sym_PIPE, - STATE(7102), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9355), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7119), 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, - [302229] = 5, - ACTIONS(7893), 1, + [301539] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9347), 1, + ACTIONS(9357), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461706,51 +461042,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302247] = 5, - ACTIONS(7851), 1, + [301557] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9349), 1, - anon_sym_SLASH, - STATE(7103), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9359), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6899), 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, - [302265] = 5, - ACTIONS(7851), 1, + [301575] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9349), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9355), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [302283] = 5, - ACTIONS(7857), 1, + [301593] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9335), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9361), 1, + anon_sym_SLASH, + STATE(6823), 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, - [302301] = 5, - ACTIONS(7863), 1, + [301611] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9351), 1, + ACTIONS(9363), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(7168), 1, + STATE(7132), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461758,50 +461094,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302319] = 4, - ACTIONS(9355), 1, - sym_quoted_content_square, + [301629] = 5, + ACTIONS(7897), 1, + sym_escape_sequence, + ACTIONS(9363), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - ACTIONS(9353), 2, - anon_sym_RBRACK, - sym_escape_sequence, - [302335] = 5, - ACTIONS(7863), 1, + [301647] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9357), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6689), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9365), 1, + anon_sym_RBRACE, + STATE(7172), 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, - [302353] = 5, - ACTIONS(7863), 1, + [301665] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9351), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9365), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [302371] = 5, - ACTIONS(7869), 1, + [301683] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9359), 1, + ACTIONS(9367), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(7173), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -461809,295 +461146,272 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302389] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9361), 1, - anon_sym_RPAREN, - ACTIONS(2137), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [302405] = 5, - ACTIONS(7899), 1, + [301701] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9363), 1, - anon_sym_RBRACE, - STATE(7233), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9367), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [302423] = 5, - ACTIONS(7899), 1, + [301719] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9363), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9369), 1, + anon_sym_GT, + STATE(7177), 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, - [302441] = 3, + [301737] = 5, + ACTIONS(7913), 1, + sym_escape_sequence, + ACTIONS(9369), 1, + anon_sym_GT, + STATE(6683), 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, - ACTIONS(7725), 3, - anon_sym_RBRACE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [302455] = 5, - ACTIONS(9365), 1, - anon_sym_SLASH, - ACTIONS(9367), 1, + [301755] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9371), 1, + anon_sym_PIPE, + STATE(7178), 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, - [302473] = 5, - ACTIONS(7917), 1, + [301773] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9370), 1, - anon_sym_RPAREN, - STATE(7187), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9371), 1, + anon_sym_PIPE, + STATE(6735), 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, - [302491] = 5, - ACTIONS(7917), 1, + [301791] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9370), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9373), 1, + anon_sym_SLASH, + STATE(7179), 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, - [302509] = 5, - ACTIONS(7917), 1, + [301809] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9372), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9373), 1, + anon_sym_SLASH, + STATE(6823), 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, - [302527] = 5, - ACTIONS(7923), 1, + [301827] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9374), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9375), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [302545] = 5, - ACTIONS(7949), 1, + [301845] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9376), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9377), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [302563] = 5, - ACTIONS(7857), 1, + [301863] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9378), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9379), 1, + anon_sym_GT, + STATE(6683), 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, - [302581] = 5, - ACTIONS(7863), 1, + [301881] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9380), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9381), 1, + anon_sym_PIPE, + STATE(6735), 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, - [302599] = 5, - ACTIONS(7899), 1, + [301899] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9382), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9383), 1, + anon_sym_SLASH, + STATE(6823), 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, - [302617] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9384), 1, - anon_sym_RPAREN, - ACTIONS(9386), 1, - anon_sym_COMMA, - STATE(7050), 1, - aux_sym_stab_clause_arguments_with_parentheses_repeat1, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [302635] = 5, - ACTIONS(7869), 1, + [301917] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9388), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(8941), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [302653] = 5, - ACTIONS(7883), 1, + [301935] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9390), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9385), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [302671] = 5, - ACTIONS(7893), 1, + [301953] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9392), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9387), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [302689] = 5, - ACTIONS(7851), 1, + [301971] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9394), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9389), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [302707] = 5, - ACTIONS(7869), 1, + [301989] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9396), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9359), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [302725] = 5, - ACTIONS(7883), 1, + [302007] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9288), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9391), 1, + anon_sym_RPAREN, + STATE(7134), 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, - [302743] = 5, - ACTIONS(7893), 1, + [302025] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9398), 1, - anon_sym_PIPE, - STATE(6747), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9393), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6900), 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, - [302761] = 5, - ACTIONS(7893), 1, + [302043] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9398), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9393), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [302779] = 5, - ACTIONS(7917), 1, + [302061] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9400), 1, + ACTIONS(9391), 1, anon_sym_RPAREN, - STATE(7146), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462105,25 +461419,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302797] = 5, - ACTIONS(7917), 1, + [302079] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9400), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9395), 1, + anon_sym_RBRACE, + STATE(6914), 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, - [302815] = 5, - ACTIONS(7923), 1, + [302097] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9402), 1, + ACTIONS(9397), 1, anon_sym_DQUOTE, - STATE(7147), 1, + STATE(7141), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462131,12 +461445,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302833] = 5, - ACTIONS(7923), 1, + [302115] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9402), 1, + ACTIONS(9397), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462144,12 +461458,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302851] = 5, - ACTIONS(7949), 1, + [302133] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9404), 1, + ACTIONS(9399), 1, anon_sym_SQUOTE, - STATE(7148), 1, + STATE(7142), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462157,12 +461471,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302869] = 5, - ACTIONS(7949), 1, + [302151] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9404), 1, + ACTIONS(9399), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462170,12 +461484,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302887] = 5, - ACTIONS(7857), 1, + [302169] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9406), 1, + ACTIONS(9401), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(7149), 1, + STATE(7146), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462183,12 +461497,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302905] = 5, - ACTIONS(7857), 1, + [302187] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9406), 1, + ACTIONS(9401), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462196,12 +461510,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302923] = 5, - ACTIONS(7863), 1, + [302205] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9408), 1, + ACTIONS(9403), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(7150), 1, + STATE(7149), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462209,12 +461523,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302941] = 5, - ACTIONS(7863), 1, + [302223] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9408), 1, + ACTIONS(9403), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462222,12 +461536,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302959] = 5, - ACTIONS(7899), 1, + [302241] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9410), 1, + ACTIONS(9405), 1, anon_sym_RBRACE, - STATE(7151), 1, + STATE(7150), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462235,12 +461549,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302977] = 5, - ACTIONS(7899), 1, + [302259] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9410), 1, + ACTIONS(9405), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462248,12 +461562,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [302995] = 5, - ACTIONS(7869), 1, + [302277] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9412), 1, + ACTIONS(9407), 1, anon_sym_RBRACK, - STATE(7152), 1, + STATE(7151), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462261,12 +461575,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303013] = 5, - ACTIONS(7869), 1, + [302295] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9412), 1, + ACTIONS(9407), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462274,12 +461588,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303031] = 5, - ACTIONS(7883), 1, + [302313] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9414), 1, + ACTIONS(9409), 1, anon_sym_GT, - STATE(7153), 1, + STATE(7152), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462287,12 +461601,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303049] = 5, - ACTIONS(7883), 1, + [302331] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9414), 1, + ACTIONS(9409), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462300,12 +461614,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303067] = 5, - ACTIONS(7893), 1, + [302349] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9416), 1, + ACTIONS(9411), 1, anon_sym_PIPE, - STATE(7154), 1, + STATE(7153), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462313,12 +461627,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303085] = 5, - ACTIONS(7893), 1, + [302367] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9416), 1, + ACTIONS(9411), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462326,12 +461640,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303103] = 5, - ACTIONS(7851), 1, + [302385] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9418), 1, + ACTIONS(9413), 1, anon_sym_SLASH, - STATE(7155), 1, + STATE(7154), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462339,12 +461653,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303121] = 5, - ACTIONS(7851), 1, + [302403] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9418), 1, + ACTIONS(9413), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462352,103 +461666,103 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303139] = 5, - ACTIONS(7851), 1, + [302421] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9420), 1, - anon_sym_SLASH, - STATE(6748), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9415), 1, + anon_sym_GT, + STATE(6683), 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, - [303157] = 5, - ACTIONS(7869), 1, + [302439] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9422), 1, - anon_sym_RBRACK, - STATE(7253), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9417), 1, + anon_sym_PIPE, + STATE(6735), 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, - [303175] = 5, - ACTIONS(7923), 1, + [302457] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9424), 1, - anon_sym_DQUOTE, - STATE(7189), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9261), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [303193] = 5, - ACTIONS(7923), 1, + [302475] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9424), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9154), 1, + anon_sym_RPAREN, + STATE(7129), 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, - [303211] = 5, - ACTIONS(7869), 1, + [302493] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9422), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9419), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [303229] = 5, - ACTIONS(7883), 1, + [302511] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9426), 1, - anon_sym_GT, - STATE(6749), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9421), 1, + anon_sym_SLASH, + STATE(6823), 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, - [303247] = 5, - ACTIONS(7883), 1, + [302529] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9426), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9423), 1, + anon_sym_DQUOTE, + STATE(7220), 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, - [303265] = 5, - ACTIONS(7893), 1, + [302547] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9428), 1, + ACTIONS(9425), 1, anon_sym_PIPE, - STATE(6750), 1, + STATE(6685), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462456,181 +461770,181 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303283] = 5, - ACTIONS(7893), 1, + [302565] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9428), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9427), 1, + anon_sym_RPAREN, + STATE(7155), 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, - [303301] = 5, - ACTIONS(7949), 1, + [302583] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9430), 1, - anon_sym_SQUOTE, - STATE(7190), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9427), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [303319] = 5, - ACTIONS(7949), 1, + [302601] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9430), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9429), 1, + anon_sym_DQUOTE, + STATE(7156), 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, - [303337] = 5, - ACTIONS(7857), 1, + [302619] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9432), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(7191), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9429), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [303355] = 5, - ACTIONS(7857), 1, + [302637] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9432), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9431), 1, + anon_sym_SQUOTE, + STATE(7157), 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, - [303373] = 5, - ACTIONS(7863), 1, + [302655] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9434), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(7212), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9431), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [303391] = 5, - ACTIONS(7863), 1, + [302673] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9434), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9433), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7158), 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, - [303409] = 5, - ACTIONS(7899), 1, + [302691] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9436), 1, - anon_sym_RBRACE, - STATE(7213), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9433), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [303427] = 5, - ACTIONS(7883), 1, + [302709] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9438), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9435), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7159), 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, - [303445] = 5, - ACTIONS(7893), 1, + [302727] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9440), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9435), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [303463] = 5, - ACTIONS(7917), 1, + [302745] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9442), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9437), 1, + anon_sym_RBRACE, + STATE(7160), 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, - [303481] = 5, - ACTIONS(7923), 1, + [302763] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9444), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9437), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [303499] = 5, - ACTIONS(7949), 1, + [302781] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9446), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9439), 1, + anon_sym_RBRACK, + STATE(7161), 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, - [303517] = 5, - ACTIONS(7857), 1, + [302799] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9448), 1, + ACTIONS(9441), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462638,90 +461952,90 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303535] = 5, - ACTIONS(7863), 1, + [302817] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9450), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9439), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [303553] = 5, - ACTIONS(7899), 1, + [302835] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9452), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9443), 1, + anon_sym_GT, + STATE(7162), 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, - [303571] = 5, - ACTIONS(7869), 1, + [302853] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9454), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9443), 1, + anon_sym_GT, + STATE(6683), 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, - [303589] = 5, - ACTIONS(7883), 1, + [302871] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9456), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9445), 1, + anon_sym_PIPE, + STATE(7163), 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, - [303607] = 5, - ACTIONS(7893), 1, + [302889] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9458), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9447), 1, + anon_sym_RPAREN, + STATE(7187), 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, - [303625] = 5, - ACTIONS(7851), 1, + [302907] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9460), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9445), 1, + anon_sym_PIPE, + STATE(6735), 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, - [303643] = 5, - ACTIONS(7851), 1, + [302925] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9462), 1, + ACTIONS(9449), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(7165), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462729,25 +462043,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303661] = 5, - ACTIONS(7899), 1, + [302943] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9436), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9447), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [303679] = 5, - ACTIONS(7851), 1, + [302961] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9464), 1, + ACTIONS(9449), 1, anon_sym_SLASH, - STATE(6760), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462755,116 +462069,129 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303697] = 5, - ACTIONS(7851), 1, + [302979] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9464), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9451), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [303715] = 5, - ACTIONS(7869), 1, + [302997] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9466), 1, - anon_sym_RBRACK, - STATE(7214), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9453), 1, + anon_sym_DQUOTE, + STATE(7189), 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, - [303733] = 5, - ACTIONS(7869), 1, + [303015] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9455), 1, + anon_sym_RPAREN, + ACTIONS(9457), 1, + anon_sym_COMMA, + STATE(6985), 1, + aux_sym_stab_clause_arguments_with_parentheses_repeat1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [303033] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9466), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9459), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [303751] = 5, - ACTIONS(7883), 1, + [303051] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9468), 1, - anon_sym_GT, - STATE(7215), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9453), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [303769] = 5, - ACTIONS(7883), 1, + [303069] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9468), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9461), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [303787] = 5, - ACTIONS(7851), 1, + [303087] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9420), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9463), 1, + anon_sym_SQUOTE, + STATE(7190), 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, - [303805] = 5, - ACTIONS(7893), 1, + [303105] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9470), 1, - anon_sym_PIPE, - STATE(7216), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9463), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [303823] = 5, - ACTIONS(7893), 1, + [303123] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9470), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9465), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7191), 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, - [303841] = 5, - ACTIONS(7857), 1, + [303141] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9472), 1, + ACTIONS(9465), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462872,12 +462199,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303859] = 5, - ACTIONS(7863), 1, + [303159] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9474), 1, + ACTIONS(9467), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7192), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -462885,150 +462212,155 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [303877] = 5, - ACTIONS(7851), 1, + [303177] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9476), 1, - anon_sym_SLASH, - STATE(7217), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9467), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [303895] = 5, - ACTIONS(7851), 1, + [303195] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9476), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9469), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [303913] = 5, - ACTIONS(7917), 1, + [303213] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9478), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9471), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [303931] = 5, - ACTIONS(7917), 1, + [303231] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9478), 1, - anon_sym_RPAREN, - STATE(6945), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9473), 1, + anon_sym_RBRACE, + STATE(7193), 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, - [303949] = 4, - ACTIONS(9482), 1, - sym_quoted_content_bar, + [303249] = 5, + ACTIONS(7867), 1, + sym_escape_sequence, + ACTIONS(9473), 1, + anon_sym_RBRACE, + STATE(7259), 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, - ACTIONS(9480), 2, - anon_sym_PIPE, + [303267] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - [303965] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(9475), 1, + anon_sym_RBRACK, + STATE(7194), 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, - ACTIONS(9484), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_GT_GT, - [303979] = 5, - ACTIONS(7863), 1, + sym_comment, + [303285] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9357), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9477), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [303997] = 5, - ACTIONS(7899), 1, + [303303] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9486), 1, - anon_sym_RBRACE, - STATE(6691), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9475), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [304015] = 5, - ACTIONS(7899), 1, + [303321] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9486), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9479), 1, + anon_sym_GT, + STATE(7195), 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, - [304033] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + [303339] = 5, + ACTIONS(7897), 1, + sym_escape_sequence, + ACTIONS(9481), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - ACTIONS(1331), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_GT_GT, - [304047] = 5, - ACTIONS(7869), 1, + sym_comment, + [303357] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9488), 1, - anon_sym_RBRACK, - STATE(6692), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9483), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [304065] = 5, - ACTIONS(7869), 1, + [303375] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9488), 1, + ACTIONS(9485), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463036,12 +462368,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304083] = 5, - ACTIONS(7883), 1, + [303393] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9490), 1, + ACTIONS(9487), 1, anon_sym_GT, - STATE(6693), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463049,38 +462381,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304101] = 5, - ACTIONS(7883), 1, + [303411] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9490), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9489), 1, + anon_sym_PIPE, + STATE(6735), 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, - [304119] = 5, - ACTIONS(7893), 1, + [303429] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9492), 1, - anon_sym_PIPE, - STATE(6700), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9491), 1, + anon_sym_SLASH, + STATE(6823), 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, - [304137] = 5, - ACTIONS(7917), 1, + [303447] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9494), 1, + ACTIONS(9493), 1, anon_sym_RPAREN, - STATE(6947), 1, + STATE(7222), 1, aux_sym_quoted_parenthesis_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463088,12 +462420,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304155] = 5, - ACTIONS(7923), 1, + [303465] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9496), 1, + ACTIONS(9495), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463101,12 +462433,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304173] = 5, - ACTIONS(7949), 1, + [303483] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9498), 1, + ACTIONS(9497), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463114,207 +462446,194 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304191] = 5, - ACTIONS(7917), 1, + [303501] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9500), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9499), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [304209] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2353), 1, - anon_sym_GT_GT, - ACTIONS(9502), 1, - anon_sym_COMMA, - STATE(7188), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [304227] = 5, - ACTIONS(7923), 1, + [303519] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9505), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9501), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [304245] = 5, - ACTIONS(7949), 1, + [303537] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9507), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9503), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [304263] = 5, - ACTIONS(7857), 1, + [303555] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9509), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9505), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [304281] = 5, - ACTIONS(7917), 1, + [303573] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9511), 1, - anon_sym_RPAREN, - STATE(7218), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9507), 1, + anon_sym_GT, + STATE(6683), 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, - [304299] = 5, - ACTIONS(7917), 1, + [303591] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9511), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9509), 1, + anon_sym_PIPE, + STATE(6735), 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, - [304317] = 5, - ACTIONS(7923), 1, + [303609] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9513), 1, - anon_sym_DQUOTE, - STATE(7219), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9479), 1, + anon_sym_GT, + STATE(6683), 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, - [304335] = 5, - ACTIONS(7923), 1, + [303627] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9513), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9511), 1, + anon_sym_SLASH, + STATE(6823), 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, - [304353] = 5, - ACTIONS(7949), 1, + [303645] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9515), 1, - anon_sym_SQUOTE, - STATE(7220), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9513), 1, + anon_sym_PIPE, + STATE(7196), 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, - [304371] = 5, - ACTIONS(7949), 1, + [303663] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9515), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9513), 1, + anon_sym_PIPE, + STATE(6735), 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, - [304389] = 5, - ACTIONS(7857), 1, + [303681] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9517), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(7221), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9515), 1, + anon_sym_SLASH, + STATE(7197), 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, - [304407] = 5, - ACTIONS(7857), 1, + [303699] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9517), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9515), 1, + anon_sym_SLASH, + STATE(6823), 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, - [304425] = 5, - ACTIONS(7863), 1, + [303717] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9519), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(7222), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9395), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [304443] = 5, - ACTIONS(7863), 1, + [303735] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9519), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9517), 1, + anon_sym_RBRACK, + STATE(6915), 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, - [304461] = 5, - ACTIONS(7899), 1, + [303753] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9521), 1, + ACTIONS(9519), 1, anon_sym_RBRACE, - STATE(7223), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463322,64 +462641,63 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304479] = 5, - ACTIONS(7899), 1, + [303771] = 5, + ACTIONS(7907), 1, sym_escape_sequence, ACTIONS(9521), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + anon_sym_RBRACK, + STATE(6756), 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, - [304497] = 5, - ACTIONS(7869), 1, + [303789] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9523), 1, - anon_sym_RBRACK, - STATE(7224), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9423), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [304515] = 5, - ACTIONS(7869), 1, + [303807] = 5, + ACTIONS(7885), 1, sym_escape_sequence, ACTIONS(9523), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + anon_sym_SQUOTE, + STATE(6658), 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, - [304533] = 5, - ACTIONS(7883), 1, - sym_escape_sequence, - ACTIONS(9525), 1, - anon_sym_GT, - STATE(7225), 1, - aux_sym_quoted_angle_repeat1, + [303825] = 4, + ACTIONS(9527), 1, + sym_quoted_content_slash, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304551] = 5, - ACTIONS(7883), 1, + ACTIONS(9525), 2, + anon_sym_SLASH, + sym_escape_sequence, + [303841] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9525), 1, + ACTIONS(9529), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463387,12 +462705,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304569] = 5, - ACTIONS(7893), 1, + [303859] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9527), 1, + ACTIONS(9531), 1, anon_sym_PIPE, - STATE(7226), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463400,142 +462718,139 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304587] = 5, - ACTIONS(7893), 1, + [303877] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9527), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9533), 1, + anon_sym_SLASH, + STATE(6823), 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, - [304605] = 5, - ACTIONS(7851), 1, + [303895] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9529), 1, - anon_sym_SLASH, - STATE(7227), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9523), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [304623] = 5, - ACTIONS(7851), 1, + [303913] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9529), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9535), 1, + anon_sym_GT, + STATE(7047), 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, - [304641] = 5, - ACTIONS(7863), 1, + [303931] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9531), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9537), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [304659] = 5, - ACTIONS(7899), 1, + [303949] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9533), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9539), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [304677] = 5, - ACTIONS(7869), 1, - sym_escape_sequence, - ACTIONS(9535), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, - ACTIONS(3), 2, + [303967] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2603), 1, + anon_sym_GT_GT, + ACTIONS(9541), 1, + anon_sym_COMMA, + STATE(7184), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, aux_sym_terminator_token1, - sym_comment, - [304695] = 5, - ACTIONS(7883), 1, + [303985] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9537), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9544), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6659), 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, - [304713] = 5, - ACTIONS(7893), 1, - sym_escape_sequence, - ACTIONS(9539), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + [304003] = 3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304731] = 5, - ACTIONS(7851), 1, + ACTIONS(6656), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9541), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + [304017] = 5, + ACTIONS(7873), 1, + sym_escape_sequence, + ACTIONS(9546), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [304749] = 5, - ACTIONS(7917), 1, - sym_escape_sequence, - ACTIONS(9543), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + [304035] = 4, + ACTIONS(9550), 1, + sym_quoted_content_bar, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304767] = 5, - ACTIONS(7923), 1, + ACTIONS(9548), 2, + anon_sym_PIPE, + sym_escape_sequence, + [304051] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9545), 1, + ACTIONS(9552), 1, anon_sym_DQUOTE, - STATE(7286), 1, + STATE(6970), 1, aux_sym_quoted_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463543,12 +462858,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304785] = 5, - ACTIONS(7949), 1, + [304069] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9547), 1, + ACTIONS(9554), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463556,12 +462871,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304803] = 5, - ACTIONS(7857), 1, + [304087] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9549), 1, + ACTIONS(9556), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463569,12 +462884,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304821] = 5, - ACTIONS(7863), 1, + [304105] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9551), 1, + ACTIONS(9558), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463582,12 +462897,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304839] = 5, - ACTIONS(7899), 1, + [304123] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9553), 1, + ACTIONS(9560), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463595,12 +462910,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304857] = 5, - ACTIONS(7869), 1, + [304141] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9555), 1, + ACTIONS(9562), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463608,12 +462923,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304875] = 5, - ACTIONS(7883), 1, + [304159] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9557), 1, + ACTIONS(9564), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463621,12 +462936,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304893] = 5, - ACTIONS(7893), 1, + [304177] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9559), 1, + ACTIONS(9566), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463634,12 +462949,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304911] = 5, - ACTIONS(7851), 1, + [304195] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9561), 1, + ACTIONS(9568), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463647,37 +462962,49 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304929] = 5, - ACTIONS(7893), 1, - sym_escape_sequence, - ACTIONS(9563), 1, - anon_sym_PIPE, - STATE(7247), 1, - aux_sym_quoted_bar_repeat1, - ACTIONS(3), 2, + [304213] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, aux_sym_terminator_token1, + ACTIONS(1275), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [304227] = 5, + ACTIONS(5), 1, sym_comment, - [304947] = 4, - ACTIONS(9567), 1, - sym_quoted_content_curly, + ACTIONS(9570), 1, + anon_sym_RPAREN, + ACTIONS(9572), 1, + anon_sym_COMMA, + STATE(6326), 1, + aux_sym_items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [304245] = 5, + ACTIONS(7885), 1, + sym_escape_sequence, + ACTIONS(9574), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - ACTIONS(9565), 2, - anon_sym_RBRACE, - sym_escape_sequence, - [304963] = 5, - ACTIONS(7857), 1, + [304263] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9569), 1, + ACTIONS(9576), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, + STATE(7232), 1, aux_sym_quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463685,12 +463012,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304981] = 5, - ACTIONS(7863), 1, + [304281] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9571), 1, + ACTIONS(9578), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, + STATE(7234), 1, aux_sym_quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463698,12 +463025,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [304999] = 5, - ACTIONS(7899), 1, + [304299] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9573), 1, + ACTIONS(9580), 1, anon_sym_RBRACE, - STATE(7037), 1, + STATE(7259), 1, aux_sym_quoted_curly_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463711,25 +463038,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [305017] = 5, - ACTIONS(7899), 1, + [304317] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9575), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9544), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [305035] = 5, - ACTIONS(7869), 1, + [304335] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9577), 1, + ACTIONS(9582), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463737,12 +463064,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [305053] = 5, - ACTIONS(7883), 1, + [304353] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9579), 1, + ACTIONS(9584), 1, anon_sym_GT, - STATE(6668), 1, + STATE(6683), 1, aux_sym_quoted_angle_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463750,25 +463077,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [305071] = 5, - ACTIONS(7893), 1, + [304371] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9563), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9517), 1, + anon_sym_RBRACK, + STATE(6756), 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, - [305089] = 5, - ACTIONS(7893), 1, + [304389] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9581), 1, + ACTIONS(9586), 1, anon_sym_PIPE, - STATE(6874), 1, + STATE(6735), 1, aux_sym_quoted_bar_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463776,12 +463103,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [305107] = 5, - ACTIONS(7851), 1, + [304407] = 5, + ACTIONS(7913), 1, + sym_escape_sequence, + ACTIONS(9535), 1, + anon_sym_GT, + STATE(6683), 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, + [304425] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9583), 1, + ACTIONS(9588), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -463789,219 +463129,215 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [305125] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6982), 1, - anon_sym_GT_GT, - ACTIONS(9585), 1, - anon_sym_COMMA, - STATE(7246), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + [304443] = 5, + ACTIONS(7913), 1, + sym_escape_sequence, + ACTIONS(9590), 1, + anon_sym_GT, + STATE(7098), 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, - [305143] = 5, - ACTIONS(7923), 1, + sym_comment, + [304461] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9587), 1, - anon_sym_DQUOTE, - STATE(7259), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9590), 1, + anon_sym_GT, + STATE(6683), 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, - [305161] = 5, - ACTIONS(7893), 1, + [304479] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9492), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9592), 1, + anon_sym_SQUOTE, + STATE(7246), 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, - [305179] = 4, - ACTIONS(9591), 1, - sym_quoted_content_double, + [304497] = 3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - ACTIONS(9589), 2, + ACTIONS(7813), 3, anon_sym_DQUOTE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - [305195] = 5, - ACTIONS(7923), 1, + [304511] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9587), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9594), 1, + anon_sym_RPAREN, + STATE(7004), 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, - [305213] = 5, - ACTIONS(7949), 1, + [304529] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9051), 1, - anon_sym_SQUOTE, - STATE(6702), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9596), 1, + anon_sym_PIPE, + STATE(7099), 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, - [305231] = 5, - ACTIONS(7869), 1, + [304547] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9359), 1, - anon_sym_RBRACK, - STATE(7280), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9594), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [305249] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5172), 1, - anon_sym_GT_GT, - ACTIONS(9593), 1, - anon_sym_COMMA, - STATE(7188), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + [304565] = 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - [305267] = 5, - ACTIONS(7893), 1, + sym_comment, + ACTIONS(7825), 3, + anon_sym_RBRACE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9595), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + [304579] = 4, + ACTIONS(9600), 1, + sym_quoted_content_parenthesis, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [305285] = 5, - ACTIONS(7851), 1, + ACTIONS(9598), 2, + anon_sym_RPAREN, sym_escape_sequence, - ACTIONS(9597), 1, - anon_sym_SLASH, - STATE(6701), 1, - aux_sym_quoted_slash_repeat1, + [304595] = 5, + ACTIONS(7879), 1, + sym_escape_sequence, + ACTIONS(9602), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [305303] = 5, - ACTIONS(7851), 1, + [304613] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9597), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9604), 1, + anon_sym_RBRACE, + STATE(7256), 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, - [305321] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2738), 1, + [304631] = 5, + ACTIONS(9606), 1, anon_sym_RPAREN, - ACTIONS(9303), 1, - anon_sym_COMMA, - STATE(5898), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [305339] = 5, - ACTIONS(7857), 1, + ACTIONS(9608), 1, sym_escape_sequence, - ACTIONS(8732), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6821), 1, - aux_sym_quoted_heredoc_single_repeat1, + STATE(7222), 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, - [305357] = 5, - ACTIONS(7917), 1, + [304649] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(8728), 1, - anon_sym_RPAREN, - STATE(6703), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9611), 1, + anon_sym_DQUOTE, + STATE(7005), 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, - [305375] = 5, - ACTIONS(7869), 1, + [304667] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9599), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9611), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [305393] = 5, - ACTIONS(7923), 1, + [304685] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9601), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9613), 1, + anon_sym_SQUOTE, + STATE(7017), 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, - [305411] = 5, - ACTIONS(7949), 1, + [304703] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7190), 1, + anon_sym_GT_GT, + ACTIONS(9615), 1, + anon_sym_COMMA, + STATE(7029), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [304721] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9603), 1, + ACTIONS(9613), 1, anon_sym_SQUOTE, - STATE(6710), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -464009,102 +463345,116 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [305429] = 5, - ACTIONS(7917), 1, + [304739] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9605), 1, - anon_sym_RPAREN, - STATE(6733), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9314), 1, + anon_sym_SLASH, + STATE(6823), 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, - [305447] = 4, - ACTIONS(9609), 1, - sym_quoted_content_heredoc_single, + [304757] = 5, + ACTIONS(7913), 1, + sym_escape_sequence, + ACTIONS(9617), 1, + anon_sym_GT, + STATE(6888), 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, - ACTIONS(9607), 2, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + [304775] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - [305463] = 5, - ACTIONS(7917), 1, + ACTIONS(9596), 1, + anon_sym_PIPE, + STATE(6735), 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, + [304793] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9605), 1, - anon_sym_RPAREN, - STATE(6947), 1, - aux_sym_quoted_parenthesis_repeat1, + ACTIONS(9604), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [305481] = 5, - ACTIONS(7923), 1, + [304811] = 5, + ACTIONS(9619), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9621), 1, sym_escape_sequence, - ACTIONS(9611), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + STATE(7232), 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, - [305499] = 5, - ACTIONS(7923), 1, + [304829] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9613), 1, - anon_sym_DQUOTE, - STATE(7254), 1, - aux_sym_quoted_double_repeat1, + ACTIONS(9624), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [305517] = 5, - ACTIONS(7923), 1, + [304847] = 5, + ACTIONS(9626), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9628), 1, sym_escape_sequence, - ACTIONS(9613), 1, - anon_sym_DQUOTE, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + STATE(7234), 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, - [305535] = 5, - ACTIONS(7949), 1, + [304865] = 5, + ACTIONS(7879), 1, sym_escape_sequence, - ACTIONS(9615), 1, - anon_sym_SQUOTE, - STATE(7255), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9631), 1, + anon_sym_DQUOTE, + STATE(6970), 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, - [305553] = 5, - ACTIONS(7851), 1, + [304883] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9206), 1, + ACTIONS(9633), 1, anon_sym_SLASH, - STATE(7090), 1, + STATE(6823), 1, aux_sym_quoted_slash_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -464112,220 +463462,220 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [305571] = 5, - ACTIONS(7949), 1, + [304901] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9615), 1, - anon_sym_SQUOTE, - STATE(6710), 1, - aux_sym_quoted_single_repeat1, + ACTIONS(9635), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7019), 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, - [305589] = 5, - ACTIONS(7857), 1, + [304919] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9617), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6690), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9425), 1, + anon_sym_PIPE, + STATE(6735), 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, - [305607] = 5, - ACTIONS(7857), 1, + [304937] = 5, + ACTIONS(7913), 1, sym_escape_sequence, ACTIONS(9617), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + anon_sym_GT, + STATE(6683), 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, - [305625] = 5, - ACTIONS(7863), 1, + [304955] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9619), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6923), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9633), 1, + anon_sym_SLASH, + STATE(6781), 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, - [305643] = 5, - ACTIONS(7863), 1, + [304973] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9619), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6935), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9637), 1, + anon_sym_PIPE, + STATE(6907), 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, - [305661] = 5, - ACTIONS(7899), 1, + [304991] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9621), 1, - anon_sym_RBRACE, - STATE(6938), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(8742), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6660), 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, - [305679] = 5, - ACTIONS(7899), 1, + [305009] = 5, + ACTIONS(7919), 1, sym_escape_sequence, - ACTIONS(9621), 1, - anon_sym_RBRACE, - STATE(7037), 1, - aux_sym_quoted_curly_repeat1, + ACTIONS(9637), 1, + anon_sym_PIPE, + STATE(6735), 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, - [305697] = 5, - ACTIONS(7869), 1, + [305027] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9623), 1, - anon_sym_RBRACK, - STATE(6939), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9639), 1, + anon_sym_SLASH, + STATE(6908), 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, - [305715] = 5, - ACTIONS(7869), 1, + [305045] = 5, + ACTIONS(7925), 1, sym_escape_sequence, - ACTIONS(9623), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_quoted_square_repeat1, + ACTIONS(9639), 1, + anon_sym_SLASH, + STATE(6823), 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, - [305733] = 5, - ACTIONS(7883), 1, + [305063] = 5, + ACTIONS(9641), 1, + anon_sym_SQUOTE, + ACTIONS(9643), 1, sym_escape_sequence, - ACTIONS(9625), 1, - anon_sym_GT, - STATE(6940), 1, - aux_sym_quoted_angle_repeat1, + STATE(7246), 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, - [305751] = 5, - ACTIONS(7883), 1, + [305081] = 5, + ACTIONS(7891), 1, sym_escape_sequence, - ACTIONS(9625), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9635), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(7232), 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, - [305769] = 5, - ACTIONS(7893), 1, + [305099] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9627), 1, - anon_sym_PIPE, - STATE(6941), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9646), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7020), 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, - [305787] = 5, - ACTIONS(7893), 1, + [305117] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9627), 1, - anon_sym_PIPE, - STATE(6874), 1, - aux_sym_quoted_bar_repeat1, + ACTIONS(9648), 1, + anon_sym_SQUOTE, + STATE(6730), 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, - [305805] = 5, - ACTIONS(7851), 1, + [305135] = 5, + ACTIONS(7897), 1, sym_escape_sequence, - ACTIONS(9629), 1, - anon_sym_SLASH, - STATE(6962), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9646), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(7234), 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, - [305823] = 5, - ACTIONS(7851), 1, + [305153] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(9629), 1, - anon_sym_SLASH, - STATE(7090), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9650), 1, + anon_sym_RBRACE, + STATE(7065), 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, - [305841] = 5, - ACTIONS(7851), 1, + [305171] = 5, + ACTIONS(7867), 1, sym_escape_sequence, - ACTIONS(8914), 1, - anon_sym_SLASH, - STATE(6964), 1, - aux_sym_quoted_slash_repeat1, + ACTIONS(9650), 1, + anon_sym_RBRACE, + STATE(7259), 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, - [305859] = 5, - ACTIONS(7869), 1, + [305189] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - ACTIONS(9631), 1, + ACTIONS(9652), 1, anon_sym_RBRACK, - STATE(7281), 1, + STATE(7066), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -464333,12 +463683,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [305877] = 5, - ACTIONS(9633), 1, - anon_sym_RBRACK, - ACTIONS(9635), 1, + [305207] = 5, + ACTIONS(7907), 1, sym_escape_sequence, - STATE(7281), 1, + ACTIONS(9652), 1, + anon_sym_RBRACK, + STATE(6756), 1, aux_sym_quoted_square_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -464346,76 +463696,77 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [305895] = 5, - ACTIONS(7857), 1, + [305225] = 5, + ACTIONS(7913), 1, sym_escape_sequence, - ACTIONS(9196), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6773), 1, - aux_sym_quoted_heredoc_single_repeat1, + ACTIONS(9257), 1, + anon_sym_GT, + STATE(7067), 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, - [305913] = 4, - ACTIONS(9640), 1, - sym_quoted_content_slash, + [305243] = 5, + ACTIONS(7867), 1, + sym_escape_sequence, + ACTIONS(9654), 1, + anon_sym_RBRACE, + STATE(7259), 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, - ACTIONS(9638), 2, - anon_sym_SLASH, - sym_escape_sequence, - [305929] = 5, - ACTIONS(7863), 1, + [305261] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9190), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6775), 1, - aux_sym_quoted_heredoc_double_repeat1, + ACTIONS(9656), 1, + anon_sym_RPAREN, + STATE(6621), 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, - [305947] = 5, - ACTIONS(7883), 1, + [305279] = 5, + ACTIONS(7873), 1, sym_escape_sequence, - ACTIONS(9642), 1, - anon_sym_GT, - STATE(6668), 1, - aux_sym_quoted_angle_repeat1, + ACTIONS(9656), 1, + anon_sym_RPAREN, + STATE(7222), 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, - [305965] = 5, - ACTIONS(9644), 1, - anon_sym_DQUOTE, - ACTIONS(9646), 1, + [305297] = 5, + ACTIONS(9658), 1, + anon_sym_RBRACE, + ACTIONS(9660), 1, sym_escape_sequence, - STATE(7286), 1, - aux_sym_quoted_double_repeat1, + STATE(7259), 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, - [305983] = 5, - ACTIONS(7949), 1, + [305315] = 5, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(9230), 1, + ACTIONS(9648), 1, anon_sym_SQUOTE, - STATE(6819), 1, + STATE(7246), 1, aux_sym_quoted_single_repeat1, ACTIONS(3), 2, sym_newline_before_binary_operator, @@ -464423,384 +463774,430 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - [306001] = 4, + [305333] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9649), 1, - aux_sym_sigil_token1, - ACTIONS(9651), 1, - aux_sym_sigil_token2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306016] = 3, + ACTIONS(9663), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [305347] = 3, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + ACTIONS(6620), 3, + anon_sym_RBRACK, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [305361] = 5, + ACTIONS(7879), 1, + sym_escape_sequence, + ACTIONS(8748), 1, + anon_sym_DQUOTE, + STATE(6672), 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, + [305379] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(373), 1, + anon_sym_do, + STATE(3236), 1, + sym_do_block, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [305394] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9312), 2, - anon_sym_when, - anon_sym_DASH_GT, + ACTIONS(9665), 1, + aux_sym_sigil_token1, + ACTIONS(9667), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306029] = 3, + [305409] = 3, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + ACTIONS(8834), 2, + anon_sym_GT, + sym_escape_sequence, + [305422] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9653), 2, + ACTIONS(9669), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306042] = 3, + [305435] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2137), 2, + ACTIONS(2829), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306055] = 4, + [305448] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2990), 1, + ACTIONS(9671), 1, anon_sym_LPAREN, - STATE(2555), 1, + STATE(2932), 1, sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306070] = 4, + [305463] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9655), 1, - aux_sym_sigil_token1, - ACTIONS(9657), 1, - aux_sym_sigil_token2, + ACTIONS(9673), 1, + anon_sym_when, + ACTIONS(9675), 1, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [305478] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(606), 1, + anon_sym_do, + STATE(4590), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306085] = 3, + [305493] = 3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - ACTIONS(9173), 2, - anon_sym_RPAREN, + ACTIONS(9021), 2, + anon_sym_SLASH, sym_escape_sequence, - [306098] = 4, + [305506] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9659), 1, + ACTIONS(9677), 1, anon_sym_LPAREN, - STATE(3613), 1, + STATE(4106), 1, sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306113] = 4, + [305521] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(205), 1, + ACTIONS(373), 1, anon_sym_do, - STATE(2134), 1, + STATE(2497), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306128] = 4, + [305536] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(502), 1, + ACTIONS(373), 1, anon_sym_do, - STATE(4361), 1, + STATE(3168), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306143] = 3, - ACTIONS(3), 2, + [305551] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(664), 1, + anon_sym_do, + STATE(4435), 1, + sym_do_block, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, aux_sym_terminator_token1, - sym_comment, - ACTIONS(9294), 2, - anon_sym_RBRACE, - sym_escape_sequence, - [306156] = 4, + [305566] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9661), 1, - anon_sym_when, - ACTIONS(9663), 1, - anon_sym_DASH_GT, + ACTIONS(3154), 1, + anon_sym_LPAREN, + STATE(3390), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306171] = 4, + [305581] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9665), 1, - aux_sym_sigil_token1, - ACTIONS(9667), 1, - aux_sym_sigil_token2, + ACTIONS(3080), 1, + anon_sym_LPAREN, + STATE(2819), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306186] = 3, + [305596] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9669), 2, - anon_sym_when, - anon_sym_DASH_GT, + ACTIONS(9679), 1, + anon_sym_LPAREN, + STATE(3771), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306199] = 4, + [305611] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(544), 1, + ACTIONS(664), 1, anon_sym_do, - STATE(4675), 1, + STATE(4414), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306214] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9671), 1, - anon_sym_LPAREN, - STATE(4309), 1, - sym_call_arguments_with_parentheses, - ACTIONS(3), 3, + [305626] = 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - [306229] = 4, + sym_comment, + ACTIONS(9606), 2, + anon_sym_RPAREN, + sym_escape_sequence, + [305639] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9673), 1, + ACTIONS(9681), 1, anon_sym_LPAREN, - STATE(2947), 1, + STATE(1811), 1, sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306244] = 4, + [305654] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2149), 1, - anon_sym_LPAREN, - STATE(1492), 1, - sym_call_arguments_with_parentheses, + ACTIONS(9144), 2, + anon_sym_when, + anon_sym_DASH_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306259] = 4, + [305667] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9675), 1, + ACTIONS(9683), 1, anon_sym_LPAREN, - STATE(3770), 1, + STATE(3846), 1, sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306274] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(502), 1, - anon_sym_do, - STATE(4071), 1, - sym_do_block, - ACTIONS(3), 3, + [305682] = 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - [306289] = 3, + sym_comment, + ACTIONS(9619), 2, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + sym_escape_sequence, + [305695] = 3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - ACTIONS(9365), 2, - anon_sym_SLASH, + ACTIONS(8903), 2, + anon_sym_PIPE, sym_escape_sequence, - [306302] = 4, + [305708] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(502), 1, + ACTIONS(456), 1, anon_sym_do, - STATE(4324), 1, + STATE(4287), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306317] = 4, + [305723] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(257), 1, + ACTIONS(373), 1, anon_sym_do, - STATE(1954), 1, + STATE(3177), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306332] = 4, + [305738] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9663), 1, - anon_sym_DASH_GT, - ACTIONS(9677), 1, - anon_sym_when, + ACTIONS(373), 1, + anon_sym_do, + STATE(2498), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306347] = 4, + [305753] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9679), 1, - aux_sym_sigil_token1, - ACTIONS(9681), 1, - aux_sym_sigil_token2, + ACTIONS(664), 1, + anon_sym_do, + STATE(3524), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306362] = 4, + [305768] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(596), 1, + ACTIONS(664), 1, anon_sym_do, - STATE(4173), 1, + STATE(3522), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306377] = 4, + [305783] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2181), 1, + ACTIONS(2207), 1, anon_sym_LPAREN, - STATE(1643), 1, + STATE(1604), 1, sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306392] = 4, + [305798] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(650), 1, + ACTIONS(626), 1, anon_sym_do, - STATE(4616), 1, + STATE(4071), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306407] = 4, + [305813] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9683), 1, - aux_sym_sigil_token1, ACTIONS(9685), 1, + aux_sym_sigil_token1, + ACTIONS(9687), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306422] = 4, + [305828] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9687), 1, - aux_sym_sigil_token1, - ACTIONS(9689), 1, - aux_sym_sigil_token2, + ACTIONS(456), 1, + anon_sym_do, + STATE(3660), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306437] = 4, + [305843] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(205), 1, + ACTIONS(456), 1, anon_sym_do, - STATE(1898), 1, + STATE(4403), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306452] = 4, + [305858] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(205), 1, + ACTIONS(664), 1, anon_sym_do, - STATE(2115), 1, + STATE(4311), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306467] = 4, + [305873] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9691), 1, - aux_sym_sigil_token1, - ACTIONS(9693), 1, - aux_sym_sigil_token2, + ACTIONS(9675), 1, + anon_sym_DASH_GT, + ACTIONS(9689), 1, + anon_sym_when, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306482] = 4, + [305888] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(205), 1, - anon_sym_do, - STATE(2123), 1, - sym_do_block, + ACTIONS(9691), 1, + aux_sym_sigil_token1, + ACTIONS(9693), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306497] = 3, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - ACTIONS(9059), 2, - anon_sym_PIPE, - sym_escape_sequence, - [306510] = 4, + [305903] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(9695), 1, @@ -464811,7 +464208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306525] = 4, + [305918] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(9699), 1, @@ -464822,170 +464219,171 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306540] = 4, + [305933] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9703), 1, - anon_sym_LPAREN, - STATE(1951), 1, - sym_call_arguments_with_parentheses, + ACTIONS(626), 1, + anon_sym_do, + STATE(4499), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306555] = 4, + [305948] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9705), 1, + ACTIONS(9703), 1, aux_sym_sigil_token1, + ACTIONS(9705), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [305963] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(9707), 1, + aux_sym_sigil_token1, + ACTIONS(9709), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306570] = 4, + [305978] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(369), 1, - anon_sym_do, - STATE(3500), 1, - sym_do_block, + ACTIONS(9711), 1, + anon_sym_LPAREN, + STATE(1877), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306585] = 4, + [305993] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3097), 1, + ACTIONS(9713), 1, anon_sym_LPAREN, - STATE(2833), 1, + STATE(4215), 1, sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306600] = 4, + [306008] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9709), 1, + ACTIONS(9715), 1, aux_sym_sigil_token1, - ACTIONS(9711), 1, + ACTIONS(9717), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306615] = 4, + [306023] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(502), 1, + ACTIONS(456), 1, anon_sym_do, - STATE(4327), 1, + STATE(4068), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306630] = 3, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - ACTIONS(8754), 2, - anon_sym_GT, - sym_escape_sequence, - [306643] = 4, + [306038] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9713), 1, + ACTIONS(9719), 1, aux_sym_sigil_token1, - ACTIONS(9715), 1, + ACTIONS(9721), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306658] = 4, + [306053] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(369), 1, - anon_sym_do, - STATE(2507), 1, - sym_do_block, + ACTIONS(9723), 2, + anon_sym_when, + anon_sym_DASH_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306673] = 4, + [306066] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(369), 1, + ACTIONS(295), 1, anon_sym_do, - STATE(3381), 1, + STATE(1683), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306688] = 4, + [306081] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9717), 1, - aux_sym_sigil_token1, - ACTIONS(9719), 1, - aux_sym_sigil_token2, + ACTIONS(2165), 1, + anon_sym_LPAREN, + STATE(1486), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306703] = 4, + [306096] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(205), 1, + ACTIONS(295), 1, anon_sym_do, - STATE(2033), 1, + STATE(2006), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306718] = 4, + [306111] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9721), 1, + ACTIONS(9725), 1, aux_sym_sigil_token1, - ACTIONS(9723), 1, + ACTIONS(9727), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306733] = 4, + [306126] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9725), 1, - aux_sym_sigil_token1, - ACTIONS(9727), 1, - aux_sym_sigil_token2, + ACTIONS(2934), 1, + anon_sym_LPAREN, + STATE(2278), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306748] = 3, - ACTIONS(3), 2, + [306141] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(295), 1, + anon_sym_do, + STATE(2007), 1, + sym_do_block, + ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, - ACTIONS(5), 2, aux_sym_terminator_token1, - sym_comment, - ACTIONS(8835), 2, - anon_sym_SQUOTE, - sym_escape_sequence, - [306761] = 4, + [306156] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(9729), 1, @@ -464996,7 +464394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306776] = 4, + [306171] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(9733), 1, @@ -465007,7 +464405,17 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306791] = 4, + [306186] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2153), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [306199] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(9737), 1, @@ -465018,7 +464426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306806] = 4, + [306214] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(9741), 1, @@ -465029,7 +464437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306821] = 4, + [306229] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(9745), 1, @@ -465040,546 +464448,470 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306836] = 4, + [306244] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(596), 1, - anon_sym_do, - STATE(3783), 1, - sym_do_block, + ACTIONS(9749), 1, + aux_sym_sigil_token1, + ACTIONS(9751), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306851] = 4, + [306259] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(650), 1, - anon_sym_do, - STATE(4392), 1, - sym_do_block, + ACTIONS(9753), 1, + aux_sym_sigil_token1, + ACTIONS(9755), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306866] = 4, + [306274] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(650), 1, - anon_sym_do, - STATE(4684), 1, - sym_do_block, + ACTIONS(9757), 1, + aux_sym_sigil_token1, + ACTIONS(9759), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306881] = 4, + [306289] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(596), 1, - anon_sym_do, - STATE(4219), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(9761), 1, + aux_sym_terminator_token1, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, - aux_sym_terminator_token1, - [306896] = 4, + ACTIONS(6708), 2, + anon_sym_SEMI, + anon_sym_end, + [306304] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(502), 1, + ACTIONS(606), 1, anon_sym_do, - STATE(4079), 1, + STATE(4239), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306911] = 4, + [306319] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9749), 1, - aux_sym_terminator_token1, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(7837), 2, - anon_sym_SEMI, - anon_sym_end, - [306926] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(596), 1, + ACTIONS(626), 1, anon_sym_do, - STATE(4220), 1, + STATE(4707), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306941] = 4, + [306334] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_do, - STATE(3784), 1, + STATE(4482), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306956] = 4, + [306349] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(596), 1, + ACTIONS(606), 1, anon_sym_do, - STATE(4222), 1, + STATE(4493), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306971] = 4, + [306364] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(650), 1, + ACTIONS(295), 1, anon_sym_do, - STATE(4686), 1, + STATE(1684), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [306986] = 4, + [306379] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(650), 1, + ACTIONS(606), 1, anon_sym_do, - STATE(4396), 1, + STATE(4245), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307001] = 4, + [306394] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(650), 1, + ACTIONS(271), 1, anon_sym_do, - STATE(4690), 1, + STATE(2198), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307016] = 4, + [306409] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9751), 1, - anon_sym_LPAREN, - STATE(1675), 1, - sym_call_arguments_with_parentheses, + ACTIONS(295), 1, + anon_sym_do, + STATE(2011), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307031] = 3, + [306424] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9753), 2, - anon_sym_when, - anon_sym_DASH_GT, + ACTIONS(606), 1, + anon_sym_do, + STATE(4498), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307044] = 3, + [306439] = 3, ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, ACTIONS(5), 2, aux_sym_terminator_token1, sym_comment, - ACTIONS(8922), 2, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9641), 2, + anon_sym_SQUOTE, sym_escape_sequence, - [307057] = 4, + [306452] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(257), 1, + ACTIONS(295), 1, anon_sym_do, - STATE(1835), 1, + STATE(1889), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307072] = 4, + [306467] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(257), 1, + ACTIONS(626), 1, anon_sym_do, - STATE(2022), 1, + STATE(4436), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307087] = 4, + [306482] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(502), 1, + ACTIONS(626), 1, anon_sym_do, - STATE(4335), 1, + STATE(4492), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307102] = 4, + [306497] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(3150), 1, - anon_sym_LPAREN, - STATE(3034), 1, - sym_call_arguments_with_parentheses, + ACTIONS(9763), 2, + anon_sym_when, + anon_sym_DASH_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307117] = 4, + [306510] = 3, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, + sym_comment, + ACTIONS(9626), 2, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_escape_sequence, + [306523] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(544), 1, + ACTIONS(626), 1, anon_sym_do, - STATE(4176), 1, + STATE(4497), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307132] = 4, + [306538] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(544), 1, + ACTIONS(456), 1, anon_sym_do, - STATE(4540), 1, + STATE(4415), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307147] = 4, - ACTIONS(5), 1, + [306553] = 3, + ACTIONS(3), 2, + sym_newline_before_binary_operator, + sym_newline_before_comment, + ACTIONS(5), 2, + aux_sym_terminator_token1, sym_comment, - ACTIONS(205), 1, - anon_sym_do, - STATE(2239), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(9236), 2, + anon_sym_DQUOTE, + sym_escape_sequence, + [306566] = 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - [307162] = 3, + sym_comment, + ACTIONS(8936), 2, + anon_sym_RBRACK, + sym_escape_sequence, + [306579] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2925), 2, - anon_sym_when, - anon_sym_DASH_GT, + ACTIONS(456), 1, + anon_sym_do, + STATE(3684), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307175] = 4, + [306594] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(544), 1, + ACTIONS(373), 1, anon_sym_do, - STATE(4541), 1, + STATE(3295), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307190] = 4, + [306609] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(544), 1, + ACTIONS(664), 1, anon_sym_do, - STATE(4179), 1, + STATE(4373), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307205] = 4, + [306624] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(257), 1, - anon_sym_do, - STATE(2023), 1, - sym_do_block, + ACTIONS(3152), 1, + anon_sym_LPAREN, + STATE(2962), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307220] = 4, + [306639] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(257), 1, - anon_sym_do, - STATE(1837), 1, - sym_do_block, + ACTIONS(3144), 1, + anon_sym_LPAREN, + STATE(2544), 1, + sym_call_arguments_with_parentheses, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307235] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(544), 1, - anon_sym_do, - STATE(4544), 1, - sym_do_block, - ACTIONS(3), 3, + [306654] = 3, + ACTIONS(3), 2, sym_newline_before_binary_operator, sym_newline_before_comment, + ACTIONS(5), 2, aux_sym_terminator_token1, - [307250] = 4, + sym_comment, + ACTIONS(9658), 2, + anon_sym_RBRACE, + sym_escape_sequence, + [306667] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(257), 1, + ACTIONS(271), 1, anon_sym_do, - STATE(2024), 1, + STATE(1994), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307265] = 4, + [306682] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3148), 1, - anon_sym_LPAREN, - STATE(3491), 1, - sym_call_arguments_with_parentheses, + ACTIONS(271), 1, + anon_sym_do, + STATE(2270), 1, + sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307280] = 4, + [306697] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(369), 1, + ACTIONS(271), 1, anon_sym_do, - STATE(3533), 1, + STATE(2271), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307295] = 4, + [306712] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9755), 1, - anon_sym_LPAREN, - STATE(4187), 1, - sym_call_arguments_with_parentheses, + ACTIONS(9765), 1, + aux_sym_sigil_token1, + ACTIONS(9767), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307310] = 3, + [306727] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9757), 2, + ACTIONS(9769), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307323] = 4, + [306740] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(369), 1, + ACTIONS(271), 1, anon_sym_do, - STATE(2508), 1, + STATE(1995), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307338] = 3, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - ACTIONS(9148), 2, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_escape_sequence, - [307351] = 3, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - ACTIONS(9633), 2, - anon_sym_RBRACK, - sym_escape_sequence, - [307364] = 3, - ACTIONS(3), 2, - sym_newline_before_binary_operator, - sym_newline_before_comment, - ACTIONS(5), 2, - aux_sym_terminator_token1, - sym_comment, - ACTIONS(9644), 2, - anon_sym_DQUOTE, - sym_escape_sequence, - [307377] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2874), 1, - anon_sym_LPAREN, - STATE(2035), 1, - sym_call_arguments_with_parentheses, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [307392] = 4, + [306755] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(369), 1, + ACTIONS(271), 1, anon_sym_do, - STATE(3386), 1, + STATE(2272), 1, sym_do_block, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307407] = 3, + [306770] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9759), 1, - anon_sym_LBRACE, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [307419] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9761), 1, - anon_sym_GT_GT, + ACTIONS(9771), 1, + aux_sym_sigil_token1, + ACTIONS(9773), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307431] = 3, + [306785] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9763), 1, + ACTIONS(9775), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307443] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9765), 1, - sym_integer, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [307455] = 3, + [306797] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9767), 1, - sym_integer, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [307467] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9769), 1, - anon_sym_RBRACE, + ACTIONS(9777), 1, + anon_sym_LBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307479] = 3, + [306809] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9771), 1, + ACTIONS(9779), 1, anon_sym_RBRACK, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307491] = 3, + [306821] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9773), 1, + ACTIONS(9781), 1, sym_semgrep_metavariable, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307503] = 3, + [306833] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9775), 1, - anon_sym_RPAREN, + ACTIONS(9783), 1, + anon_sym_RBRACK, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307515] = 3, + [306845] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9777), 1, - sym_integer, + ACTIONS(1865), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307527] = 3, + [306857] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9779), 1, + ACTIONS(1843), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307539] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9781), 1, - anon_sym_LBRACE, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [307551] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9783), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [307563] = 3, + [306869] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9785), 1, @@ -465588,52 +464920,43 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307575] = 3, + [306881] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9787), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [307587] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4031), 1, - anon_sym_RPAREN, + anon_sym_GT_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307599] = 3, + [306893] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9789), 1, - anon_sym_SLASH, + anon_sym_GT_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307611] = 3, + [306905] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9791), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307623] = 3, + [306917] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9793), 1, - anon_sym_DASH_GT, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307635] = 3, + [306929] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9795), 1, @@ -465642,169 +464965,178 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307647] = 3, + [306941] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9797), 1, - anon_sym_RPAREN, + ACTIONS(1845), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307659] = 3, + [306953] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9799), 1, - anon_sym_RPAREN, + ACTIONS(9797), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307671] = 3, + [306965] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9801), 1, - anon_sym_SLASH, + ACTIONS(9799), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307683] = 3, + [306977] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9803), 1, - anon_sym_LBRACE, + ACTIONS(9801), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307695] = 3, + [306989] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(1841), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(9803), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307707] = 3, + [307001] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9805), 1, - anon_sym_GT_GT, + anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307719] = 3, + [307013] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9807), 1, - anon_sym_RPAREN, + anon_sym_LBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307731] = 3, + [307025] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9809), 1, - anon_sym_GT_GT, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307743] = 3, + [307037] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9811), 1, - anon_sym_SLASH, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307755] = 3, + [307049] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9813), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [307061] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1853), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307767] = 3, + [307073] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9815), 1, - sym_integer, + anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307779] = 3, + [307085] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9817), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307791] = 3, + [307097] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9819), 1, - anon_sym_GT_GT, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307803] = 3, + [307109] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9821), 1, - sym_semgrep_metavariable, + anon_sym_GT_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307815] = 3, + [307121] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9823), 1, - anon_sym_SLASH, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307827] = 3, + [307133] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9825), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307839] = 3, + [307145] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9827), 1, - anon_sym_RPAREN, + anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307851] = 3, + [307157] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9829), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307863] = 3, + [307169] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9831), 1, @@ -465813,52 +465145,52 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307875] = 3, + [307181] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9833), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307887] = 3, + [307193] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9835), 1, - anon_sym_SLASH, + anon_sym_RBRACK, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307899] = 3, + [307205] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9837), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307911] = 3, + [307217] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9839), 1, - anon_sym_RPAREN, + anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307923] = 3, + [307229] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9841), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307935] = 3, + [307241] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9843), 1, @@ -465867,16 +465199,34 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307947] = 3, + [307253] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4015), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [307265] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9845), 1, - sym_integer, + sym_semgrep_metavariable, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307959] = 3, + [307277] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1857), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [307289] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9847), 1, @@ -465885,7 +465235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307971] = 3, + [307301] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9849), 1, @@ -465894,7 +465244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307983] = 3, + [307313] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9851), 1, @@ -465903,61 +465253,52 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [307995] = 3, + [307325] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9853), 1, - anon_sym_RPAREN, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [308007] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1849), 1, - aux_sym_quoted_keyword_token1, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308019] = 3, + [307337] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9855), 1, - anon_sym_RPAREN, + anon_sym_GT_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308031] = 3, + [307349] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9857), 1, - anon_sym_SLASH, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308043] = 3, + [307361] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9859), 1, - anon_sym_LBRACE, + anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308055] = 3, + [307373] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9861), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308067] = 3, + [307385] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9863), 1, @@ -465966,16 +465307,16 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308079] = 3, + [307397] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9865), 1, - anon_sym_RPAREN, + sym_semgrep_metavariable, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308091] = 3, + [307409] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9867), 1, @@ -465984,106 +465325,88 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308103] = 3, + [307421] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9869), 1, - anon_sym_SLASH, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308115] = 3, + [307433] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9871), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [308127] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1819), 1, - aux_sym_metavariable_keyword_token1, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [308139] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2187), 1, - aux_sym_quoted_keyword_token1, + anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308151] = 3, + [307445] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9873), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308163] = 3, + [307457] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9875), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308175] = 3, + [307469] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9877), 1, - anon_sym_SLASH, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308187] = 3, + [307481] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9879), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308199] = 3, + [307493] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9881), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308211] = 3, + [307505] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9883), 1, - sym_semgrep_metavariable, + anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308223] = 3, + [307517] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9885), 1, - sym_semgrep_metavariable, + anon_sym_LBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308235] = 3, + [307529] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9887), 1, @@ -466092,52 +465415,52 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308247] = 3, + [307541] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9889), 1, - anon_sym_SLASH, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308259] = 3, + [307553] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9891), 1, - anon_sym_LBRACE, + sym_semgrep_metavariable, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308271] = 3, + [307565] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9893), 1, - anon_sym_RBRACE, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308283] = 3, + [307577] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9895), 1, - anon_sym_RBRACE, + anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308295] = 3, + [307589] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9897), 1, - sym_semgrep_metavariable, + anon_sym_LBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308307] = 3, + [307601] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9899), 1, @@ -466146,16 +465469,16 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308319] = 3, + [307613] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9901), 1, - anon_sym_RBRACE, + anon_sym_GT_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308331] = 3, + [307625] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9903), 1, @@ -466164,7 +465487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308343] = 3, + [307637] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9905), 1, @@ -466173,25 +465496,25 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308355] = 3, + [307649] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9907), 1, - anon_sym_RBRACE, + anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308367] = 3, + [307661] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9909), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308379] = 3, + [307673] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9911), 1, @@ -466200,25 +465523,25 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308391] = 3, + [307685] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9913), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308403] = 3, + [307697] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9915), 1, - anon_sym_GT_GT, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308415] = 3, + [307709] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9917), 1, @@ -466227,88 +465550,79 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308427] = 3, + [307721] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9919), 1, - anon_sym_RBRACE, + anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308439] = 3, + [307733] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9921), 1, - sym_semgrep_metavariable, + anon_sym_LBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308451] = 3, + [307745] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9923), 1, - anon_sym_RBRACE, + anon_sym_GT_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308463] = 3, + [307757] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9925), 1, - sym_integer, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [308475] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1831), 1, anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308487] = 3, + [307769] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9927), 1, - anon_sym_RPAREN, + sym_semgrep_metavariable, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308499] = 3, + [307781] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9929), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308511] = 3, + [307793] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9931), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308523] = 3, + [307805] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9933), 1, - anon_sym_RPAREN, + anon_sym_GT_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308535] = 3, + [307817] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9935), 1, @@ -466317,160 +465631,169 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308547] = 3, + [307829] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9937), 1, - anon_sym_SLASH, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308559] = 3, + [307841] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9939), 1, - sym_integer, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308571] = 3, + [307853] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9941), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308583] = 3, + [307865] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9943), 1, - anon_sym_RBRACK, + sym_semgrep_metavariable, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308595] = 3, + [307877] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9945), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308607] = 3, + [307889] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9947), 1, - anon_sym_RPAREN, + anon_sym_DASH_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308619] = 3, + [307901] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9949), 1, - anon_sym_GT_GT, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308631] = 3, + [307913] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9951), 1, - anon_sym_RBRACK, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308643] = 3, + [307925] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9953), 1, - anon_sym_RPAREN, + anon_sym_GT_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308655] = 3, + [307937] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9955), 1, - anon_sym_GT_GT, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308667] = 3, + [307949] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9675), 1, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [307961] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9957), 1, - sym_semgrep_metavariable, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308679] = 3, + [307973] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9959), 1, - sym_semgrep_metavariable, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308691] = 3, + [307985] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9961), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308703] = 3, + [307997] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9963), 1, - anon_sym_RPAREN, + anon_sym_DASH_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308715] = 3, + [308009] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9965), 1, - anon_sym_RBRACE, + anon_sym_GT_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308727] = 3, + [308021] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9967), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308739] = 3, + [308033] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9969), 1, - anon_sym_RBRACK, + ts_builtin_sym_end, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308751] = 3, + [308045] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9971), 1, @@ -466479,97 +465802,106 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308763] = 3, + [308057] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1839), 1, + aux_sym_metavariable_keyword_token1, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [308069] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9973), 1, - sym_integer, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308775] = 3, + [308081] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9975), 1, - sym_semgrep_metavariable, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308787] = 3, + [308093] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(1837), 1, + ACTIONS(2205), 1, aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308799] = 3, + [308105] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9977), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308811] = 3, + [308117] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9979), 1, - anon_sym_GT_GT, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308823] = 3, + [308129] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9981), 1, - sym_integer, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308835] = 3, + [308141] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9983), 1, - anon_sym_RBRACK, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308847] = 3, + [308153] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9985), 1, - anon_sym_GT_GT, + sym_semgrep_metavariable, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308859] = 3, + [308165] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9987), 1, - anon_sym_RBRACE, + sym_semgrep_metavariable, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308871] = 3, + [308177] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9989), 1, - anon_sym_RBRACK, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308883] = 3, + [308189] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9991), 1, @@ -466578,142 +465910,124 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308895] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1845), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [308907] = 3, + [308201] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9993), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308919] = 3, + [308213] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9995), 1, - anon_sym_DASH_GT, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308931] = 3, + [308225] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(9997), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308943] = 3, + [308237] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9999), 1, - anon_sym_GT_GT, + ACTIONS(1849), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308955] = 3, + [308249] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10001), 1, - sym_semgrep_metavariable, + ACTIONS(9999), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308967] = 3, + [308261] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10003), 1, - anon_sym_RBRACK, + ACTIONS(10001), 1, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308979] = 3, + [308273] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9663), 1, - anon_sym_DASH_GT, + ACTIONS(10003), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [308991] = 3, + [308285] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10005), 1, - anon_sym_SLASH, + anon_sym_GT_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309003] = 3, + [308297] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10007), 1, - anon_sym_RBRACE, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309015] = 3, + [308309] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10009), 1, - sym_integer, + anon_sym_LBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309027] = 3, + [308321] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10011), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309039] = 3, + [308333] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10013), 1, - sym_semgrep_metavariable, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309051] = 3, + [308345] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10015), 1, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [309063] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1825), 1, - aux_sym_quoted_keyword_token1, + anon_sym_GT_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309075] = 3, + [308357] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10017), 1, @@ -466722,52 +466036,52 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309087] = 3, + [308369] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10019), 1, - anon_sym_RPAREN, + sym_semgrep_metavariable, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309099] = 3, + [308381] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10021), 1, - sym_semgrep_metavariable, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309111] = 3, + [308393] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10023), 1, - anon_sym_SLASH, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309123] = 3, + [308405] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10025), 1, - sym_semgrep_metavariable, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309135] = 3, + [308417] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10027), 1, - anon_sym_LBRACE, + sym_semgrep_metavariable, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309147] = 3, + [308429] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10029), 1, @@ -466776,43 +466090,34 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309159] = 3, + [308441] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10031), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309171] = 3, + [308453] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10033), 1, - sym_integer, + sym_semgrep_metavariable, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309183] = 3, + [308465] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10035), 1, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym_newline_before_binary_operator, - sym_newline_before_comment, - aux_sym_terminator_token1, - [309195] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1833), 1, - aux_sym_quoted_keyword_token1, + anon_sym_RBRACK, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309207] = 3, + [308477] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10037), 1, @@ -466821,16 +466126,16 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309219] = 3, + [308489] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10039), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309231] = 3, + [308501] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10041), 1, @@ -466839,6200 +466144,6271 @@ static const uint16_t ts_small_parse_table[] = { sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309243] = 3, + [308513] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10043), 1, - anon_sym_RBRACK, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309255] = 3, + [308525] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10045), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309267] = 3, + [308537] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10047), 1, - ts_builtin_sym_end, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309279] = 3, + [308549] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10049), 1, - anon_sym_RBRACE, + sym_integer, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309291] = 3, + [308561] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10051), 1, - sym_integer, + anon_sym_RBRACK, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309303] = 3, + [308573] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10053), 1, - anon_sym_LBRACE, + anon_sym_SLASH, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309315] = 3, + [308585] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10055), 1, - anon_sym_LBRACE, + anon_sym_DASH_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309327] = 3, + [308597] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10057), 1, - sym_integer, + anon_sym_RBRACE, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309339] = 3, + [308609] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10059), 1, - sym_integer, + sym_semgrep_metavariable, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309351] = 3, + [308621] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10061), 1, - anon_sym_GT_GT, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [308633] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1861), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309363] = 3, + [308645] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10063), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, - [309375] = 3, + [308657] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10065), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [308669] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10067), 1, + sym_semgrep_metavariable, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [308681] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10069), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [308693] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10071), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [308705] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10073), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [308717] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10075), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [308729] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10077), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym_newline_before_binary_operator, sym_newline_before_comment, aux_sym_terminator_token1, + [308741] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10079), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, + [308753] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10081), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym_newline_before_binary_operator, + sym_newline_before_comment, + aux_sym_terminator_token1, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1466)] = 0, - [SMALL_STATE(1467)] = 79, - [SMALL_STATE(1468)] = 152, - [SMALL_STATE(1469)] = 225, - [SMALL_STATE(1470)] = 298, - [SMALL_STATE(1471)] = 371, - [SMALL_STATE(1472)] = 444, - [SMALL_STATE(1473)] = 517, - [SMALL_STATE(1474)] = 646, - [SMALL_STATE(1475)] = 723, - [SMALL_STATE(1476)] = 798, - [SMALL_STATE(1477)] = 873, - [SMALL_STATE(1478)] = 1002, - [SMALL_STATE(1479)] = 1077, - [SMALL_STATE(1480)] = 1150, - [SMALL_STATE(1481)] = 1223, - [SMALL_STATE(1482)] = 1352, - [SMALL_STATE(1483)] = 1425, - [SMALL_STATE(1484)] = 1500, - [SMALL_STATE(1485)] = 1575, - [SMALL_STATE(1486)] = 1648, - [SMALL_STATE(1487)] = 1723, - [SMALL_STATE(1488)] = 1796, - [SMALL_STATE(1489)] = 1869, - [SMALL_STATE(1490)] = 1998, - [SMALL_STATE(1491)] = 2073, - [SMALL_STATE(1492)] = 2146, - [SMALL_STATE(1493)] = 2219, - [SMALL_STATE(1494)] = 2292, - [SMALL_STATE(1495)] = 2365, - [SMALL_STATE(1496)] = 2494, - [SMALL_STATE(1497)] = 2623, - [SMALL_STATE(1498)] = 2702, - [SMALL_STATE(1499)] = 2781, - [SMALL_STATE(1500)] = 2854, - [SMALL_STATE(1501)] = 2933, - [SMALL_STATE(1502)] = 3006, - [SMALL_STATE(1503)] = 3079, - [SMALL_STATE(1504)] = 3158, - [SMALL_STATE(1505)] = 3231, - [SMALL_STATE(1506)] = 3360, - [SMALL_STATE(1507)] = 3489, - [SMALL_STATE(1508)] = 3562, - [SMALL_STATE(1509)] = 3636, - [SMALL_STATE(1510)] = 3708, - [SMALL_STATE(1511)] = 3782, - [SMALL_STATE(1512)] = 3856, - [SMALL_STATE(1513)] = 3928, - [SMALL_STATE(1514)] = 4000, - [SMALL_STATE(1515)] = 4072, - [SMALL_STATE(1516)] = 4144, - [SMALL_STATE(1517)] = 4216, - [SMALL_STATE(1518)] = 4288, - [SMALL_STATE(1519)] = 4360, - [SMALL_STATE(1520)] = 4478, - [SMALL_STATE(1521)] = 4550, - [SMALL_STATE(1522)] = 4622, - [SMALL_STATE(1523)] = 4694, - [SMALL_STATE(1524)] = 4766, - [SMALL_STATE(1525)] = 4838, - [SMALL_STATE(1526)] = 4910, - [SMALL_STATE(1527)] = 4982, - [SMALL_STATE(1528)] = 5054, - [SMALL_STATE(1529)] = 5126, - [SMALL_STATE(1530)] = 5198, - [SMALL_STATE(1531)] = 5270, - [SMALL_STATE(1532)] = 5342, - [SMALL_STATE(1533)] = 5414, - [SMALL_STATE(1534)] = 5486, - [SMALL_STATE(1535)] = 5558, - [SMALL_STATE(1536)] = 5630, - [SMALL_STATE(1537)] = 5702, - [SMALL_STATE(1538)] = 5774, - [SMALL_STATE(1539)] = 5846, - [SMALL_STATE(1540)] = 5918, - [SMALL_STATE(1541)] = 5990, - [SMALL_STATE(1542)] = 6062, - [SMALL_STATE(1543)] = 6134, - [SMALL_STATE(1544)] = 6206, - [SMALL_STATE(1545)] = 6278, - [SMALL_STATE(1546)] = 6350, - [SMALL_STATE(1547)] = 6422, - [SMALL_STATE(1548)] = 6494, - [SMALL_STATE(1549)] = 6566, - [SMALL_STATE(1550)] = 6638, - [SMALL_STATE(1551)] = 6710, - [SMALL_STATE(1552)] = 6782, - [SMALL_STATE(1553)] = 6854, - [SMALL_STATE(1554)] = 6926, - [SMALL_STATE(1555)] = 6998, - [SMALL_STATE(1556)] = 7070, - [SMALL_STATE(1557)] = 7142, - [SMALL_STATE(1558)] = 7214, - [SMALL_STATE(1559)] = 7286, - [SMALL_STATE(1560)] = 7358, - [SMALL_STATE(1561)] = 7430, - [SMALL_STATE(1562)] = 7502, - [SMALL_STATE(1563)] = 7574, - [SMALL_STATE(1564)] = 7646, - [SMALL_STATE(1565)] = 7718, - [SMALL_STATE(1566)] = 7790, - [SMALL_STATE(1567)] = 7862, - [SMALL_STATE(1568)] = 7934, - [SMALL_STATE(1569)] = 8006, - [SMALL_STATE(1570)] = 8078, - [SMALL_STATE(1571)] = 8150, - [SMALL_STATE(1572)] = 8222, - [SMALL_STATE(1573)] = 8294, - [SMALL_STATE(1574)] = 8366, - [SMALL_STATE(1575)] = 8438, - [SMALL_STATE(1576)] = 8510, - [SMALL_STATE(1577)] = 8582, - [SMALL_STATE(1578)] = 8654, - [SMALL_STATE(1579)] = 8726, - [SMALL_STATE(1580)] = 8798, - [SMALL_STATE(1581)] = 8870, - [SMALL_STATE(1582)] = 8942, - [SMALL_STATE(1583)] = 9014, - [SMALL_STATE(1584)] = 9086, - [SMALL_STATE(1585)] = 9158, - [SMALL_STATE(1586)] = 9230, - [SMALL_STATE(1587)] = 9302, - [SMALL_STATE(1588)] = 9374, - [SMALL_STATE(1589)] = 9446, - [SMALL_STATE(1590)] = 9518, - [SMALL_STATE(1591)] = 9590, - [SMALL_STATE(1592)] = 9662, - [SMALL_STATE(1593)] = 9734, - [SMALL_STATE(1594)] = 9806, - [SMALL_STATE(1595)] = 9878, - [SMALL_STATE(1596)] = 9950, - [SMALL_STATE(1597)] = 10028, - [SMALL_STATE(1598)] = 10100, - [SMALL_STATE(1599)] = 10172, - [SMALL_STATE(1600)] = 10244, - [SMALL_STATE(1601)] = 10316, - [SMALL_STATE(1602)] = 10388, - [SMALL_STATE(1603)] = 10460, - [SMALL_STATE(1604)] = 10532, - [SMALL_STATE(1605)] = 10604, - [SMALL_STATE(1606)] = 10676, - [SMALL_STATE(1607)] = 10748, - [SMALL_STATE(1608)] = 10820, - [SMALL_STATE(1609)] = 10892, - [SMALL_STATE(1610)] = 10964, - [SMALL_STATE(1611)] = 11036, - [SMALL_STATE(1612)] = 11108, - [SMALL_STATE(1613)] = 11180, - [SMALL_STATE(1614)] = 11254, - [SMALL_STATE(1615)] = 11328, - [SMALL_STATE(1616)] = 11400, - [SMALL_STATE(1617)] = 11472, - [SMALL_STATE(1618)] = 11544, - [SMALL_STATE(1619)] = 11616, - [SMALL_STATE(1620)] = 11688, - [SMALL_STATE(1621)] = 11764, - [SMALL_STATE(1622)] = 11840, - [SMALL_STATE(1623)] = 11912, - [SMALL_STATE(1624)] = 11984, - [SMALL_STATE(1625)] = 12056, - [SMALL_STATE(1626)] = 12128, - [SMALL_STATE(1627)] = 12200, - [SMALL_STATE(1628)] = 12272, - [SMALL_STATE(1629)] = 12344, - [SMALL_STATE(1630)] = 12416, - [SMALL_STATE(1631)] = 12488, - [SMALL_STATE(1632)] = 12560, - [SMALL_STATE(1633)] = 12632, - [SMALL_STATE(1634)] = 12708, - [SMALL_STATE(1635)] = 12780, - [SMALL_STATE(1636)] = 12852, - [SMALL_STATE(1637)] = 12924, - [SMALL_STATE(1638)] = 12996, - [SMALL_STATE(1639)] = 13068, - [SMALL_STATE(1640)] = 13140, - [SMALL_STATE(1641)] = 13214, - [SMALL_STATE(1642)] = 13286, - [SMALL_STATE(1643)] = 13360, - [SMALL_STATE(1644)] = 13432, - [SMALL_STATE(1645)] = 13504, - [SMALL_STATE(1646)] = 13576, - [SMALL_STATE(1647)] = 13648, - [SMALL_STATE(1648)] = 13720, - [SMALL_STATE(1649)] = 13792, - [SMALL_STATE(1650)] = 13864, - [SMALL_STATE(1651)] = 13936, - [SMALL_STATE(1652)] = 14008, - [SMALL_STATE(1653)] = 14080, - [SMALL_STATE(1654)] = 14152, - [SMALL_STATE(1655)] = 14224, - [SMALL_STATE(1656)] = 14296, - [SMALL_STATE(1657)] = 14368, - [SMALL_STATE(1658)] = 14440, - [SMALL_STATE(1659)] = 14512, - [SMALL_STATE(1660)] = 14584, - [SMALL_STATE(1661)] = 14656, - [SMALL_STATE(1662)] = 14728, - [SMALL_STATE(1663)] = 14800, - [SMALL_STATE(1664)] = 14872, - [SMALL_STATE(1665)] = 14950, - [SMALL_STATE(1666)] = 15022, - [SMALL_STATE(1667)] = 15100, - [SMALL_STATE(1668)] = 15176, - [SMALL_STATE(1669)] = 15252, - [SMALL_STATE(1670)] = 15328, - [SMALL_STATE(1671)] = 15400, - [SMALL_STATE(1672)] = 15472, - [SMALL_STATE(1673)] = 15581, - [SMALL_STATE(1674)] = 15652, - [SMALL_STATE(1675)] = 15723, - [SMALL_STATE(1676)] = 15794, - [SMALL_STATE(1677)] = 15865, - [SMALL_STATE(1678)] = 15936, - [SMALL_STATE(1679)] = 16007, - [SMALL_STATE(1680)] = 16078, - [SMALL_STATE(1681)] = 16149, - [SMALL_STATE(1682)] = 16220, - [SMALL_STATE(1683)] = 16291, - [SMALL_STATE(1684)] = 16362, - [SMALL_STATE(1685)] = 16457, - [SMALL_STATE(1686)] = 16534, - [SMALL_STATE(1687)] = 16605, - [SMALL_STATE(1688)] = 16676, - [SMALL_STATE(1689)] = 16747, - [SMALL_STATE(1690)] = 16818, - [SMALL_STATE(1691)] = 16889, - [SMALL_STATE(1692)] = 16960, - [SMALL_STATE(1693)] = 17031, - [SMALL_STATE(1694)] = 17138, - [SMALL_STATE(1695)] = 17249, - [SMALL_STATE(1696)] = 17360, - [SMALL_STATE(1697)] = 17431, - [SMALL_STATE(1698)] = 17522, - [SMALL_STATE(1699)] = 17635, - [SMALL_STATE(1700)] = 17706, - [SMALL_STATE(1701)] = 17777, - [SMALL_STATE(1702)] = 17862, - [SMALL_STATE(1703)] = 17933, - [SMALL_STATE(1704)] = 18004, - [SMALL_STATE(1705)] = 18089, - [SMALL_STATE(1706)] = 18176, - [SMALL_STATE(1707)] = 18247, - [SMALL_STATE(1708)] = 18318, - [SMALL_STATE(1709)] = 18389, - [SMALL_STATE(1710)] = 18472, - [SMALL_STATE(1711)] = 18543, - [SMALL_STATE(1712)] = 18656, - [SMALL_STATE(1713)] = 18729, - [SMALL_STATE(1714)] = 18808, - [SMALL_STATE(1715)] = 18913, - [SMALL_STATE(1716)] = 18984, - [SMALL_STATE(1717)] = 19077, - [SMALL_STATE(1718)] = 19180, - [SMALL_STATE(1719)] = 19279, - [SMALL_STATE(1720)] = 19350, - [SMALL_STATE(1721)] = 19421, - [SMALL_STATE(1722)] = 19492, - [SMALL_STATE(1723)] = 19563, - [SMALL_STATE(1724)] = 19634, - [SMALL_STATE(1725)] = 19705, - [SMALL_STATE(1726)] = 19776, - [SMALL_STATE(1727)] = 19889, - [SMALL_STATE(1728)] = 19986, - [SMALL_STATE(1729)] = 20059, - [SMALL_STATE(1730)] = 20130, - [SMALL_STATE(1731)] = 20201, - [SMALL_STATE(1732)] = 20272, - [SMALL_STATE(1733)] = 20343, - [SMALL_STATE(1734)] = 20414, - [SMALL_STATE(1735)] = 20485, - [SMALL_STATE(1736)] = 20556, - [SMALL_STATE(1737)] = 20627, - [SMALL_STATE(1738)] = 20698, - [SMALL_STATE(1739)] = 20769, - [SMALL_STATE(1740)] = 20840, - [SMALL_STATE(1741)] = 20911, - [SMALL_STATE(1742)] = 20982, - [SMALL_STATE(1743)] = 21053, - [SMALL_STATE(1744)] = 21124, - [SMALL_STATE(1745)] = 21195, - [SMALL_STATE(1746)] = 21266, - [SMALL_STATE(1747)] = 21337, - [SMALL_STATE(1748)] = 21408, - [SMALL_STATE(1749)] = 21479, - [SMALL_STATE(1750)] = 21550, - [SMALL_STATE(1751)] = 21621, - [SMALL_STATE(1752)] = 21692, - [SMALL_STATE(1753)] = 21763, - [SMALL_STATE(1754)] = 21834, - [SMALL_STATE(1755)] = 21905, - [SMALL_STATE(1756)] = 21976, - [SMALL_STATE(1757)] = 22049, - [SMALL_STATE(1758)] = 22120, - [SMALL_STATE(1759)] = 22191, - [SMALL_STATE(1760)] = 22262, - [SMALL_STATE(1761)] = 22337, - [SMALL_STATE(1762)] = 22412, - [SMALL_STATE(1763)] = 22487, - [SMALL_STATE(1764)] = 22558, - [SMALL_STATE(1765)] = 22629, - [SMALL_STATE(1766)] = 22700, - [SMALL_STATE(1767)] = 22771, - [SMALL_STATE(1768)] = 22842, - [SMALL_STATE(1769)] = 22913, - [SMALL_STATE(1770)] = 22984, - [SMALL_STATE(1771)] = 23059, - [SMALL_STATE(1772)] = 23130, - [SMALL_STATE(1773)] = 23201, - [SMALL_STATE(1774)] = 23272, - [SMALL_STATE(1775)] = 23343, - [SMALL_STATE(1776)] = 23414, - [SMALL_STATE(1777)] = 23485, - [SMALL_STATE(1778)] = 23556, - [SMALL_STATE(1779)] = 23627, - [SMALL_STATE(1780)] = 23698, - [SMALL_STATE(1781)] = 23769, - [SMALL_STATE(1782)] = 23840, - [SMALL_STATE(1783)] = 23911, - [SMALL_STATE(1784)] = 23982, - [SMALL_STATE(1785)] = 24053, - [SMALL_STATE(1786)] = 24124, - [SMALL_STATE(1787)] = 24195, - [SMALL_STATE(1788)] = 24266, - [SMALL_STATE(1789)] = 24337, - [SMALL_STATE(1790)] = 24408, - [SMALL_STATE(1791)] = 24479, - [SMALL_STATE(1792)] = 24550, - [SMALL_STATE(1793)] = 24621, - [SMALL_STATE(1794)] = 24692, - [SMALL_STATE(1795)] = 24763, - [SMALL_STATE(1796)] = 24834, - [SMALL_STATE(1797)] = 24905, - [SMALL_STATE(1798)] = 24976, - [SMALL_STATE(1799)] = 25047, - [SMALL_STATE(1800)] = 25118, - [SMALL_STATE(1801)] = 25193, - [SMALL_STATE(1802)] = 25268, - [SMALL_STATE(1803)] = 25339, - [SMALL_STATE(1804)] = 25410, - [SMALL_STATE(1805)] = 25481, - [SMALL_STATE(1806)] = 25552, - [SMALL_STATE(1807)] = 25625, - [SMALL_STATE(1808)] = 25696, - [SMALL_STATE(1809)] = 25767, - [SMALL_STATE(1810)] = 25884, - [SMALL_STATE(1811)] = 25955, - [SMALL_STATE(1812)] = 26026, - [SMALL_STATE(1813)] = 26097, - [SMALL_STATE(1814)] = 26168, - [SMALL_STATE(1815)] = 26239, - [SMALL_STATE(1816)] = 26310, - [SMALL_STATE(1817)] = 26381, - [SMALL_STATE(1818)] = 26452, - [SMALL_STATE(1819)] = 26523, - [SMALL_STATE(1820)] = 26594, - [SMALL_STATE(1821)] = 26665, - [SMALL_STATE(1822)] = 26736, - [SMALL_STATE(1823)] = 26807, - [SMALL_STATE(1824)] = 26878, - [SMALL_STATE(1825)] = 26949, - [SMALL_STATE(1826)] = 27020, - [SMALL_STATE(1827)] = 27091, - [SMALL_STATE(1828)] = 27162, - [SMALL_STATE(1829)] = 27233, - [SMALL_STATE(1830)] = 27304, - [SMALL_STATE(1831)] = 27375, - [SMALL_STATE(1832)] = 27446, - [SMALL_STATE(1833)] = 27517, - [SMALL_STATE(1834)] = 27588, - [SMALL_STATE(1835)] = 27659, - [SMALL_STATE(1836)] = 27730, - [SMALL_STATE(1837)] = 27805, - [SMALL_STATE(1838)] = 27876, - [SMALL_STATE(1839)] = 27947, - [SMALL_STATE(1840)] = 28018, - [SMALL_STATE(1841)] = 28089, - [SMALL_STATE(1842)] = 28160, - [SMALL_STATE(1843)] = 28231, - [SMALL_STATE(1844)] = 28302, - [SMALL_STATE(1845)] = 28373, - [SMALL_STATE(1846)] = 28444, - [SMALL_STATE(1847)] = 28515, - [SMALL_STATE(1848)] = 28586, - [SMALL_STATE(1849)] = 28661, - [SMALL_STATE(1850)] = 28736, - [SMALL_STATE(1851)] = 28807, - [SMALL_STATE(1852)] = 28877, - [SMALL_STATE(1853)] = 28951, - [SMALL_STATE(1854)] = 29021, - [SMALL_STATE(1855)] = 29091, - [SMALL_STATE(1856)] = 29161, - [SMALL_STATE(1857)] = 29231, - [SMALL_STATE(1858)] = 29301, - [SMALL_STATE(1859)] = 29387, - [SMALL_STATE(1860)] = 29507, - [SMALL_STATE(1861)] = 29599, - [SMALL_STATE(1862)] = 29719, - [SMALL_STATE(1863)] = 29795, - [SMALL_STATE(1864)] = 29877, - [SMALL_STATE(1865)] = 29955, - [SMALL_STATE(1866)] = 30059, - [SMALL_STATE(1867)] = 30161, - [SMALL_STATE(1868)] = 30259, - [SMALL_STATE(1869)] = 30355, - [SMALL_STATE(1870)] = 30449, - [SMALL_STATE(1871)] = 30539, - [SMALL_STATE(1872)] = 30623, - [SMALL_STATE(1873)] = 30707, - [SMALL_STATE(1874)] = 30777, - [SMALL_STATE(1875)] = 30847, - [SMALL_STATE(1876)] = 30959, - [SMALL_STATE(1877)] = 31071, - [SMALL_STATE(1878)] = 31183, - [SMALL_STATE(1879)] = 31253, - [SMALL_STATE(1880)] = 31323, - [SMALL_STATE(1881)] = 31393, - [SMALL_STATE(1882)] = 31463, - [SMALL_STATE(1883)] = 31533, - [SMALL_STATE(1884)] = 31603, - [SMALL_STATE(1885)] = 31673, - [SMALL_STATE(1886)] = 31743, - [SMALL_STATE(1887)] = 31813, - [SMALL_STATE(1888)] = 31883, - [SMALL_STATE(1889)] = 31953, - [SMALL_STATE(1890)] = 32027, - [SMALL_STATE(1891)] = 32097, - [SMALL_STATE(1892)] = 32169, - [SMALL_STATE(1893)] = 32297, - [SMALL_STATE(1894)] = 32369, - [SMALL_STATE(1895)] = 32441, - [SMALL_STATE(1896)] = 32511, - [SMALL_STATE(1897)] = 32581, - [SMALL_STATE(1898)] = 32651, - [SMALL_STATE(1899)] = 32721, - [SMALL_STATE(1900)] = 32793, - [SMALL_STATE(1901)] = 32863, - [SMALL_STATE(1902)] = 32933, - [SMALL_STATE(1903)] = 33003, - [SMALL_STATE(1904)] = 33109, - [SMALL_STATE(1905)] = 33179, - [SMALL_STATE(1906)] = 33289, - [SMALL_STATE(1907)] = 33399, - [SMALL_STATE(1908)] = 33507, - [SMALL_STATE(1909)] = 33577, - [SMALL_STATE(1910)] = 33647, - [SMALL_STATE(1911)] = 33717, - [SMALL_STATE(1912)] = 33787, - [SMALL_STATE(1913)] = 33857, - [SMALL_STATE(1914)] = 33927, - [SMALL_STATE(1915)] = 33997, - [SMALL_STATE(1916)] = 34067, - [SMALL_STATE(1917)] = 34137, - [SMALL_STATE(1918)] = 34207, - [SMALL_STATE(1919)] = 34277, - [SMALL_STATE(1920)] = 34347, - [SMALL_STATE(1921)] = 34417, - [SMALL_STATE(1922)] = 34487, - [SMALL_STATE(1923)] = 34557, - [SMALL_STATE(1924)] = 34627, - [SMALL_STATE(1925)] = 34697, - [SMALL_STATE(1926)] = 34767, - [SMALL_STATE(1927)] = 34837, - [SMALL_STATE(1928)] = 34907, - [SMALL_STATE(1929)] = 34977, - [SMALL_STATE(1930)] = 35047, - [SMALL_STATE(1931)] = 35117, - [SMALL_STATE(1932)] = 35187, - [SMALL_STATE(1933)] = 35257, - [SMALL_STATE(1934)] = 35327, - [SMALL_STATE(1935)] = 35397, - [SMALL_STATE(1936)] = 35467, - [SMALL_STATE(1937)] = 35537, - [SMALL_STATE(1938)] = 35607, - [SMALL_STATE(1939)] = 35683, - [SMALL_STATE(1940)] = 35753, - [SMALL_STATE(1941)] = 35823, - [SMALL_STATE(1942)] = 35893, - [SMALL_STATE(1943)] = 35963, - [SMALL_STATE(1944)] = 36033, - [SMALL_STATE(1945)] = 36103, - [SMALL_STATE(1946)] = 36173, - [SMALL_STATE(1947)] = 36243, - [SMALL_STATE(1948)] = 36313, - [SMALL_STATE(1949)] = 36383, - [SMALL_STATE(1950)] = 36453, - [SMALL_STATE(1951)] = 36523, - [SMALL_STATE(1952)] = 36593, - [SMALL_STATE(1953)] = 36663, - [SMALL_STATE(1954)] = 36733, - [SMALL_STATE(1955)] = 36803, - [SMALL_STATE(1956)] = 36875, - [SMALL_STATE(1957)] = 36947, - [SMALL_STATE(1958)] = 37017, - [SMALL_STATE(1959)] = 37087, - [SMALL_STATE(1960)] = 37157, - [SMALL_STATE(1961)] = 37227, - [SMALL_STATE(1962)] = 37297, - [SMALL_STATE(1963)] = 37367, - [SMALL_STATE(1964)] = 37437, - [SMALL_STATE(1965)] = 37507, - [SMALL_STATE(1966)] = 37577, - [SMALL_STATE(1967)] = 37647, - [SMALL_STATE(1968)] = 37717, - [SMALL_STATE(1969)] = 37787, - [SMALL_STATE(1970)] = 37857, - [SMALL_STATE(1971)] = 37927, - [SMALL_STATE(1972)] = 37997, - [SMALL_STATE(1973)] = 38067, - [SMALL_STATE(1974)] = 38137, - [SMALL_STATE(1975)] = 38213, - [SMALL_STATE(1976)] = 38283, - [SMALL_STATE(1977)] = 38353, - [SMALL_STATE(1978)] = 38423, - [SMALL_STATE(1979)] = 38493, - [SMALL_STATE(1980)] = 38563, - [SMALL_STATE(1981)] = 38633, - [SMALL_STATE(1982)] = 38703, - [SMALL_STATE(1983)] = 38773, - [SMALL_STATE(1984)] = 38843, - [SMALL_STATE(1985)] = 38913, - [SMALL_STATE(1986)] = 38983, - [SMALL_STATE(1987)] = 39111, - [SMALL_STATE(1988)] = 39181, - [SMALL_STATE(1989)] = 39251, - [SMALL_STATE(1990)] = 39321, - [SMALL_STATE(1991)] = 39391, - [SMALL_STATE(1992)] = 39461, - [SMALL_STATE(1993)] = 39531, - [SMALL_STATE(1994)] = 39601, - [SMALL_STATE(1995)] = 39671, - [SMALL_STATE(1996)] = 39745, - [SMALL_STATE(1997)] = 39819, - [SMALL_STATE(1998)] = 39893, - [SMALL_STATE(1999)] = 39963, - [SMALL_STATE(2000)] = 40033, - [SMALL_STATE(2001)] = 40103, - [SMALL_STATE(2002)] = 40173, - [SMALL_STATE(2003)] = 40243, - [SMALL_STATE(2004)] = 40313, - [SMALL_STATE(2005)] = 40383, - [SMALL_STATE(2006)] = 40453, - [SMALL_STATE(2007)] = 40523, - [SMALL_STATE(2008)] = 40593, - [SMALL_STATE(2009)] = 40663, - [SMALL_STATE(2010)] = 40733, - [SMALL_STATE(2011)] = 40803, - [SMALL_STATE(2012)] = 40873, - [SMALL_STATE(2013)] = 40943, - [SMALL_STATE(2014)] = 41013, - [SMALL_STATE(2015)] = 41083, - [SMALL_STATE(2016)] = 41153, - [SMALL_STATE(2017)] = 41223, - [SMALL_STATE(2018)] = 41293, - [SMALL_STATE(2019)] = 41363, - [SMALL_STATE(2020)] = 41433, - [SMALL_STATE(2021)] = 41503, - [SMALL_STATE(2022)] = 41573, - [SMALL_STATE(2023)] = 41643, - [SMALL_STATE(2024)] = 41713, - [SMALL_STATE(2025)] = 41783, - [SMALL_STATE(2026)] = 41855, - [SMALL_STATE(2027)] = 41927, - [SMALL_STATE(2028)] = 41997, - [SMALL_STATE(2029)] = 42067, - [SMALL_STATE(2030)] = 42137, - [SMALL_STATE(2031)] = 42207, - [SMALL_STATE(2032)] = 42281, - [SMALL_STATE(2033)] = 42355, - [SMALL_STATE(2034)] = 42425, - [SMALL_STATE(2035)] = 42494, - [SMALL_STATE(2036)] = 42563, - [SMALL_STATE(2037)] = 42688, - [SMALL_STATE(2038)] = 42813, - [SMALL_STATE(2039)] = 42882, - [SMALL_STATE(2040)] = 42951, - [SMALL_STATE(2041)] = 43020, - [SMALL_STATE(2042)] = 43089, - [SMALL_STATE(2043)] = 43160, - [SMALL_STATE(2044)] = 43231, - [SMALL_STATE(2045)] = 43356, - [SMALL_STATE(2046)] = 43425, - [SMALL_STATE(2047)] = 43494, - [SMALL_STATE(2048)] = 43563, - [SMALL_STATE(2049)] = 43688, - [SMALL_STATE(2050)] = 43757, - [SMALL_STATE(2051)] = 43882, - [SMALL_STATE(2052)] = 43951, - [SMALL_STATE(2053)] = 44020, - [SMALL_STATE(2054)] = 44089, - [SMALL_STATE(2055)] = 44158, - [SMALL_STATE(2056)] = 44227, - [SMALL_STATE(2057)] = 44296, - [SMALL_STATE(2058)] = 44365, - [SMALL_STATE(2059)] = 44434, - [SMALL_STATE(2060)] = 44503, - [SMALL_STATE(2061)] = 44572, - [SMALL_STATE(2062)] = 44641, - [SMALL_STATE(2063)] = 44710, - [SMALL_STATE(2064)] = 44779, - [SMALL_STATE(2065)] = 44904, - [SMALL_STATE(2066)] = 44973, - [SMALL_STATE(2067)] = 45042, - [SMALL_STATE(2068)] = 45111, - [SMALL_STATE(2069)] = 45180, - [SMALL_STATE(2070)] = 45249, - [SMALL_STATE(2071)] = 45318, - [SMALL_STATE(2072)] = 45387, - [SMALL_STATE(2073)] = 45512, - [SMALL_STATE(2074)] = 45581, - [SMALL_STATE(2075)] = 45650, - [SMALL_STATE(2076)] = 45775, - [SMALL_STATE(2077)] = 45844, - [SMALL_STATE(2078)] = 45913, - [SMALL_STATE(2079)] = 45982, - [SMALL_STATE(2080)] = 46051, - [SMALL_STATE(2081)] = 46120, - [SMALL_STATE(2082)] = 46189, - [SMALL_STATE(2083)] = 46258, - [SMALL_STATE(2084)] = 46327, - [SMALL_STATE(2085)] = 46452, - [SMALL_STATE(2086)] = 46521, - [SMALL_STATE(2087)] = 46590, - [SMALL_STATE(2088)] = 46659, - [SMALL_STATE(2089)] = 46728, - [SMALL_STATE(2090)] = 46797, - [SMALL_STATE(2091)] = 46866, - [SMALL_STATE(2092)] = 46935, - [SMALL_STATE(2093)] = 47060, - [SMALL_STATE(2094)] = 47129, - [SMALL_STATE(2095)] = 47198, - [SMALL_STATE(2096)] = 47323, - [SMALL_STATE(2097)] = 47392, - [SMALL_STATE(2098)] = 47461, - [SMALL_STATE(2099)] = 47530, - [SMALL_STATE(2100)] = 47599, - [SMALL_STATE(2101)] = 47668, - [SMALL_STATE(2102)] = 47737, - [SMALL_STATE(2103)] = 47806, - [SMALL_STATE(2104)] = 47875, - [SMALL_STATE(2105)] = 47944, - [SMALL_STATE(2106)] = 48013, - [SMALL_STATE(2107)] = 48082, - [SMALL_STATE(2108)] = 48151, - [SMALL_STATE(2109)] = 48220, - [SMALL_STATE(2110)] = 48289, - [SMALL_STATE(2111)] = 48358, - [SMALL_STATE(2112)] = 48483, - [SMALL_STATE(2113)] = 48552, - [SMALL_STATE(2114)] = 48621, - [SMALL_STATE(2115)] = 48690, - [SMALL_STATE(2116)] = 48759, - [SMALL_STATE(2117)] = 48828, - [SMALL_STATE(2118)] = 48897, - [SMALL_STATE(2119)] = 49022, - [SMALL_STATE(2120)] = 49091, - [SMALL_STATE(2121)] = 49160, - [SMALL_STATE(2122)] = 49285, - [SMALL_STATE(2123)] = 49354, - [SMALL_STATE(2124)] = 49423, - [SMALL_STATE(2125)] = 49492, - [SMALL_STATE(2126)] = 49561, - [SMALL_STATE(2127)] = 49630, - [SMALL_STATE(2128)] = 49699, - [SMALL_STATE(2129)] = 49768, - [SMALL_STATE(2130)] = 49837, - [SMALL_STATE(2131)] = 49906, - [SMALL_STATE(2132)] = 49975, - [SMALL_STATE(2133)] = 50044, - [SMALL_STATE(2134)] = 50113, - [SMALL_STATE(2135)] = 50182, - [SMALL_STATE(2136)] = 50251, - [SMALL_STATE(2137)] = 50320, - [SMALL_STATE(2138)] = 50389, - [SMALL_STATE(2139)] = 50458, - [SMALL_STATE(2140)] = 50583, - [SMALL_STATE(2141)] = 50652, - [SMALL_STATE(2142)] = 50721, - [SMALL_STATE(2143)] = 50790, - [SMALL_STATE(2144)] = 50859, - [SMALL_STATE(2145)] = 50984, - [SMALL_STATE(2146)] = 51053, - [SMALL_STATE(2147)] = 51178, - [SMALL_STATE(2148)] = 51247, - [SMALL_STATE(2149)] = 51316, - [SMALL_STATE(2150)] = 51385, - [SMALL_STATE(2151)] = 51454, - [SMALL_STATE(2152)] = 51523, - [SMALL_STATE(2153)] = 51592, - [SMALL_STATE(2154)] = 51717, - [SMALL_STATE(2155)] = 51786, - [SMALL_STATE(2156)] = 51855, - [SMALL_STATE(2157)] = 51980, - [SMALL_STATE(2158)] = 52049, - [SMALL_STATE(2159)] = 52174, - [SMALL_STATE(2160)] = 52243, - [SMALL_STATE(2161)] = 52312, - [SMALL_STATE(2162)] = 52381, - [SMALL_STATE(2163)] = 52450, - [SMALL_STATE(2164)] = 52519, - [SMALL_STATE(2165)] = 52644, - [SMALL_STATE(2166)] = 52713, - [SMALL_STATE(2167)] = 52782, - [SMALL_STATE(2168)] = 52907, - [SMALL_STATE(2169)] = 52976, - [SMALL_STATE(2170)] = 53101, - [SMALL_STATE(2171)] = 53226, - [SMALL_STATE(2172)] = 53351, - [SMALL_STATE(2173)] = 53420, - [SMALL_STATE(2174)] = 53489, - [SMALL_STATE(2175)] = 53558, - [SMALL_STATE(2176)] = 53627, - [SMALL_STATE(2177)] = 53696, - [SMALL_STATE(2178)] = 53765, - [SMALL_STATE(2179)] = 53834, - [SMALL_STATE(2180)] = 53907, - [SMALL_STATE(2181)] = 53980, - [SMALL_STATE(2182)] = 54053, - [SMALL_STATE(2183)] = 54122, - [SMALL_STATE(2184)] = 54191, - [SMALL_STATE(2185)] = 54260, - [SMALL_STATE(2186)] = 54329, - [SMALL_STATE(2187)] = 54398, - [SMALL_STATE(2188)] = 54467, - [SMALL_STATE(2189)] = 54536, - [SMALL_STATE(2190)] = 54607, - [SMALL_STATE(2191)] = 54676, - [SMALL_STATE(2192)] = 54801, - [SMALL_STATE(2193)] = 54926, - [SMALL_STATE(2194)] = 55051, - [SMALL_STATE(2195)] = 55120, - [SMALL_STATE(2196)] = 55189, - [SMALL_STATE(2197)] = 55258, - [SMALL_STATE(2198)] = 55383, - [SMALL_STATE(2199)] = 55508, - [SMALL_STATE(2200)] = 55577, - [SMALL_STATE(2201)] = 55652, - [SMALL_STATE(2202)] = 55721, - [SMALL_STATE(2203)] = 55790, - [SMALL_STATE(2204)] = 55859, - [SMALL_STATE(2205)] = 55928, - [SMALL_STATE(2206)] = 55997, - [SMALL_STATE(2207)] = 56068, - [SMALL_STATE(2208)] = 56139, - [SMALL_STATE(2209)] = 56208, - [SMALL_STATE(2210)] = 56277, - [SMALL_STATE(2211)] = 56346, - [SMALL_STATE(2212)] = 56415, - [SMALL_STATE(2213)] = 56484, - [SMALL_STATE(2214)] = 56609, - [SMALL_STATE(2215)] = 56678, - [SMALL_STATE(2216)] = 56789, - [SMALL_STATE(2217)] = 56858, - [SMALL_STATE(2218)] = 56963, - [SMALL_STATE(2219)] = 57072, - [SMALL_STATE(2220)] = 57197, - [SMALL_STATE(2221)] = 57322, - [SMALL_STATE(2222)] = 57431, - [SMALL_STATE(2223)] = 57538, - [SMALL_STATE(2224)] = 57607, - [SMALL_STATE(2225)] = 57682, - [SMALL_STATE(2226)] = 57757, - [SMALL_STATE(2227)] = 57826, - [SMALL_STATE(2228)] = 57951, - [SMALL_STATE(2229)] = 58076, - [SMALL_STATE(2230)] = 58145, - [SMALL_STATE(2231)] = 58270, - [SMALL_STATE(2232)] = 58339, - [SMALL_STATE(2233)] = 58408, - [SMALL_STATE(2234)] = 58477, - [SMALL_STATE(2235)] = 58546, - [SMALL_STATE(2236)] = 58671, - [SMALL_STATE(2237)] = 58740, - [SMALL_STATE(2238)] = 58809, - [SMALL_STATE(2239)] = 58934, - [SMALL_STATE(2240)] = 59003, - [SMALL_STATE(2241)] = 59072, - [SMALL_STATE(2242)] = 59141, - [SMALL_STATE(2243)] = 59210, - [SMALL_STATE(2244)] = 59279, - [SMALL_STATE(2245)] = 59348, - [SMALL_STATE(2246)] = 59417, - [SMALL_STATE(2247)] = 59486, - [SMALL_STATE(2248)] = 59555, - [SMALL_STATE(2249)] = 59624, - [SMALL_STATE(2250)] = 59735, - [SMALL_STATE(2251)] = 59804, - [SMALL_STATE(2252)] = 59877, - [SMALL_STATE(2253)] = 59950, - [SMALL_STATE(2254)] = 60023, - [SMALL_STATE(2255)] = 60092, - [SMALL_STATE(2256)] = 60217, - [SMALL_STATE(2257)] = 60286, - [SMALL_STATE(2258)] = 60355, - [SMALL_STATE(2259)] = 60424, - [SMALL_STATE(2260)] = 60493, - [SMALL_STATE(2261)] = 60562, - [SMALL_STATE(2262)] = 60687, - [SMALL_STATE(2263)] = 60756, - [SMALL_STATE(2264)] = 60825, - [SMALL_STATE(2265)] = 60894, - [SMALL_STATE(2266)] = 61019, - [SMALL_STATE(2267)] = 61088, - [SMALL_STATE(2268)] = 61157, - [SMALL_STATE(2269)] = 61226, - [SMALL_STATE(2270)] = 61295, - [SMALL_STATE(2271)] = 61364, - [SMALL_STATE(2272)] = 61433, - [SMALL_STATE(2273)] = 61502, - [SMALL_STATE(2274)] = 61571, - [SMALL_STATE(2275)] = 61640, - [SMALL_STATE(2276)] = 61709, - [SMALL_STATE(2277)] = 61778, - [SMALL_STATE(2278)] = 61847, - [SMALL_STATE(2279)] = 61916, - [SMALL_STATE(2280)] = 61985, - [SMALL_STATE(2281)] = 62054, - [SMALL_STATE(2282)] = 62123, - [SMALL_STATE(2283)] = 62192, - [SMALL_STATE(2284)] = 62261, - [SMALL_STATE(2285)] = 62330, - [SMALL_STATE(2286)] = 62401, - [SMALL_STATE(2287)] = 62472, - [SMALL_STATE(2288)] = 62541, - [SMALL_STATE(2289)] = 62610, - [SMALL_STATE(2290)] = 62679, - [SMALL_STATE(2291)] = 62764, - [SMALL_STATE(2292)] = 62833, - [SMALL_STATE(2293)] = 62902, - [SMALL_STATE(2294)] = 62971, - [SMALL_STATE(2295)] = 63062, - [SMALL_STATE(2296)] = 63137, - [SMALL_STATE(2297)] = 63218, - [SMALL_STATE(2298)] = 63295, - [SMALL_STATE(2299)] = 63398, - [SMALL_STATE(2300)] = 63499, - [SMALL_STATE(2301)] = 63596, - [SMALL_STATE(2302)] = 63691, - [SMALL_STATE(2303)] = 63784, - [SMALL_STATE(2304)] = 63873, - [SMALL_STATE(2305)] = 63956, - [SMALL_STATE(2306)] = 64039, - [SMALL_STATE(2307)] = 64108, - [SMALL_STATE(2308)] = 64177, - [SMALL_STATE(2309)] = 64246, - [SMALL_STATE(2310)] = 64315, - [SMALL_STATE(2311)] = 64386, - [SMALL_STATE(2312)] = 64511, - [SMALL_STATE(2313)] = 64582, - [SMALL_STATE(2314)] = 64651, - [SMALL_STATE(2315)] = 64720, - [SMALL_STATE(2316)] = 64789, - [SMALL_STATE(2317)] = 64858, - [SMALL_STATE(2318)] = 64932, - [SMALL_STATE(2319)] = 65000, - [SMALL_STATE(2320)] = 65068, - [SMALL_STATE(2321)] = 65136, - [SMALL_STATE(2322)] = 65204, - [SMALL_STATE(2323)] = 65272, - [SMALL_STATE(2324)] = 65340, - [SMALL_STATE(2325)] = 65408, - [SMALL_STATE(2326)] = 65476, - [SMALL_STATE(2327)] = 65544, - [SMALL_STATE(2328)] = 65612, - [SMALL_STATE(2329)] = 65684, - [SMALL_STATE(2330)] = 65752, - [SMALL_STATE(2331)] = 65820, - [SMALL_STATE(2332)] = 65892, - [SMALL_STATE(2333)] = 65960, - [SMALL_STATE(2334)] = 66028, - [SMALL_STATE(2335)] = 66096, - [SMALL_STATE(2336)] = 66164, - [SMALL_STATE(2337)] = 66232, - [SMALL_STATE(2338)] = 66300, - [SMALL_STATE(2339)] = 66368, - [SMALL_STATE(2340)] = 66436, - [SMALL_STATE(2341)] = 66504, - [SMALL_STATE(2342)] = 66572, - [SMALL_STATE(2343)] = 66640, - [SMALL_STATE(2344)] = 66708, - [SMALL_STATE(2345)] = 66812, - [SMALL_STATE(2346)] = 66880, - [SMALL_STATE(2347)] = 66948, - [SMALL_STATE(2348)] = 67016, - [SMALL_STATE(2349)] = 67124, - [SMALL_STATE(2350)] = 67232, - [SMALL_STATE(2351)] = 67338, - [SMALL_STATE(2352)] = 67406, - [SMALL_STATE(2353)] = 67474, - [SMALL_STATE(2354)] = 67542, - [SMALL_STATE(2355)] = 67610, - [SMALL_STATE(2356)] = 67678, - [SMALL_STATE(2357)] = 67746, - [SMALL_STATE(2358)] = 67814, - [SMALL_STATE(2359)] = 67882, - [SMALL_STATE(2360)] = 67954, - [SMALL_STATE(2361)] = 68022, - [SMALL_STATE(2362)] = 68090, - [SMALL_STATE(2363)] = 68158, - [SMALL_STATE(2364)] = 68226, - [SMALL_STATE(2365)] = 68294, - [SMALL_STATE(2366)] = 68366, - [SMALL_STATE(2367)] = 68438, - [SMALL_STATE(2368)] = 68506, - [SMALL_STATE(2369)] = 68574, - [SMALL_STATE(2370)] = 68642, - [SMALL_STATE(2371)] = 68710, - [SMALL_STATE(2372)] = 68778, - [SMALL_STATE(2373)] = 68846, - [SMALL_STATE(2374)] = 68914, - [SMALL_STATE(2375)] = 68982, - [SMALL_STATE(2376)] = 69050, - [SMALL_STATE(2377)] = 69118, - [SMALL_STATE(2378)] = 69186, - [SMALL_STATE(2379)] = 69254, - [SMALL_STATE(2380)] = 69322, - [SMALL_STATE(2381)] = 69390, - [SMALL_STATE(2382)] = 69458, - [SMALL_STATE(2383)] = 69530, - [SMALL_STATE(2384)] = 69614, - [SMALL_STATE(2385)] = 69704, - [SMALL_STATE(2386)] = 69778, - [SMALL_STATE(2387)] = 69858, - [SMALL_STATE(2388)] = 69934, - [SMALL_STATE(2389)] = 70036, - [SMALL_STATE(2390)] = 70136, - [SMALL_STATE(2391)] = 70232, - [SMALL_STATE(2392)] = 70326, - [SMALL_STATE(2393)] = 70418, - [SMALL_STATE(2394)] = 70506, - [SMALL_STATE(2395)] = 70588, - [SMALL_STATE(2396)] = 70670, - [SMALL_STATE(2397)] = 70738, - [SMALL_STATE(2398)] = 70806, - [SMALL_STATE(2399)] = 70874, - [SMALL_STATE(2400)] = 70942, - [SMALL_STATE(2401)] = 71014, - [SMALL_STATE(2402)] = 71086, - [SMALL_STATE(2403)] = 71158, - [SMALL_STATE(2404)] = 71228, - [SMALL_STATE(2405)] = 71296, - [SMALL_STATE(2406)] = 71364, - [SMALL_STATE(2407)] = 71432, - [SMALL_STATE(2408)] = 71502, - [SMALL_STATE(2409)] = 71570, - [SMALL_STATE(2410)] = 71642, - [SMALL_STATE(2411)] = 71710, - [SMALL_STATE(2412)] = 71778, - [SMALL_STATE(2413)] = 71846, - [SMALL_STATE(2414)] = 71918, - [SMALL_STATE(2415)] = 71986, - [SMALL_STATE(2416)] = 72054, - [SMALL_STATE(2417)] = 72122, - [SMALL_STATE(2418)] = 72190, - [SMALL_STATE(2419)] = 72258, - [SMALL_STATE(2420)] = 72368, - [SMALL_STATE(2421)] = 72436, - [SMALL_STATE(2422)] = 72508, - [SMALL_STATE(2423)] = 72576, - [SMALL_STATE(2424)] = 72644, - [SMALL_STATE(2425)] = 72758, - [SMALL_STATE(2426)] = 72826, - [SMALL_STATE(2427)] = 72898, - [SMALL_STATE(2428)] = 72970, - [SMALL_STATE(2429)] = 73038, - [SMALL_STATE(2430)] = 73106, - [SMALL_STATE(2431)] = 73174, - [SMALL_STATE(2432)] = 73248, - [SMALL_STATE(2433)] = 73322, - [SMALL_STATE(2434)] = 73390, - [SMALL_STATE(2435)] = 73458, - [SMALL_STATE(2436)] = 73526, - [SMALL_STATE(2437)] = 73594, - [SMALL_STATE(2438)] = 73662, - [SMALL_STATE(2439)] = 73730, - [SMALL_STATE(2440)] = 73798, - [SMALL_STATE(2441)] = 73866, - [SMALL_STATE(2442)] = 73938, - [SMALL_STATE(2443)] = 74006, - [SMALL_STATE(2444)] = 74080, - [SMALL_STATE(2445)] = 74148, - [SMALL_STATE(2446)] = 74216, - [SMALL_STATE(2447)] = 74284, - [SMALL_STATE(2448)] = 74356, - [SMALL_STATE(2449)] = 74424, - [SMALL_STATE(2450)] = 74496, - [SMALL_STATE(2451)] = 74564, - [SMALL_STATE(2452)] = 74674, - [SMALL_STATE(2453)] = 74742, - [SMALL_STATE(2454)] = 74810, - [SMALL_STATE(2455)] = 74878, - [SMALL_STATE(2456)] = 74946, - [SMALL_STATE(2457)] = 75014, - [SMALL_STATE(2458)] = 75082, - [SMALL_STATE(2459)] = 75150, - [SMALL_STATE(2460)] = 75218, - [SMALL_STATE(2461)] = 75286, - [SMALL_STATE(2462)] = 75354, - [SMALL_STATE(2463)] = 75468, - [SMALL_STATE(2464)] = 75536, - [SMALL_STATE(2465)] = 75604, - [SMALL_STATE(2466)] = 75672, - [SMALL_STATE(2467)] = 75740, - [SMALL_STATE(2468)] = 75808, - [SMALL_STATE(2469)] = 75880, - [SMALL_STATE(2470)] = 75950, - [SMALL_STATE(2471)] = 76020, - [SMALL_STATE(2472)] = 76088, - [SMALL_STATE(2473)] = 76156, - [SMALL_STATE(2474)] = 76224, - [SMALL_STATE(2475)] = 76292, - [SMALL_STATE(2476)] = 76360, - [SMALL_STATE(2477)] = 76428, - [SMALL_STATE(2478)] = 76496, - [SMALL_STATE(2479)] = 76564, - [SMALL_STATE(2480)] = 76632, - [SMALL_STATE(2481)] = 76700, - [SMALL_STATE(2482)] = 76770, - [SMALL_STATE(2483)] = 76838, - [SMALL_STATE(2484)] = 76906, - [SMALL_STATE(2485)] = 76974, - [SMALL_STATE(2486)] = 77042, - [SMALL_STATE(2487)] = 77110, - [SMALL_STATE(2488)] = 77178, - [SMALL_STATE(2489)] = 77246, - [SMALL_STATE(2490)] = 77316, - [SMALL_STATE(2491)] = 77388, - [SMALL_STATE(2492)] = 77456, - [SMALL_STATE(2493)] = 77524, - [SMALL_STATE(2494)] = 77633, - [SMALL_STATE(2495)] = 77700, - [SMALL_STATE(2496)] = 77767, - [SMALL_STATE(2497)] = 77834, - [SMALL_STATE(2498)] = 77901, - [SMALL_STATE(2499)] = 77968, - [SMALL_STATE(2500)] = 78035, - [SMALL_STATE(2501)] = 78102, - [SMALL_STATE(2502)] = 78169, - [SMALL_STATE(2503)] = 78236, - [SMALL_STATE(2504)] = 78303, - [SMALL_STATE(2505)] = 78370, - [SMALL_STATE(2506)] = 78437, - [SMALL_STATE(2507)] = 78504, - [SMALL_STATE(2508)] = 78571, - [SMALL_STATE(2509)] = 78638, - [SMALL_STATE(2510)] = 78709, - [SMALL_STATE(2511)] = 78776, - [SMALL_STATE(2512)] = 78843, - [SMALL_STATE(2513)] = 78910, - [SMALL_STATE(2514)] = 78977, - [SMALL_STATE(2515)] = 79044, - [SMALL_STATE(2516)] = 79111, - [SMALL_STATE(2517)] = 79178, - [SMALL_STATE(2518)] = 79245, - [SMALL_STATE(2519)] = 79312, - [SMALL_STATE(2520)] = 79379, - [SMALL_STATE(2521)] = 79446, - [SMALL_STATE(2522)] = 79513, - [SMALL_STATE(2523)] = 79580, - [SMALL_STATE(2524)] = 79647, - [SMALL_STATE(2525)] = 79714, - [SMALL_STATE(2526)] = 79781, - [SMALL_STATE(2527)] = 79848, - [SMALL_STATE(2528)] = 79915, - [SMALL_STATE(2529)] = 79982, - [SMALL_STATE(2530)] = 80051, - [SMALL_STATE(2531)] = 80120, - [SMALL_STATE(2532)] = 80223, - [SMALL_STATE(2533)] = 80330, - [SMALL_STATE(2534)] = 80437, - [SMALL_STATE(2535)] = 80542, - [SMALL_STATE(2536)] = 80609, - [SMALL_STATE(2537)] = 80676, - [SMALL_STATE(2538)] = 80743, - [SMALL_STATE(2539)] = 80810, - [SMALL_STATE(2540)] = 80877, - [SMALL_STATE(2541)] = 80944, - [SMALL_STATE(2542)] = 81011, - [SMALL_STATE(2543)] = 81078, - [SMALL_STATE(2544)] = 81145, - [SMALL_STATE(2545)] = 81212, - [SMALL_STATE(2546)] = 81279, - [SMALL_STATE(2547)] = 81346, - [SMALL_STATE(2548)] = 81413, - [SMALL_STATE(2549)] = 81480, - [SMALL_STATE(2550)] = 81547, - [SMALL_STATE(2551)] = 81614, - [SMALL_STATE(2552)] = 81681, - [SMALL_STATE(2553)] = 81750, - [SMALL_STATE(2554)] = 81819, - [SMALL_STATE(2555)] = 81888, - [SMALL_STATE(2556)] = 81955, - [SMALL_STATE(2557)] = 82022, - [SMALL_STATE(2558)] = 82089, - [SMALL_STATE(2559)] = 82156, - [SMALL_STATE(2560)] = 82223, - [SMALL_STATE(2561)] = 82290, - [SMALL_STATE(2562)] = 82357, - [SMALL_STATE(2563)] = 82424, - [SMALL_STATE(2564)] = 82491, - [SMALL_STATE(2565)] = 82558, - [SMALL_STATE(2566)] = 82625, - [SMALL_STATE(2567)] = 82696, - [SMALL_STATE(2568)] = 82763, - [SMALL_STATE(2569)] = 82830, - [SMALL_STATE(2570)] = 82899, - [SMALL_STATE(2571)] = 82968, - [SMALL_STATE(2572)] = 83035, - [SMALL_STATE(2573)] = 83102, - [SMALL_STATE(2574)] = 83171, - [SMALL_STATE(2575)] = 83240, - [SMALL_STATE(2576)] = 83307, - [SMALL_STATE(2577)] = 83374, - [SMALL_STATE(2578)] = 83441, - [SMALL_STATE(2579)] = 83508, - [SMALL_STATE(2580)] = 83575, - [SMALL_STATE(2581)] = 83642, - [SMALL_STATE(2582)] = 83709, - [SMALL_STATE(2583)] = 83776, - [SMALL_STATE(2584)] = 83843, - [SMALL_STATE(2585)] = 83910, - [SMALL_STATE(2586)] = 83977, - [SMALL_STATE(2587)] = 84044, - [SMALL_STATE(2588)] = 84111, - [SMALL_STATE(2589)] = 84178, - [SMALL_STATE(2590)] = 84245, - [SMALL_STATE(2591)] = 84312, - [SMALL_STATE(2592)] = 84379, - [SMALL_STATE(2593)] = 84446, - [SMALL_STATE(2594)] = 84513, - [SMALL_STATE(2595)] = 84580, - [SMALL_STATE(2596)] = 84647, - [SMALL_STATE(2597)] = 84714, - [SMALL_STATE(2598)] = 84781, - [SMALL_STATE(2599)] = 84848, - [SMALL_STATE(2600)] = 84915, - [SMALL_STATE(2601)] = 84982, - [SMALL_STATE(2602)] = 85049, - [SMALL_STATE(2603)] = 85116, - [SMALL_STATE(2604)] = 85183, - [SMALL_STATE(2605)] = 85250, - [SMALL_STATE(2606)] = 85317, - [SMALL_STATE(2607)] = 85384, - [SMALL_STATE(2608)] = 85451, - [SMALL_STATE(2609)] = 85518, - [SMALL_STATE(2610)] = 85585, - [SMALL_STATE(2611)] = 85652, - [SMALL_STATE(2612)] = 85719, - [SMALL_STATE(2613)] = 85786, - [SMALL_STATE(2614)] = 85853, - [SMALL_STATE(2615)] = 85920, - [SMALL_STATE(2616)] = 85987, - [SMALL_STATE(2617)] = 86054, - [SMALL_STATE(2618)] = 86121, - [SMALL_STATE(2619)] = 86188, - [SMALL_STATE(2620)] = 86255, - [SMALL_STATE(2621)] = 86322, - [SMALL_STATE(2622)] = 86389, - [SMALL_STATE(2623)] = 86456, - [SMALL_STATE(2624)] = 86523, - [SMALL_STATE(2625)] = 86590, - [SMALL_STATE(2626)] = 86663, - [SMALL_STATE(2627)] = 86736, - [SMALL_STATE(2628)] = 86845, - [SMALL_STATE(2629)] = 86914, - [SMALL_STATE(2630)] = 86983, - [SMALL_STATE(2631)] = 87050, - [SMALL_STATE(2632)] = 87117, - [SMALL_STATE(2633)] = 87230, - [SMALL_STATE(2634)] = 87299, - [SMALL_STATE(2635)] = 87368, - [SMALL_STATE(2636)] = 87441, - [SMALL_STATE(2637)] = 87514, - [SMALL_STATE(2638)] = 87587, - [SMALL_STATE(2639)] = 87654, - [SMALL_STATE(2640)] = 87721, - [SMALL_STATE(2641)] = 87788, - [SMALL_STATE(2642)] = 87855, - [SMALL_STATE(2643)] = 87922, - [SMALL_STATE(2644)] = 87989, - [SMALL_STATE(2645)] = 88056, - [SMALL_STATE(2646)] = 88123, - [SMALL_STATE(2647)] = 88190, - [SMALL_STATE(2648)] = 88257, - [SMALL_STATE(2649)] = 88324, - [SMALL_STATE(2650)] = 88391, - [SMALL_STATE(2651)] = 88458, - [SMALL_STATE(2652)] = 88525, - [SMALL_STATE(2653)] = 88592, - [SMALL_STATE(2654)] = 88659, - [SMALL_STATE(2655)] = 88726, - [SMALL_STATE(2656)] = 88793, - [SMALL_STATE(2657)] = 88860, - [SMALL_STATE(2658)] = 88927, - [SMALL_STATE(2659)] = 88994, - [SMALL_STATE(2660)] = 89061, - [SMALL_STATE(2661)] = 89128, - [SMALL_STATE(2662)] = 89195, - [SMALL_STATE(2663)] = 89262, - [SMALL_STATE(2664)] = 89329, - [SMALL_STATE(2665)] = 89396, - [SMALL_STATE(2666)] = 89463, - [SMALL_STATE(2667)] = 89530, - [SMALL_STATE(2668)] = 89597, - [SMALL_STATE(2669)] = 89664, - [SMALL_STATE(2670)] = 89731, - [SMALL_STATE(2671)] = 89798, - [SMALL_STATE(2672)] = 89865, - [SMALL_STATE(2673)] = 89932, - [SMALL_STATE(2674)] = 89999, - [SMALL_STATE(2675)] = 90066, - [SMALL_STATE(2676)] = 90133, - [SMALL_STATE(2677)] = 90200, - [SMALL_STATE(2678)] = 90267, - [SMALL_STATE(2679)] = 90334, - [SMALL_STATE(2680)] = 90401, - [SMALL_STATE(2681)] = 90468, - [SMALL_STATE(2682)] = 90535, - [SMALL_STATE(2683)] = 90602, - [SMALL_STATE(2684)] = 90669, - [SMALL_STATE(2685)] = 90736, - [SMALL_STATE(2686)] = 90803, - [SMALL_STATE(2687)] = 90912, - [SMALL_STATE(2688)] = 90979, - [SMALL_STATE(2689)] = 91046, - [SMALL_STATE(2690)] = 91113, - [SMALL_STATE(2691)] = 91180, - [SMALL_STATE(2692)] = 91249, - [SMALL_STATE(2693)] = 91318, - [SMALL_STATE(2694)] = 91385, - [SMALL_STATE(2695)] = 91452, - [SMALL_STATE(2696)] = 91519, - [SMALL_STATE(2697)] = 91586, - [SMALL_STATE(2698)] = 91653, - [SMALL_STATE(2699)] = 91720, - [SMALL_STATE(2700)] = 91787, - [SMALL_STATE(2701)] = 91854, - [SMALL_STATE(2702)] = 91921, - [SMALL_STATE(2703)] = 91988, - [SMALL_STATE(2704)] = 92055, - [SMALL_STATE(2705)] = 92122, - [SMALL_STATE(2706)] = 92189, - [SMALL_STATE(2707)] = 92256, - [SMALL_STATE(2708)] = 92323, - [SMALL_STATE(2709)] = 92390, - [SMALL_STATE(2710)] = 92457, - [SMALL_STATE(2711)] = 92524, - [SMALL_STATE(2712)] = 92591, - [SMALL_STATE(2713)] = 92658, - [SMALL_STATE(2714)] = 92725, - [SMALL_STATE(2715)] = 92792, - [SMALL_STATE(2716)] = 92859, - [SMALL_STATE(2717)] = 92926, - [SMALL_STATE(2718)] = 92993, - [SMALL_STATE(2719)] = 93060, - [SMALL_STATE(2720)] = 93127, - [SMALL_STATE(2721)] = 93194, - [SMALL_STATE(2722)] = 93261, - [SMALL_STATE(2723)] = 93328, - [SMALL_STATE(2724)] = 93395, - [SMALL_STATE(2725)] = 93462, - [SMALL_STATE(2726)] = 93529, - [SMALL_STATE(2727)] = 93596, - [SMALL_STATE(2728)] = 93663, - [SMALL_STATE(2729)] = 93730, - [SMALL_STATE(2730)] = 93797, - [SMALL_STATE(2731)] = 93864, - [SMALL_STATE(2732)] = 93931, - [SMALL_STATE(2733)] = 93998, - [SMALL_STATE(2734)] = 94065, - [SMALL_STATE(2735)] = 94132, - [SMALL_STATE(2736)] = 94199, - [SMALL_STATE(2737)] = 94266, - [SMALL_STATE(2738)] = 94333, - [SMALL_STATE(2739)] = 94400, - [SMALL_STATE(2740)] = 94467, - [SMALL_STATE(2741)] = 94534, - [SMALL_STATE(2742)] = 94601, - [SMALL_STATE(2743)] = 94668, - [SMALL_STATE(2744)] = 94735, - [SMALL_STATE(2745)] = 94806, - [SMALL_STATE(2746)] = 94889, - [SMALL_STATE(2747)] = 94978, - [SMALL_STATE(2748)] = 95051, - [SMALL_STATE(2749)] = 95130, - [SMALL_STATE(2750)] = 95205, - [SMALL_STATE(2751)] = 95306, - [SMALL_STATE(2752)] = 95405, - [SMALL_STATE(2753)] = 95500, - [SMALL_STATE(2754)] = 95593, - [SMALL_STATE(2755)] = 95684, - [SMALL_STATE(2756)] = 95771, - [SMALL_STATE(2757)] = 95852, - [SMALL_STATE(2758)] = 95933, - [SMALL_STATE(2759)] = 96042, - [SMALL_STATE(2760)] = 96109, - [SMALL_STATE(2761)] = 96180, - [SMALL_STATE(2762)] = 96247, - [SMALL_STATE(2763)] = 96320, - [SMALL_STATE(2764)] = 96387, - [SMALL_STATE(2765)] = 96454, - [SMALL_STATE(2766)] = 96525, - [SMALL_STATE(2767)] = 96634, - [SMALL_STATE(2768)] = 96701, - [SMALL_STATE(2769)] = 96768, - [SMALL_STATE(2770)] = 96871, - [SMALL_STATE(2771)] = 96978, - [SMALL_STATE(2772)] = 97085, - [SMALL_STATE(2773)] = 97190, - [SMALL_STATE(2774)] = 97257, - [SMALL_STATE(2775)] = 97324, - [SMALL_STATE(2776)] = 97391, - [SMALL_STATE(2777)] = 97462, - [SMALL_STATE(2778)] = 97533, - [SMALL_STATE(2779)] = 97600, - [SMALL_STATE(2780)] = 97667, - [SMALL_STATE(2781)] = 97734, - [SMALL_STATE(2782)] = 97801, - [SMALL_STATE(2783)] = 97868, - [SMALL_STATE(2784)] = 97935, - [SMALL_STATE(2785)] = 98002, - [SMALL_STATE(2786)] = 98069, - [SMALL_STATE(2787)] = 98136, - [SMALL_STATE(2788)] = 98203, - [SMALL_STATE(2789)] = 98270, - [SMALL_STATE(2790)] = 98337, - [SMALL_STATE(2791)] = 98404, - [SMALL_STATE(2792)] = 98471, - [SMALL_STATE(2793)] = 98538, - [SMALL_STATE(2794)] = 98605, - [SMALL_STATE(2795)] = 98672, - [SMALL_STATE(2796)] = 98739, - [SMALL_STATE(2797)] = 98806, - [SMALL_STATE(2798)] = 98873, - [SMALL_STATE(2799)] = 98940, - [SMALL_STATE(2800)] = 99007, - [SMALL_STATE(2801)] = 99074, - [SMALL_STATE(2802)] = 99141, - [SMALL_STATE(2803)] = 99208, - [SMALL_STATE(2804)] = 99275, - [SMALL_STATE(2805)] = 99342, - [SMALL_STATE(2806)] = 99409, - [SMALL_STATE(2807)] = 99476, - [SMALL_STATE(2808)] = 99543, - [SMALL_STATE(2809)] = 99610, - [SMALL_STATE(2810)] = 99677, - [SMALL_STATE(2811)] = 99744, - [SMALL_STATE(2812)] = 99811, - [SMALL_STATE(2813)] = 99878, - [SMALL_STATE(2814)] = 99945, - [SMALL_STATE(2815)] = 100012, - [SMALL_STATE(2816)] = 100079, - [SMALL_STATE(2817)] = 100146, - [SMALL_STATE(2818)] = 100213, - [SMALL_STATE(2819)] = 100280, - [SMALL_STATE(2820)] = 100347, - [SMALL_STATE(2821)] = 100414, - [SMALL_STATE(2822)] = 100481, - [SMALL_STATE(2823)] = 100548, - [SMALL_STATE(2824)] = 100615, - [SMALL_STATE(2825)] = 100682, - [SMALL_STATE(2826)] = 100749, - [SMALL_STATE(2827)] = 100816, - [SMALL_STATE(2828)] = 100883, - [SMALL_STATE(2829)] = 100950, - [SMALL_STATE(2830)] = 101063, - [SMALL_STATE(2831)] = 101132, - [SMALL_STATE(2832)] = 101201, - [SMALL_STATE(2833)] = 101270, - [SMALL_STATE(2834)] = 101337, - [SMALL_STATE(2835)] = 101404, - [SMALL_STATE(2836)] = 101471, - [SMALL_STATE(2837)] = 101580, - [SMALL_STATE(2838)] = 101649, - [SMALL_STATE(2839)] = 101718, - [SMALL_STATE(2840)] = 101785, - [SMALL_STATE(2841)] = 101856, - [SMALL_STATE(2842)] = 101923, - [SMALL_STATE(2843)] = 101990, - [SMALL_STATE(2844)] = 102103, - [SMALL_STATE(2845)] = 102170, - [SMALL_STATE(2846)] = 102237, - [SMALL_STATE(2847)] = 102304, - [SMALL_STATE(2848)] = 102371, - [SMALL_STATE(2849)] = 102438, - [SMALL_STATE(2850)] = 102505, - [SMALL_STATE(2851)] = 102572, - [SMALL_STATE(2852)] = 102639, - [SMALL_STATE(2853)] = 102706, - [SMALL_STATE(2854)] = 102773, - [SMALL_STATE(2855)] = 102840, - [SMALL_STATE(2856)] = 102907, - [SMALL_STATE(2857)] = 102974, - [SMALL_STATE(2858)] = 103041, - [SMALL_STATE(2859)] = 103108, - [SMALL_STATE(2860)] = 103175, - [SMALL_STATE(2861)] = 103242, - [SMALL_STATE(2862)] = 103309, - [SMALL_STATE(2863)] = 103376, - [SMALL_STATE(2864)] = 103443, - [SMALL_STATE(2865)] = 103510, - [SMALL_STATE(2866)] = 103577, - [SMALL_STATE(2867)] = 103644, - [SMALL_STATE(2868)] = 103711, - [SMALL_STATE(2869)] = 103778, - [SMALL_STATE(2870)] = 103845, - [SMALL_STATE(2871)] = 103912, - [SMALL_STATE(2872)] = 103979, - [SMALL_STATE(2873)] = 104046, - [SMALL_STATE(2874)] = 104113, - [SMALL_STATE(2875)] = 104180, - [SMALL_STATE(2876)] = 104247, - [SMALL_STATE(2877)] = 104314, - [SMALL_STATE(2878)] = 104381, - [SMALL_STATE(2879)] = 104448, - [SMALL_STATE(2880)] = 104515, - [SMALL_STATE(2881)] = 104582, - [SMALL_STATE(2882)] = 104649, - [SMALL_STATE(2883)] = 104716, - [SMALL_STATE(2884)] = 104783, - [SMALL_STATE(2885)] = 104850, - [SMALL_STATE(2886)] = 104917, - [SMALL_STATE(2887)] = 104984, - [SMALL_STATE(2888)] = 105051, - [SMALL_STATE(2889)] = 105118, - [SMALL_STATE(2890)] = 105185, - [SMALL_STATE(2891)] = 105252, - [SMALL_STATE(2892)] = 105319, - [SMALL_STATE(2893)] = 105386, - [SMALL_STATE(2894)] = 105453, - [SMALL_STATE(2895)] = 105520, - [SMALL_STATE(2896)] = 105587, - [SMALL_STATE(2897)] = 105654, - [SMALL_STATE(2898)] = 105721, - [SMALL_STATE(2899)] = 105788, - [SMALL_STATE(2900)] = 105855, - [SMALL_STATE(2901)] = 105922, - [SMALL_STATE(2902)] = 106031, - [SMALL_STATE(2903)] = 106144, - [SMALL_STATE(2904)] = 106217, - [SMALL_STATE(2905)] = 106290, - [SMALL_STATE(2906)] = 106363, - [SMALL_STATE(2907)] = 106432, - [SMALL_STATE(2908)] = 106501, - [SMALL_STATE(2909)] = 106572, - [SMALL_STATE(2910)] = 106643, - [SMALL_STATE(2911)] = 106714, - [SMALL_STATE(2912)] = 106783, - [SMALL_STATE(2913)] = 106852, - [SMALL_STATE(2914)] = 106923, - [SMALL_STATE(2915)] = 107032, - [SMALL_STATE(2916)] = 107103, - [SMALL_STATE(2917)] = 107174, - [SMALL_STATE(2918)] = 107245, - [SMALL_STATE(2919)] = 107316, - [SMALL_STATE(2920)] = 107387, - [SMALL_STATE(2921)] = 107470, - [SMALL_STATE(2922)] = 107559, - [SMALL_STATE(2923)] = 107632, - [SMALL_STATE(2924)] = 107711, - [SMALL_STATE(2925)] = 107786, - [SMALL_STATE(2926)] = 107887, - [SMALL_STATE(2927)] = 107986, - [SMALL_STATE(2928)] = 108081, - [SMALL_STATE(2929)] = 108174, - [SMALL_STATE(2930)] = 108265, - [SMALL_STATE(2931)] = 108352, - [SMALL_STATE(2932)] = 108433, - [SMALL_STATE(2933)] = 108514, - [SMALL_STATE(2934)] = 108585, - [SMALL_STATE(2935)] = 108652, - [SMALL_STATE(2936)] = 108723, - [SMALL_STATE(2937)] = 108790, - [SMALL_STATE(2938)] = 108857, - [SMALL_STATE(2939)] = 108928, - [SMALL_STATE(2940)] = 108995, - [SMALL_STATE(2941)] = 109066, - [SMALL_STATE(2942)] = 109137, - [SMALL_STATE(2943)] = 109204, - [SMALL_STATE(2944)] = 109271, - [SMALL_STATE(2945)] = 109338, - [SMALL_STATE(2946)] = 109447, - [SMALL_STATE(2947)] = 109514, - [SMALL_STATE(2948)] = 109581, - [SMALL_STATE(2949)] = 109648, - [SMALL_STATE(2950)] = 109715, - [SMALL_STATE(2951)] = 109798, - [SMALL_STATE(2952)] = 109887, - [SMALL_STATE(2953)] = 109990, - [SMALL_STATE(2954)] = 110063, - [SMALL_STATE(2955)] = 110142, - [SMALL_STATE(2956)] = 110217, - [SMALL_STATE(2957)] = 110324, - [SMALL_STATE(2958)] = 110431, - [SMALL_STATE(2959)] = 110536, - [SMALL_STATE(2960)] = 110637, - [SMALL_STATE(2961)] = 110736, - [SMALL_STATE(2962)] = 110831, - [SMALL_STATE(2963)] = 110924, - [SMALL_STATE(2964)] = 111015, - [SMALL_STATE(2965)] = 111102, - [SMALL_STATE(2966)] = 111183, - [SMALL_STATE(2967)] = 111264, - [SMALL_STATE(2968)] = 111333, - [SMALL_STATE(2969)] = 111402, - [SMALL_STATE(2970)] = 111469, - [SMALL_STATE(2971)] = 111536, - [SMALL_STATE(2972)] = 111603, - [SMALL_STATE(2973)] = 111670, - [SMALL_STATE(2974)] = 111737, - [SMALL_STATE(2975)] = 111808, - [SMALL_STATE(2976)] = 111879, - [SMALL_STATE(2977)] = 111950, - [SMALL_STATE(2978)] = 112017, - [SMALL_STATE(2979)] = 112090, - [SMALL_STATE(2980)] = 112156, - [SMALL_STATE(2981)] = 112222, - [SMALL_STATE(2982)] = 112288, - [SMALL_STATE(2983)] = 112354, - [SMALL_STATE(2984)] = 112436, - [SMALL_STATE(2985)] = 112524, - [SMALL_STATE(2986)] = 112626, - [SMALL_STATE(2987)] = 112698, - [SMALL_STATE(2988)] = 112776, - [SMALL_STATE(2989)] = 112850, - [SMALL_STATE(2990)] = 112956, - [SMALL_STATE(2991)] = 113062, - [SMALL_STATE(2992)] = 113166, - [SMALL_STATE(2993)] = 113266, - [SMALL_STATE(2994)] = 113364, - [SMALL_STATE(2995)] = 113458, - [SMALL_STATE(2996)] = 113550, - [SMALL_STATE(2997)] = 113640, - [SMALL_STATE(2998)] = 113726, - [SMALL_STATE(2999)] = 113806, - [SMALL_STATE(3000)] = 113886, - [SMALL_STATE(3001)] = 113952, - [SMALL_STATE(3002)] = 114018, - [SMALL_STATE(3003)] = 114084, - [SMALL_STATE(3004)] = 114150, - [SMALL_STATE(3005)] = 114216, - [SMALL_STATE(3006)] = 114282, - [SMALL_STATE(3007)] = 114348, - [SMALL_STATE(3008)] = 114414, - [SMALL_STATE(3009)] = 114480, - [SMALL_STATE(3010)] = 114546, - [SMALL_STATE(3011)] = 114612, - [SMALL_STATE(3012)] = 114678, - [SMALL_STATE(3013)] = 114744, - [SMALL_STATE(3014)] = 114810, - [SMALL_STATE(3015)] = 114876, - [SMALL_STATE(3016)] = 114942, - [SMALL_STATE(3017)] = 115008, - [SMALL_STATE(3018)] = 115074, - [SMALL_STATE(3019)] = 115140, - [SMALL_STATE(3020)] = 115206, - [SMALL_STATE(3021)] = 115272, - [SMALL_STATE(3022)] = 115338, - [SMALL_STATE(3023)] = 115404, - [SMALL_STATE(3024)] = 115474, - [SMALL_STATE(3025)] = 115540, - [SMALL_STATE(3026)] = 115606, - [SMALL_STATE(3027)] = 115672, - [SMALL_STATE(3028)] = 115738, - [SMALL_STATE(3029)] = 115804, - [SMALL_STATE(3030)] = 115870, - [SMALL_STATE(3031)] = 115938, - [SMALL_STATE(3032)] = 116006, - [SMALL_STATE(3033)] = 116072, - [SMALL_STATE(3034)] = 116140, - [SMALL_STATE(3035)] = 116206, - [SMALL_STATE(3036)] = 116272, - [SMALL_STATE(3037)] = 116338, - [SMALL_STATE(3038)] = 116404, - [SMALL_STATE(3039)] = 116470, - [SMALL_STATE(3040)] = 116536, - [SMALL_STATE(3041)] = 116602, - [SMALL_STATE(3042)] = 116684, - [SMALL_STATE(3043)] = 116772, - [SMALL_STATE(3044)] = 116844, - [SMALL_STATE(3045)] = 116922, - [SMALL_STATE(3046)] = 116996, - [SMALL_STATE(3047)] = 117096, - [SMALL_STATE(3048)] = 117194, - [SMALL_STATE(3049)] = 117288, - [SMALL_STATE(3050)] = 117380, - [SMALL_STATE(3051)] = 117470, - [SMALL_STATE(3052)] = 117556, - [SMALL_STATE(3053)] = 117626, - [SMALL_STATE(3054)] = 117706, - [SMALL_STATE(3055)] = 117786, - [SMALL_STATE(3056)] = 117852, - [SMALL_STATE(3057)] = 117918, - [SMALL_STATE(3058)] = 117984, - [SMALL_STATE(3059)] = 118050, - [SMALL_STATE(3060)] = 118116, - [SMALL_STATE(3061)] = 118182, - [SMALL_STATE(3062)] = 118248, - [SMALL_STATE(3063)] = 118314, - [SMALL_STATE(3064)] = 118380, - [SMALL_STATE(3065)] = 118446, - [SMALL_STATE(3066)] = 118512, - [SMALL_STATE(3067)] = 118578, - [SMALL_STATE(3068)] = 118648, - [SMALL_STATE(3069)] = 118714, - [SMALL_STATE(3070)] = 118780, - [SMALL_STATE(3071)] = 118846, - [SMALL_STATE(3072)] = 118948, - [SMALL_STATE(3073)] = 119054, - [SMALL_STATE(3074)] = 119160, - [SMALL_STATE(3075)] = 119264, - [SMALL_STATE(3076)] = 119330, - [SMALL_STATE(3077)] = 119396, - [SMALL_STATE(3078)] = 119508, - [SMALL_STATE(3079)] = 119574, - [SMALL_STATE(3080)] = 119646, - [SMALL_STATE(3081)] = 119718, - [SMALL_STATE(3082)] = 119784, - [SMALL_STATE(3083)] = 119850, - [SMALL_STATE(3084)] = 119916, - [SMALL_STATE(3085)] = 119988, - [SMALL_STATE(3086)] = 120054, - [SMALL_STATE(3087)] = 120120, - [SMALL_STATE(3088)] = 120186, - [SMALL_STATE(3089)] = 120252, - [SMALL_STATE(3090)] = 120318, - [SMALL_STATE(3091)] = 120384, - [SMALL_STATE(3092)] = 120450, - [SMALL_STATE(3093)] = 120516, - [SMALL_STATE(3094)] = 120582, - [SMALL_STATE(3095)] = 120648, - [SMALL_STATE(3096)] = 120714, - [SMALL_STATE(3097)] = 120784, - [SMALL_STATE(3098)] = 120850, - [SMALL_STATE(3099)] = 120916, - [SMALL_STATE(3100)] = 120982, - [SMALL_STATE(3101)] = 121048, - [SMALL_STATE(3102)] = 121114, - [SMALL_STATE(3103)] = 121180, - [SMALL_STATE(3104)] = 121246, - [SMALL_STATE(3105)] = 121312, - [SMALL_STATE(3106)] = 121378, - [SMALL_STATE(3107)] = 121444, - [SMALL_STATE(3108)] = 121510, - [SMALL_STATE(3109)] = 121576, - [SMALL_STATE(3110)] = 121642, - [SMALL_STATE(3111)] = 121708, - [SMALL_STATE(3112)] = 121774, - [SMALL_STATE(3113)] = 121840, - [SMALL_STATE(3114)] = 121906, - [SMALL_STATE(3115)] = 121972, - [SMALL_STATE(3116)] = 122038, - [SMALL_STATE(3117)] = 122104, - [SMALL_STATE(3118)] = 122170, - [SMALL_STATE(3119)] = 122236, - [SMALL_STATE(3120)] = 122302, - [SMALL_STATE(3121)] = 122368, - [SMALL_STATE(3122)] = 122434, - [SMALL_STATE(3123)] = 122500, - [SMALL_STATE(3124)] = 122566, - [SMALL_STATE(3125)] = 122632, - [SMALL_STATE(3126)] = 122698, - [SMALL_STATE(3127)] = 122764, - [SMALL_STATE(3128)] = 122830, - [SMALL_STATE(3129)] = 122896, - [SMALL_STATE(3130)] = 122962, - [SMALL_STATE(3131)] = 123028, - [SMALL_STATE(3132)] = 123094, - [SMALL_STATE(3133)] = 123160, - [SMALL_STATE(3134)] = 123226, - [SMALL_STATE(3135)] = 123292, - [SMALL_STATE(3136)] = 123358, - [SMALL_STATE(3137)] = 123424, - [SMALL_STATE(3138)] = 123490, - [SMALL_STATE(3139)] = 123556, - [SMALL_STATE(3140)] = 123622, - [SMALL_STATE(3141)] = 123688, - [SMALL_STATE(3142)] = 123754, - [SMALL_STATE(3143)] = 123820, - [SMALL_STATE(3144)] = 123886, - [SMALL_STATE(3145)] = 123952, - [SMALL_STATE(3146)] = 124018, - [SMALL_STATE(3147)] = 124084, - [SMALL_STATE(3148)] = 124150, - [SMALL_STATE(3149)] = 124216, - [SMALL_STATE(3150)] = 124282, - [SMALL_STATE(3151)] = 124348, - [SMALL_STATE(3152)] = 124414, - [SMALL_STATE(3153)] = 124480, - [SMALL_STATE(3154)] = 124546, - [SMALL_STATE(3155)] = 124612, - [SMALL_STATE(3156)] = 124678, - [SMALL_STATE(3157)] = 124744, - [SMALL_STATE(3158)] = 124810, - [SMALL_STATE(3159)] = 124876, - [SMALL_STATE(3160)] = 124942, - [SMALL_STATE(3161)] = 125008, - [SMALL_STATE(3162)] = 125074, - [SMALL_STATE(3163)] = 125186, - [SMALL_STATE(3164)] = 125252, - [SMALL_STATE(3165)] = 125318, - [SMALL_STATE(3166)] = 125390, - [SMALL_STATE(3167)] = 125462, - [SMALL_STATE(3168)] = 125528, - [SMALL_STATE(3169)] = 125600, - [SMALL_STATE(3170)] = 125666, - [SMALL_STATE(3171)] = 125732, - [SMALL_STATE(3172)] = 125798, - [SMALL_STATE(3173)] = 125864, - [SMALL_STATE(3174)] = 125930, - [SMALL_STATE(3175)] = 125996, - [SMALL_STATE(3176)] = 126066, - [SMALL_STATE(3177)] = 126132, - [SMALL_STATE(3178)] = 126198, - [SMALL_STATE(3179)] = 126264, - [SMALL_STATE(3180)] = 126330, - [SMALL_STATE(3181)] = 126396, - [SMALL_STATE(3182)] = 126462, - [SMALL_STATE(3183)] = 126528, - [SMALL_STATE(3184)] = 126594, - [SMALL_STATE(3185)] = 126702, - [SMALL_STATE(3186)] = 126768, - [SMALL_STATE(3187)] = 126876, - [SMALL_STATE(3188)] = 126946, - [SMALL_STATE(3189)] = 127054, - [SMALL_STATE(3190)] = 127124, - [SMALL_STATE(3191)] = 127190, - [SMALL_STATE(3192)] = 127256, - [SMALL_STATE(3193)] = 127324, - [SMALL_STATE(3194)] = 127392, - [SMALL_STATE(3195)] = 127494, - [SMALL_STATE(3196)] = 127600, - [SMALL_STATE(3197)] = 127706, - [SMALL_STATE(3198)] = 127810, - [SMALL_STATE(3199)] = 127880, - [SMALL_STATE(3200)] = 127946, - [SMALL_STATE(3201)] = 128012, - [SMALL_STATE(3202)] = 128078, - [SMALL_STATE(3203)] = 128148, - [SMALL_STATE(3204)] = 128214, - [SMALL_STATE(3205)] = 128280, - [SMALL_STATE(3206)] = 128350, - [SMALL_STATE(3207)] = 128416, - [SMALL_STATE(3208)] = 128482, - [SMALL_STATE(3209)] = 128548, - [SMALL_STATE(3210)] = 128614, - [SMALL_STATE(3211)] = 128680, - [SMALL_STATE(3212)] = 128750, - [SMALL_STATE(3213)] = 128866, - [SMALL_STATE(3214)] = 128932, - [SMALL_STATE(3215)] = 128998, - [SMALL_STATE(3216)] = 129068, - [SMALL_STATE(3217)] = 129134, - [SMALL_STATE(3218)] = 129200, - [SMALL_STATE(3219)] = 129316, - [SMALL_STATE(3220)] = 129382, - [SMALL_STATE(3221)] = 129448, - [SMALL_STATE(3222)] = 129514, - [SMALL_STATE(3223)] = 129580, - [SMALL_STATE(3224)] = 129646, - [SMALL_STATE(3225)] = 129712, - [SMALL_STATE(3226)] = 129778, - [SMALL_STATE(3227)] = 129844, - [SMALL_STATE(3228)] = 129910, - [SMALL_STATE(3229)] = 129976, - [SMALL_STATE(3230)] = 130042, - [SMALL_STATE(3231)] = 130124, - [SMALL_STATE(3232)] = 130212, - [SMALL_STATE(3233)] = 130278, - [SMALL_STATE(3234)] = 130350, - [SMALL_STATE(3235)] = 130428, - [SMALL_STATE(3236)] = 130502, - [SMALL_STATE(3237)] = 130568, - [SMALL_STATE(3238)] = 130668, - [SMALL_STATE(3239)] = 130766, - [SMALL_STATE(3240)] = 130860, - [SMALL_STATE(3241)] = 130952, - [SMALL_STATE(3242)] = 131042, - [SMALL_STATE(3243)] = 131128, - [SMALL_STATE(3244)] = 131208, - [SMALL_STATE(3245)] = 131288, - [SMALL_STATE(3246)] = 131358, - [SMALL_STATE(3247)] = 131424, - [SMALL_STATE(3248)] = 131490, - [SMALL_STATE(3249)] = 131556, - [SMALL_STATE(3250)] = 131622, - [SMALL_STATE(3251)] = 131688, - [SMALL_STATE(3252)] = 131754, - [SMALL_STATE(3253)] = 131820, - [SMALL_STATE(3254)] = 131886, - [SMALL_STATE(3255)] = 131952, - [SMALL_STATE(3256)] = 132018, - [SMALL_STATE(3257)] = 132084, - [SMALL_STATE(3258)] = 132150, - [SMALL_STATE(3259)] = 132216, - [SMALL_STATE(3260)] = 132324, - [SMALL_STATE(3261)] = 132394, - [SMALL_STATE(3262)] = 132460, - [SMALL_STATE(3263)] = 132526, - [SMALL_STATE(3264)] = 132592, - [SMALL_STATE(3265)] = 132658, - [SMALL_STATE(3266)] = 132766, - [SMALL_STATE(3267)] = 132836, - [SMALL_STATE(3268)] = 132902, - [SMALL_STATE(3269)] = 132968, - [SMALL_STATE(3270)] = 133034, - [SMALL_STATE(3271)] = 133100, - [SMALL_STATE(3272)] = 133166, - [SMALL_STATE(3273)] = 133232, - [SMALL_STATE(3274)] = 133298, - [SMALL_STATE(3275)] = 133364, - [SMALL_STATE(3276)] = 133430, - [SMALL_STATE(3277)] = 133496, - [SMALL_STATE(3278)] = 133562, - [SMALL_STATE(3279)] = 133628, - [SMALL_STATE(3280)] = 133694, - [SMALL_STATE(3281)] = 133760, - [SMALL_STATE(3282)] = 133826, - [SMALL_STATE(3283)] = 133892, - [SMALL_STATE(3284)] = 134000, - [SMALL_STATE(3285)] = 134066, - [SMALL_STATE(3286)] = 134132, - [SMALL_STATE(3287)] = 134240, - [SMALL_STATE(3288)] = 134306, - [SMALL_STATE(3289)] = 134372, - [SMALL_STATE(3290)] = 134438, - [SMALL_STATE(3291)] = 134504, - [SMALL_STATE(3292)] = 134570, - [SMALL_STATE(3293)] = 134636, - [SMALL_STATE(3294)] = 134702, - [SMALL_STATE(3295)] = 134768, - [SMALL_STATE(3296)] = 134834, - [SMALL_STATE(3297)] = 134900, - [SMALL_STATE(3298)] = 134966, - [SMALL_STATE(3299)] = 135032, - [SMALL_STATE(3300)] = 135098, - [SMALL_STATE(3301)] = 135164, - [SMALL_STATE(3302)] = 135230, - [SMALL_STATE(3303)] = 135296, - [SMALL_STATE(3304)] = 135362, - [SMALL_STATE(3305)] = 135428, - [SMALL_STATE(3306)] = 135494, - [SMALL_STATE(3307)] = 135560, - [SMALL_STATE(3308)] = 135626, - [SMALL_STATE(3309)] = 135692, - [SMALL_STATE(3310)] = 135758, - [SMALL_STATE(3311)] = 135824, - [SMALL_STATE(3312)] = 135890, - [SMALL_STATE(3313)] = 135956, - [SMALL_STATE(3314)] = 136022, - [SMALL_STATE(3315)] = 136088, - [SMALL_STATE(3316)] = 136154, - [SMALL_STATE(3317)] = 136220, - [SMALL_STATE(3318)] = 136286, - [SMALL_STATE(3319)] = 136352, - [SMALL_STATE(3320)] = 136418, - [SMALL_STATE(3321)] = 136484, - [SMALL_STATE(3322)] = 136550, - [SMALL_STATE(3323)] = 136616, - [SMALL_STATE(3324)] = 136682, - [SMALL_STATE(3325)] = 136748, - [SMALL_STATE(3326)] = 136814, - [SMALL_STATE(3327)] = 136880, - [SMALL_STATE(3328)] = 136946, - [SMALL_STATE(3329)] = 137016, - [SMALL_STATE(3330)] = 137132, - [SMALL_STATE(3331)] = 137198, - [SMALL_STATE(3332)] = 137264, - [SMALL_STATE(3333)] = 137330, - [SMALL_STATE(3334)] = 137400, - [SMALL_STATE(3335)] = 137466, - [SMALL_STATE(3336)] = 137532, - [SMALL_STATE(3337)] = 137598, - [SMALL_STATE(3338)] = 137664, - [SMALL_STATE(3339)] = 137734, - [SMALL_STATE(3340)] = 137800, - [SMALL_STATE(3341)] = 137916, - [SMALL_STATE(3342)] = 137984, - [SMALL_STATE(3343)] = 138052, - [SMALL_STATE(3344)] = 138118, - [SMALL_STATE(3345)] = 138184, - [SMALL_STATE(3346)] = 138250, - [SMALL_STATE(3347)] = 138316, - [SMALL_STATE(3348)] = 138382, - [SMALL_STATE(3349)] = 138498, - [SMALL_STATE(3350)] = 138564, - [SMALL_STATE(3351)] = 138630, - [SMALL_STATE(3352)] = 138696, - [SMALL_STATE(3353)] = 138804, - [SMALL_STATE(3354)] = 138886, - [SMALL_STATE(3355)] = 138952, - [SMALL_STATE(3356)] = 139054, - [SMALL_STATE(3357)] = 139160, - [SMALL_STATE(3358)] = 139266, - [SMALL_STATE(3359)] = 139370, - [SMALL_STATE(3360)] = 139458, - [SMALL_STATE(3361)] = 139524, - [SMALL_STATE(3362)] = 139592, - [SMALL_STATE(3363)] = 139660, - [SMALL_STATE(3364)] = 139732, - [SMALL_STATE(3365)] = 139810, - [SMALL_STATE(3366)] = 139884, - [SMALL_STATE(3367)] = 139950, - [SMALL_STATE(3368)] = 140050, - [SMALL_STATE(3369)] = 140148, - [SMALL_STATE(3370)] = 140242, - [SMALL_STATE(3371)] = 140308, - [SMALL_STATE(3372)] = 140374, - [SMALL_STATE(3373)] = 140466, - [SMALL_STATE(3374)] = 140556, - [SMALL_STATE(3375)] = 140642, - [SMALL_STATE(3376)] = 140722, - [SMALL_STATE(3377)] = 140788, - [SMALL_STATE(3378)] = 140868, - [SMALL_STATE(3379)] = 140934, - [SMALL_STATE(3380)] = 141000, - [SMALL_STATE(3381)] = 141066, - [SMALL_STATE(3382)] = 141132, - [SMALL_STATE(3383)] = 141198, - [SMALL_STATE(3384)] = 141264, - [SMALL_STATE(3385)] = 141334, - [SMALL_STATE(3386)] = 141400, - [SMALL_STATE(3387)] = 141466, - [SMALL_STATE(3388)] = 141532, - [SMALL_STATE(3389)] = 141598, - [SMALL_STATE(3390)] = 141666, - [SMALL_STATE(3391)] = 141732, - [SMALL_STATE(3392)] = 141798, - [SMALL_STATE(3393)] = 141864, - [SMALL_STATE(3394)] = 141930, - [SMALL_STATE(3395)] = 141998, - [SMALL_STATE(3396)] = 142064, - [SMALL_STATE(3397)] = 142130, - [SMALL_STATE(3398)] = 142196, - [SMALL_STATE(3399)] = 142262, - [SMALL_STATE(3400)] = 142328, - [SMALL_STATE(3401)] = 142394, - [SMALL_STATE(3402)] = 142460, - [SMALL_STATE(3403)] = 142526, - [SMALL_STATE(3404)] = 142592, - [SMALL_STATE(3405)] = 142658, - [SMALL_STATE(3406)] = 142724, - [SMALL_STATE(3407)] = 142832, - [SMALL_STATE(3408)] = 142900, - [SMALL_STATE(3409)] = 142966, - [SMALL_STATE(3410)] = 143032, - [SMALL_STATE(3411)] = 143098, - [SMALL_STATE(3412)] = 143164, - [SMALL_STATE(3413)] = 143230, - [SMALL_STATE(3414)] = 143296, - [SMALL_STATE(3415)] = 143362, - [SMALL_STATE(3416)] = 143428, - [SMALL_STATE(3417)] = 143494, - [SMALL_STATE(3418)] = 143560, - [SMALL_STATE(3419)] = 143626, - [SMALL_STATE(3420)] = 143692, - [SMALL_STATE(3421)] = 143758, - [SMALL_STATE(3422)] = 143824, - [SMALL_STATE(3423)] = 143890, - [SMALL_STATE(3424)] = 143956, - [SMALL_STATE(3425)] = 144022, - [SMALL_STATE(3426)] = 144088, - [SMALL_STATE(3427)] = 144200, - [SMALL_STATE(3428)] = 144270, - [SMALL_STATE(3429)] = 144336, - [SMALL_STATE(3430)] = 144406, - [SMALL_STATE(3431)] = 144472, - [SMALL_STATE(3432)] = 144538, - [SMALL_STATE(3433)] = 144604, - [SMALL_STATE(3434)] = 144670, - [SMALL_STATE(3435)] = 144736, - [SMALL_STATE(3436)] = 144802, - [SMALL_STATE(3437)] = 144868, - [SMALL_STATE(3438)] = 144934, - [SMALL_STATE(3439)] = 145000, - [SMALL_STATE(3440)] = 145066, - [SMALL_STATE(3441)] = 145132, - [SMALL_STATE(3442)] = 145198, - [SMALL_STATE(3443)] = 145264, - [SMALL_STATE(3444)] = 145330, - [SMALL_STATE(3445)] = 145396, - [SMALL_STATE(3446)] = 145462, - [SMALL_STATE(3447)] = 145528, - [SMALL_STATE(3448)] = 145594, - [SMALL_STATE(3449)] = 145660, - [SMALL_STATE(3450)] = 145726, - [SMALL_STATE(3451)] = 145792, - [SMALL_STATE(3452)] = 145858, - [SMALL_STATE(3453)] = 145924, - [SMALL_STATE(3454)] = 145990, - [SMALL_STATE(3455)] = 146056, - [SMALL_STATE(3456)] = 146122, - [SMALL_STATE(3457)] = 146238, - [SMALL_STATE(3458)] = 146304, - [SMALL_STATE(3459)] = 146370, - [SMALL_STATE(3460)] = 146436, - [SMALL_STATE(3461)] = 146502, - [SMALL_STATE(3462)] = 146610, - [SMALL_STATE(3463)] = 146678, - [SMALL_STATE(3464)] = 146746, - [SMALL_STATE(3465)] = 146816, - [SMALL_STATE(3466)] = 146882, - [SMALL_STATE(3467)] = 146948, - [SMALL_STATE(3468)] = 147014, - [SMALL_STATE(3469)] = 147080, - [SMALL_STATE(3470)] = 147146, - [SMALL_STATE(3471)] = 147212, - [SMALL_STATE(3472)] = 147278, - [SMALL_STATE(3473)] = 147348, - [SMALL_STATE(3474)] = 147414, - [SMALL_STATE(3475)] = 147484, - [SMALL_STATE(3476)] = 147554, - [SMALL_STATE(3477)] = 147624, - [SMALL_STATE(3478)] = 147694, - [SMALL_STATE(3479)] = 147760, - [SMALL_STATE(3480)] = 147826, - [SMALL_STATE(3481)] = 147892, - [SMALL_STATE(3482)] = 147958, - [SMALL_STATE(3483)] = 148024, - [SMALL_STATE(3484)] = 148090, - [SMALL_STATE(3485)] = 148156, - [SMALL_STATE(3486)] = 148226, - [SMALL_STATE(3487)] = 148292, - [SMALL_STATE(3488)] = 148362, - [SMALL_STATE(3489)] = 148428, - [SMALL_STATE(3490)] = 148494, - [SMALL_STATE(3491)] = 148560, - [SMALL_STATE(3492)] = 148626, - [SMALL_STATE(3493)] = 148692, - [SMALL_STATE(3494)] = 148762, - [SMALL_STATE(3495)] = 148870, - [SMALL_STATE(3496)] = 148936, - [SMALL_STATE(3497)] = 149002, - [SMALL_STATE(3498)] = 149070, - [SMALL_STATE(3499)] = 149138, - [SMALL_STATE(3500)] = 149204, - [SMALL_STATE(3501)] = 149270, - [SMALL_STATE(3502)] = 149336, - [SMALL_STATE(3503)] = 149402, - [SMALL_STATE(3504)] = 149468, - [SMALL_STATE(3505)] = 149538, - [SMALL_STATE(3506)] = 149604, - [SMALL_STATE(3507)] = 149670, - [SMALL_STATE(3508)] = 149736, - [SMALL_STATE(3509)] = 149802, - [SMALL_STATE(3510)] = 149868, - [SMALL_STATE(3511)] = 149934, - [SMALL_STATE(3512)] = 150000, - [SMALL_STATE(3513)] = 150066, - [SMALL_STATE(3514)] = 150132, - [SMALL_STATE(3515)] = 150198, - [SMALL_STATE(3516)] = 150264, - [SMALL_STATE(3517)] = 150330, - [SMALL_STATE(3518)] = 150396, - [SMALL_STATE(3519)] = 150462, - [SMALL_STATE(3520)] = 150528, - [SMALL_STATE(3521)] = 150598, - [SMALL_STATE(3522)] = 150664, - [SMALL_STATE(3523)] = 150734, - [SMALL_STATE(3524)] = 150800, - [SMALL_STATE(3525)] = 150870, - [SMALL_STATE(3526)] = 150940, - [SMALL_STATE(3527)] = 151010, - [SMALL_STATE(3528)] = 151076, - [SMALL_STATE(3529)] = 151142, - [SMALL_STATE(3530)] = 151208, - [SMALL_STATE(3531)] = 151274, - [SMALL_STATE(3532)] = 151340, - [SMALL_STATE(3533)] = 151406, - [SMALL_STATE(3534)] = 151472, - [SMALL_STATE(3535)] = 151542, - [SMALL_STATE(3536)] = 151608, - [SMALL_STATE(3537)] = 151674, - [SMALL_STATE(3538)] = 151744, - [SMALL_STATE(3539)] = 151810, - [SMALL_STATE(3540)] = 151876, - [SMALL_STATE(3541)] = 151942, - [SMALL_STATE(3542)] = 152008, - [SMALL_STATE(3543)] = 152074, - [SMALL_STATE(3544)] = 152182, - [SMALL_STATE(3545)] = 152248, - [SMALL_STATE(3546)] = 152313, - [SMALL_STATE(3547)] = 152382, - [SMALL_STATE(3548)] = 152447, - [SMALL_STATE(3549)] = 152512, - [SMALL_STATE(3550)] = 152581, - [SMALL_STATE(3551)] = 152648, - [SMALL_STATE(3552)] = 152713, - [SMALL_STATE(3553)] = 152778, - [SMALL_STATE(3554)] = 152843, - [SMALL_STATE(3555)] = 152908, - [SMALL_STATE(3556)] = 152973, - [SMALL_STATE(3557)] = 153038, - [SMALL_STATE(3558)] = 153103, - [SMALL_STATE(3559)] = 153168, - [SMALL_STATE(3560)] = 153233, - [SMALL_STATE(3561)] = 153298, - [SMALL_STATE(3562)] = 153363, - [SMALL_STATE(3563)] = 153428, - [SMALL_STATE(3564)] = 153493, - [SMALL_STATE(3565)] = 153558, - [SMALL_STATE(3566)] = 153623, - [SMALL_STATE(3567)] = 153688, - [SMALL_STATE(3568)] = 153753, - [SMALL_STATE(3569)] = 153818, - [SMALL_STATE(3570)] = 153883, - [SMALL_STATE(3571)] = 153948, - [SMALL_STATE(3572)] = 154013, - [SMALL_STATE(3573)] = 154078, - [SMALL_STATE(3574)] = 154143, - [SMALL_STATE(3575)] = 154208, - [SMALL_STATE(3576)] = 154273, - [SMALL_STATE(3577)] = 154338, - [SMALL_STATE(3578)] = 154403, - [SMALL_STATE(3579)] = 154472, - [SMALL_STATE(3580)] = 154537, - [SMALL_STATE(3581)] = 154602, - [SMALL_STATE(3582)] = 154667, - [SMALL_STATE(3583)] = 154732, - [SMALL_STATE(3584)] = 154797, - [SMALL_STATE(3585)] = 154862, - [SMALL_STATE(3586)] = 154927, - [SMALL_STATE(3587)] = 154992, - [SMALL_STATE(3588)] = 155057, - [SMALL_STATE(3589)] = 155122, - [SMALL_STATE(3590)] = 155191, - [SMALL_STATE(3591)] = 155256, - [SMALL_STATE(3592)] = 155321, - [SMALL_STATE(3593)] = 155386, - [SMALL_STATE(3594)] = 155451, - [SMALL_STATE(3595)] = 155520, - [SMALL_STATE(3596)] = 155585, - [SMALL_STATE(3597)] = 155650, - [SMALL_STATE(3598)] = 155715, - [SMALL_STATE(3599)] = 155822, - [SMALL_STATE(3600)] = 155887, - [SMALL_STATE(3601)] = 155952, - [SMALL_STATE(3602)] = 156017, - [SMALL_STATE(3603)] = 156082, - [SMALL_STATE(3604)] = 156189, - [SMALL_STATE(3605)] = 156254, - [SMALL_STATE(3606)] = 156319, - [SMALL_STATE(3607)] = 156426, - [SMALL_STATE(3608)] = 156491, - [SMALL_STATE(3609)] = 156556, - [SMALL_STATE(3610)] = 156621, - [SMALL_STATE(3611)] = 156686, - [SMALL_STATE(3612)] = 156751, - [SMALL_STATE(3613)] = 156816, - [SMALL_STATE(3614)] = 156881, - [SMALL_STATE(3615)] = 156946, - [SMALL_STATE(3616)] = 157011, - [SMALL_STATE(3617)] = 157076, - [SMALL_STATE(3618)] = 157141, - [SMALL_STATE(3619)] = 157206, - [SMALL_STATE(3620)] = 157271, - [SMALL_STATE(3621)] = 157338, - [SMALL_STATE(3622)] = 157405, - [SMALL_STATE(3623)] = 157470, - [SMALL_STATE(3624)] = 157535, - [SMALL_STATE(3625)] = 157602, - [SMALL_STATE(3626)] = 157667, - [SMALL_STATE(3627)] = 157732, - [SMALL_STATE(3628)] = 157799, - [SMALL_STATE(3629)] = 157864, - [SMALL_STATE(3630)] = 157929, - [SMALL_STATE(3631)] = 157994, - [SMALL_STATE(3632)] = 158063, - [SMALL_STATE(3633)] = 158128, - [SMALL_STATE(3634)] = 158193, - [SMALL_STATE(3635)] = 158294, - [SMALL_STATE(3636)] = 158359, - [SMALL_STATE(3637)] = 158464, - [SMALL_STATE(3638)] = 158569, - [SMALL_STATE(3639)] = 158634, - [SMALL_STATE(3640)] = 158737, - [SMALL_STATE(3641)] = 158818, - [SMALL_STATE(3642)] = 158883, - [SMALL_STATE(3643)] = 158948, - [SMALL_STATE(3644)] = 159013, - [SMALL_STATE(3645)] = 159078, - [SMALL_STATE(3646)] = 159165, - [SMALL_STATE(3647)] = 159230, - [SMALL_STATE(3648)] = 159295, - [SMALL_STATE(3649)] = 159360, - [SMALL_STATE(3650)] = 159425, - [SMALL_STATE(3651)] = 159490, - [SMALL_STATE(3652)] = 159555, - [SMALL_STATE(3653)] = 159626, - [SMALL_STATE(3654)] = 159703, - [SMALL_STATE(3655)] = 159776, - [SMALL_STATE(3656)] = 159841, - [SMALL_STATE(3657)] = 159906, - [SMALL_STATE(3658)] = 159971, - [SMALL_STATE(3659)] = 160036, - [SMALL_STATE(3660)] = 160101, - [SMALL_STATE(3661)] = 160166, - [SMALL_STATE(3662)] = 160231, - [SMALL_STATE(3663)] = 160296, - [SMALL_STATE(3664)] = 160361, - [SMALL_STATE(3665)] = 160426, - [SMALL_STATE(3666)] = 160491, - [SMALL_STATE(3667)] = 160572, - [SMALL_STATE(3668)] = 160659, - [SMALL_STATE(3669)] = 160730, - [SMALL_STATE(3670)] = 160807, - [SMALL_STATE(3671)] = 160880, - [SMALL_STATE(3672)] = 160979, - [SMALL_STATE(3673)] = 161076, - [SMALL_STATE(3674)] = 161169, - [SMALL_STATE(3675)] = 161260, - [SMALL_STATE(3676)] = 161349, - [SMALL_STATE(3677)] = 161434, - [SMALL_STATE(3678)] = 161513, - [SMALL_STATE(3679)] = 161592, - [SMALL_STATE(3680)] = 161657, - [SMALL_STATE(3681)] = 161722, - [SMALL_STATE(3682)] = 161787, - [SMALL_STATE(3683)] = 161888, - [SMALL_STATE(3684)] = 161993, - [SMALL_STATE(3685)] = 162098, - [SMALL_STATE(3686)] = 162201, - [SMALL_STATE(3687)] = 162266, - [SMALL_STATE(3688)] = 162331, - [SMALL_STATE(3689)] = 162396, - [SMALL_STATE(3690)] = 162461, - [SMALL_STATE(3691)] = 162526, - [SMALL_STATE(3692)] = 162591, - [SMALL_STATE(3693)] = 162656, - [SMALL_STATE(3694)] = 162721, - [SMALL_STATE(3695)] = 162786, - [SMALL_STATE(3696)] = 162851, - [SMALL_STATE(3697)] = 162916, - [SMALL_STATE(3698)] = 162981, - [SMALL_STATE(3699)] = 163046, - [SMALL_STATE(3700)] = 163111, - [SMALL_STATE(3701)] = 163210, - [SMALL_STATE(3702)] = 163307, - [SMALL_STATE(3703)] = 163372, - [SMALL_STATE(3704)] = 163437, - [SMALL_STATE(3705)] = 163530, - [SMALL_STATE(3706)] = 163621, - [SMALL_STATE(3707)] = 163710, - [SMALL_STATE(3708)] = 163795, - [SMALL_STATE(3709)] = 163874, - [SMALL_STATE(3710)] = 163953, - [SMALL_STATE(3711)] = 164018, - [SMALL_STATE(3712)] = 164083, - [SMALL_STATE(3713)] = 164152, - [SMALL_STATE(3714)] = 164217, - [SMALL_STATE(3715)] = 164282, - [SMALL_STATE(3716)] = 164347, - [SMALL_STATE(3717)] = 164428, - [SMALL_STATE(3718)] = 164493, - [SMALL_STATE(3719)] = 164558, - [SMALL_STATE(3720)] = 164623, - [SMALL_STATE(3721)] = 164688, - [SMALL_STATE(3722)] = 164775, - [SMALL_STATE(3723)] = 164840, - [SMALL_STATE(3724)] = 164905, - [SMALL_STATE(3725)] = 164970, - [SMALL_STATE(3726)] = 165035, - [SMALL_STATE(3727)] = 165106, - [SMALL_STATE(3728)] = 165183, - [SMALL_STATE(3729)] = 165256, - [SMALL_STATE(3730)] = 165321, - [SMALL_STATE(3731)] = 165386, - [SMALL_STATE(3732)] = 165451, - [SMALL_STATE(3733)] = 165550, - [SMALL_STATE(3734)] = 165647, - [SMALL_STATE(3735)] = 165740, - [SMALL_STATE(3736)] = 165831, - [SMALL_STATE(3737)] = 165920, - [SMALL_STATE(3738)] = 166005, - [SMALL_STATE(3739)] = 166084, - [SMALL_STATE(3740)] = 166163, - [SMALL_STATE(3741)] = 166228, - [SMALL_STATE(3742)] = 166293, - [SMALL_STATE(3743)] = 166358, - [SMALL_STATE(3744)] = 166423, - [SMALL_STATE(3745)] = 166488, - [SMALL_STATE(3746)] = 166553, - [SMALL_STATE(3747)] = 166618, - [SMALL_STATE(3748)] = 166683, - [SMALL_STATE(3749)] = 166748, - [SMALL_STATE(3750)] = 166813, - [SMALL_STATE(3751)] = 166878, - [SMALL_STATE(3752)] = 166943, - [SMALL_STATE(3753)] = 167008, - [SMALL_STATE(3754)] = 167073, - [SMALL_STATE(3755)] = 167138, - [SMALL_STATE(3756)] = 167203, - [SMALL_STATE(3757)] = 167268, - [SMALL_STATE(3758)] = 167333, - [SMALL_STATE(3759)] = 167398, - [SMALL_STATE(3760)] = 167463, - [SMALL_STATE(3761)] = 167528, - [SMALL_STATE(3762)] = 167593, - [SMALL_STATE(3763)] = 167662, - [SMALL_STATE(3764)] = 167727, - [SMALL_STATE(3765)] = 167792, - [SMALL_STATE(3766)] = 167857, - [SMALL_STATE(3767)] = 167922, - [SMALL_STATE(3768)] = 167987, - [SMALL_STATE(3769)] = 168052, - [SMALL_STATE(3770)] = 168117, - [SMALL_STATE(3771)] = 168182, - [SMALL_STATE(3772)] = 168247, - [SMALL_STATE(3773)] = 168312, - [SMALL_STATE(3774)] = 168377, - [SMALL_STATE(3775)] = 168442, - [SMALL_STATE(3776)] = 168507, - [SMALL_STATE(3777)] = 168572, - [SMALL_STATE(3778)] = 168641, - [SMALL_STATE(3779)] = 168706, - [SMALL_STATE(3780)] = 168771, - [SMALL_STATE(3781)] = 168836, - [SMALL_STATE(3782)] = 168903, - [SMALL_STATE(3783)] = 168970, - [SMALL_STATE(3784)] = 169035, - [SMALL_STATE(3785)] = 169100, - [SMALL_STATE(3786)] = 169165, - [SMALL_STATE(3787)] = 169230, - [SMALL_STATE(3788)] = 169295, - [SMALL_STATE(3789)] = 169402, - [SMALL_STATE(3790)] = 169471, - [SMALL_STATE(3791)] = 169536, - [SMALL_STATE(3792)] = 169605, - [SMALL_STATE(3793)] = 169712, - [SMALL_STATE(3794)] = 169777, - [SMALL_STATE(3795)] = 169842, - [SMALL_STATE(3796)] = 169907, - [SMALL_STATE(3797)] = 169972, - [SMALL_STATE(3798)] = 170037, - [SMALL_STATE(3799)] = 170102, - [SMALL_STATE(3800)] = 170167, - [SMALL_STATE(3801)] = 170232, - [SMALL_STATE(3802)] = 170297, - [SMALL_STATE(3803)] = 170362, - [SMALL_STATE(3804)] = 170427, - [SMALL_STATE(3805)] = 170492, - [SMALL_STATE(3806)] = 170557, - [SMALL_STATE(3807)] = 170622, - [SMALL_STATE(3808)] = 170687, - [SMALL_STATE(3809)] = 170752, - [SMALL_STATE(3810)] = 170817, - [SMALL_STATE(3811)] = 170882, - [SMALL_STATE(3812)] = 170947, - [SMALL_STATE(3813)] = 171012, - [SMALL_STATE(3814)] = 171077, - [SMALL_STATE(3815)] = 171142, - [SMALL_STATE(3816)] = 171207, - [SMALL_STATE(3817)] = 171272, - [SMALL_STATE(3818)] = 171337, - [SMALL_STATE(3819)] = 171402, - [SMALL_STATE(3820)] = 171467, - [SMALL_STATE(3821)] = 171532, - [SMALL_STATE(3822)] = 171597, - [SMALL_STATE(3823)] = 171662, - [SMALL_STATE(3824)] = 171727, - [SMALL_STATE(3825)] = 171792, - [SMALL_STATE(3826)] = 171857, - [SMALL_STATE(3827)] = 171922, - [SMALL_STATE(3828)] = 171987, - [SMALL_STATE(3829)] = 172052, - [SMALL_STATE(3830)] = 172117, - [SMALL_STATE(3831)] = 172182, - [SMALL_STATE(3832)] = 172247, - [SMALL_STATE(3833)] = 172312, - [SMALL_STATE(3834)] = 172377, - [SMALL_STATE(3835)] = 172442, - [SMALL_STATE(3836)] = 172507, - [SMALL_STATE(3837)] = 172572, - [SMALL_STATE(3838)] = 172637, - [SMALL_STATE(3839)] = 172702, - [SMALL_STATE(3840)] = 172767, - [SMALL_STATE(3841)] = 172832, - [SMALL_STATE(3842)] = 172897, - [SMALL_STATE(3843)] = 172964, - [SMALL_STATE(3844)] = 173033, - [SMALL_STATE(3845)] = 173098, - [SMALL_STATE(3846)] = 173203, - [SMALL_STATE(3847)] = 173270, - [SMALL_STATE(3848)] = 173335, - [SMALL_STATE(3849)] = 173400, - [SMALL_STATE(3850)] = 173465, - [SMALL_STATE(3851)] = 173530, - [SMALL_STATE(3852)] = 173595, - [SMALL_STATE(3853)] = 173676, - [SMALL_STATE(3854)] = 173741, - [SMALL_STATE(3855)] = 173842, - [SMALL_STATE(3856)] = 173913, - [SMALL_STATE(3857)] = 173990, - [SMALL_STATE(3858)] = 174055, - [SMALL_STATE(3859)] = 174128, - [SMALL_STATE(3860)] = 174193, - [SMALL_STATE(3861)] = 174298, - [SMALL_STATE(3862)] = 174403, - [SMALL_STATE(3863)] = 174506, - [SMALL_STATE(3864)] = 174605, - [SMALL_STATE(3865)] = 174702, - [SMALL_STATE(3866)] = 174795, - [SMALL_STATE(3867)] = 174886, - [SMALL_STATE(3868)] = 174975, - [SMALL_STATE(3869)] = 175060, - [SMALL_STATE(3870)] = 175139, - [SMALL_STATE(3871)] = 175218, - [SMALL_STATE(3872)] = 175287, - [SMALL_STATE(3873)] = 175352, - [SMALL_STATE(3874)] = 175417, - [SMALL_STATE(3875)] = 175482, - [SMALL_STATE(3876)] = 175589, - [SMALL_STATE(3877)] = 175654, - [SMALL_STATE(3878)] = 175719, - [SMALL_STATE(3879)] = 175784, - [SMALL_STATE(3880)] = 175893, - [SMALL_STATE(3881)] = 175958, - [SMALL_STATE(3882)] = 176023, - [SMALL_STATE(3883)] = 176088, - [SMALL_STATE(3884)] = 176153, - [SMALL_STATE(3885)] = 176218, - [SMALL_STATE(3886)] = 176283, - [SMALL_STATE(3887)] = 176348, - [SMALL_STATE(3888)] = 176413, - [SMALL_STATE(3889)] = 176478, - [SMALL_STATE(3890)] = 176543, - [SMALL_STATE(3891)] = 176608, - [SMALL_STATE(3892)] = 176673, - [SMALL_STATE(3893)] = 176738, - [SMALL_STATE(3894)] = 176803, - [SMALL_STATE(3895)] = 176868, - [SMALL_STATE(3896)] = 176933, - [SMALL_STATE(3897)] = 176998, - [SMALL_STATE(3898)] = 177063, - [SMALL_STATE(3899)] = 177128, - [SMALL_STATE(3900)] = 177193, - [SMALL_STATE(3901)] = 177258, - [SMALL_STATE(3902)] = 177323, - [SMALL_STATE(3903)] = 177388, - [SMALL_STATE(3904)] = 177453, - [SMALL_STATE(3905)] = 177518, - [SMALL_STATE(3906)] = 177583, - [SMALL_STATE(3907)] = 177648, - [SMALL_STATE(3908)] = 177713, - [SMALL_STATE(3909)] = 177778, - [SMALL_STATE(3910)] = 177843, - [SMALL_STATE(3911)] = 177908, - [SMALL_STATE(3912)] = 177973, - [SMALL_STATE(3913)] = 178038, - [SMALL_STATE(3914)] = 178103, - [SMALL_STATE(3915)] = 178168, - [SMALL_STATE(3916)] = 178233, - [SMALL_STATE(3917)] = 178302, - [SMALL_STATE(3918)] = 178367, - [SMALL_STATE(3919)] = 178432, - [SMALL_STATE(3920)] = 178497, - [SMALL_STATE(3921)] = 178562, - [SMALL_STATE(3922)] = 178627, - [SMALL_STATE(3923)] = 178692, - [SMALL_STATE(3924)] = 178757, - [SMALL_STATE(3925)] = 178822, - [SMALL_STATE(3926)] = 178887, - [SMALL_STATE(3927)] = 178952, - [SMALL_STATE(3928)] = 179017, - [SMALL_STATE(3929)] = 179082, - [SMALL_STATE(3930)] = 179147, - [SMALL_STATE(3931)] = 179212, - [SMALL_STATE(3932)] = 179277, - [SMALL_STATE(3933)] = 179342, - [SMALL_STATE(3934)] = 179407, - [SMALL_STATE(3935)] = 179472, - [SMALL_STATE(3936)] = 179537, - [SMALL_STATE(3937)] = 179602, - [SMALL_STATE(3938)] = 179667, - [SMALL_STATE(3939)] = 179732, - [SMALL_STATE(3940)] = 179797, - [SMALL_STATE(3941)] = 179862, - [SMALL_STATE(3942)] = 179927, - [SMALL_STATE(3943)] = 179992, - [SMALL_STATE(3944)] = 180057, - [SMALL_STATE(3945)] = 180122, - [SMALL_STATE(3946)] = 180187, - [SMALL_STATE(3947)] = 180252, - [SMALL_STATE(3948)] = 180317, - [SMALL_STATE(3949)] = 180382, - [SMALL_STATE(3950)] = 180447, - [SMALL_STATE(3951)] = 180512, - [SMALL_STATE(3952)] = 180577, - [SMALL_STATE(3953)] = 180642, - [SMALL_STATE(3954)] = 180707, - [SMALL_STATE(3955)] = 180814, - [SMALL_STATE(3956)] = 180879, - [SMALL_STATE(3957)] = 180986, - [SMALL_STATE(3958)] = 181093, - [SMALL_STATE(3959)] = 181158, - [SMALL_STATE(3960)] = 181223, - [SMALL_STATE(3961)] = 181288, - [SMALL_STATE(3962)] = 181353, - [SMALL_STATE(3963)] = 181418, - [SMALL_STATE(3964)] = 181483, - [SMALL_STATE(3965)] = 181552, - [SMALL_STATE(3966)] = 181617, - [SMALL_STATE(3967)] = 181682, - [SMALL_STATE(3968)] = 181747, - [SMALL_STATE(3969)] = 181812, - [SMALL_STATE(3970)] = 181877, - [SMALL_STATE(3971)] = 181942, - [SMALL_STATE(3972)] = 182007, - [SMALL_STATE(3973)] = 182072, - [SMALL_STATE(3974)] = 182179, - [SMALL_STATE(3975)] = 182244, - [SMALL_STATE(3976)] = 182309, - [SMALL_STATE(3977)] = 182374, - [SMALL_STATE(3978)] = 182439, - [SMALL_STATE(3979)] = 182504, - [SMALL_STATE(3980)] = 182569, - [SMALL_STATE(3981)] = 182634, - [SMALL_STATE(3982)] = 182699, - [SMALL_STATE(3983)] = 182764, - [SMALL_STATE(3984)] = 182829, - [SMALL_STATE(3985)] = 182894, - [SMALL_STATE(3986)] = 182959, - [SMALL_STATE(3987)] = 183064, - [SMALL_STATE(3988)] = 183129, - [SMALL_STATE(3989)] = 183194, - [SMALL_STATE(3990)] = 183259, - [SMALL_STATE(3991)] = 183324, - [SMALL_STATE(3992)] = 183389, - [SMALL_STATE(3993)] = 183458, - [SMALL_STATE(3994)] = 183527, - [SMALL_STATE(3995)] = 183596, - [SMALL_STATE(3996)] = 183661, - [SMALL_STATE(3997)] = 183726, - [SMALL_STATE(3998)] = 183791, - [SMALL_STATE(3999)] = 183856, - [SMALL_STATE(4000)] = 183921, - [SMALL_STATE(4001)] = 183986, - [SMALL_STATE(4002)] = 184091, - [SMALL_STATE(4003)] = 184156, - [SMALL_STATE(4004)] = 184221, - [SMALL_STATE(4005)] = 184286, - [SMALL_STATE(4006)] = 184351, - [SMALL_STATE(4007)] = 184416, - [SMALL_STATE(4008)] = 184481, - [SMALL_STATE(4009)] = 184546, - [SMALL_STATE(4010)] = 184613, - [SMALL_STATE(4011)] = 184682, - [SMALL_STATE(4012)] = 184747, - [SMALL_STATE(4013)] = 184816, - [SMALL_STATE(4014)] = 184881, - [SMALL_STATE(4015)] = 184946, - [SMALL_STATE(4016)] = 185011, - [SMALL_STATE(4017)] = 185076, - [SMALL_STATE(4018)] = 185141, - [SMALL_STATE(4019)] = 185210, - [SMALL_STATE(4020)] = 185275, - [SMALL_STATE(4021)] = 185340, - [SMALL_STATE(4022)] = 185405, - [SMALL_STATE(4023)] = 185470, - [SMALL_STATE(4024)] = 185535, - [SMALL_STATE(4025)] = 185600, - [SMALL_STATE(4026)] = 185701, - [SMALL_STATE(4027)] = 185806, - [SMALL_STATE(4028)] = 185911, - [SMALL_STATE(4029)] = 186014, - [SMALL_STATE(4030)] = 186079, - [SMALL_STATE(4031)] = 186144, - [SMALL_STATE(4032)] = 186213, - [SMALL_STATE(4033)] = 186278, - [SMALL_STATE(4034)] = 186343, - [SMALL_STATE(4035)] = 186408, - [SMALL_STATE(4036)] = 186473, - [SMALL_STATE(4037)] = 186538, - [SMALL_STATE(4038)] = 186645, - [SMALL_STATE(4039)] = 186710, - [SMALL_STATE(4040)] = 186779, - [SMALL_STATE(4041)] = 186844, - [SMALL_STATE(4042)] = 186909, - [SMALL_STATE(4043)] = 186974, - [SMALL_STATE(4044)] = 187055, - [SMALL_STATE(4045)] = 187140, - [SMALL_STATE(4046)] = 187239, - [SMALL_STATE(4047)] = 187304, - [SMALL_STATE(4048)] = 187375, - [SMALL_STATE(4049)] = 187440, - [SMALL_STATE(4050)] = 187517, - [SMALL_STATE(4051)] = 187590, - [SMALL_STATE(4052)] = 187693, - [SMALL_STATE(4053)] = 187796, - [SMALL_STATE(4054)] = 187861, - [SMALL_STATE(4055)] = 187962, - [SMALL_STATE(4056)] = 188059, - [SMALL_STATE(4057)] = 188154, - [SMALL_STATE(4058)] = 188245, - [SMALL_STATE(4059)] = 188334, - [SMALL_STATE(4060)] = 188421, - [SMALL_STATE(4061)] = 188504, - [SMALL_STATE(4062)] = 188583, - [SMALL_STATE(4063)] = 188662, - [SMALL_STATE(4064)] = 188727, - [SMALL_STATE(4065)] = 188794, - [SMALL_STATE(4066)] = 188859, - [SMALL_STATE(4067)] = 188924, - [SMALL_STATE(4068)] = 188989, - [SMALL_STATE(4069)] = 189054, - [SMALL_STATE(4070)] = 189119, - [SMALL_STATE(4071)] = 189184, - [SMALL_STATE(4072)] = 189249, - [SMALL_STATE(4073)] = 189314, - [SMALL_STATE(4074)] = 189379, - [SMALL_STATE(4075)] = 189444, - [SMALL_STATE(4076)] = 189509, - [SMALL_STATE(4077)] = 189574, - [SMALL_STATE(4078)] = 189639, - [SMALL_STATE(4079)] = 189704, - [SMALL_STATE(4080)] = 189769, - [SMALL_STATE(4081)] = 189834, - [SMALL_STATE(4082)] = 189899, - [SMALL_STATE(4083)] = 189964, - [SMALL_STATE(4084)] = 190029, - [SMALL_STATE(4085)] = 190094, - [SMALL_STATE(4086)] = 190159, - [SMALL_STATE(4087)] = 190226, - [SMALL_STATE(4088)] = 190291, - [SMALL_STATE(4089)] = 190356, - [SMALL_STATE(4090)] = 190443, - [SMALL_STATE(4091)] = 190509, - [SMALL_STATE(4092)] = 190577, - [SMALL_STATE(4093)] = 190645, - [SMALL_STATE(4094)] = 190709, - [SMALL_STATE(4095)] = 190773, - [SMALL_STATE(4096)] = 190837, - [SMALL_STATE(4097)] = 190905, - [SMALL_STATE(4098)] = 190969, - [SMALL_STATE(4099)] = 191033, - [SMALL_STATE(4100)] = 191097, - [SMALL_STATE(4101)] = 191161, - [SMALL_STATE(4102)] = 191225, - [SMALL_STATE(4103)] = 191289, - [SMALL_STATE(4104)] = 191353, - [SMALL_STATE(4105)] = 191417, - [SMALL_STATE(4106)] = 191481, - [SMALL_STATE(4107)] = 191545, - [SMALL_STATE(4108)] = 191609, - [SMALL_STATE(4109)] = 191673, - [SMALL_STATE(4110)] = 191753, - [SMALL_STATE(4111)] = 191817, - [SMALL_STATE(4112)] = 191881, - [SMALL_STATE(4113)] = 191965, - [SMALL_STATE(4114)] = 192029, - [SMALL_STATE(4115)] = 192093, - [SMALL_STATE(4116)] = 192163, - [SMALL_STATE(4117)] = 192239, - [SMALL_STATE(4118)] = 192311, - [SMALL_STATE(4119)] = 192377, - [SMALL_STATE(4120)] = 192443, - [SMALL_STATE(4121)] = 192507, - [SMALL_STATE(4122)] = 192571, - [SMALL_STATE(4123)] = 192635, - [SMALL_STATE(4124)] = 192699, - [SMALL_STATE(4125)] = 192767, - [SMALL_STATE(4126)] = 192831, - [SMALL_STATE(4127)] = 192895, - [SMALL_STATE(4128)] = 192959, - [SMALL_STATE(4129)] = 193023, - [SMALL_STATE(4130)] = 193087, - [SMALL_STATE(4131)] = 193151, - [SMALL_STATE(4132)] = 193215, - [SMALL_STATE(4133)] = 193279, - [SMALL_STATE(4134)] = 193343, - [SMALL_STATE(4135)] = 193407, - [SMALL_STATE(4136)] = 193471, - [SMALL_STATE(4137)] = 193535, - [SMALL_STATE(4138)] = 193599, - [SMALL_STATE(4139)] = 193663, - [SMALL_STATE(4140)] = 193763, - [SMALL_STATE(4141)] = 193867, - [SMALL_STATE(4142)] = 193971, - [SMALL_STATE(4143)] = 194073, - [SMALL_STATE(4144)] = 194141, - [SMALL_STATE(4145)] = 194205, - [SMALL_STATE(4146)] = 194269, - [SMALL_STATE(4147)] = 194333, - [SMALL_STATE(4148)] = 194397, - [SMALL_STATE(4149)] = 194461, - [SMALL_STATE(4150)] = 194525, - [SMALL_STATE(4151)] = 194589, - [SMALL_STATE(4152)] = 194653, - [SMALL_STATE(4153)] = 194717, - [SMALL_STATE(4154)] = 194781, - [SMALL_STATE(4155)] = 194845, - [SMALL_STATE(4156)] = 194909, - [SMALL_STATE(4157)] = 195005, - [SMALL_STATE(4158)] = 195099, - [SMALL_STATE(4159)] = 195189, - [SMALL_STATE(4160)] = 195277, - [SMALL_STATE(4161)] = 195363, - [SMALL_STATE(4162)] = 195445, - [SMALL_STATE(4163)] = 195523, - [SMALL_STATE(4164)] = 195601, - [SMALL_STATE(4165)] = 195669, - [SMALL_STATE(4166)] = 195733, - [SMALL_STATE(4167)] = 195797, - [SMALL_STATE(4168)] = 195861, - [SMALL_STATE(4169)] = 195925, - [SMALL_STATE(4170)] = 195989, - [SMALL_STATE(4171)] = 196053, - [SMALL_STATE(4172)] = 196117, - [SMALL_STATE(4173)] = 196181, - [SMALL_STATE(4174)] = 196245, - [SMALL_STATE(4175)] = 196309, - [SMALL_STATE(4176)] = 196373, - [SMALL_STATE(4177)] = 196437, - [SMALL_STATE(4178)] = 196501, - [SMALL_STATE(4179)] = 196565, - [SMALL_STATE(4180)] = 196629, - [SMALL_STATE(4181)] = 196693, - [SMALL_STATE(4182)] = 196757, - [SMALL_STATE(4183)] = 196821, - [SMALL_STATE(4184)] = 196885, - [SMALL_STATE(4185)] = 196949, - [SMALL_STATE(4186)] = 197013, - [SMALL_STATE(4187)] = 197077, - [SMALL_STATE(4188)] = 197141, - [SMALL_STATE(4189)] = 197205, - [SMALL_STATE(4190)] = 197269, - [SMALL_STATE(4191)] = 197333, - [SMALL_STATE(4192)] = 197397, - [SMALL_STATE(4193)] = 197503, - [SMALL_STATE(4194)] = 197567, - [SMALL_STATE(4195)] = 197667, - [SMALL_STATE(4196)] = 197771, - [SMALL_STATE(4197)] = 197875, - [SMALL_STATE(4198)] = 197977, - [SMALL_STATE(4199)] = 198041, - [SMALL_STATE(4200)] = 198105, - [SMALL_STATE(4201)] = 198169, - [SMALL_STATE(4202)] = 198233, - [SMALL_STATE(4203)] = 198297, - [SMALL_STATE(4204)] = 198361, - [SMALL_STATE(4205)] = 198425, - [SMALL_STATE(4206)] = 198489, - [SMALL_STATE(4207)] = 198553, - [SMALL_STATE(4208)] = 198621, - [SMALL_STATE(4209)] = 198685, - [SMALL_STATE(4210)] = 198749, - [SMALL_STATE(4211)] = 198813, - [SMALL_STATE(4212)] = 198877, - [SMALL_STATE(4213)] = 198941, - [SMALL_STATE(4214)] = 199005, - [SMALL_STATE(4215)] = 199069, - [SMALL_STATE(4216)] = 199133, - [SMALL_STATE(4217)] = 199197, - [SMALL_STATE(4218)] = 199261, - [SMALL_STATE(4219)] = 199325, - [SMALL_STATE(4220)] = 199389, - [SMALL_STATE(4221)] = 199453, - [SMALL_STATE(4222)] = 199517, - [SMALL_STATE(4223)] = 199581, - [SMALL_STATE(4224)] = 199645, - [SMALL_STATE(4225)] = 199709, - [SMALL_STATE(4226)] = 199773, - [SMALL_STATE(4227)] = 199837, - [SMALL_STATE(4228)] = 199901, - [SMALL_STATE(4229)] = 199965, - [SMALL_STATE(4230)] = 200029, - [SMALL_STATE(4231)] = 200093, - [SMALL_STATE(4232)] = 200157, - [SMALL_STATE(4233)] = 200221, - [SMALL_STATE(4234)] = 200285, - [SMALL_STATE(4235)] = 200349, - [SMALL_STATE(4236)] = 200413, - [SMALL_STATE(4237)] = 200477, - [SMALL_STATE(4238)] = 200541, - [SMALL_STATE(4239)] = 200605, - [SMALL_STATE(4240)] = 200669, - [SMALL_STATE(4241)] = 200733, - [SMALL_STATE(4242)] = 200797, - [SMALL_STATE(4243)] = 200861, - [SMALL_STATE(4244)] = 200925, - [SMALL_STATE(4245)] = 200989, - [SMALL_STATE(4246)] = 201053, - [SMALL_STATE(4247)] = 201117, - [SMALL_STATE(4248)] = 201225, - [SMALL_STATE(4249)] = 201289, - [SMALL_STATE(4250)] = 201353, - [SMALL_STATE(4251)] = 201417, - [SMALL_STATE(4252)] = 201481, - [SMALL_STATE(4253)] = 201545, - [SMALL_STATE(4254)] = 201609, - [SMALL_STATE(4255)] = 201673, - [SMALL_STATE(4256)] = 201737, - [SMALL_STATE(4257)] = 201801, - [SMALL_STATE(4258)] = 201865, - [SMALL_STATE(4259)] = 201929, - [SMALL_STATE(4260)] = 201993, - [SMALL_STATE(4261)] = 202099, - [SMALL_STATE(4262)] = 202167, - [SMALL_STATE(4263)] = 202231, - [SMALL_STATE(4264)] = 202295, - [SMALL_STATE(4265)] = 202359, - [SMALL_STATE(4266)] = 202423, - [SMALL_STATE(4267)] = 202491, - [SMALL_STATE(4268)] = 202555, - [SMALL_STATE(4269)] = 202619, - [SMALL_STATE(4270)] = 202725, - [SMALL_STATE(4271)] = 202793, - [SMALL_STATE(4272)] = 202857, - [SMALL_STATE(4273)] = 202961, - [SMALL_STATE(4274)] = 203069, - [SMALL_STATE(4275)] = 203133, - [SMALL_STATE(4276)] = 203201, - [SMALL_STATE(4277)] = 203265, - [SMALL_STATE(4278)] = 203329, - [SMALL_STATE(4279)] = 203393, - [SMALL_STATE(4280)] = 203457, - [SMALL_STATE(4281)] = 203521, - [SMALL_STATE(4282)] = 203585, - [SMALL_STATE(4283)] = 203649, - [SMALL_STATE(4284)] = 203713, - [SMALL_STATE(4285)] = 203777, - [SMALL_STATE(4286)] = 203841, - [SMALL_STATE(4287)] = 203905, - [SMALL_STATE(4288)] = 203969, - [SMALL_STATE(4289)] = 204033, - [SMALL_STATE(4290)] = 204097, - [SMALL_STATE(4291)] = 204161, - [SMALL_STATE(4292)] = 204225, - [SMALL_STATE(4293)] = 204289, - [SMALL_STATE(4294)] = 204353, - [SMALL_STATE(4295)] = 204417, - [SMALL_STATE(4296)] = 204521, - [SMALL_STATE(4297)] = 204585, - [SMALL_STATE(4298)] = 204653, - [SMALL_STATE(4299)] = 204717, - [SMALL_STATE(4300)] = 204781, - [SMALL_STATE(4301)] = 204845, - [SMALL_STATE(4302)] = 204909, - [SMALL_STATE(4303)] = 204973, - [SMALL_STATE(4304)] = 205037, - [SMALL_STATE(4305)] = 205101, - [SMALL_STATE(4306)] = 205165, - [SMALL_STATE(4307)] = 205229, - [SMALL_STATE(4308)] = 205293, - [SMALL_STATE(4309)] = 205357, - [SMALL_STATE(4310)] = 205421, - [SMALL_STATE(4311)] = 205485, - [SMALL_STATE(4312)] = 205549, - [SMALL_STATE(4313)] = 205613, - [SMALL_STATE(4314)] = 205677, - [SMALL_STATE(4315)] = 205741, - [SMALL_STATE(4316)] = 205805, - [SMALL_STATE(4317)] = 205869, - [SMALL_STATE(4318)] = 205937, - [SMALL_STATE(4319)] = 206003, - [SMALL_STATE(4320)] = 206069, - [SMALL_STATE(4321)] = 206133, - [SMALL_STATE(4322)] = 206197, - [SMALL_STATE(4323)] = 206263, - [SMALL_STATE(4324)] = 206329, - [SMALL_STATE(4325)] = 206393, - [SMALL_STATE(4326)] = 206491, - [SMALL_STATE(4327)] = 206593, - [SMALL_STATE(4328)] = 206657, - [SMALL_STATE(4329)] = 206721, - [SMALL_STATE(4330)] = 206785, - [SMALL_STATE(4331)] = 206887, - [SMALL_STATE(4332)] = 206987, - [SMALL_STATE(4333)] = 207051, - [SMALL_STATE(4334)] = 207115, - [SMALL_STATE(4335)] = 207221, - [SMALL_STATE(4336)] = 207285, - [SMALL_STATE(4337)] = 207393, - [SMALL_STATE(4338)] = 207457, - [SMALL_STATE(4339)] = 207565, - [SMALL_STATE(4340)] = 207629, - [SMALL_STATE(4341)] = 207693, - [SMALL_STATE(4342)] = 207757, - [SMALL_STATE(4343)] = 207821, - [SMALL_STATE(4344)] = 207885, - [SMALL_STATE(4345)] = 207949, - [SMALL_STATE(4346)] = 208013, - [SMALL_STATE(4347)] = 208077, - [SMALL_STATE(4348)] = 208141, - [SMALL_STATE(4349)] = 208205, - [SMALL_STATE(4350)] = 208269, - [SMALL_STATE(4351)] = 208333, - [SMALL_STATE(4352)] = 208397, - [SMALL_STATE(4353)] = 208461, - [SMALL_STATE(4354)] = 208525, - [SMALL_STATE(4355)] = 208589, - [SMALL_STATE(4356)] = 208653, - [SMALL_STATE(4357)] = 208717, - [SMALL_STATE(4358)] = 208781, - [SMALL_STATE(4359)] = 208845, - [SMALL_STATE(4360)] = 208909, - [SMALL_STATE(4361)] = 208973, - [SMALL_STATE(4362)] = 209037, - [SMALL_STATE(4363)] = 209101, - [SMALL_STATE(4364)] = 209169, - [SMALL_STATE(4365)] = 209233, - [SMALL_STATE(4366)] = 209297, - [SMALL_STATE(4367)] = 209361, - [SMALL_STATE(4368)] = 209425, - [SMALL_STATE(4369)] = 209489, - [SMALL_STATE(4370)] = 209553, - [SMALL_STATE(4371)] = 209621, - [SMALL_STATE(4372)] = 209701, - [SMALL_STATE(4373)] = 209787, - [SMALL_STATE(4374)] = 209857, - [SMALL_STATE(4375)] = 209933, - [SMALL_STATE(4376)] = 210005, - [SMALL_STATE(4377)] = 210103, - [SMALL_STATE(4378)] = 210199, - [SMALL_STATE(4379)] = 210291, - [SMALL_STATE(4380)] = 210381, - [SMALL_STATE(4381)] = 210469, - [SMALL_STATE(4382)] = 210553, - [SMALL_STATE(4383)] = 210631, - [SMALL_STATE(4384)] = 210709, - [SMALL_STATE(4385)] = 210777, - [SMALL_STATE(4386)] = 210845, - [SMALL_STATE(4387)] = 210913, - [SMALL_STATE(4388)] = 210981, - [SMALL_STATE(4389)] = 211045, - [SMALL_STATE(4390)] = 211111, - [SMALL_STATE(4391)] = 211175, - [SMALL_STATE(4392)] = 211239, - [SMALL_STATE(4393)] = 211303, - [SMALL_STATE(4394)] = 211367, - [SMALL_STATE(4395)] = 211431, - [SMALL_STATE(4396)] = 211495, - [SMALL_STATE(4397)] = 211559, - [SMALL_STATE(4398)] = 211639, - [SMALL_STATE(4399)] = 211725, - [SMALL_STATE(4400)] = 211795, - [SMALL_STATE(4401)] = 211871, - [SMALL_STATE(4402)] = 211943, - [SMALL_STATE(4403)] = 212041, - [SMALL_STATE(4404)] = 212137, - [SMALL_STATE(4405)] = 212229, - [SMALL_STATE(4406)] = 212319, - [SMALL_STATE(4407)] = 212407, - [SMALL_STATE(4408)] = 212491, - [SMALL_STATE(4409)] = 212569, - [SMALL_STATE(4410)] = 212647, - [SMALL_STATE(4411)] = 212711, - [SMALL_STATE(4412)] = 212775, - [SMALL_STATE(4413)] = 212839, - [SMALL_STATE(4414)] = 212903, - [SMALL_STATE(4415)] = 212967, - [SMALL_STATE(4416)] = 213031, - [SMALL_STATE(4417)] = 213095, - [SMALL_STATE(4418)] = 213195, - [SMALL_STATE(4419)] = 213299, - [SMALL_STATE(4420)] = 213403, - [SMALL_STATE(4421)] = 213505, - [SMALL_STATE(4422)] = 213569, - [SMALL_STATE(4423)] = 213633, - [SMALL_STATE(4424)] = 213697, - [SMALL_STATE(4425)] = 213761, - [SMALL_STATE(4426)] = 213825, - [SMALL_STATE(4427)] = 213889, - [SMALL_STATE(4428)] = 213953, - [SMALL_STATE(4429)] = 214017, - [SMALL_STATE(4430)] = 214123, - [SMALL_STATE(4431)] = 214187, - [SMALL_STATE(4432)] = 214251, - [SMALL_STATE(4433)] = 214315, - [SMALL_STATE(4434)] = 214379, - [SMALL_STATE(4435)] = 214443, - [SMALL_STATE(4436)] = 214507, - [SMALL_STATE(4437)] = 214571, - [SMALL_STATE(4438)] = 214635, - [SMALL_STATE(4439)] = 214703, - [SMALL_STATE(4440)] = 214809, - [SMALL_STATE(4441)] = 214873, - [SMALL_STATE(4442)] = 214937, - [SMALL_STATE(4443)] = 215001, - [SMALL_STATE(4444)] = 215065, - [SMALL_STATE(4445)] = 215129, - [SMALL_STATE(4446)] = 215193, - [SMALL_STATE(4447)] = 215257, - [SMALL_STATE(4448)] = 215321, - [SMALL_STATE(4449)] = 215385, - [SMALL_STATE(4450)] = 215449, - [SMALL_STATE(4451)] = 215513, - [SMALL_STATE(4452)] = 215577, - [SMALL_STATE(4453)] = 215641, - [SMALL_STATE(4454)] = 215705, - [SMALL_STATE(4455)] = 215773, - [SMALL_STATE(4456)] = 215837, - [SMALL_STATE(4457)] = 215917, - [SMALL_STATE(4458)] = 216003, - [SMALL_STATE(4459)] = 216073, - [SMALL_STATE(4460)] = 216149, - [SMALL_STATE(4461)] = 216221, - [SMALL_STATE(4462)] = 216319, - [SMALL_STATE(4463)] = 216415, - [SMALL_STATE(4464)] = 216507, - [SMALL_STATE(4465)] = 216597, - [SMALL_STATE(4466)] = 216685, - [SMALL_STATE(4467)] = 216769, - [SMALL_STATE(4468)] = 216847, - [SMALL_STATE(4469)] = 216925, - [SMALL_STATE(4470)] = 216989, - [SMALL_STATE(4471)] = 217053, - [SMALL_STATE(4472)] = 217117, - [SMALL_STATE(4473)] = 217181, - [SMALL_STATE(4474)] = 217245, - [SMALL_STATE(4475)] = 217309, - [SMALL_STATE(4476)] = 217373, - [SMALL_STATE(4477)] = 217437, - [SMALL_STATE(4478)] = 217501, - [SMALL_STATE(4479)] = 217565, - [SMALL_STATE(4480)] = 217629, - [SMALL_STATE(4481)] = 217693, - [SMALL_STATE(4482)] = 217757, - [SMALL_STATE(4483)] = 217821, - [SMALL_STATE(4484)] = 217920, - [SMALL_STATE(4485)] = 217983, - [SMALL_STATE(4486)] = 218084, - [SMALL_STATE(4487)] = 218147, - [SMALL_STATE(4488)] = 218210, - [SMALL_STATE(4489)] = 218273, - [SMALL_STATE(4490)] = 218370, - [SMALL_STATE(4491)] = 218433, - [SMALL_STATE(4492)] = 218496, - [SMALL_STATE(4493)] = 218597, - [SMALL_STATE(4494)] = 218660, - [SMALL_STATE(4495)] = 218723, - [SMALL_STATE(4496)] = 218824, - [SMALL_STATE(4497)] = 218903, - [SMALL_STATE(4498)] = 218988, - [SMALL_STATE(4499)] = 219087, - [SMALL_STATE(4500)] = 219156, - [SMALL_STATE(4501)] = 219231, - [SMALL_STATE(4502)] = 219302, - [SMALL_STATE(4503)] = 219365, - [SMALL_STATE(4504)] = 219462, - [SMALL_STATE(4505)] = 219557, - [SMALL_STATE(4506)] = 219648, - [SMALL_STATE(4507)] = 219737, - [SMALL_STATE(4508)] = 219824, - [SMALL_STATE(4509)] = 219907, - [SMALL_STATE(4510)] = 219984, - [SMALL_STATE(4511)] = 220061, - [SMALL_STATE(4512)] = 220166, - [SMALL_STATE(4513)] = 220229, - [SMALL_STATE(4514)] = 220292, - [SMALL_STATE(4515)] = 220355, - [SMALL_STATE(4516)] = 220458, - [SMALL_STATE(4517)] = 220521, - [SMALL_STATE(4518)] = 220584, - [SMALL_STATE(4519)] = 220647, - [SMALL_STATE(4520)] = 220710, - [SMALL_STATE(4521)] = 220773, - [SMALL_STATE(4522)] = 220836, - [SMALL_STATE(4523)] = 220937, - [SMALL_STATE(4524)] = 221000, - [SMALL_STATE(4525)] = 221079, - [SMALL_STATE(4526)] = 221142, - [SMALL_STATE(4527)] = 221205, - [SMALL_STATE(4528)] = 221268, - [SMALL_STATE(4529)] = 221331, - [SMALL_STATE(4530)] = 221394, - [SMALL_STATE(4531)] = 221457, - [SMALL_STATE(4532)] = 221520, - [SMALL_STATE(4533)] = 221583, - [SMALL_STATE(4534)] = 221650, - [SMALL_STATE(4535)] = 221713, - [SMALL_STATE(4536)] = 221776, - [SMALL_STATE(4537)] = 221839, - [SMALL_STATE(4538)] = 221902, - [SMALL_STATE(4539)] = 221987, - [SMALL_STATE(4540)] = 222056, - [SMALL_STATE(4541)] = 222119, - [SMALL_STATE(4542)] = 222182, - [SMALL_STATE(4543)] = 222247, - [SMALL_STATE(4544)] = 222310, - [SMALL_STATE(4545)] = 222373, - [SMALL_STATE(4546)] = 222436, - [SMALL_STATE(4547)] = 222499, - [SMALL_STATE(4548)] = 222562, - [SMALL_STATE(4549)] = 222637, - [SMALL_STATE(4550)] = 222708, - [SMALL_STATE(4551)] = 222771, - [SMALL_STATE(4552)] = 222850, - [SMALL_STATE(4553)] = 222913, - [SMALL_STATE(4554)] = 222976, - [SMALL_STATE(4555)] = 223039, - [SMALL_STATE(4556)] = 223106, - [SMALL_STATE(4557)] = 223169, - [SMALL_STATE(4558)] = 223254, - [SMALL_STATE(4559)] = 223317, - [SMALL_STATE(4560)] = 223420, - [SMALL_STATE(4561)] = 223523, - [SMALL_STATE(4562)] = 223624, - [SMALL_STATE(4563)] = 223687, - [SMALL_STATE(4564)] = 223750, - [SMALL_STATE(4565)] = 223813, - [SMALL_STATE(4566)] = 223912, - [SMALL_STATE(4567)] = 223981, - [SMALL_STATE(4568)] = 224056, - [SMALL_STATE(4569)] = 224127, - [SMALL_STATE(4570)] = 224230, - [SMALL_STATE(4571)] = 224333, - [SMALL_STATE(4572)] = 224438, - [SMALL_STATE(4573)] = 224539, - [SMALL_STATE(4574)] = 224636, - [SMALL_STATE(4575)] = 224731, - [SMALL_STATE(4576)] = 224822, - [SMALL_STATE(4577)] = 224911, - [SMALL_STATE(4578)] = 224974, - [SMALL_STATE(4579)] = 225061, - [SMALL_STATE(4580)] = 225144, - [SMALL_STATE(4581)] = 225221, - [SMALL_STATE(4582)] = 225284, - [SMALL_STATE(4583)] = 225349, - [SMALL_STATE(4584)] = 225426, - [SMALL_STATE(4585)] = 225489, - [SMALL_STATE(4586)] = 225552, - [SMALL_STATE(4587)] = 225615, - [SMALL_STATE(4588)] = 225678, - [SMALL_STATE(4589)] = 225741, - [SMALL_STATE(4590)] = 225804, - [SMALL_STATE(4591)] = 225909, - [SMALL_STATE(4592)] = 225972, - [SMALL_STATE(4593)] = 226075, - [SMALL_STATE(4594)] = 226138, - [SMALL_STATE(4595)] = 226201, - [SMALL_STATE(4596)] = 226264, - [SMALL_STATE(4597)] = 226363, - [SMALL_STATE(4598)] = 226466, - [SMALL_STATE(4599)] = 226569, - [SMALL_STATE(4600)] = 226670, - [SMALL_STATE(4601)] = 226733, - [SMALL_STATE(4602)] = 226796, - [SMALL_STATE(4603)] = 226859, - [SMALL_STATE(4604)] = 226922, - [SMALL_STATE(4605)] = 226985, - [SMALL_STATE(4606)] = 227048, - [SMALL_STATE(4607)] = 227115, - [SMALL_STATE(4608)] = 227178, - [SMALL_STATE(4609)] = 227241, - [SMALL_STATE(4610)] = 227346, - [SMALL_STATE(4611)] = 227445, - [SMALL_STATE(4612)] = 227548, - [SMALL_STATE(4613)] = 227611, - [SMALL_STATE(4614)] = 227674, - [SMALL_STATE(4615)] = 227737, - [SMALL_STATE(4616)] = 227800, - [SMALL_STATE(4617)] = 227863, - [SMALL_STATE(4618)] = 227966, - [SMALL_STATE(4619)] = 228029, - [SMALL_STATE(4620)] = 228092, - [SMALL_STATE(4621)] = 228155, - [SMALL_STATE(4622)] = 228218, - [SMALL_STATE(4623)] = 228281, - [SMALL_STATE(4624)] = 228344, - [SMALL_STATE(4625)] = 228407, - [SMALL_STATE(4626)] = 228470, - [SMALL_STATE(4627)] = 228549, - [SMALL_STATE(4628)] = 228632, - [SMALL_STATE(4629)] = 228701, - [SMALL_STATE(4630)] = 228776, - [SMALL_STATE(4631)] = 228847, - [SMALL_STATE(4632)] = 228924, - [SMALL_STATE(4633)] = 229017, - [SMALL_STATE(4634)] = 229106, - [SMALL_STATE(4635)] = 229193, - [SMALL_STATE(4636)] = 229278, - [SMALL_STATE(4637)] = 229359, - [SMALL_STATE(4638)] = 229436, - [SMALL_STATE(4639)] = 229513, - [SMALL_STATE(4640)] = 229576, - [SMALL_STATE(4641)] = 229639, - [SMALL_STATE(4642)] = 229702, - [SMALL_STATE(4643)] = 229799, - [SMALL_STATE(4644)] = 229894, - [SMALL_STATE(4645)] = 229999, - [SMALL_STATE(4646)] = 230078, - [SMALL_STATE(4647)] = 230161, - [SMALL_STATE(4648)] = 230224, - [SMALL_STATE(4649)] = 230287, - [SMALL_STATE(4650)] = 230350, - [SMALL_STATE(4651)] = 230453, - [SMALL_STATE(4652)] = 230550, - [SMALL_STATE(4653)] = 230613, - [SMALL_STATE(4654)] = 230676, - [SMALL_STATE(4655)] = 230739, - [SMALL_STATE(4656)] = 230802, - [SMALL_STATE(4657)] = 230865, - [SMALL_STATE(4658)] = 230928, - [SMALL_STATE(4659)] = 230997, - [SMALL_STATE(4660)] = 231060, - [SMALL_STATE(4661)] = 231123, - [SMALL_STATE(4662)] = 231186, - [SMALL_STATE(4663)] = 231261, - [SMALL_STATE(4664)] = 231324, - [SMALL_STATE(4665)] = 231387, - [SMALL_STATE(4666)] = 231450, - [SMALL_STATE(4667)] = 231547, - [SMALL_STATE(4668)] = 231610, - [SMALL_STATE(4669)] = 231673, - [SMALL_STATE(4670)] = 231744, - [SMALL_STATE(4671)] = 231845, - [SMALL_STATE(4672)] = 231908, - [SMALL_STATE(4673)] = 232009, - [SMALL_STATE(4674)] = 232112, - [SMALL_STATE(4675)] = 232175, - [SMALL_STATE(4676)] = 232238, - [SMALL_STATE(4677)] = 232341, - [SMALL_STATE(4678)] = 232404, - [SMALL_STATE(4679)] = 232467, - [SMALL_STATE(4680)] = 232572, - [SMALL_STATE(4681)] = 232635, - [SMALL_STATE(4682)] = 232698, - [SMALL_STATE(4683)] = 232761, - [SMALL_STATE(4684)] = 232824, - [SMALL_STATE(4685)] = 232887, - [SMALL_STATE(4686)] = 232986, - [SMALL_STATE(4687)] = 233049, - [SMALL_STATE(4688)] = 233112, - [SMALL_STATE(4689)] = 233215, - [SMALL_STATE(4690)] = 233310, - [SMALL_STATE(4691)] = 233373, - [SMALL_STATE(4692)] = 233436, - [SMALL_STATE(4693)] = 233533, - [SMALL_STATE(4694)] = 233612, - [SMALL_STATE(4695)] = 233695, - [SMALL_STATE(4696)] = 233764, - [SMALL_STATE(4697)] = 233839, - [SMALL_STATE(4698)] = 233910, - [SMALL_STATE(4699)] = 234005, - [SMALL_STATE(4700)] = 234098, - [SMALL_STATE(4701)] = 234187, - [SMALL_STATE(4702)] = 234274, - [SMALL_STATE(4703)] = 234359, - [SMALL_STATE(4704)] = 234440, - [SMALL_STATE(4705)] = 234517, - [SMALL_STATE(4706)] = 234594, - [SMALL_STATE(4707)] = 234695, - [SMALL_STATE(4708)] = 234796, - [SMALL_STATE(4709)] = 234895, - [SMALL_STATE(4710)] = 234988, - [SMALL_STATE(4711)] = 235077, - [SMALL_STATE(4712)] = 235164, - [SMALL_STATE(4713)] = 235249, - [SMALL_STATE(4714)] = 235352, - [SMALL_STATE(4715)] = 235415, - [SMALL_STATE(4716)] = 235478, - [SMALL_STATE(4717)] = 235545, - [SMALL_STATE(4718)] = 235608, - [SMALL_STATE(4719)] = 235689, - [SMALL_STATE(4720)] = 235766, - [SMALL_STATE(4721)] = 235829, - [SMALL_STATE(4722)] = 235892, - [SMALL_STATE(4723)] = 235955, - [SMALL_STATE(4724)] = 236032, - [SMALL_STATE(4725)] = 236099, - [SMALL_STATE(4726)] = 236190, - [SMALL_STATE(4727)] = 236279, - [SMALL_STATE(4728)] = 236342, - [SMALL_STATE(4729)] = 236429, - [SMALL_STATE(4730)] = 236512, - [SMALL_STATE(4731)] = 236589, - [SMALL_STATE(4732)] = 236666, - [SMALL_STATE(4733)] = 236733, - [SMALL_STATE(4734)] = 236836, - [SMALL_STATE(4735)] = 236941, - [SMALL_STATE(4736)] = 237004, - [SMALL_STATE(4737)] = 237067, - [SMALL_STATE(4738)] = 237130, - [SMALL_STATE(4739)] = 237193, - [SMALL_STATE(4740)] = 237256, - [SMALL_STATE(4741)] = 237335, - [SMALL_STATE(4742)] = 237418, - [SMALL_STATE(4743)] = 237487, - [SMALL_STATE(4744)] = 237562, - [SMALL_STATE(4745)] = 237633, - [SMALL_STATE(4746)] = 237728, - [SMALL_STATE(4747)] = 237821, - [SMALL_STATE(4748)] = 237910, - [SMALL_STATE(4749)] = 237997, - [SMALL_STATE(4750)] = 238082, - [SMALL_STATE(4751)] = 238163, - [SMALL_STATE(4752)] = 238240, - [SMALL_STATE(4753)] = 238335, - [SMALL_STATE(4754)] = 238419, - [SMALL_STATE(4755)] = 238521, - [SMALL_STATE(4756)] = 238623, - [SMALL_STATE(4757)] = 238725, - [SMALL_STATE(4758)] = 238827, - [SMALL_STATE(4759)] = 238905, - [SMALL_STATE(4760)] = 238987, - [SMALL_STATE(4761)] = 239055, - [SMALL_STATE(4762)] = 239129, - [SMALL_STATE(4763)] = 239199, - [SMALL_STATE(4764)] = 239301, - [SMALL_STATE(4765)] = 239395, - [SMALL_STATE(4766)] = 239487, - [SMALL_STATE(4767)] = 239575, - [SMALL_STATE(4768)] = 239661, - [SMALL_STATE(4769)] = 239763, - [SMALL_STATE(4770)] = 239843, - [SMALL_STATE(4771)] = 239919, - [SMALL_STATE(4772)] = 239995, - [SMALL_STATE(4773)] = 240097, - [SMALL_STATE(4774)] = 240199, - [SMALL_STATE(4775)] = 240301, - [SMALL_STATE(4776)] = 240403, - [SMALL_STATE(4777)] = 240505, - [SMALL_STATE(4778)] = 240607, - [SMALL_STATE(4779)] = 240671, - [SMALL_STATE(4780)] = 240773, - [SMALL_STATE(4781)] = 240875, - [SMALL_STATE(4782)] = 240977, - [SMALL_STATE(4783)] = 241079, - [SMALL_STATE(4784)] = 241181, - [SMALL_STATE(4785)] = 241283, - [SMALL_STATE(4786)] = 241379, - [SMALL_STATE(4787)] = 241475, - [SMALL_STATE(4788)] = 241553, - [SMALL_STATE(4789)] = 241635, - [SMALL_STATE(4790)] = 241703, - [SMALL_STATE(4791)] = 241777, - [SMALL_STATE(4792)] = 241847, - [SMALL_STATE(4793)] = 241941, - [SMALL_STATE(4794)] = 242033, - [SMALL_STATE(4795)] = 242121, - [SMALL_STATE(4796)] = 242207, - [SMALL_STATE(4797)] = 242287, - [SMALL_STATE(4798)] = 242363, - [SMALL_STATE(4799)] = 242439, - [SMALL_STATE(4800)] = 242539, - [SMALL_STATE(4801)] = 242639, - [SMALL_STATE(4802)] = 242741, - [SMALL_STATE(4803)] = 242841, - [SMALL_STATE(4804)] = 242941, - [SMALL_STATE(4805)] = 243039, - [SMALL_STATE(4806)] = 243137, - [SMALL_STATE(4807)] = 243239, - [SMALL_STATE(4808)] = 243341, - [SMALL_STATE(4809)] = 243443, - [SMALL_STATE(4810)] = 243545, - [SMALL_STATE(4811)] = 243647, - [SMALL_STATE(4812)] = 243749, - [SMALL_STATE(4813)] = 243851, - [SMALL_STATE(4814)] = 243953, - [SMALL_STATE(4815)] = 244055, - [SMALL_STATE(4816)] = 244133, - [SMALL_STATE(4817)] = 244215, - [SMALL_STATE(4818)] = 244283, - [SMALL_STATE(4819)] = 244357, - [SMALL_STATE(4820)] = 244427, - [SMALL_STATE(4821)] = 244491, - [SMALL_STATE(4822)] = 244593, - [SMALL_STATE(4823)] = 244695, - [SMALL_STATE(4824)] = 244789, - [SMALL_STATE(4825)] = 244881, - [SMALL_STATE(4826)] = 244969, - [SMALL_STATE(4827)] = 245055, - [SMALL_STATE(4828)] = 245157, - [SMALL_STATE(4829)] = 245259, - [SMALL_STATE(4830)] = 245361, - [SMALL_STATE(4831)] = 245445, - [SMALL_STATE(4832)] = 245547, - [SMALL_STATE(4833)] = 245649, - [SMALL_STATE(4834)] = 245729, - [SMALL_STATE(4835)] = 245805, - [SMALL_STATE(4836)] = 245881, - [SMALL_STATE(4837)] = 245983, - [SMALL_STATE(4838)] = 246085, - [SMALL_STATE(4839)] = 246187, - [SMALL_STATE(4840)] = 246289, - [SMALL_STATE(4841)] = 246391, - [SMALL_STATE(4842)] = 246493, - [SMALL_STATE(4843)] = 246589, - [SMALL_STATE(4844)] = 246689, - [SMALL_STATE(4845)] = 246789, - [SMALL_STATE(4846)] = 246891, - [SMALL_STATE(4847)] = 246989, - [SMALL_STATE(4848)] = 247091, - [SMALL_STATE(4849)] = 247175, - [SMALL_STATE(4850)] = 247274, - [SMALL_STATE(4851)] = 247325, - [SMALL_STATE(4852)] = 247376, - [SMALL_STATE(4853)] = 247427, - [SMALL_STATE(4854)] = 247478, - [SMALL_STATE(4855)] = 247529, - [SMALL_STATE(4856)] = 247580, - [SMALL_STATE(4857)] = 247631, - [SMALL_STATE(4858)] = 247682, - [SMALL_STATE(4859)] = 247733, - [SMALL_STATE(4860)] = 247784, - [SMALL_STATE(4861)] = 247835, - [SMALL_STATE(4862)] = 247886, - [SMALL_STATE(4863)] = 247937, - [SMALL_STATE(4864)] = 247988, - [SMALL_STATE(4865)] = 248039, - [SMALL_STATE(4866)] = 248090, - [SMALL_STATE(4867)] = 248141, - [SMALL_STATE(4868)] = 248192, - [SMALL_STATE(4869)] = 248243, - [SMALL_STATE(4870)] = 248294, - [SMALL_STATE(4871)] = 248345, - [SMALL_STATE(4872)] = 248396, - [SMALL_STATE(4873)] = 248447, - [SMALL_STATE(4874)] = 248498, - [SMALL_STATE(4875)] = 248549, - [SMALL_STATE(4876)] = 248600, - [SMALL_STATE(4877)] = 248651, - [SMALL_STATE(4878)] = 248702, - [SMALL_STATE(4879)] = 248753, - [SMALL_STATE(4880)] = 248804, - [SMALL_STATE(4881)] = 248855, - [SMALL_STATE(4882)] = 248906, - [SMALL_STATE(4883)] = 248957, - [SMALL_STATE(4884)] = 249008, - [SMALL_STATE(4885)] = 249059, - [SMALL_STATE(4886)] = 249110, - [SMALL_STATE(4887)] = 249161, - [SMALL_STATE(4888)] = 249212, - [SMALL_STATE(4889)] = 249263, - [SMALL_STATE(4890)] = 249314, - [SMALL_STATE(4891)] = 249360, - [SMALL_STATE(4892)] = 249406, - [SMALL_STATE(4893)] = 249451, - [SMALL_STATE(4894)] = 249496, - [SMALL_STATE(4895)] = 249541, - [SMALL_STATE(4896)] = 249586, - [SMALL_STATE(4897)] = 249631, - [SMALL_STATE(4898)] = 249676, - [SMALL_STATE(4899)] = 249721, - [SMALL_STATE(4900)] = 249766, - [SMALL_STATE(4901)] = 249811, - [SMALL_STATE(4902)] = 249856, - [SMALL_STATE(4903)] = 249901, - [SMALL_STATE(4904)] = 249946, - [SMALL_STATE(4905)] = 249991, - [SMALL_STATE(4906)] = 250036, - [SMALL_STATE(4907)] = 250081, - [SMALL_STATE(4908)] = 250126, - [SMALL_STATE(4909)] = 250171, - [SMALL_STATE(4910)] = 250216, - [SMALL_STATE(4911)] = 250261, - [SMALL_STATE(4912)] = 250306, - [SMALL_STATE(4913)] = 250351, - [SMALL_STATE(4914)] = 250396, - [SMALL_STATE(4915)] = 250441, - [SMALL_STATE(4916)] = 250486, - [SMALL_STATE(4917)] = 250531, - [SMALL_STATE(4918)] = 250576, - [SMALL_STATE(4919)] = 250621, - [SMALL_STATE(4920)] = 250666, - [SMALL_STATE(4921)] = 250711, - [SMALL_STATE(4922)] = 250756, - [SMALL_STATE(4923)] = 250801, - [SMALL_STATE(4924)] = 250846, - [SMALL_STATE(4925)] = 250891, - [SMALL_STATE(4926)] = 250936, - [SMALL_STATE(4927)] = 250981, - [SMALL_STATE(4928)] = 251026, - [SMALL_STATE(4929)] = 251071, - [SMALL_STATE(4930)] = 251116, - [SMALL_STATE(4931)] = 251161, - [SMALL_STATE(4932)] = 251206, - [SMALL_STATE(4933)] = 251251, - [SMALL_STATE(4934)] = 251296, - [SMALL_STATE(4935)] = 251341, - [SMALL_STATE(4936)] = 251386, - [SMALL_STATE(4937)] = 251431, - [SMALL_STATE(4938)] = 251476, - [SMALL_STATE(4939)] = 251521, - [SMALL_STATE(4940)] = 251566, - [SMALL_STATE(4941)] = 251611, - [SMALL_STATE(4942)] = 251656, - [SMALL_STATE(4943)] = 251701, - [SMALL_STATE(4944)] = 251746, - [SMALL_STATE(4945)] = 251791, - [SMALL_STATE(4946)] = 251836, - [SMALL_STATE(4947)] = 251881, - [SMALL_STATE(4948)] = 251926, - [SMALL_STATE(4949)] = 251971, - [SMALL_STATE(4950)] = 252016, - [SMALL_STATE(4951)] = 252061, - [SMALL_STATE(4952)] = 252106, - [SMALL_STATE(4953)] = 252151, - [SMALL_STATE(4954)] = 252196, - [SMALL_STATE(4955)] = 252241, - [SMALL_STATE(4956)] = 252286, - [SMALL_STATE(4957)] = 252331, - [SMALL_STATE(4958)] = 252376, - [SMALL_STATE(4959)] = 252421, - [SMALL_STATE(4960)] = 252466, - [SMALL_STATE(4961)] = 252511, - [SMALL_STATE(4962)] = 252556, - [SMALL_STATE(4963)] = 252601, - [SMALL_STATE(4964)] = 252646, - [SMALL_STATE(4965)] = 252691, - [SMALL_STATE(4966)] = 252736, - [SMALL_STATE(4967)] = 252781, - [SMALL_STATE(4968)] = 252826, - [SMALL_STATE(4969)] = 252871, - [SMALL_STATE(4970)] = 252916, - [SMALL_STATE(4971)] = 252961, - [SMALL_STATE(4972)] = 253006, - [SMALL_STATE(4973)] = 253051, - [SMALL_STATE(4974)] = 253096, - [SMALL_STATE(4975)] = 253141, - [SMALL_STATE(4976)] = 253186, - [SMALL_STATE(4977)] = 253230, - [SMALL_STATE(4978)] = 253274, - [SMALL_STATE(4979)] = 253315, - [SMALL_STATE(4980)] = 253356, - [SMALL_STATE(4981)] = 253397, - [SMALL_STATE(4982)] = 253438, - [SMALL_STATE(4983)] = 253479, - [SMALL_STATE(4984)] = 253520, - [SMALL_STATE(4985)] = 253561, - [SMALL_STATE(4986)] = 253602, - [SMALL_STATE(4987)] = 253643, - [SMALL_STATE(4988)] = 253684, - [SMALL_STATE(4989)] = 253725, - [SMALL_STATE(4990)] = 253766, - [SMALL_STATE(4991)] = 253807, - [SMALL_STATE(4992)] = 253848, - [SMALL_STATE(4993)] = 253889, - [SMALL_STATE(4994)] = 253930, - [SMALL_STATE(4995)] = 253971, - [SMALL_STATE(4996)] = 254012, - [SMALL_STATE(4997)] = 254053, - [SMALL_STATE(4998)] = 254094, - [SMALL_STATE(4999)] = 254135, - [SMALL_STATE(5000)] = 254176, - [SMALL_STATE(5001)] = 254217, - [SMALL_STATE(5002)] = 254258, - [SMALL_STATE(5003)] = 254299, - [SMALL_STATE(5004)] = 254330, - [SMALL_STATE(5005)] = 254361, - [SMALL_STATE(5006)] = 254392, - [SMALL_STATE(5007)] = 254423, - [SMALL_STATE(5008)] = 254454, - [SMALL_STATE(5009)] = 254485, - [SMALL_STATE(5010)] = 254516, - [SMALL_STATE(5011)] = 254547, - [SMALL_STATE(5012)] = 254578, - [SMALL_STATE(5013)] = 254609, - [SMALL_STATE(5014)] = 254640, - [SMALL_STATE(5015)] = 254671, - [SMALL_STATE(5016)] = 254702, - [SMALL_STATE(5017)] = 254733, - [SMALL_STATE(5018)] = 254764, - [SMALL_STATE(5019)] = 254795, - [SMALL_STATE(5020)] = 254826, - [SMALL_STATE(5021)] = 254857, - [SMALL_STATE(5022)] = 254888, - [SMALL_STATE(5023)] = 254919, - [SMALL_STATE(5024)] = 254950, - [SMALL_STATE(5025)] = 254981, - [SMALL_STATE(5026)] = 255012, - [SMALL_STATE(5027)] = 255043, - [SMALL_STATE(5028)] = 255074, - [SMALL_STATE(5029)] = 255105, - [SMALL_STATE(5030)] = 255136, - [SMALL_STATE(5031)] = 255167, - [SMALL_STATE(5032)] = 255198, - [SMALL_STATE(5033)] = 255229, - [SMALL_STATE(5034)] = 255260, - [SMALL_STATE(5035)] = 255291, - [SMALL_STATE(5036)] = 255322, - [SMALL_STATE(5037)] = 255353, - [SMALL_STATE(5038)] = 255384, - [SMALL_STATE(5039)] = 255415, - [SMALL_STATE(5040)] = 255446, - [SMALL_STATE(5041)] = 255477, - [SMALL_STATE(5042)] = 255508, - [SMALL_STATE(5043)] = 255539, - [SMALL_STATE(5044)] = 255570, - [SMALL_STATE(5045)] = 255601, - [SMALL_STATE(5046)] = 255632, - [SMALL_STATE(5047)] = 255663, - [SMALL_STATE(5048)] = 255694, - [SMALL_STATE(5049)] = 255725, - [SMALL_STATE(5050)] = 255756, - [SMALL_STATE(5051)] = 255787, - [SMALL_STATE(5052)] = 255818, - [SMALL_STATE(5053)] = 255849, - [SMALL_STATE(5054)] = 255880, - [SMALL_STATE(5055)] = 255911, - [SMALL_STATE(5056)] = 255942, - [SMALL_STATE(5057)] = 255973, - [SMALL_STATE(5058)] = 256004, - [SMALL_STATE(5059)] = 256035, - [SMALL_STATE(5060)] = 256066, - [SMALL_STATE(5061)] = 256097, - [SMALL_STATE(5062)] = 256128, - [SMALL_STATE(5063)] = 256159, - [SMALL_STATE(5064)] = 256190, - [SMALL_STATE(5065)] = 256221, - [SMALL_STATE(5066)] = 256252, - [SMALL_STATE(5067)] = 256283, - [SMALL_STATE(5068)] = 256314, - [SMALL_STATE(5069)] = 256345, - [SMALL_STATE(5070)] = 256376, - [SMALL_STATE(5071)] = 256407, - [SMALL_STATE(5072)] = 256438, - [SMALL_STATE(5073)] = 256469, - [SMALL_STATE(5074)] = 256500, - [SMALL_STATE(5075)] = 256530, - [SMALL_STATE(5076)] = 256560, - [SMALL_STATE(5077)] = 256590, - [SMALL_STATE(5078)] = 256620, - [SMALL_STATE(5079)] = 256650, - [SMALL_STATE(5080)] = 256680, - [SMALL_STATE(5081)] = 256710, - [SMALL_STATE(5082)] = 256740, - [SMALL_STATE(5083)] = 256770, - [SMALL_STATE(5084)] = 256800, - [SMALL_STATE(5085)] = 256830, - [SMALL_STATE(5086)] = 256860, - [SMALL_STATE(5087)] = 256890, - [SMALL_STATE(5088)] = 256920, - [SMALL_STATE(5089)] = 256950, - [SMALL_STATE(5090)] = 256980, - [SMALL_STATE(5091)] = 257010, - [SMALL_STATE(5092)] = 257040, + [SMALL_STATE(1452)] = 0, + [SMALL_STATE(1453)] = 73, + [SMALL_STATE(1454)] = 146, + [SMALL_STATE(1455)] = 275, + [SMALL_STATE(1456)] = 348, + [SMALL_STATE(1457)] = 427, + [SMALL_STATE(1458)] = 500, + [SMALL_STATE(1459)] = 575, + [SMALL_STATE(1460)] = 648, + [SMALL_STATE(1461)] = 725, + [SMALL_STATE(1462)] = 800, + [SMALL_STATE(1463)] = 873, + [SMALL_STATE(1464)] = 946, + [SMALL_STATE(1465)] = 1075, + [SMALL_STATE(1466)] = 1148, + [SMALL_STATE(1467)] = 1221, + [SMALL_STATE(1468)] = 1300, + [SMALL_STATE(1469)] = 1373, + [SMALL_STATE(1470)] = 1448, + [SMALL_STATE(1471)] = 1521, + [SMALL_STATE(1472)] = 1600, + [SMALL_STATE(1473)] = 1729, + [SMALL_STATE(1474)] = 1804, + [SMALL_STATE(1475)] = 1879, + [SMALL_STATE(1476)] = 1952, + [SMALL_STATE(1477)] = 2081, + [SMALL_STATE(1478)] = 2154, + [SMALL_STATE(1479)] = 2283, + [SMALL_STATE(1480)] = 2358, + [SMALL_STATE(1481)] = 2487, + [SMALL_STATE(1482)] = 2560, + [SMALL_STATE(1483)] = 2633, + [SMALL_STATE(1484)] = 2706, + [SMALL_STATE(1485)] = 2779, + [SMALL_STATE(1486)] = 2852, + [SMALL_STATE(1487)] = 2925, + [SMALL_STATE(1488)] = 3004, + [SMALL_STATE(1489)] = 3133, + [SMALL_STATE(1490)] = 3208, + [SMALL_STATE(1491)] = 3337, + [SMALL_STATE(1492)] = 3410, + [SMALL_STATE(1493)] = 3483, + [SMALL_STATE(1494)] = 3562, + [SMALL_STATE(1495)] = 3634, + [SMALL_STATE(1496)] = 3706, + [SMALL_STATE(1497)] = 3778, + [SMALL_STATE(1498)] = 3850, + [SMALL_STATE(1499)] = 3922, + [SMALL_STATE(1500)] = 3994, + [SMALL_STATE(1501)] = 4066, + [SMALL_STATE(1502)] = 4138, + [SMALL_STATE(1503)] = 4210, + [SMALL_STATE(1504)] = 4282, + [SMALL_STATE(1505)] = 4354, + [SMALL_STATE(1506)] = 4426, + [SMALL_STATE(1507)] = 4498, + [SMALL_STATE(1508)] = 4570, + [SMALL_STATE(1509)] = 4642, + [SMALL_STATE(1510)] = 4714, + [SMALL_STATE(1511)] = 4786, + [SMALL_STATE(1512)] = 4858, + [SMALL_STATE(1513)] = 4930, + [SMALL_STATE(1514)] = 5002, + [SMALL_STATE(1515)] = 5074, + [SMALL_STATE(1516)] = 5146, + [SMALL_STATE(1517)] = 5218, + [SMALL_STATE(1518)] = 5290, + [SMALL_STATE(1519)] = 5362, + [SMALL_STATE(1520)] = 5434, + [SMALL_STATE(1521)] = 5506, + [SMALL_STATE(1522)] = 5578, + [SMALL_STATE(1523)] = 5650, + [SMALL_STATE(1524)] = 5722, + [SMALL_STATE(1525)] = 5794, + [SMALL_STATE(1526)] = 5866, + [SMALL_STATE(1527)] = 5938, + [SMALL_STATE(1528)] = 6010, + [SMALL_STATE(1529)] = 6082, + [SMALL_STATE(1530)] = 6154, + [SMALL_STATE(1531)] = 6226, + [SMALL_STATE(1532)] = 6298, + [SMALL_STATE(1533)] = 6370, + [SMALL_STATE(1534)] = 6442, + [SMALL_STATE(1535)] = 6514, + [SMALL_STATE(1536)] = 6586, + [SMALL_STATE(1537)] = 6658, + [SMALL_STATE(1538)] = 6730, + [SMALL_STATE(1539)] = 6802, + [SMALL_STATE(1540)] = 6874, + [SMALL_STATE(1541)] = 6946, + [SMALL_STATE(1542)] = 7064, + [SMALL_STATE(1543)] = 7136, + [SMALL_STATE(1544)] = 7208, + [SMALL_STATE(1545)] = 7280, + [SMALL_STATE(1546)] = 7352, + [SMALL_STATE(1547)] = 7424, + [SMALL_STATE(1548)] = 7496, + [SMALL_STATE(1549)] = 7568, + [SMALL_STATE(1550)] = 7640, + [SMALL_STATE(1551)] = 7712, + [SMALL_STATE(1552)] = 7784, + [SMALL_STATE(1553)] = 7856, + [SMALL_STATE(1554)] = 7928, + [SMALL_STATE(1555)] = 8000, + [SMALL_STATE(1556)] = 8072, + [SMALL_STATE(1557)] = 8146, + [SMALL_STATE(1558)] = 8220, + [SMALL_STATE(1559)] = 8292, + [SMALL_STATE(1560)] = 8364, + [SMALL_STATE(1561)] = 8436, + [SMALL_STATE(1562)] = 8508, + [SMALL_STATE(1563)] = 8580, + [SMALL_STATE(1564)] = 8652, + [SMALL_STATE(1565)] = 8724, + [SMALL_STATE(1566)] = 8796, + [SMALL_STATE(1567)] = 8868, + [SMALL_STATE(1568)] = 8944, + [SMALL_STATE(1569)] = 9016, + [SMALL_STATE(1570)] = 9094, + [SMALL_STATE(1571)] = 9172, + [SMALL_STATE(1572)] = 9244, + [SMALL_STATE(1573)] = 9322, + [SMALL_STATE(1574)] = 9394, + [SMALL_STATE(1575)] = 9466, + [SMALL_STATE(1576)] = 9538, + [SMALL_STATE(1577)] = 9610, + [SMALL_STATE(1578)] = 9682, + [SMALL_STATE(1579)] = 9754, + [SMALL_STATE(1580)] = 9826, + [SMALL_STATE(1581)] = 9898, + [SMALL_STATE(1582)] = 9970, + [SMALL_STATE(1583)] = 10042, + [SMALL_STATE(1584)] = 10114, + [SMALL_STATE(1585)] = 10186, + [SMALL_STATE(1586)] = 10258, + [SMALL_STATE(1587)] = 10330, + [SMALL_STATE(1588)] = 10402, + [SMALL_STATE(1589)] = 10474, + [SMALL_STATE(1590)] = 10546, + [SMALL_STATE(1591)] = 10618, + [SMALL_STATE(1592)] = 10690, + [SMALL_STATE(1593)] = 10762, + [SMALL_STATE(1594)] = 10834, + [SMALL_STATE(1595)] = 10906, + [SMALL_STATE(1596)] = 10978, + [SMALL_STATE(1597)] = 11050, + [SMALL_STATE(1598)] = 11122, + [SMALL_STATE(1599)] = 11194, + [SMALL_STATE(1600)] = 11266, + [SMALL_STATE(1601)] = 11338, + [SMALL_STATE(1602)] = 11412, + [SMALL_STATE(1603)] = 11486, + [SMALL_STATE(1604)] = 11560, + [SMALL_STATE(1605)] = 11632, + [SMALL_STATE(1606)] = 11704, + [SMALL_STATE(1607)] = 11776, + [SMALL_STATE(1608)] = 11848, + [SMALL_STATE(1609)] = 11920, + [SMALL_STATE(1610)] = 11992, + [SMALL_STATE(1611)] = 12064, + [SMALL_STATE(1612)] = 12136, + [SMALL_STATE(1613)] = 12208, + [SMALL_STATE(1614)] = 12280, + [SMALL_STATE(1615)] = 12352, + [SMALL_STATE(1616)] = 12424, + [SMALL_STATE(1617)] = 12496, + [SMALL_STATE(1618)] = 12568, + [SMALL_STATE(1619)] = 12640, + [SMALL_STATE(1620)] = 12712, + [SMALL_STATE(1621)] = 12784, + [SMALL_STATE(1622)] = 12856, + [SMALL_STATE(1623)] = 12928, + [SMALL_STATE(1624)] = 13000, + [SMALL_STATE(1625)] = 13072, + [SMALL_STATE(1626)] = 13144, + [SMALL_STATE(1627)] = 13216, + [SMALL_STATE(1628)] = 13288, + [SMALL_STATE(1629)] = 13360, + [SMALL_STATE(1630)] = 13436, + [SMALL_STATE(1631)] = 13508, + [SMALL_STATE(1632)] = 13580, + [SMALL_STATE(1633)] = 13656, + [SMALL_STATE(1634)] = 13732, + [SMALL_STATE(1635)] = 13808, + [SMALL_STATE(1636)] = 13880, + [SMALL_STATE(1637)] = 13952, + [SMALL_STATE(1638)] = 14024, + [SMALL_STATE(1639)] = 14096, + [SMALL_STATE(1640)] = 14168, + [SMALL_STATE(1641)] = 14242, + [SMALL_STATE(1642)] = 14318, + [SMALL_STATE(1643)] = 14390, + [SMALL_STATE(1644)] = 14462, + [SMALL_STATE(1645)] = 14534, + [SMALL_STATE(1646)] = 14606, + [SMALL_STATE(1647)] = 14678, + [SMALL_STATE(1648)] = 14750, + [SMALL_STATE(1649)] = 14822, + [SMALL_STATE(1650)] = 14894, + [SMALL_STATE(1651)] = 14966, + [SMALL_STATE(1652)] = 15038, + [SMALL_STATE(1653)] = 15110, + [SMALL_STATE(1654)] = 15182, + [SMALL_STATE(1655)] = 15254, + [SMALL_STATE(1656)] = 15326, + [SMALL_STATE(1657)] = 15398, + [SMALL_STATE(1658)] = 15469, + [SMALL_STATE(1659)] = 15554, + [SMALL_STATE(1660)] = 15625, + [SMALL_STATE(1661)] = 15696, + [SMALL_STATE(1662)] = 15767, + [SMALL_STATE(1663)] = 15838, + [SMALL_STATE(1664)] = 15909, + [SMALL_STATE(1665)] = 15980, + [SMALL_STATE(1666)] = 16051, + [SMALL_STATE(1667)] = 16122, + [SMALL_STATE(1668)] = 16193, + [SMALL_STATE(1669)] = 16264, + [SMALL_STATE(1670)] = 16335, + [SMALL_STATE(1671)] = 16406, + [SMALL_STATE(1672)] = 16477, + [SMALL_STATE(1673)] = 16548, + [SMALL_STATE(1674)] = 16619, + [SMALL_STATE(1675)] = 16690, + [SMALL_STATE(1676)] = 16803, + [SMALL_STATE(1677)] = 16874, + [SMALL_STATE(1678)] = 16987, + [SMALL_STATE(1679)] = 17100, + [SMALL_STATE(1680)] = 17171, + [SMALL_STATE(1681)] = 17242, + [SMALL_STATE(1682)] = 17313, + [SMALL_STATE(1683)] = 17384, + [SMALL_STATE(1684)] = 17455, + [SMALL_STATE(1685)] = 17526, + [SMALL_STATE(1686)] = 17597, + [SMALL_STATE(1687)] = 17670, + [SMALL_STATE(1688)] = 17741, + [SMALL_STATE(1689)] = 17812, + [SMALL_STATE(1690)] = 17883, + [SMALL_STATE(1691)] = 17958, + [SMALL_STATE(1692)] = 18031, + [SMALL_STATE(1693)] = 18148, + [SMALL_STATE(1694)] = 18219, + [SMALL_STATE(1695)] = 18290, + [SMALL_STATE(1696)] = 18361, + [SMALL_STATE(1697)] = 18432, + [SMALL_STATE(1698)] = 18503, + [SMALL_STATE(1699)] = 18574, + [SMALL_STATE(1700)] = 18645, + [SMALL_STATE(1701)] = 18716, + [SMALL_STATE(1702)] = 18787, + [SMALL_STATE(1703)] = 18858, + [SMALL_STATE(1704)] = 18929, + [SMALL_STATE(1705)] = 19000, + [SMALL_STATE(1706)] = 19071, + [SMALL_STATE(1707)] = 19142, + [SMALL_STATE(1708)] = 19213, + [SMALL_STATE(1709)] = 19284, + [SMALL_STATE(1710)] = 19355, + [SMALL_STATE(1711)] = 19426, + [SMALL_STATE(1712)] = 19497, + [SMALL_STATE(1713)] = 19568, + [SMALL_STATE(1714)] = 19639, + [SMALL_STATE(1715)] = 19710, + [SMALL_STATE(1716)] = 19781, + [SMALL_STATE(1717)] = 19852, + [SMALL_STATE(1718)] = 19923, + [SMALL_STATE(1719)] = 19994, + [SMALL_STATE(1720)] = 20065, + [SMALL_STATE(1721)] = 20136, + [SMALL_STATE(1722)] = 20207, + [SMALL_STATE(1723)] = 20278, + [SMALL_STATE(1724)] = 20349, + [SMALL_STATE(1725)] = 20420, + [SMALL_STATE(1726)] = 20491, + [SMALL_STATE(1727)] = 20562, + [SMALL_STATE(1728)] = 20633, + [SMALL_STATE(1729)] = 20704, + [SMALL_STATE(1730)] = 20775, + [SMALL_STATE(1731)] = 20846, + [SMALL_STATE(1732)] = 20917, + [SMALL_STATE(1733)] = 20988, + [SMALL_STATE(1734)] = 21059, + [SMALL_STATE(1735)] = 21130, + [SMALL_STATE(1736)] = 21201, + [SMALL_STATE(1737)] = 21272, + [SMALL_STATE(1738)] = 21343, + [SMALL_STATE(1739)] = 21414, + [SMALL_STATE(1740)] = 21485, + [SMALL_STATE(1741)] = 21556, + [SMALL_STATE(1742)] = 21627, + [SMALL_STATE(1743)] = 21698, + [SMALL_STATE(1744)] = 21769, + [SMALL_STATE(1745)] = 21840, + [SMALL_STATE(1746)] = 21911, + [SMALL_STATE(1747)] = 21982, + [SMALL_STATE(1748)] = 22053, + [SMALL_STATE(1749)] = 22124, + [SMALL_STATE(1750)] = 22195, + [SMALL_STATE(1751)] = 22266, + [SMALL_STATE(1752)] = 22337, + [SMALL_STATE(1753)] = 22408, + [SMALL_STATE(1754)] = 22479, + [SMALL_STATE(1755)] = 22550, + [SMALL_STATE(1756)] = 22621, + [SMALL_STATE(1757)] = 22692, + [SMALL_STATE(1758)] = 22763, + [SMALL_STATE(1759)] = 22834, + [SMALL_STATE(1760)] = 22905, + [SMALL_STATE(1761)] = 22976, + [SMALL_STATE(1762)] = 23047, + [SMALL_STATE(1763)] = 23118, + [SMALL_STATE(1764)] = 23193, + [SMALL_STATE(1765)] = 23264, + [SMALL_STATE(1766)] = 23335, + [SMALL_STATE(1767)] = 23406, + [SMALL_STATE(1768)] = 23477, + [SMALL_STATE(1769)] = 23548, + [SMALL_STATE(1770)] = 23619, + [SMALL_STATE(1771)] = 23690, + [SMALL_STATE(1772)] = 23761, + [SMALL_STATE(1773)] = 23832, + [SMALL_STATE(1774)] = 23903, + [SMALL_STATE(1775)] = 23974, + [SMALL_STATE(1776)] = 24045, + [SMALL_STATE(1777)] = 24116, + [SMALL_STATE(1778)] = 24187, + [SMALL_STATE(1779)] = 24258, + [SMALL_STATE(1780)] = 24329, + [SMALL_STATE(1781)] = 24400, + [SMALL_STATE(1782)] = 24471, + [SMALL_STATE(1783)] = 24542, + [SMALL_STATE(1784)] = 24613, + [SMALL_STATE(1785)] = 24684, + [SMALL_STATE(1786)] = 24755, + [SMALL_STATE(1787)] = 24826, + [SMALL_STATE(1788)] = 24897, + [SMALL_STATE(1789)] = 24968, + [SMALL_STATE(1790)] = 25039, + [SMALL_STATE(1791)] = 25110, + [SMALL_STATE(1792)] = 25181, + [SMALL_STATE(1793)] = 25252, + [SMALL_STATE(1794)] = 25323, + [SMALL_STATE(1795)] = 25394, + [SMALL_STATE(1796)] = 25465, + [SMALL_STATE(1797)] = 25536, + [SMALL_STATE(1798)] = 25607, + [SMALL_STATE(1799)] = 25678, + [SMALL_STATE(1800)] = 25749, + [SMALL_STATE(1801)] = 25820, + [SMALL_STATE(1802)] = 25891, + [SMALL_STATE(1803)] = 25962, + [SMALL_STATE(1804)] = 26069, + [SMALL_STATE(1805)] = 26180, + [SMALL_STATE(1806)] = 26251, + [SMALL_STATE(1807)] = 26322, + [SMALL_STATE(1808)] = 26433, + [SMALL_STATE(1809)] = 26504, + [SMALL_STATE(1810)] = 26575, + [SMALL_STATE(1811)] = 26684, + [SMALL_STATE(1812)] = 26755, + [SMALL_STATE(1813)] = 26828, + [SMALL_STATE(1814)] = 26903, + [SMALL_STATE(1815)] = 26978, + [SMALL_STATE(1816)] = 27053, + [SMALL_STATE(1817)] = 27128, + [SMALL_STATE(1818)] = 27203, + [SMALL_STATE(1819)] = 27278, + [SMALL_STATE(1820)] = 27353, + [SMALL_STATE(1821)] = 27424, + [SMALL_STATE(1822)] = 27511, + [SMALL_STATE(1823)] = 27604, + [SMALL_STATE(1824)] = 27681, + [SMALL_STATE(1825)] = 27764, + [SMALL_STATE(1826)] = 27843, + [SMALL_STATE(1827)] = 27948, + [SMALL_STATE(1828)] = 28051, + [SMALL_STATE(1829)] = 28150, + [SMALL_STATE(1830)] = 28247, + [SMALL_STATE(1831)] = 28342, + [SMALL_STATE(1832)] = 28413, + [SMALL_STATE(1833)] = 28504, + [SMALL_STATE(1834)] = 28589, + [SMALL_STATE(1835)] = 28660, + [SMALL_STATE(1836)] = 28730, + [SMALL_STATE(1837)] = 28800, + [SMALL_STATE(1838)] = 28870, + [SMALL_STATE(1839)] = 28940, + [SMALL_STATE(1840)] = 29010, + [SMALL_STATE(1841)] = 29080, + [SMALL_STATE(1842)] = 29150, + [SMALL_STATE(1843)] = 29220, + [SMALL_STATE(1844)] = 29290, + [SMALL_STATE(1845)] = 29376, + [SMALL_STATE(1846)] = 29468, + [SMALL_STATE(1847)] = 29538, + [SMALL_STATE(1848)] = 29614, + [SMALL_STATE(1849)] = 29696, + [SMALL_STATE(1850)] = 29774, + [SMALL_STATE(1851)] = 29878, + [SMALL_STATE(1852)] = 29948, + [SMALL_STATE(1853)] = 30050, + [SMALL_STATE(1854)] = 30148, + [SMALL_STATE(1855)] = 30244, + [SMALL_STATE(1856)] = 30314, + [SMALL_STATE(1857)] = 30386, + [SMALL_STATE(1858)] = 30456, + [SMALL_STATE(1859)] = 30526, + [SMALL_STATE(1860)] = 30638, + [SMALL_STATE(1861)] = 30750, + [SMALL_STATE(1862)] = 30862, + [SMALL_STATE(1863)] = 30932, + [SMALL_STATE(1864)] = 31002, + [SMALL_STATE(1865)] = 31074, + [SMALL_STATE(1866)] = 31168, + [SMALL_STATE(1867)] = 31258, + [SMALL_STATE(1868)] = 31328, + [SMALL_STATE(1869)] = 31398, + [SMALL_STATE(1870)] = 31468, + [SMALL_STATE(1871)] = 31538, + [SMALL_STATE(1872)] = 31622, + [SMALL_STATE(1873)] = 31706, + [SMALL_STATE(1874)] = 31778, + [SMALL_STATE(1875)] = 31848, + [SMALL_STATE(1876)] = 31976, + [SMALL_STATE(1877)] = 32046, + [SMALL_STATE(1878)] = 32116, + [SMALL_STATE(1879)] = 32186, + [SMALL_STATE(1880)] = 32256, + [SMALL_STATE(1881)] = 32326, + [SMALL_STATE(1882)] = 32396, + [SMALL_STATE(1883)] = 32466, + [SMALL_STATE(1884)] = 32536, + [SMALL_STATE(1885)] = 32606, + [SMALL_STATE(1886)] = 32676, + [SMALL_STATE(1887)] = 32746, + [SMALL_STATE(1888)] = 32816, + [SMALL_STATE(1889)] = 32886, + [SMALL_STATE(1890)] = 32956, + [SMALL_STATE(1891)] = 33026, + [SMALL_STATE(1892)] = 33096, + [SMALL_STATE(1893)] = 33166, + [SMALL_STATE(1894)] = 33236, + [SMALL_STATE(1895)] = 33306, + [SMALL_STATE(1896)] = 33376, + [SMALL_STATE(1897)] = 33446, + [SMALL_STATE(1898)] = 33516, + [SMALL_STATE(1899)] = 33586, + [SMALL_STATE(1900)] = 33656, + [SMALL_STATE(1901)] = 33726, + [SMALL_STATE(1902)] = 33798, + [SMALL_STATE(1903)] = 33868, + [SMALL_STATE(1904)] = 33938, + [SMALL_STATE(1905)] = 34008, + [SMALL_STATE(1906)] = 34078, + [SMALL_STATE(1907)] = 34148, + [SMALL_STATE(1908)] = 34218, + [SMALL_STATE(1909)] = 34288, + [SMALL_STATE(1910)] = 34358, + [SMALL_STATE(1911)] = 34428, + [SMALL_STATE(1912)] = 34498, + [SMALL_STATE(1913)] = 34568, + [SMALL_STATE(1914)] = 34638, + [SMALL_STATE(1915)] = 34708, + [SMALL_STATE(1916)] = 34778, + [SMALL_STATE(1917)] = 34848, + [SMALL_STATE(1918)] = 34918, + [SMALL_STATE(1919)] = 34988, + [SMALL_STATE(1920)] = 35058, + [SMALL_STATE(1921)] = 35128, + [SMALL_STATE(1922)] = 35198, + [SMALL_STATE(1923)] = 35268, + [SMALL_STATE(1924)] = 35338, + [SMALL_STATE(1925)] = 35408, + [SMALL_STATE(1926)] = 35478, + [SMALL_STATE(1927)] = 35548, + [SMALL_STATE(1928)] = 35618, + [SMALL_STATE(1929)] = 35688, + [SMALL_STATE(1930)] = 35758, + [SMALL_STATE(1931)] = 35828, + [SMALL_STATE(1932)] = 35948, + [SMALL_STATE(1933)] = 36018, + [SMALL_STATE(1934)] = 36088, + [SMALL_STATE(1935)] = 36158, + [SMALL_STATE(1936)] = 36228, + [SMALL_STATE(1937)] = 36298, + [SMALL_STATE(1938)] = 36368, + [SMALL_STATE(1939)] = 36438, + [SMALL_STATE(1940)] = 36508, + [SMALL_STATE(1941)] = 36578, + [SMALL_STATE(1942)] = 36648, + [SMALL_STATE(1943)] = 36718, + [SMALL_STATE(1944)] = 36788, + [SMALL_STATE(1945)] = 36858, + [SMALL_STATE(1946)] = 36928, + [SMALL_STATE(1947)] = 36998, + [SMALL_STATE(1948)] = 37068, + [SMALL_STATE(1949)] = 37138, + [SMALL_STATE(1950)] = 37208, + [SMALL_STATE(1951)] = 37278, + [SMALL_STATE(1952)] = 37348, + [SMALL_STATE(1953)] = 37418, + [SMALL_STATE(1954)] = 37488, + [SMALL_STATE(1955)] = 37564, + [SMALL_STATE(1956)] = 37634, + [SMALL_STATE(1957)] = 37704, + [SMALL_STATE(1958)] = 37774, + [SMALL_STATE(1959)] = 37850, + [SMALL_STATE(1960)] = 37920, + [SMALL_STATE(1961)] = 37990, + [SMALL_STATE(1962)] = 38060, + [SMALL_STATE(1963)] = 38130, + [SMALL_STATE(1964)] = 38200, + [SMALL_STATE(1965)] = 38328, + [SMALL_STATE(1966)] = 38398, + [SMALL_STATE(1967)] = 38468, + [SMALL_STATE(1968)] = 38538, + [SMALL_STATE(1969)] = 38608, + [SMALL_STATE(1970)] = 38678, + [SMALL_STATE(1971)] = 38748, + [SMALL_STATE(1972)] = 38818, + [SMALL_STATE(1973)] = 38888, + [SMALL_STATE(1974)] = 38994, + [SMALL_STATE(1975)] = 39104, + [SMALL_STATE(1976)] = 39178, + [SMALL_STATE(1977)] = 39248, + [SMALL_STATE(1978)] = 39318, + [SMALL_STATE(1979)] = 39388, + [SMALL_STATE(1980)] = 39458, + [SMALL_STATE(1981)] = 39528, + [SMALL_STATE(1982)] = 39602, + [SMALL_STATE(1983)] = 39676, + [SMALL_STATE(1984)] = 39746, + [SMALL_STATE(1985)] = 39816, + [SMALL_STATE(1986)] = 39888, + [SMALL_STATE(1987)] = 39960, + [SMALL_STATE(1988)] = 40030, + [SMALL_STATE(1989)] = 40100, + [SMALL_STATE(1990)] = 40174, + [SMALL_STATE(1991)] = 40248, + [SMALL_STATE(1992)] = 40322, + [SMALL_STATE(1993)] = 40392, + [SMALL_STATE(1994)] = 40462, + [SMALL_STATE(1995)] = 40532, + [SMALL_STATE(1996)] = 40602, + [SMALL_STATE(1997)] = 40674, + [SMALL_STATE(1998)] = 40746, + [SMALL_STATE(1999)] = 40856, + [SMALL_STATE(2000)] = 40964, + [SMALL_STATE(2001)] = 41034, + [SMALL_STATE(2002)] = 41104, + [SMALL_STATE(2003)] = 41174, + [SMALL_STATE(2004)] = 41244, + [SMALL_STATE(2005)] = 41314, + [SMALL_STATE(2006)] = 41384, + [SMALL_STATE(2007)] = 41454, + [SMALL_STATE(2008)] = 41524, + [SMALL_STATE(2009)] = 41594, + [SMALL_STATE(2010)] = 41714, + [SMALL_STATE(2011)] = 41784, + [SMALL_STATE(2012)] = 41854, + [SMALL_STATE(2013)] = 41924, + [SMALL_STATE(2014)] = 41994, + [SMALL_STATE(2015)] = 42064, + [SMALL_STATE(2016)] = 42134, + [SMALL_STATE(2017)] = 42208, + [SMALL_STATE(2018)] = 42278, + [SMALL_STATE(2019)] = 42361, + [SMALL_STATE(2020)] = 42434, + [SMALL_STATE(2021)] = 42503, + [SMALL_STATE(2022)] = 42628, + [SMALL_STATE(2023)] = 42697, + [SMALL_STATE(2024)] = 42766, + [SMALL_STATE(2025)] = 42891, + [SMALL_STATE(2026)] = 42960, + [SMALL_STATE(2027)] = 43029, + [SMALL_STATE(2028)] = 43154, + [SMALL_STATE(2029)] = 43223, + [SMALL_STATE(2030)] = 43292, + [SMALL_STATE(2031)] = 43361, + [SMALL_STATE(2032)] = 43430, + [SMALL_STATE(2033)] = 43499, + [SMALL_STATE(2034)] = 43568, + [SMALL_STATE(2035)] = 43637, + [SMALL_STATE(2036)] = 43762, + [SMALL_STATE(2037)] = 43831, + [SMALL_STATE(2038)] = 43900, + [SMALL_STATE(2039)] = 43969, + [SMALL_STATE(2040)] = 44038, + [SMALL_STATE(2041)] = 44163, + [SMALL_STATE(2042)] = 44232, + [SMALL_STATE(2043)] = 44357, + [SMALL_STATE(2044)] = 44426, + [SMALL_STATE(2045)] = 44495, + [SMALL_STATE(2046)] = 44620, + [SMALL_STATE(2047)] = 44689, + [SMALL_STATE(2048)] = 44758, + [SMALL_STATE(2049)] = 44829, + [SMALL_STATE(2050)] = 44954, + [SMALL_STATE(2051)] = 45079, + [SMALL_STATE(2052)] = 45148, + [SMALL_STATE(2053)] = 45217, + [SMALL_STATE(2054)] = 45286, + [SMALL_STATE(2055)] = 45411, + [SMALL_STATE(2056)] = 45480, + [SMALL_STATE(2057)] = 45549, + [SMALL_STATE(2058)] = 45618, + [SMALL_STATE(2059)] = 45743, + [SMALL_STATE(2060)] = 45868, + [SMALL_STATE(2061)] = 45937, + [SMALL_STATE(2062)] = 46006, + [SMALL_STATE(2063)] = 46075, + [SMALL_STATE(2064)] = 46144, + [SMALL_STATE(2065)] = 46269, + [SMALL_STATE(2066)] = 46338, + [SMALL_STATE(2067)] = 46407, + [SMALL_STATE(2068)] = 46476, + [SMALL_STATE(2069)] = 46545, + [SMALL_STATE(2070)] = 46614, + [SMALL_STATE(2071)] = 46683, + [SMALL_STATE(2072)] = 46808, + [SMALL_STATE(2073)] = 46877, + [SMALL_STATE(2074)] = 46946, + [SMALL_STATE(2075)] = 47071, + [SMALL_STATE(2076)] = 47196, + [SMALL_STATE(2077)] = 47265, + [SMALL_STATE(2078)] = 47334, + [SMALL_STATE(2079)] = 47459, + [SMALL_STATE(2080)] = 47528, + [SMALL_STATE(2081)] = 47597, + [SMALL_STATE(2082)] = 47666, + [SMALL_STATE(2083)] = 47735, + [SMALL_STATE(2084)] = 47804, + [SMALL_STATE(2085)] = 47873, + [SMALL_STATE(2086)] = 47942, + [SMALL_STATE(2087)] = 48011, + [SMALL_STATE(2088)] = 48080, + [SMALL_STATE(2089)] = 48149, + [SMALL_STATE(2090)] = 48218, + [SMALL_STATE(2091)] = 48343, + [SMALL_STATE(2092)] = 48428, + [SMALL_STATE(2093)] = 48497, + [SMALL_STATE(2094)] = 48588, + [SMALL_STATE(2095)] = 48663, + [SMALL_STATE(2096)] = 48744, + [SMALL_STATE(2097)] = 48821, + [SMALL_STATE(2098)] = 48946, + [SMALL_STATE(2099)] = 49049, + [SMALL_STATE(2100)] = 49150, + [SMALL_STATE(2101)] = 49275, + [SMALL_STATE(2102)] = 49372, + [SMALL_STATE(2103)] = 49467, + [SMALL_STATE(2104)] = 49560, + [SMALL_STATE(2105)] = 49649, + [SMALL_STATE(2106)] = 49718, + [SMALL_STATE(2107)] = 49801, + [SMALL_STATE(2108)] = 49870, + [SMALL_STATE(2109)] = 49939, + [SMALL_STATE(2110)] = 50008, + [SMALL_STATE(2111)] = 50077, + [SMALL_STATE(2112)] = 50146, + [SMALL_STATE(2113)] = 50271, + [SMALL_STATE(2114)] = 50340, + [SMALL_STATE(2115)] = 50409, + [SMALL_STATE(2116)] = 50534, + [SMALL_STATE(2117)] = 50659, + [SMALL_STATE(2118)] = 50728, + [SMALL_STATE(2119)] = 50797, + [SMALL_STATE(2120)] = 50866, + [SMALL_STATE(2121)] = 50935, + [SMALL_STATE(2122)] = 51004, + [SMALL_STATE(2123)] = 51129, + [SMALL_STATE(2124)] = 51254, + [SMALL_STATE(2125)] = 51323, + [SMALL_STATE(2126)] = 51448, + [SMALL_STATE(2127)] = 51517, + [SMALL_STATE(2128)] = 51586, + [SMALL_STATE(2129)] = 51655, + [SMALL_STATE(2130)] = 51780, + [SMALL_STATE(2131)] = 51849, + [SMALL_STATE(2132)] = 51974, + [SMALL_STATE(2133)] = 52043, + [SMALL_STATE(2134)] = 52112, + [SMALL_STATE(2135)] = 52181, + [SMALL_STATE(2136)] = 52250, + [SMALL_STATE(2137)] = 52375, + [SMALL_STATE(2138)] = 52444, + [SMALL_STATE(2139)] = 52555, + [SMALL_STATE(2140)] = 52624, + [SMALL_STATE(2141)] = 52693, + [SMALL_STATE(2142)] = 52818, + [SMALL_STATE(2143)] = 52887, + [SMALL_STATE(2144)] = 53012, + [SMALL_STATE(2145)] = 53081, + [SMALL_STATE(2146)] = 53150, + [SMALL_STATE(2147)] = 53219, + [SMALL_STATE(2148)] = 53288, + [SMALL_STATE(2149)] = 53357, + [SMALL_STATE(2150)] = 53426, + [SMALL_STATE(2151)] = 53551, + [SMALL_STATE(2152)] = 53620, + [SMALL_STATE(2153)] = 53689, + [SMALL_STATE(2154)] = 53814, + [SMALL_STATE(2155)] = 53883, + [SMALL_STATE(2156)] = 53952, + [SMALL_STATE(2157)] = 54021, + [SMALL_STATE(2158)] = 54146, + [SMALL_STATE(2159)] = 54215, + [SMALL_STATE(2160)] = 54286, + [SMALL_STATE(2161)] = 54411, + [SMALL_STATE(2162)] = 54482, + [SMALL_STATE(2163)] = 54551, + [SMALL_STATE(2164)] = 54620, + [SMALL_STATE(2165)] = 54689, + [SMALL_STATE(2166)] = 54814, + [SMALL_STATE(2167)] = 54883, + [SMALL_STATE(2168)] = 54994, + [SMALL_STATE(2169)] = 55063, + [SMALL_STATE(2170)] = 55188, + [SMALL_STATE(2171)] = 55293, + [SMALL_STATE(2172)] = 55402, + [SMALL_STATE(2173)] = 55475, + [SMALL_STATE(2174)] = 55548, + [SMALL_STATE(2175)] = 55621, + [SMALL_STATE(2176)] = 55730, + [SMALL_STATE(2177)] = 55837, + [SMALL_STATE(2178)] = 55906, + [SMALL_STATE(2179)] = 55975, + [SMALL_STATE(2180)] = 56044, + [SMALL_STATE(2181)] = 56119, + [SMALL_STATE(2182)] = 56188, + [SMALL_STATE(2183)] = 56257, + [SMALL_STATE(2184)] = 56332, + [SMALL_STATE(2185)] = 56401, + [SMALL_STATE(2186)] = 56470, + [SMALL_STATE(2187)] = 56539, + [SMALL_STATE(2188)] = 56608, + [SMALL_STATE(2189)] = 56677, + [SMALL_STATE(2190)] = 56746, + [SMALL_STATE(2191)] = 56821, + [SMALL_STATE(2192)] = 56890, + [SMALL_STATE(2193)] = 56959, + [SMALL_STATE(2194)] = 57028, + [SMALL_STATE(2195)] = 57097, + [SMALL_STATE(2196)] = 57166, + [SMALL_STATE(2197)] = 57235, + [SMALL_STATE(2198)] = 57304, + [SMALL_STATE(2199)] = 57373, + [SMALL_STATE(2200)] = 57442, + [SMALL_STATE(2201)] = 57511, + [SMALL_STATE(2202)] = 57582, + [SMALL_STATE(2203)] = 57651, + [SMALL_STATE(2204)] = 57720, + [SMALL_STATE(2205)] = 57845, + [SMALL_STATE(2206)] = 57914, + [SMALL_STATE(2207)] = 57983, + [SMALL_STATE(2208)] = 58052, + [SMALL_STATE(2209)] = 58123, + [SMALL_STATE(2210)] = 58192, + [SMALL_STATE(2211)] = 58261, + [SMALL_STATE(2212)] = 58330, + [SMALL_STATE(2213)] = 58399, + [SMALL_STATE(2214)] = 58468, + [SMALL_STATE(2215)] = 58537, + [SMALL_STATE(2216)] = 58606, + [SMALL_STATE(2217)] = 58675, + [SMALL_STATE(2218)] = 58744, + [SMALL_STATE(2219)] = 58813, + [SMALL_STATE(2220)] = 58882, + [SMALL_STATE(2221)] = 58951, + [SMALL_STATE(2222)] = 59020, + [SMALL_STATE(2223)] = 59089, + [SMALL_STATE(2224)] = 59158, + [SMALL_STATE(2225)] = 59227, + [SMALL_STATE(2226)] = 59296, + [SMALL_STATE(2227)] = 59365, + [SMALL_STATE(2228)] = 59434, + [SMALL_STATE(2229)] = 59503, + [SMALL_STATE(2230)] = 59572, + [SMALL_STATE(2231)] = 59641, + [SMALL_STATE(2232)] = 59710, + [SMALL_STATE(2233)] = 59779, + [SMALL_STATE(2234)] = 59848, + [SMALL_STATE(2235)] = 59917, + [SMALL_STATE(2236)] = 59986, + [SMALL_STATE(2237)] = 60055, + [SMALL_STATE(2238)] = 60124, + [SMALL_STATE(2239)] = 60193, + [SMALL_STATE(2240)] = 60262, + [SMALL_STATE(2241)] = 60331, + [SMALL_STATE(2242)] = 60400, + [SMALL_STATE(2243)] = 60469, + [SMALL_STATE(2244)] = 60538, + [SMALL_STATE(2245)] = 60607, + [SMALL_STATE(2246)] = 60676, + [SMALL_STATE(2247)] = 60745, + [SMALL_STATE(2248)] = 60814, + [SMALL_STATE(2249)] = 60939, + [SMALL_STATE(2250)] = 61012, + [SMALL_STATE(2251)] = 61085, + [SMALL_STATE(2252)] = 61154, + [SMALL_STATE(2253)] = 61223, + [SMALL_STATE(2254)] = 61292, + [SMALL_STATE(2255)] = 61417, + [SMALL_STATE(2256)] = 61486, + [SMALL_STATE(2257)] = 61555, + [SMALL_STATE(2258)] = 61624, + [SMALL_STATE(2259)] = 61693, + [SMALL_STATE(2260)] = 61762, + [SMALL_STATE(2261)] = 61831, + [SMALL_STATE(2262)] = 61900, + [SMALL_STATE(2263)] = 61969, + [SMALL_STATE(2264)] = 62038, + [SMALL_STATE(2265)] = 62107, + [SMALL_STATE(2266)] = 62176, + [SMALL_STATE(2267)] = 62245, + [SMALL_STATE(2268)] = 62314, + [SMALL_STATE(2269)] = 62383, + [SMALL_STATE(2270)] = 62452, + [SMALL_STATE(2271)] = 62521, + [SMALL_STATE(2272)] = 62590, + [SMALL_STATE(2273)] = 62659, + [SMALL_STATE(2274)] = 62728, + [SMALL_STATE(2275)] = 62797, + [SMALL_STATE(2276)] = 62868, + [SMALL_STATE(2277)] = 62939, + [SMALL_STATE(2278)] = 63010, + [SMALL_STATE(2279)] = 63079, + [SMALL_STATE(2280)] = 63148, + [SMALL_STATE(2281)] = 63217, + [SMALL_STATE(2282)] = 63286, + [SMALL_STATE(2283)] = 63355, + [SMALL_STATE(2284)] = 63424, + [SMALL_STATE(2285)] = 63493, + [SMALL_STATE(2286)] = 63562, + [SMALL_STATE(2287)] = 63631, + [SMALL_STATE(2288)] = 63700, + [SMALL_STATE(2289)] = 63825, + [SMALL_STATE(2290)] = 63894, + [SMALL_STATE(2291)] = 64019, + [SMALL_STATE(2292)] = 64088, + [SMALL_STATE(2293)] = 64157, + [SMALL_STATE(2294)] = 64226, + [SMALL_STATE(2295)] = 64295, + [SMALL_STATE(2296)] = 64364, + [SMALL_STATE(2297)] = 64433, + [SMALL_STATE(2298)] = 64502, + [SMALL_STATE(2299)] = 64571, + [SMALL_STATE(2300)] = 64640, + [SMALL_STATE(2301)] = 64708, + [SMALL_STATE(2302)] = 64780, + [SMALL_STATE(2303)] = 64848, + [SMALL_STATE(2304)] = 64916, + [SMALL_STATE(2305)] = 64984, + [SMALL_STATE(2306)] = 65052, + [SMALL_STATE(2307)] = 65120, + [SMALL_STATE(2308)] = 65188, + [SMALL_STATE(2309)] = 65256, + [SMALL_STATE(2310)] = 65324, + [SMALL_STATE(2311)] = 65392, + [SMALL_STATE(2312)] = 65460, + [SMALL_STATE(2313)] = 65528, + [SMALL_STATE(2314)] = 65596, + [SMALL_STATE(2315)] = 65664, + [SMALL_STATE(2316)] = 65732, + [SMALL_STATE(2317)] = 65800, + [SMALL_STATE(2318)] = 65868, + [SMALL_STATE(2319)] = 65936, + [SMALL_STATE(2320)] = 66004, + [SMALL_STATE(2321)] = 66072, + [SMALL_STATE(2322)] = 66144, + [SMALL_STATE(2323)] = 66212, + [SMALL_STATE(2324)] = 66280, + [SMALL_STATE(2325)] = 66348, + [SMALL_STATE(2326)] = 66462, + [SMALL_STATE(2327)] = 66530, + [SMALL_STATE(2328)] = 66598, + [SMALL_STATE(2329)] = 66666, + [SMALL_STATE(2330)] = 66734, + [SMALL_STATE(2331)] = 66840, + [SMALL_STATE(2332)] = 66908, + [SMALL_STATE(2333)] = 66980, + [SMALL_STATE(2334)] = 67052, + [SMALL_STATE(2335)] = 67120, + [SMALL_STATE(2336)] = 67188, + [SMALL_STATE(2337)] = 67256, + [SMALL_STATE(2338)] = 67328, + [SMALL_STATE(2339)] = 67396, + [SMALL_STATE(2340)] = 67464, + [SMALL_STATE(2341)] = 67532, + [SMALL_STATE(2342)] = 67600, + [SMALL_STATE(2343)] = 67668, + [SMALL_STATE(2344)] = 67736, + [SMALL_STATE(2345)] = 67804, + [SMALL_STATE(2346)] = 67872, + [SMALL_STATE(2347)] = 67940, + [SMALL_STATE(2348)] = 68008, + [SMALL_STATE(2349)] = 68078, + [SMALL_STATE(2350)] = 68148, + [SMALL_STATE(2351)] = 68216, + [SMALL_STATE(2352)] = 68284, + [SMALL_STATE(2353)] = 68352, + [SMALL_STATE(2354)] = 68420, + [SMALL_STATE(2355)] = 68488, + [SMALL_STATE(2356)] = 68556, + [SMALL_STATE(2357)] = 68624, + [SMALL_STATE(2358)] = 68692, + [SMALL_STATE(2359)] = 68766, + [SMALL_STATE(2360)] = 68834, + [SMALL_STATE(2361)] = 68902, + [SMALL_STATE(2362)] = 68970, + [SMALL_STATE(2363)] = 69038, + [SMALL_STATE(2364)] = 69106, + [SMALL_STATE(2365)] = 69174, + [SMALL_STATE(2366)] = 69242, + [SMALL_STATE(2367)] = 69310, + [SMALL_STATE(2368)] = 69382, + [SMALL_STATE(2369)] = 69452, + [SMALL_STATE(2370)] = 69536, + [SMALL_STATE(2371)] = 69626, + [SMALL_STATE(2372)] = 69700, + [SMALL_STATE(2373)] = 69780, + [SMALL_STATE(2374)] = 69856, + [SMALL_STATE(2375)] = 69958, + [SMALL_STATE(2376)] = 70058, + [SMALL_STATE(2377)] = 70154, + [SMALL_STATE(2378)] = 70248, + [SMALL_STATE(2379)] = 70340, + [SMALL_STATE(2380)] = 70428, + [SMALL_STATE(2381)] = 70510, + [SMALL_STATE(2382)] = 70592, + [SMALL_STATE(2383)] = 70660, + [SMALL_STATE(2384)] = 70728, + [SMALL_STATE(2385)] = 70796, + [SMALL_STATE(2386)] = 70864, + [SMALL_STATE(2387)] = 70936, + [SMALL_STATE(2388)] = 71008, + [SMALL_STATE(2389)] = 71080, + [SMALL_STATE(2390)] = 71148, + [SMALL_STATE(2391)] = 71220, + [SMALL_STATE(2392)] = 71288, + [SMALL_STATE(2393)] = 71356, + [SMALL_STATE(2394)] = 71424, + [SMALL_STATE(2395)] = 71492, + [SMALL_STATE(2396)] = 71560, + [SMALL_STATE(2397)] = 71628, + [SMALL_STATE(2398)] = 71702, + [SMALL_STATE(2399)] = 71776, + [SMALL_STATE(2400)] = 71844, + [SMALL_STATE(2401)] = 71912, + [SMALL_STATE(2402)] = 71980, + [SMALL_STATE(2403)] = 72094, + [SMALL_STATE(2404)] = 72164, + [SMALL_STATE(2405)] = 72236, + [SMALL_STATE(2406)] = 72304, + [SMALL_STATE(2407)] = 72374, + [SMALL_STATE(2408)] = 72442, + [SMALL_STATE(2409)] = 72510, + [SMALL_STATE(2410)] = 72578, + [SMALL_STATE(2411)] = 72646, + [SMALL_STATE(2412)] = 72714, + [SMALL_STATE(2413)] = 72782, + [SMALL_STATE(2414)] = 72850, + [SMALL_STATE(2415)] = 72918, + [SMALL_STATE(2416)] = 72986, + [SMALL_STATE(2417)] = 73054, + [SMALL_STATE(2418)] = 73122, + [SMALL_STATE(2419)] = 73190, + [SMALL_STATE(2420)] = 73262, + [SMALL_STATE(2421)] = 73330, + [SMALL_STATE(2422)] = 73402, + [SMALL_STATE(2423)] = 73470, + [SMALL_STATE(2424)] = 73538, + [SMALL_STATE(2425)] = 73606, + [SMALL_STATE(2426)] = 73678, + [SMALL_STATE(2427)] = 73746, + [SMALL_STATE(2428)] = 73814, + [SMALL_STATE(2429)] = 73882, + [SMALL_STATE(2430)] = 73950, + [SMALL_STATE(2431)] = 74018, + [SMALL_STATE(2432)] = 74086, + [SMALL_STATE(2433)] = 74154, + [SMALL_STATE(2434)] = 74222, + [SMALL_STATE(2435)] = 74290, + [SMALL_STATE(2436)] = 74358, + [SMALL_STATE(2437)] = 74430, + [SMALL_STATE(2438)] = 74498, + [SMALL_STATE(2439)] = 74566, + [SMALL_STATE(2440)] = 74674, + [SMALL_STATE(2441)] = 74782, + [SMALL_STATE(2442)] = 74856, + [SMALL_STATE(2443)] = 74924, + [SMALL_STATE(2444)] = 74996, + [SMALL_STATE(2445)] = 75064, + [SMALL_STATE(2446)] = 75132, + [SMALL_STATE(2447)] = 75200, + [SMALL_STATE(2448)] = 75310, + [SMALL_STATE(2449)] = 75378, + [SMALL_STATE(2450)] = 75446, + [SMALL_STATE(2451)] = 75514, + [SMALL_STATE(2452)] = 75582, + [SMALL_STATE(2453)] = 75650, + [SMALL_STATE(2454)] = 75722, + [SMALL_STATE(2455)] = 75794, + [SMALL_STATE(2456)] = 75862, + [SMALL_STATE(2457)] = 75930, + [SMALL_STATE(2458)] = 75998, + [SMALL_STATE(2459)] = 76066, + [SMALL_STATE(2460)] = 76134, + [SMALL_STATE(2461)] = 76206, + [SMALL_STATE(2462)] = 76274, + [SMALL_STATE(2463)] = 76384, + [SMALL_STATE(2464)] = 76452, + [SMALL_STATE(2465)] = 76520, + [SMALL_STATE(2466)] = 76588, + [SMALL_STATE(2467)] = 76656, + [SMALL_STATE(2468)] = 76724, + [SMALL_STATE(2469)] = 76792, + [SMALL_STATE(2470)] = 76860, + [SMALL_STATE(2471)] = 76928, + [SMALL_STATE(2472)] = 76996, + [SMALL_STATE(2473)] = 77064, + [SMALL_STATE(2474)] = 77132, + [SMALL_STATE(2475)] = 77236, + [SMALL_STATE(2476)] = 77345, + [SMALL_STATE(2477)] = 77412, + [SMALL_STATE(2478)] = 77479, + [SMALL_STATE(2479)] = 77546, + [SMALL_STATE(2480)] = 77613, + [SMALL_STATE(2481)] = 77680, + [SMALL_STATE(2482)] = 77747, + [SMALL_STATE(2483)] = 77814, + [SMALL_STATE(2484)] = 77881, + [SMALL_STATE(2485)] = 77948, + [SMALL_STATE(2486)] = 78015, + [SMALL_STATE(2487)] = 78082, + [SMALL_STATE(2488)] = 78149, + [SMALL_STATE(2489)] = 78216, + [SMALL_STATE(2490)] = 78283, + [SMALL_STATE(2491)] = 78350, + [SMALL_STATE(2492)] = 78417, + [SMALL_STATE(2493)] = 78484, + [SMALL_STATE(2494)] = 78551, + [SMALL_STATE(2495)] = 78618, + [SMALL_STATE(2496)] = 78685, + [SMALL_STATE(2497)] = 78756, + [SMALL_STATE(2498)] = 78823, + [SMALL_STATE(2499)] = 78890, + [SMALL_STATE(2500)] = 78957, + [SMALL_STATE(2501)] = 79024, + [SMALL_STATE(2502)] = 79091, + [SMALL_STATE(2503)] = 79158, + [SMALL_STATE(2504)] = 79225, + [SMALL_STATE(2505)] = 79292, + [SMALL_STATE(2506)] = 79359, + [SMALL_STATE(2507)] = 79426, + [SMALL_STATE(2508)] = 79493, + [SMALL_STATE(2509)] = 79560, + [SMALL_STATE(2510)] = 79627, + [SMALL_STATE(2511)] = 79694, + [SMALL_STATE(2512)] = 79761, + [SMALL_STATE(2513)] = 79828, + [SMALL_STATE(2514)] = 79897, + [SMALL_STATE(2515)] = 79966, + [SMALL_STATE(2516)] = 80069, + [SMALL_STATE(2517)] = 80176, + [SMALL_STATE(2518)] = 80283, + [SMALL_STATE(2519)] = 80388, + [SMALL_STATE(2520)] = 80455, + [SMALL_STATE(2521)] = 80522, + [SMALL_STATE(2522)] = 80589, + [SMALL_STATE(2523)] = 80656, + [SMALL_STATE(2524)] = 80723, + [SMALL_STATE(2525)] = 80790, + [SMALL_STATE(2526)] = 80857, + [SMALL_STATE(2527)] = 80924, + [SMALL_STATE(2528)] = 80991, + [SMALL_STATE(2529)] = 81058, + [SMALL_STATE(2530)] = 81125, + [SMALL_STATE(2531)] = 81192, + [SMALL_STATE(2532)] = 81259, + [SMALL_STATE(2533)] = 81326, + [SMALL_STATE(2534)] = 81393, + [SMALL_STATE(2535)] = 81460, + [SMALL_STATE(2536)] = 81527, + [SMALL_STATE(2537)] = 81594, + [SMALL_STATE(2538)] = 81661, + [SMALL_STATE(2539)] = 81728, + [SMALL_STATE(2540)] = 81795, + [SMALL_STATE(2541)] = 81862, + [SMALL_STATE(2542)] = 81931, + [SMALL_STATE(2543)] = 82000, + [SMALL_STATE(2544)] = 82069, + [SMALL_STATE(2545)] = 82136, + [SMALL_STATE(2546)] = 82203, + [SMALL_STATE(2547)] = 82270, + [SMALL_STATE(2548)] = 82337, + [SMALL_STATE(2549)] = 82404, + [SMALL_STATE(2550)] = 82471, + [SMALL_STATE(2551)] = 82538, + [SMALL_STATE(2552)] = 82605, + [SMALL_STATE(2553)] = 82672, + [SMALL_STATE(2554)] = 82739, + [SMALL_STATE(2555)] = 82806, + [SMALL_STATE(2556)] = 82877, + [SMALL_STATE(2557)] = 82944, + [SMALL_STATE(2558)] = 83011, + [SMALL_STATE(2559)] = 83080, + [SMALL_STATE(2560)] = 83149, + [SMALL_STATE(2561)] = 83216, + [SMALL_STATE(2562)] = 83283, + [SMALL_STATE(2563)] = 83352, + [SMALL_STATE(2564)] = 83419, + [SMALL_STATE(2565)] = 83486, + [SMALL_STATE(2566)] = 83553, + [SMALL_STATE(2567)] = 83620, + [SMALL_STATE(2568)] = 83687, + [SMALL_STATE(2569)] = 83754, + [SMALL_STATE(2570)] = 83821, + [SMALL_STATE(2571)] = 83888, + [SMALL_STATE(2572)] = 83955, + [SMALL_STATE(2573)] = 84022, + [SMALL_STATE(2574)] = 84089, + [SMALL_STATE(2575)] = 84156, + [SMALL_STATE(2576)] = 84223, + [SMALL_STATE(2577)] = 84290, + [SMALL_STATE(2578)] = 84357, + [SMALL_STATE(2579)] = 84424, + [SMALL_STATE(2580)] = 84491, + [SMALL_STATE(2581)] = 84558, + [SMALL_STATE(2582)] = 84625, + [SMALL_STATE(2583)] = 84692, + [SMALL_STATE(2584)] = 84759, + [SMALL_STATE(2585)] = 84826, + [SMALL_STATE(2586)] = 84893, + [SMALL_STATE(2587)] = 84960, + [SMALL_STATE(2588)] = 85027, + [SMALL_STATE(2589)] = 85094, + [SMALL_STATE(2590)] = 85161, + [SMALL_STATE(2591)] = 85228, + [SMALL_STATE(2592)] = 85295, + [SMALL_STATE(2593)] = 85362, + [SMALL_STATE(2594)] = 85429, + [SMALL_STATE(2595)] = 85496, + [SMALL_STATE(2596)] = 85563, + [SMALL_STATE(2597)] = 85630, + [SMALL_STATE(2598)] = 85697, + [SMALL_STATE(2599)] = 85764, + [SMALL_STATE(2600)] = 85831, + [SMALL_STATE(2601)] = 85898, + [SMALL_STATE(2602)] = 85965, + [SMALL_STATE(2603)] = 86032, + [SMALL_STATE(2604)] = 86099, + [SMALL_STATE(2605)] = 86166, + [SMALL_STATE(2606)] = 86233, + [SMALL_STATE(2607)] = 86300, + [SMALL_STATE(2608)] = 86367, + [SMALL_STATE(2609)] = 86434, + [SMALL_STATE(2610)] = 86501, + [SMALL_STATE(2611)] = 86568, + [SMALL_STATE(2612)] = 86635, + [SMALL_STATE(2613)] = 86702, + [SMALL_STATE(2614)] = 86775, + [SMALL_STATE(2615)] = 86848, + [SMALL_STATE(2616)] = 86957, + [SMALL_STATE(2617)] = 87026, + [SMALL_STATE(2618)] = 87095, + [SMALL_STATE(2619)] = 87162, + [SMALL_STATE(2620)] = 87231, + [SMALL_STATE(2621)] = 87298, + [SMALL_STATE(2622)] = 87365, + [SMALL_STATE(2623)] = 87432, + [SMALL_STATE(2624)] = 87499, + [SMALL_STATE(2625)] = 87566, + [SMALL_STATE(2626)] = 87633, + [SMALL_STATE(2627)] = 87700, + [SMALL_STATE(2628)] = 87767, + [SMALL_STATE(2629)] = 87834, + [SMALL_STATE(2630)] = 87901, + [SMALL_STATE(2631)] = 87968, + [SMALL_STATE(2632)] = 88035, + [SMALL_STATE(2633)] = 88102, + [SMALL_STATE(2634)] = 88169, + [SMALL_STATE(2635)] = 88236, + [SMALL_STATE(2636)] = 88303, + [SMALL_STATE(2637)] = 88370, + [SMALL_STATE(2638)] = 88437, + [SMALL_STATE(2639)] = 88504, + [SMALL_STATE(2640)] = 88571, + [SMALL_STATE(2641)] = 88638, + [SMALL_STATE(2642)] = 88705, + [SMALL_STATE(2643)] = 88772, + [SMALL_STATE(2644)] = 88839, + [SMALL_STATE(2645)] = 88906, + [SMALL_STATE(2646)] = 88973, + [SMALL_STATE(2647)] = 89040, + [SMALL_STATE(2648)] = 89107, + [SMALL_STATE(2649)] = 89174, + [SMALL_STATE(2650)] = 89241, + [SMALL_STATE(2651)] = 89308, + [SMALL_STATE(2652)] = 89375, + [SMALL_STATE(2653)] = 89442, + [SMALL_STATE(2654)] = 89509, + [SMALL_STATE(2655)] = 89576, + [SMALL_STATE(2656)] = 89643, + [SMALL_STATE(2657)] = 89710, + [SMALL_STATE(2658)] = 89777, + [SMALL_STATE(2659)] = 89844, + [SMALL_STATE(2660)] = 89911, + [SMALL_STATE(2661)] = 89978, + [SMALL_STATE(2662)] = 90045, + [SMALL_STATE(2663)] = 90112, + [SMALL_STATE(2664)] = 90179, + [SMALL_STATE(2665)] = 90246, + [SMALL_STATE(2666)] = 90313, + [SMALL_STATE(2667)] = 90380, + [SMALL_STATE(2668)] = 90447, + [SMALL_STATE(2669)] = 90514, + [SMALL_STATE(2670)] = 90627, + [SMALL_STATE(2671)] = 90700, + [SMALL_STATE(2672)] = 90773, + [SMALL_STATE(2673)] = 90846, + [SMALL_STATE(2674)] = 90913, + [SMALL_STATE(2675)] = 90980, + [SMALL_STATE(2676)] = 91089, + [SMALL_STATE(2677)] = 91156, + [SMALL_STATE(2678)] = 91223, + [SMALL_STATE(2679)] = 91292, + [SMALL_STATE(2680)] = 91359, + [SMALL_STATE(2681)] = 91426, + [SMALL_STATE(2682)] = 91493, + [SMALL_STATE(2683)] = 91560, + [SMALL_STATE(2684)] = 91627, + [SMALL_STATE(2685)] = 91694, + [SMALL_STATE(2686)] = 91761, + [SMALL_STATE(2687)] = 91828, + [SMALL_STATE(2688)] = 91895, + [SMALL_STATE(2689)] = 91962, + [SMALL_STATE(2690)] = 92029, + [SMALL_STATE(2691)] = 92096, + [SMALL_STATE(2692)] = 92163, + [SMALL_STATE(2693)] = 92230, + [SMALL_STATE(2694)] = 92297, + [SMALL_STATE(2695)] = 92364, + [SMALL_STATE(2696)] = 92431, + [SMALL_STATE(2697)] = 92498, + [SMALL_STATE(2698)] = 92565, + [SMALL_STATE(2699)] = 92632, + [SMALL_STATE(2700)] = 92699, + [SMALL_STATE(2701)] = 92766, + [SMALL_STATE(2702)] = 92833, + [SMALL_STATE(2703)] = 92900, + [SMALL_STATE(2704)] = 92967, + [SMALL_STATE(2705)] = 93034, + [SMALL_STATE(2706)] = 93101, + [SMALL_STATE(2707)] = 93168, + [SMALL_STATE(2708)] = 93235, + [SMALL_STATE(2709)] = 93302, + [SMALL_STATE(2710)] = 93369, + [SMALL_STATE(2711)] = 93436, + [SMALL_STATE(2712)] = 93503, + [SMALL_STATE(2713)] = 93570, + [SMALL_STATE(2714)] = 93637, + [SMALL_STATE(2715)] = 93704, + [SMALL_STATE(2716)] = 93771, + [SMALL_STATE(2717)] = 93838, + [SMALL_STATE(2718)] = 93905, + [SMALL_STATE(2719)] = 93972, + [SMALL_STATE(2720)] = 94039, + [SMALL_STATE(2721)] = 94106, + [SMALL_STATE(2722)] = 94173, + [SMALL_STATE(2723)] = 94240, + [SMALL_STATE(2724)] = 94307, + [SMALL_STATE(2725)] = 94374, + [SMALL_STATE(2726)] = 94441, + [SMALL_STATE(2727)] = 94508, + [SMALL_STATE(2728)] = 94575, + [SMALL_STATE(2729)] = 94642, + [SMALL_STATE(2730)] = 94709, + [SMALL_STATE(2731)] = 94780, + [SMALL_STATE(2732)] = 94863, + [SMALL_STATE(2733)] = 94952, + [SMALL_STATE(2734)] = 95025, + [SMALL_STATE(2735)] = 95104, + [SMALL_STATE(2736)] = 95179, + [SMALL_STATE(2737)] = 95280, + [SMALL_STATE(2738)] = 95379, + [SMALL_STATE(2739)] = 95474, + [SMALL_STATE(2740)] = 95567, + [SMALL_STATE(2741)] = 95658, + [SMALL_STATE(2742)] = 95745, + [SMALL_STATE(2743)] = 95826, + [SMALL_STATE(2744)] = 95893, + [SMALL_STATE(2745)] = 96002, + [SMALL_STATE(2746)] = 96069, + [SMALL_STATE(2747)] = 96140, + [SMALL_STATE(2748)] = 96207, + [SMALL_STATE(2749)] = 96274, + [SMALL_STATE(2750)] = 96347, + [SMALL_STATE(2751)] = 96420, + [SMALL_STATE(2752)] = 96487, + [SMALL_STATE(2753)] = 96554, + [SMALL_STATE(2754)] = 96657, + [SMALL_STATE(2755)] = 96728, + [SMALL_STATE(2756)] = 96835, + [SMALL_STATE(2757)] = 96942, + [SMALL_STATE(2758)] = 97047, + [SMALL_STATE(2759)] = 97156, + [SMALL_STATE(2760)] = 97223, + [SMALL_STATE(2761)] = 97290, + [SMALL_STATE(2762)] = 97357, + [SMALL_STATE(2763)] = 97428, + [SMALL_STATE(2764)] = 97495, + [SMALL_STATE(2765)] = 97562, + [SMALL_STATE(2766)] = 97633, + [SMALL_STATE(2767)] = 97700, + [SMALL_STATE(2768)] = 97767, + [SMALL_STATE(2769)] = 97834, + [SMALL_STATE(2770)] = 97901, + [SMALL_STATE(2771)] = 97968, + [SMALL_STATE(2772)] = 98035, + [SMALL_STATE(2773)] = 98102, + [SMALL_STATE(2774)] = 98169, + [SMALL_STATE(2775)] = 98236, + [SMALL_STATE(2776)] = 98303, + [SMALL_STATE(2777)] = 98370, + [SMALL_STATE(2778)] = 98437, + [SMALL_STATE(2779)] = 98504, + [SMALL_STATE(2780)] = 98571, + [SMALL_STATE(2781)] = 98638, + [SMALL_STATE(2782)] = 98705, + [SMALL_STATE(2783)] = 98772, + [SMALL_STATE(2784)] = 98839, + [SMALL_STATE(2785)] = 98906, + [SMALL_STATE(2786)] = 98973, + [SMALL_STATE(2787)] = 99040, + [SMALL_STATE(2788)] = 99107, + [SMALL_STATE(2789)] = 99174, + [SMALL_STATE(2790)] = 99241, + [SMALL_STATE(2791)] = 99308, + [SMALL_STATE(2792)] = 99375, + [SMALL_STATE(2793)] = 99442, + [SMALL_STATE(2794)] = 99509, + [SMALL_STATE(2795)] = 99576, + [SMALL_STATE(2796)] = 99643, + [SMALL_STATE(2797)] = 99710, + [SMALL_STATE(2798)] = 99777, + [SMALL_STATE(2799)] = 99844, + [SMALL_STATE(2800)] = 99911, + [SMALL_STATE(2801)] = 99978, + [SMALL_STATE(2802)] = 100045, + [SMALL_STATE(2803)] = 100112, + [SMALL_STATE(2804)] = 100179, + [SMALL_STATE(2805)] = 100246, + [SMALL_STATE(2806)] = 100313, + [SMALL_STATE(2807)] = 100380, + [SMALL_STATE(2808)] = 100447, + [SMALL_STATE(2809)] = 100514, + [SMALL_STATE(2810)] = 100581, + [SMALL_STATE(2811)] = 100648, + [SMALL_STATE(2812)] = 100715, + [SMALL_STATE(2813)] = 100782, + [SMALL_STATE(2814)] = 100849, + [SMALL_STATE(2815)] = 100916, + [SMALL_STATE(2816)] = 101029, + [SMALL_STATE(2817)] = 101098, + [SMALL_STATE(2818)] = 101167, + [SMALL_STATE(2819)] = 101236, + [SMALL_STATE(2820)] = 101303, + [SMALL_STATE(2821)] = 101412, + [SMALL_STATE(2822)] = 101479, + [SMALL_STATE(2823)] = 101546, + [SMALL_STATE(2824)] = 101615, + [SMALL_STATE(2825)] = 101728, + [SMALL_STATE(2826)] = 101795, + [SMALL_STATE(2827)] = 101866, + [SMALL_STATE(2828)] = 101933, + [SMALL_STATE(2829)] = 102000, + [SMALL_STATE(2830)] = 102067, + [SMALL_STATE(2831)] = 102134, + [SMALL_STATE(2832)] = 102201, + [SMALL_STATE(2833)] = 102268, + [SMALL_STATE(2834)] = 102335, + [SMALL_STATE(2835)] = 102402, + [SMALL_STATE(2836)] = 102469, + [SMALL_STATE(2837)] = 102536, + [SMALL_STATE(2838)] = 102603, + [SMALL_STATE(2839)] = 102670, + [SMALL_STATE(2840)] = 102737, + [SMALL_STATE(2841)] = 102804, + [SMALL_STATE(2842)] = 102871, + [SMALL_STATE(2843)] = 102938, + [SMALL_STATE(2844)] = 103005, + [SMALL_STATE(2845)] = 103072, + [SMALL_STATE(2846)] = 103139, + [SMALL_STATE(2847)] = 103206, + [SMALL_STATE(2848)] = 103273, + [SMALL_STATE(2849)] = 103340, + [SMALL_STATE(2850)] = 103407, + [SMALL_STATE(2851)] = 103474, + [SMALL_STATE(2852)] = 103541, + [SMALL_STATE(2853)] = 103608, + [SMALL_STATE(2854)] = 103675, + [SMALL_STATE(2855)] = 103742, + [SMALL_STATE(2856)] = 103809, + [SMALL_STATE(2857)] = 103876, + [SMALL_STATE(2858)] = 103943, + [SMALL_STATE(2859)] = 104010, + [SMALL_STATE(2860)] = 104077, + [SMALL_STATE(2861)] = 104144, + [SMALL_STATE(2862)] = 104211, + [SMALL_STATE(2863)] = 104278, + [SMALL_STATE(2864)] = 104345, + [SMALL_STATE(2865)] = 104412, + [SMALL_STATE(2866)] = 104479, + [SMALL_STATE(2867)] = 104546, + [SMALL_STATE(2868)] = 104613, + [SMALL_STATE(2869)] = 104680, + [SMALL_STATE(2870)] = 104747, + [SMALL_STATE(2871)] = 104814, + [SMALL_STATE(2872)] = 104881, + [SMALL_STATE(2873)] = 104948, + [SMALL_STATE(2874)] = 105015, + [SMALL_STATE(2875)] = 105082, + [SMALL_STATE(2876)] = 105149, + [SMALL_STATE(2877)] = 105216, + [SMALL_STATE(2878)] = 105283, + [SMALL_STATE(2879)] = 105350, + [SMALL_STATE(2880)] = 105417, + [SMALL_STATE(2881)] = 105526, + [SMALL_STATE(2882)] = 105593, + [SMALL_STATE(2883)] = 105660, + [SMALL_STATE(2884)] = 105727, + [SMALL_STATE(2885)] = 105794, + [SMALL_STATE(2886)] = 105861, + [SMALL_STATE(2887)] = 105928, + [SMALL_STATE(2888)] = 106041, + [SMALL_STATE(2889)] = 106114, + [SMALL_STATE(2890)] = 106187, + [SMALL_STATE(2891)] = 106260, + [SMALL_STATE(2892)] = 106329, + [SMALL_STATE(2893)] = 106398, + [SMALL_STATE(2894)] = 106469, + [SMALL_STATE(2895)] = 106540, + [SMALL_STATE(2896)] = 106611, + [SMALL_STATE(2897)] = 106680, + [SMALL_STATE(2898)] = 106749, + [SMALL_STATE(2899)] = 106820, + [SMALL_STATE(2900)] = 106929, + [SMALL_STATE(2901)] = 107000, + [SMALL_STATE(2902)] = 107071, + [SMALL_STATE(2903)] = 107142, + [SMALL_STATE(2904)] = 107213, + [SMALL_STATE(2905)] = 107296, + [SMALL_STATE(2906)] = 107385, + [SMALL_STATE(2907)] = 107458, + [SMALL_STATE(2908)] = 107537, + [SMALL_STATE(2909)] = 107612, + [SMALL_STATE(2910)] = 107713, + [SMALL_STATE(2911)] = 107812, + [SMALL_STATE(2912)] = 107907, + [SMALL_STATE(2913)] = 108000, + [SMALL_STATE(2914)] = 108091, + [SMALL_STATE(2915)] = 108178, + [SMALL_STATE(2916)] = 108259, + [SMALL_STATE(2917)] = 108340, + [SMALL_STATE(2918)] = 108411, + [SMALL_STATE(2919)] = 108482, + [SMALL_STATE(2920)] = 108549, + [SMALL_STATE(2921)] = 108620, + [SMALL_STATE(2922)] = 108687, + [SMALL_STATE(2923)] = 108754, + [SMALL_STATE(2924)] = 108825, + [SMALL_STATE(2925)] = 108896, + [SMALL_STATE(2926)] = 108963, + [SMALL_STATE(2927)] = 109034, + [SMALL_STATE(2928)] = 109105, + [SMALL_STATE(2929)] = 109176, + [SMALL_STATE(2930)] = 109243, + [SMALL_STATE(2931)] = 109310, + [SMALL_STATE(2932)] = 109419, + [SMALL_STATE(2933)] = 109486, + [SMALL_STATE(2934)] = 109569, + [SMALL_STATE(2935)] = 109658, + [SMALL_STATE(2936)] = 109761, + [SMALL_STATE(2937)] = 109834, + [SMALL_STATE(2938)] = 109913, + [SMALL_STATE(2939)] = 109988, + [SMALL_STATE(2940)] = 110095, + [SMALL_STATE(2941)] = 110202, + [SMALL_STATE(2942)] = 110307, + [SMALL_STATE(2943)] = 110408, + [SMALL_STATE(2944)] = 110507, + [SMALL_STATE(2945)] = 110602, + [SMALL_STATE(2946)] = 110695, + [SMALL_STATE(2947)] = 110786, + [SMALL_STATE(2948)] = 110873, + [SMALL_STATE(2949)] = 110954, + [SMALL_STATE(2950)] = 111035, + [SMALL_STATE(2951)] = 111102, + [SMALL_STATE(2952)] = 111169, + [SMALL_STATE(2953)] = 111238, + [SMALL_STATE(2954)] = 111305, + [SMALL_STATE(2955)] = 111376, + [SMALL_STATE(2956)] = 111457, + [SMALL_STATE(2957)] = 111523, + [SMALL_STATE(2958)] = 111591, + [SMALL_STATE(2959)] = 111657, + [SMALL_STATE(2960)] = 111723, + [SMALL_STATE(2961)] = 111791, + [SMALL_STATE(2962)] = 111859, + [SMALL_STATE(2963)] = 111925, + [SMALL_STATE(2964)] = 111995, + [SMALL_STATE(2965)] = 112103, + [SMALL_STATE(2966)] = 112169, + [SMALL_STATE(2967)] = 112235, + [SMALL_STATE(2968)] = 112301, + [SMALL_STATE(2969)] = 112369, + [SMALL_STATE(2970)] = 112435, + [SMALL_STATE(2971)] = 112501, + [SMALL_STATE(2972)] = 112567, + [SMALL_STATE(2973)] = 112633, + [SMALL_STATE(2974)] = 112699, + [SMALL_STATE(2975)] = 112765, + [SMALL_STATE(2976)] = 112831, + [SMALL_STATE(2977)] = 112943, + [SMALL_STATE(2978)] = 113009, + [SMALL_STATE(2979)] = 113075, + [SMALL_STATE(2980)] = 113141, + [SMALL_STATE(2981)] = 113213, + [SMALL_STATE(2982)] = 113321, + [SMALL_STATE(2983)] = 113393, + [SMALL_STATE(2984)] = 113463, + [SMALL_STATE(2985)] = 113535, + [SMALL_STATE(2986)] = 113643, + [SMALL_STATE(2987)] = 113713, + [SMALL_STATE(2988)] = 113779, + [SMALL_STATE(2989)] = 113845, + [SMALL_STATE(2990)] = 113913, + [SMALL_STATE(2991)] = 114015, + [SMALL_STATE(2992)] = 114121, + [SMALL_STATE(2993)] = 114227, + [SMALL_STATE(2994)] = 114331, + [SMALL_STATE(2995)] = 114401, + [SMALL_STATE(2996)] = 114467, + [SMALL_STATE(2997)] = 114533, + [SMALL_STATE(2998)] = 114599, + [SMALL_STATE(2999)] = 114665, + [SMALL_STATE(3000)] = 114731, + [SMALL_STATE(3001)] = 114797, + [SMALL_STATE(3002)] = 114863, + [SMALL_STATE(3003)] = 114929, + [SMALL_STATE(3004)] = 114995, + [SMALL_STATE(3005)] = 115061, + [SMALL_STATE(3006)] = 115127, + [SMALL_STATE(3007)] = 115193, + [SMALL_STATE(3008)] = 115259, + [SMALL_STATE(3009)] = 115325, + [SMALL_STATE(3010)] = 115391, + [SMALL_STATE(3011)] = 115457, + [SMALL_STATE(3012)] = 115523, + [SMALL_STATE(3013)] = 115589, + [SMALL_STATE(3014)] = 115655, + [SMALL_STATE(3015)] = 115725, + [SMALL_STATE(3016)] = 115791, + [SMALL_STATE(3017)] = 115857, + [SMALL_STATE(3018)] = 115923, + [SMALL_STATE(3019)] = 115989, + [SMALL_STATE(3020)] = 116055, + [SMALL_STATE(3021)] = 116121, + [SMALL_STATE(3022)] = 116187, + [SMALL_STATE(3023)] = 116253, + [SMALL_STATE(3024)] = 116319, + [SMALL_STATE(3025)] = 116385, + [SMALL_STATE(3026)] = 116451, + [SMALL_STATE(3027)] = 116517, + [SMALL_STATE(3028)] = 116583, + [SMALL_STATE(3029)] = 116649, + [SMALL_STATE(3030)] = 116715, + [SMALL_STATE(3031)] = 116781, + [SMALL_STATE(3032)] = 116847, + [SMALL_STATE(3033)] = 116913, + [SMALL_STATE(3034)] = 116979, + [SMALL_STATE(3035)] = 117045, + [SMALL_STATE(3036)] = 117111, + [SMALL_STATE(3037)] = 117177, + [SMALL_STATE(3038)] = 117243, + [SMALL_STATE(3039)] = 117309, + [SMALL_STATE(3040)] = 117375, + [SMALL_STATE(3041)] = 117441, + [SMALL_STATE(3042)] = 117507, + [SMALL_STATE(3043)] = 117573, + [SMALL_STATE(3044)] = 117639, + [SMALL_STATE(3045)] = 117705, + [SMALL_STATE(3046)] = 117771, + [SMALL_STATE(3047)] = 117837, + [SMALL_STATE(3048)] = 117903, + [SMALL_STATE(3049)] = 117969, + [SMALL_STATE(3050)] = 118035, + [SMALL_STATE(3051)] = 118101, + [SMALL_STATE(3052)] = 118167, + [SMALL_STATE(3053)] = 118233, + [SMALL_STATE(3054)] = 118299, + [SMALL_STATE(3055)] = 118365, + [SMALL_STATE(3056)] = 118435, + [SMALL_STATE(3057)] = 118501, + [SMALL_STATE(3058)] = 118567, + [SMALL_STATE(3059)] = 118633, + [SMALL_STATE(3060)] = 118703, + [SMALL_STATE(3061)] = 118769, + [SMALL_STATE(3062)] = 118835, + [SMALL_STATE(3063)] = 118951, + [SMALL_STATE(3064)] = 119021, + [SMALL_STATE(3065)] = 119087, + [SMALL_STATE(3066)] = 119153, + [SMALL_STATE(3067)] = 119219, + [SMALL_STATE(3068)] = 119285, + [SMALL_STATE(3069)] = 119351, + [SMALL_STATE(3070)] = 119433, + [SMALL_STATE(3071)] = 119521, + [SMALL_STATE(3072)] = 119593, + [SMALL_STATE(3073)] = 119671, + [SMALL_STATE(3074)] = 119745, + [SMALL_STATE(3075)] = 119815, + [SMALL_STATE(3076)] = 119915, + [SMALL_STATE(3077)] = 120013, + [SMALL_STATE(3078)] = 120107, + [SMALL_STATE(3079)] = 120199, + [SMALL_STATE(3080)] = 120289, + [SMALL_STATE(3081)] = 120375, + [SMALL_STATE(3082)] = 120455, + [SMALL_STATE(3083)] = 120535, + [SMALL_STATE(3084)] = 120601, + [SMALL_STATE(3085)] = 120667, + [SMALL_STATE(3086)] = 120733, + [SMALL_STATE(3087)] = 120799, + [SMALL_STATE(3088)] = 120865, + [SMALL_STATE(3089)] = 120931, + [SMALL_STATE(3090)] = 120997, + [SMALL_STATE(3091)] = 121063, + [SMALL_STATE(3092)] = 121129, + [SMALL_STATE(3093)] = 121195, + [SMALL_STATE(3094)] = 121261, + [SMALL_STATE(3095)] = 121327, + [SMALL_STATE(3096)] = 121393, + [SMALL_STATE(3097)] = 121459, + [SMALL_STATE(3098)] = 121525, + [SMALL_STATE(3099)] = 121591, + [SMALL_STATE(3100)] = 121657, + [SMALL_STATE(3101)] = 121723, + [SMALL_STATE(3102)] = 121789, + [SMALL_STATE(3103)] = 121855, + [SMALL_STATE(3104)] = 121921, + [SMALL_STATE(3105)] = 121987, + [SMALL_STATE(3106)] = 122053, + [SMALL_STATE(3107)] = 122119, + [SMALL_STATE(3108)] = 122185, + [SMALL_STATE(3109)] = 122251, + [SMALL_STATE(3110)] = 122317, + [SMALL_STATE(3111)] = 122383, + [SMALL_STATE(3112)] = 122449, + [SMALL_STATE(3113)] = 122515, + [SMALL_STATE(3114)] = 122581, + [SMALL_STATE(3115)] = 122647, + [SMALL_STATE(3116)] = 122713, + [SMALL_STATE(3117)] = 122779, + [SMALL_STATE(3118)] = 122845, + [SMALL_STATE(3119)] = 122911, + [SMALL_STATE(3120)] = 122977, + [SMALL_STATE(3121)] = 123043, + [SMALL_STATE(3122)] = 123109, + [SMALL_STATE(3123)] = 123175, + [SMALL_STATE(3124)] = 123245, + [SMALL_STATE(3125)] = 123311, + [SMALL_STATE(3126)] = 123377, + [SMALL_STATE(3127)] = 123443, + [SMALL_STATE(3128)] = 123509, + [SMALL_STATE(3129)] = 123591, + [SMALL_STATE(3130)] = 123679, + [SMALL_STATE(3131)] = 123781, + [SMALL_STATE(3132)] = 123853, + [SMALL_STATE(3133)] = 123931, + [SMALL_STATE(3134)] = 124005, + [SMALL_STATE(3135)] = 124111, + [SMALL_STATE(3136)] = 124217, + [SMALL_STATE(3137)] = 124321, + [SMALL_STATE(3138)] = 124421, + [SMALL_STATE(3139)] = 124519, + [SMALL_STATE(3140)] = 124613, + [SMALL_STATE(3141)] = 124705, + [SMALL_STATE(3142)] = 124795, + [SMALL_STATE(3143)] = 124881, + [SMALL_STATE(3144)] = 124961, + [SMALL_STATE(3145)] = 125041, + [SMALL_STATE(3146)] = 125107, + [SMALL_STATE(3147)] = 125173, + [SMALL_STATE(3148)] = 125239, + [SMALL_STATE(3149)] = 125305, + [SMALL_STATE(3150)] = 125371, + [SMALL_STATE(3151)] = 125437, + [SMALL_STATE(3152)] = 125503, + [SMALL_STATE(3153)] = 125569, + [SMALL_STATE(3154)] = 125635, + [SMALL_STATE(3155)] = 125701, + [SMALL_STATE(3156)] = 125767, + [SMALL_STATE(3157)] = 125833, + [SMALL_STATE(3158)] = 125899, + [SMALL_STATE(3159)] = 125965, + [SMALL_STATE(3160)] = 126031, + [SMALL_STATE(3161)] = 126097, + [SMALL_STATE(3162)] = 126163, + [SMALL_STATE(3163)] = 126229, + [SMALL_STATE(3164)] = 126295, + [SMALL_STATE(3165)] = 126361, + [SMALL_STATE(3166)] = 126469, + [SMALL_STATE(3167)] = 126535, + [SMALL_STATE(3168)] = 126601, + [SMALL_STATE(3169)] = 126667, + [SMALL_STATE(3170)] = 126733, + [SMALL_STATE(3171)] = 126799, + [SMALL_STATE(3172)] = 126865, + [SMALL_STATE(3173)] = 126931, + [SMALL_STATE(3174)] = 126997, + [SMALL_STATE(3175)] = 127063, + [SMALL_STATE(3176)] = 127129, + [SMALL_STATE(3177)] = 127195, + [SMALL_STATE(3178)] = 127261, + [SMALL_STATE(3179)] = 127327, + [SMALL_STATE(3180)] = 127393, + [SMALL_STATE(3181)] = 127459, + [SMALL_STATE(3182)] = 127525, + [SMALL_STATE(3183)] = 127591, + [SMALL_STATE(3184)] = 127657, + [SMALL_STATE(3185)] = 127765, + [SMALL_STATE(3186)] = 127831, + [SMALL_STATE(3187)] = 127901, + [SMALL_STATE(3188)] = 127967, + [SMALL_STATE(3189)] = 128033, + [SMALL_STATE(3190)] = 128099, + [SMALL_STATE(3191)] = 128169, + [SMALL_STATE(3192)] = 128235, + [SMALL_STATE(3193)] = 128305, + [SMALL_STATE(3194)] = 128375, + [SMALL_STATE(3195)] = 128441, + [SMALL_STATE(3196)] = 128507, + [SMALL_STATE(3197)] = 128609, + [SMALL_STATE(3198)] = 128715, + [SMALL_STATE(3199)] = 128821, + [SMALL_STATE(3200)] = 128925, + [SMALL_STATE(3201)] = 128991, + [SMALL_STATE(3202)] = 129103, + [SMALL_STATE(3203)] = 129175, + [SMALL_STATE(3204)] = 129247, + [SMALL_STATE(3205)] = 129313, + [SMALL_STATE(3206)] = 129385, + [SMALL_STATE(3207)] = 129451, + [SMALL_STATE(3208)] = 129517, + [SMALL_STATE(3209)] = 129583, + [SMALL_STATE(3210)] = 129649, + [SMALL_STATE(3211)] = 129719, + [SMALL_STATE(3212)] = 129785, + [SMALL_STATE(3213)] = 129851, + [SMALL_STATE(3214)] = 129917, + [SMALL_STATE(3215)] = 129987, + [SMALL_STATE(3216)] = 130053, + [SMALL_STATE(3217)] = 130119, + [SMALL_STATE(3218)] = 130185, + [SMALL_STATE(3219)] = 130251, + [SMALL_STATE(3220)] = 130317, + [SMALL_STATE(3221)] = 130383, + [SMALL_STATE(3222)] = 130449, + [SMALL_STATE(3223)] = 130515, + [SMALL_STATE(3224)] = 130581, + [SMALL_STATE(3225)] = 130647, + [SMALL_STATE(3226)] = 130713, + [SMALL_STATE(3227)] = 130779, + [SMALL_STATE(3228)] = 130845, + [SMALL_STATE(3229)] = 130911, + [SMALL_STATE(3230)] = 130977, + [SMALL_STATE(3231)] = 131043, + [SMALL_STATE(3232)] = 131109, + [SMALL_STATE(3233)] = 131175, + [SMALL_STATE(3234)] = 131241, + [SMALL_STATE(3235)] = 131311, + [SMALL_STATE(3236)] = 131377, + [SMALL_STATE(3237)] = 131443, + [SMALL_STATE(3238)] = 131509, + [SMALL_STATE(3239)] = 131575, + [SMALL_STATE(3240)] = 131641, + [SMALL_STATE(3241)] = 131707, + [SMALL_STATE(3242)] = 131773, + [SMALL_STATE(3243)] = 131839, + [SMALL_STATE(3244)] = 131905, + [SMALL_STATE(3245)] = 131971, + [SMALL_STATE(3246)] = 132037, + [SMALL_STATE(3247)] = 132103, + [SMALL_STATE(3248)] = 132169, + [SMALL_STATE(3249)] = 132235, + [SMALL_STATE(3250)] = 132301, + [SMALL_STATE(3251)] = 132367, + [SMALL_STATE(3252)] = 132433, + [SMALL_STATE(3253)] = 132499, + [SMALL_STATE(3254)] = 132565, + [SMALL_STATE(3255)] = 132631, + [SMALL_STATE(3256)] = 132697, + [SMALL_STATE(3257)] = 132763, + [SMALL_STATE(3258)] = 132829, + [SMALL_STATE(3259)] = 132895, + [SMALL_STATE(3260)] = 132961, + [SMALL_STATE(3261)] = 133027, + [SMALL_STATE(3262)] = 133093, + [SMALL_STATE(3263)] = 133159, + [SMALL_STATE(3264)] = 133225, + [SMALL_STATE(3265)] = 133291, + [SMALL_STATE(3266)] = 133357, + [SMALL_STATE(3267)] = 133423, + [SMALL_STATE(3268)] = 133489, + [SMALL_STATE(3269)] = 133555, + [SMALL_STATE(3270)] = 133621, + [SMALL_STATE(3271)] = 133687, + [SMALL_STATE(3272)] = 133753, + [SMALL_STATE(3273)] = 133819, + [SMALL_STATE(3274)] = 133885, + [SMALL_STATE(3275)] = 133955, + [SMALL_STATE(3276)] = 134021, + [SMALL_STATE(3277)] = 134087, + [SMALL_STATE(3278)] = 134153, + [SMALL_STATE(3279)] = 134219, + [SMALL_STATE(3280)] = 134285, + [SMALL_STATE(3281)] = 134351, + [SMALL_STATE(3282)] = 134417, + [SMALL_STATE(3283)] = 134483, + [SMALL_STATE(3284)] = 134549, + [SMALL_STATE(3285)] = 134615, + [SMALL_STATE(3286)] = 134723, + [SMALL_STATE(3287)] = 134789, + [SMALL_STATE(3288)] = 134859, + [SMALL_STATE(3289)] = 134925, + [SMALL_STATE(3290)] = 134991, + [SMALL_STATE(3291)] = 135057, + [SMALL_STATE(3292)] = 135123, + [SMALL_STATE(3293)] = 135189, + [SMALL_STATE(3294)] = 135305, + [SMALL_STATE(3295)] = 135371, + [SMALL_STATE(3296)] = 135437, + [SMALL_STATE(3297)] = 135503, + [SMALL_STATE(3298)] = 135569, + [SMALL_STATE(3299)] = 135685, + [SMALL_STATE(3300)] = 135751, + [SMALL_STATE(3301)] = 135817, + [SMALL_STATE(3302)] = 135887, + [SMALL_STATE(3303)] = 135953, + [SMALL_STATE(3304)] = 136019, + [SMALL_STATE(3305)] = 136089, + [SMALL_STATE(3306)] = 136155, + [SMALL_STATE(3307)] = 136221, + [SMALL_STATE(3308)] = 136287, + [SMALL_STATE(3309)] = 136353, + [SMALL_STATE(3310)] = 136419, + [SMALL_STATE(3311)] = 136485, + [SMALL_STATE(3312)] = 136551, + [SMALL_STATE(3313)] = 136617, + [SMALL_STATE(3314)] = 136683, + [SMALL_STATE(3315)] = 136749, + [SMALL_STATE(3316)] = 136815, + [SMALL_STATE(3317)] = 136897, + [SMALL_STATE(3318)] = 136985, + [SMALL_STATE(3319)] = 137051, + [SMALL_STATE(3320)] = 137123, + [SMALL_STATE(3321)] = 137201, + [SMALL_STATE(3322)] = 137275, + [SMALL_STATE(3323)] = 137341, + [SMALL_STATE(3324)] = 137441, + [SMALL_STATE(3325)] = 137539, + [SMALL_STATE(3326)] = 137633, + [SMALL_STATE(3327)] = 137725, + [SMALL_STATE(3328)] = 137815, + [SMALL_STATE(3329)] = 137901, + [SMALL_STATE(3330)] = 137981, + [SMALL_STATE(3331)] = 138061, + [SMALL_STATE(3332)] = 138131, + [SMALL_STATE(3333)] = 138197, + [SMALL_STATE(3334)] = 138263, + [SMALL_STATE(3335)] = 138329, + [SMALL_STATE(3336)] = 138437, + [SMALL_STATE(3337)] = 138503, + [SMALL_STATE(3338)] = 138569, + [SMALL_STATE(3339)] = 138635, + [SMALL_STATE(3340)] = 138701, + [SMALL_STATE(3341)] = 138767, + [SMALL_STATE(3342)] = 138833, + [SMALL_STATE(3343)] = 138903, + [SMALL_STATE(3344)] = 138969, + [SMALL_STATE(3345)] = 139035, + [SMALL_STATE(3346)] = 139143, + [SMALL_STATE(3347)] = 139213, + [SMALL_STATE(3348)] = 139321, + [SMALL_STATE(3349)] = 139387, + [SMALL_STATE(3350)] = 139495, + [SMALL_STATE(3351)] = 139561, + [SMALL_STATE(3352)] = 139627, + [SMALL_STATE(3353)] = 139693, + [SMALL_STATE(3354)] = 139759, + [SMALL_STATE(3355)] = 139825, + [SMALL_STATE(3356)] = 139891, + [SMALL_STATE(3357)] = 139957, + [SMALL_STATE(3358)] = 140023, + [SMALL_STATE(3359)] = 140089, + [SMALL_STATE(3360)] = 140155, + [SMALL_STATE(3361)] = 140221, + [SMALL_STATE(3362)] = 140287, + [SMALL_STATE(3363)] = 140353, + [SMALL_STATE(3364)] = 140419, + [SMALL_STATE(3365)] = 140485, + [SMALL_STATE(3366)] = 140551, + [SMALL_STATE(3367)] = 140617, + [SMALL_STATE(3368)] = 140683, + [SMALL_STATE(3369)] = 140749, + [SMALL_STATE(3370)] = 140815, + [SMALL_STATE(3371)] = 140881, + [SMALL_STATE(3372)] = 140997, + [SMALL_STATE(3373)] = 141065, + [SMALL_STATE(3374)] = 141133, + [SMALL_STATE(3375)] = 141199, + [SMALL_STATE(3376)] = 141315, + [SMALL_STATE(3377)] = 141381, + [SMALL_STATE(3378)] = 141489, + [SMALL_STATE(3379)] = 141555, + [SMALL_STATE(3380)] = 141657, + [SMALL_STATE(3381)] = 141763, + [SMALL_STATE(3382)] = 141869, + [SMALL_STATE(3383)] = 141973, + [SMALL_STATE(3384)] = 142041, + [SMALL_STATE(3385)] = 142107, + [SMALL_STATE(3386)] = 142173, + [SMALL_STATE(3387)] = 142241, + [SMALL_STATE(3388)] = 142309, + [SMALL_STATE(3389)] = 142375, + [SMALL_STATE(3390)] = 142443, + [SMALL_STATE(3391)] = 142509, + [SMALL_STATE(3392)] = 142575, + [SMALL_STATE(3393)] = 142641, + [SMALL_STATE(3394)] = 142707, + [SMALL_STATE(3395)] = 142773, + [SMALL_STATE(3396)] = 142839, + [SMALL_STATE(3397)] = 142905, + [SMALL_STATE(3398)] = 142971, + [SMALL_STATE(3399)] = 143037, + [SMALL_STATE(3400)] = 143103, + [SMALL_STATE(3401)] = 143169, + [SMALL_STATE(3402)] = 143235, + [SMALL_STATE(3403)] = 143301, + [SMALL_STATE(3404)] = 143409, + [SMALL_STATE(3405)] = 143475, + [SMALL_STATE(3406)] = 143541, + [SMALL_STATE(3407)] = 143607, + [SMALL_STATE(3408)] = 143673, + [SMALL_STATE(3409)] = 143739, + [SMALL_STATE(3410)] = 143805, + [SMALL_STATE(3411)] = 143871, + [SMALL_STATE(3412)] = 143937, + [SMALL_STATE(3413)] = 144003, + [SMALL_STATE(3414)] = 144069, + [SMALL_STATE(3415)] = 144135, + [SMALL_STATE(3416)] = 144201, + [SMALL_STATE(3417)] = 144267, + [SMALL_STATE(3418)] = 144333, + [SMALL_STATE(3419)] = 144399, + [SMALL_STATE(3420)] = 144511, + [SMALL_STATE(3421)] = 144577, + [SMALL_STATE(3422)] = 144647, + [SMALL_STATE(3423)] = 144713, + [SMALL_STATE(3424)] = 144779, + [SMALL_STATE(3425)] = 144849, + [SMALL_STATE(3426)] = 144919, + [SMALL_STATE(3427)] = 144989, + [SMALL_STATE(3428)] = 145055, + [SMALL_STATE(3429)] = 145121, + [SMALL_STATE(3430)] = 145187, + [SMALL_STATE(3431)] = 145253, + [SMALL_STATE(3432)] = 145319, + [SMALL_STATE(3433)] = 145385, + [SMALL_STATE(3434)] = 145451, + [SMALL_STATE(3435)] = 145517, + [SMALL_STATE(3436)] = 145583, + [SMALL_STATE(3437)] = 145649, + [SMALL_STATE(3438)] = 145715, + [SMALL_STATE(3439)] = 145781, + [SMALL_STATE(3440)] = 145847, + [SMALL_STATE(3441)] = 145913, + [SMALL_STATE(3442)] = 145979, + [SMALL_STATE(3443)] = 146045, + [SMALL_STATE(3444)] = 146111, + [SMALL_STATE(3445)] = 146177, + [SMALL_STATE(3446)] = 146243, + [SMALL_STATE(3447)] = 146309, + [SMALL_STATE(3448)] = 146375, + [SMALL_STATE(3449)] = 146441, + [SMALL_STATE(3450)] = 146507, + [SMALL_STATE(3451)] = 146573, + [SMALL_STATE(3452)] = 146639, + [SMALL_STATE(3453)] = 146705, + [SMALL_STATE(3454)] = 146771, + [SMALL_STATE(3455)] = 146837, + [SMALL_STATE(3456)] = 146903, + [SMALL_STATE(3457)] = 146969, + [SMALL_STATE(3458)] = 147035, + [SMALL_STATE(3459)] = 147101, + [SMALL_STATE(3460)] = 147217, + [SMALL_STATE(3461)] = 147283, + [SMALL_STATE(3462)] = 147349, + [SMALL_STATE(3463)] = 147417, + [SMALL_STATE(3464)] = 147485, + [SMALL_STATE(3465)] = 147555, + [SMALL_STATE(3466)] = 147625, + [SMALL_STATE(3467)] = 147695, + [SMALL_STATE(3468)] = 147765, + [SMALL_STATE(3469)] = 147847, + [SMALL_STATE(3470)] = 147935, + [SMALL_STATE(3471)] = 148001, + [SMALL_STATE(3472)] = 148067, + [SMALL_STATE(3473)] = 148133, + [SMALL_STATE(3474)] = 148199, + [SMALL_STATE(3475)] = 148265, + [SMALL_STATE(3476)] = 148331, + [SMALL_STATE(3477)] = 148397, + [SMALL_STATE(3478)] = 148467, + [SMALL_STATE(3479)] = 148533, + [SMALL_STATE(3480)] = 148599, + [SMALL_STATE(3481)] = 148665, + [SMALL_STATE(3482)] = 148731, + [SMALL_STATE(3483)] = 148801, + [SMALL_STATE(3484)] = 148867, + [SMALL_STATE(3485)] = 148939, + [SMALL_STATE(3486)] = 149005, + [SMALL_STATE(3487)] = 149071, + [SMALL_STATE(3488)] = 149141, + [SMALL_STATE(3489)] = 149207, + [SMALL_STATE(3490)] = 149285, + [SMALL_STATE(3491)] = 149359, + [SMALL_STATE(3492)] = 149459, + [SMALL_STATE(3493)] = 149557, + [SMALL_STATE(3494)] = 149651, + [SMALL_STATE(3495)] = 149743, + [SMALL_STATE(3496)] = 149833, + [SMALL_STATE(3497)] = 149899, + [SMALL_STATE(3498)] = 149985, + [SMALL_STATE(3499)] = 150065, + [SMALL_STATE(3500)] = 150145, + [SMALL_STATE(3501)] = 150211, + [SMALL_STATE(3502)] = 150277, + [SMALL_STATE(3503)] = 150343, + [SMALL_STATE(3504)] = 150409, + [SMALL_STATE(3505)] = 150475, + [SMALL_STATE(3506)] = 150541, + [SMALL_STATE(3507)] = 150607, + [SMALL_STATE(3508)] = 150677, + [SMALL_STATE(3509)] = 150743, + [SMALL_STATE(3510)] = 150809, + [SMALL_STATE(3511)] = 150875, + [SMALL_STATE(3512)] = 150941, + [SMALL_STATE(3513)] = 151007, + [SMALL_STATE(3514)] = 151073, + [SMALL_STATE(3515)] = 151143, + [SMALL_STATE(3516)] = 151209, + [SMALL_STATE(3517)] = 151279, + [SMALL_STATE(3518)] = 151345, + [SMALL_STATE(3519)] = 151411, + [SMALL_STATE(3520)] = 151498, + [SMALL_STATE(3521)] = 151605, + [SMALL_STATE(3522)] = 151674, + [SMALL_STATE(3523)] = 151739, + [SMALL_STATE(3524)] = 151804, + [SMALL_STATE(3525)] = 151869, + [SMALL_STATE(3526)] = 151934, + [SMALL_STATE(3527)] = 151999, + [SMALL_STATE(3528)] = 152064, + [SMALL_STATE(3529)] = 152129, + [SMALL_STATE(3530)] = 152194, + [SMALL_STATE(3531)] = 152259, + [SMALL_STATE(3532)] = 152324, + [SMALL_STATE(3533)] = 152389, + [SMALL_STATE(3534)] = 152454, + [SMALL_STATE(3535)] = 152519, + [SMALL_STATE(3536)] = 152584, + [SMALL_STATE(3537)] = 152649, + [SMALL_STATE(3538)] = 152714, + [SMALL_STATE(3539)] = 152779, + [SMALL_STATE(3540)] = 152844, + [SMALL_STATE(3541)] = 152909, + [SMALL_STATE(3542)] = 152974, + [SMALL_STATE(3543)] = 153039, + [SMALL_STATE(3544)] = 153104, + [SMALL_STATE(3545)] = 153169, + [SMALL_STATE(3546)] = 153234, + [SMALL_STATE(3547)] = 153299, + [SMALL_STATE(3548)] = 153364, + [SMALL_STATE(3549)] = 153429, + [SMALL_STATE(3550)] = 153494, + [SMALL_STATE(3551)] = 153559, + [SMALL_STATE(3552)] = 153624, + [SMALL_STATE(3553)] = 153689, + [SMALL_STATE(3554)] = 153754, + [SMALL_STATE(3555)] = 153819, + [SMALL_STATE(3556)] = 153884, + [SMALL_STATE(3557)] = 153949, + [SMALL_STATE(3558)] = 154014, + [SMALL_STATE(3559)] = 154079, + [SMALL_STATE(3560)] = 154144, + [SMALL_STATE(3561)] = 154209, + [SMALL_STATE(3562)] = 154274, + [SMALL_STATE(3563)] = 154339, + [SMALL_STATE(3564)] = 154404, + [SMALL_STATE(3565)] = 154469, + [SMALL_STATE(3566)] = 154534, + [SMALL_STATE(3567)] = 154599, + [SMALL_STATE(3568)] = 154664, + [SMALL_STATE(3569)] = 154729, + [SMALL_STATE(3570)] = 154794, + [SMALL_STATE(3571)] = 154863, + [SMALL_STATE(3572)] = 154928, + [SMALL_STATE(3573)] = 154993, + [SMALL_STATE(3574)] = 155060, + [SMALL_STATE(3575)] = 155125, + [SMALL_STATE(3576)] = 155190, + [SMALL_STATE(3577)] = 155255, + [SMALL_STATE(3578)] = 155320, + [SMALL_STATE(3579)] = 155385, + [SMALL_STATE(3580)] = 155454, + [SMALL_STATE(3581)] = 155519, + [SMALL_STATE(3582)] = 155584, + [SMALL_STATE(3583)] = 155649, + [SMALL_STATE(3584)] = 155714, + [SMALL_STATE(3585)] = 155779, + [SMALL_STATE(3586)] = 155844, + [SMALL_STATE(3587)] = 155909, + [SMALL_STATE(3588)] = 155974, + [SMALL_STATE(3589)] = 156039, + [SMALL_STATE(3590)] = 156146, + [SMALL_STATE(3591)] = 156253, + [SMALL_STATE(3592)] = 156318, + [SMALL_STATE(3593)] = 156383, + [SMALL_STATE(3594)] = 156450, + [SMALL_STATE(3595)] = 156515, + [SMALL_STATE(3596)] = 156580, + [SMALL_STATE(3597)] = 156645, + [SMALL_STATE(3598)] = 156710, + [SMALL_STATE(3599)] = 156775, + [SMALL_STATE(3600)] = 156840, + [SMALL_STATE(3601)] = 156905, + [SMALL_STATE(3602)] = 156970, + [SMALL_STATE(3603)] = 157035, + [SMALL_STATE(3604)] = 157100, + [SMALL_STATE(3605)] = 157165, + [SMALL_STATE(3606)] = 157230, + [SMALL_STATE(3607)] = 157295, + [SMALL_STATE(3608)] = 157360, + [SMALL_STATE(3609)] = 157425, + [SMALL_STATE(3610)] = 157490, + [SMALL_STATE(3611)] = 157555, + [SMALL_STATE(3612)] = 157620, + [SMALL_STATE(3613)] = 157685, + [SMALL_STATE(3614)] = 157786, + [SMALL_STATE(3615)] = 157891, + [SMALL_STATE(3616)] = 157996, + [SMALL_STATE(3617)] = 158099, + [SMALL_STATE(3618)] = 158164, + [SMALL_STATE(3619)] = 158229, + [SMALL_STATE(3620)] = 158294, + [SMALL_STATE(3621)] = 158359, + [SMALL_STATE(3622)] = 158424, + [SMALL_STATE(3623)] = 158489, + [SMALL_STATE(3624)] = 158554, + [SMALL_STATE(3625)] = 158619, + [SMALL_STATE(3626)] = 158684, + [SMALL_STATE(3627)] = 158749, + [SMALL_STATE(3628)] = 158814, + [SMALL_STATE(3629)] = 158879, + [SMALL_STATE(3630)] = 158944, + [SMALL_STATE(3631)] = 159009, + [SMALL_STATE(3632)] = 159074, + [SMALL_STATE(3633)] = 159155, + [SMALL_STATE(3634)] = 159220, + [SMALL_STATE(3635)] = 159285, + [SMALL_STATE(3636)] = 159350, + [SMALL_STATE(3637)] = 159415, + [SMALL_STATE(3638)] = 159480, + [SMALL_STATE(3639)] = 159545, + [SMALL_STATE(3640)] = 159610, + [SMALL_STATE(3641)] = 159675, + [SMALL_STATE(3642)] = 159740, + [SMALL_STATE(3643)] = 159805, + [SMALL_STATE(3644)] = 159870, + [SMALL_STATE(3645)] = 159957, + [SMALL_STATE(3646)] = 160022, + [SMALL_STATE(3647)] = 160087, + [SMALL_STATE(3648)] = 160152, + [SMALL_STATE(3649)] = 160217, + [SMALL_STATE(3650)] = 160288, + [SMALL_STATE(3651)] = 160365, + [SMALL_STATE(3652)] = 160430, + [SMALL_STATE(3653)] = 160495, + [SMALL_STATE(3654)] = 160568, + [SMALL_STATE(3655)] = 160633, + [SMALL_STATE(3656)] = 160698, + [SMALL_STATE(3657)] = 160763, + [SMALL_STATE(3658)] = 160828, + [SMALL_STATE(3659)] = 160893, + [SMALL_STATE(3660)] = 160992, + [SMALL_STATE(3661)] = 161057, + [SMALL_STATE(3662)] = 161154, + [SMALL_STATE(3663)] = 161247, + [SMALL_STATE(3664)] = 161312, + [SMALL_STATE(3665)] = 161403, + [SMALL_STATE(3666)] = 161468, + [SMALL_STATE(3667)] = 161557, + [SMALL_STATE(3668)] = 161622, + [SMALL_STATE(3669)] = 161687, + [SMALL_STATE(3670)] = 161752, + [SMALL_STATE(3671)] = 161817, + [SMALL_STATE(3672)] = 161882, + [SMALL_STATE(3673)] = 161947, + [SMALL_STATE(3674)] = 162012, + [SMALL_STATE(3675)] = 162077, + [SMALL_STATE(3676)] = 162142, + [SMALL_STATE(3677)] = 162207, + [SMALL_STATE(3678)] = 162272, + [SMALL_STATE(3679)] = 162357, + [SMALL_STATE(3680)] = 162436, + [SMALL_STATE(3681)] = 162515, + [SMALL_STATE(3682)] = 162580, + [SMALL_STATE(3683)] = 162645, + [SMALL_STATE(3684)] = 162710, + [SMALL_STATE(3685)] = 162775, + [SMALL_STATE(3686)] = 162840, + [SMALL_STATE(3687)] = 162905, + [SMALL_STATE(3688)] = 162970, + [SMALL_STATE(3689)] = 163035, + [SMALL_STATE(3690)] = 163100, + [SMALL_STATE(3691)] = 163165, + [SMALL_STATE(3692)] = 163230, + [SMALL_STATE(3693)] = 163311, + [SMALL_STATE(3694)] = 163398, + [SMALL_STATE(3695)] = 163463, + [SMALL_STATE(3696)] = 163528, + [SMALL_STATE(3697)] = 163593, + [SMALL_STATE(3698)] = 163658, + [SMALL_STATE(3699)] = 163729, + [SMALL_STATE(3700)] = 163806, + [SMALL_STATE(3701)] = 163879, + [SMALL_STATE(3702)] = 163944, + [SMALL_STATE(3703)] = 164051, + [SMALL_STATE(3704)] = 164120, + [SMALL_STATE(3705)] = 164185, + [SMALL_STATE(3706)] = 164250, + [SMALL_STATE(3707)] = 164315, + [SMALL_STATE(3708)] = 164380, + [SMALL_STATE(3709)] = 164445, + [SMALL_STATE(3710)] = 164510, + [SMALL_STATE(3711)] = 164575, + [SMALL_STATE(3712)] = 164640, + [SMALL_STATE(3713)] = 164705, + [SMALL_STATE(3714)] = 164770, + [SMALL_STATE(3715)] = 164835, + [SMALL_STATE(3716)] = 164900, + [SMALL_STATE(3717)] = 164999, + [SMALL_STATE(3718)] = 165064, + [SMALL_STATE(3719)] = 165129, + [SMALL_STATE(3720)] = 165194, + [SMALL_STATE(3721)] = 165291, + [SMALL_STATE(3722)] = 165384, + [SMALL_STATE(3723)] = 165475, + [SMALL_STATE(3724)] = 165564, + [SMALL_STATE(3725)] = 165649, + [SMALL_STATE(3726)] = 165728, + [SMALL_STATE(3727)] = 165807, + [SMALL_STATE(3728)] = 165876, + [SMALL_STATE(3729)] = 165941, + [SMALL_STATE(3730)] = 166006, + [SMALL_STATE(3731)] = 166071, + [SMALL_STATE(3732)] = 166136, + [SMALL_STATE(3733)] = 166201, + [SMALL_STATE(3734)] = 166266, + [SMALL_STATE(3735)] = 166331, + [SMALL_STATE(3736)] = 166396, + [SMALL_STATE(3737)] = 166461, + [SMALL_STATE(3738)] = 166526, + [SMALL_STATE(3739)] = 166591, + [SMALL_STATE(3740)] = 166656, + [SMALL_STATE(3741)] = 166721, + [SMALL_STATE(3742)] = 166786, + [SMALL_STATE(3743)] = 166851, + [SMALL_STATE(3744)] = 166916, + [SMALL_STATE(3745)] = 166983, + [SMALL_STATE(3746)] = 167048, + [SMALL_STATE(3747)] = 167113, + [SMALL_STATE(3748)] = 167178, + [SMALL_STATE(3749)] = 167243, + [SMALL_STATE(3750)] = 167308, + [SMALL_STATE(3751)] = 167373, + [SMALL_STATE(3752)] = 167454, + [SMALL_STATE(3753)] = 167541, + [SMALL_STATE(3754)] = 167612, + [SMALL_STATE(3755)] = 167689, + [SMALL_STATE(3756)] = 167762, + [SMALL_STATE(3757)] = 167861, + [SMALL_STATE(3758)] = 167958, + [SMALL_STATE(3759)] = 168051, + [SMALL_STATE(3760)] = 168142, + [SMALL_STATE(3761)] = 168231, + [SMALL_STATE(3762)] = 168316, + [SMALL_STATE(3763)] = 168395, + [SMALL_STATE(3764)] = 168474, + [SMALL_STATE(3765)] = 168539, + [SMALL_STATE(3766)] = 168604, + [SMALL_STATE(3767)] = 168705, + [SMALL_STATE(3768)] = 168810, + [SMALL_STATE(3769)] = 168915, + [SMALL_STATE(3770)] = 169018, + [SMALL_STATE(3771)] = 169083, + [SMALL_STATE(3772)] = 169148, + [SMALL_STATE(3773)] = 169213, + [SMALL_STATE(3774)] = 169278, + [SMALL_STATE(3775)] = 169343, + [SMALL_STATE(3776)] = 169408, + [SMALL_STATE(3777)] = 169473, + [SMALL_STATE(3778)] = 169538, + [SMALL_STATE(3779)] = 169603, + [SMALL_STATE(3780)] = 169668, + [SMALL_STATE(3781)] = 169733, + [SMALL_STATE(3782)] = 169798, + [SMALL_STATE(3783)] = 169863, + [SMALL_STATE(3784)] = 169928, + [SMALL_STATE(3785)] = 169993, + [SMALL_STATE(3786)] = 170060, + [SMALL_STATE(3787)] = 170125, + [SMALL_STATE(3788)] = 170190, + [SMALL_STATE(3789)] = 170255, + [SMALL_STATE(3790)] = 170320, + [SMALL_STATE(3791)] = 170385, + [SMALL_STATE(3792)] = 170450, + [SMALL_STATE(3793)] = 170515, + [SMALL_STATE(3794)] = 170584, + [SMALL_STATE(3795)] = 170649, + [SMALL_STATE(3796)] = 170714, + [SMALL_STATE(3797)] = 170779, + [SMALL_STATE(3798)] = 170844, + [SMALL_STATE(3799)] = 170909, + [SMALL_STATE(3800)] = 170974, + [SMALL_STATE(3801)] = 171039, + [SMALL_STATE(3802)] = 171104, + [SMALL_STATE(3803)] = 171169, + [SMALL_STATE(3804)] = 171234, + [SMALL_STATE(3805)] = 171299, + [SMALL_STATE(3806)] = 171364, + [SMALL_STATE(3807)] = 171429, + [SMALL_STATE(3808)] = 171494, + [SMALL_STATE(3809)] = 171559, + [SMALL_STATE(3810)] = 171624, + [SMALL_STATE(3811)] = 171689, + [SMALL_STATE(3812)] = 171754, + [SMALL_STATE(3813)] = 171819, + [SMALL_STATE(3814)] = 171888, + [SMALL_STATE(3815)] = 171957, + [SMALL_STATE(3816)] = 172022, + [SMALL_STATE(3817)] = 172087, + [SMALL_STATE(3818)] = 172152, + [SMALL_STATE(3819)] = 172217, + [SMALL_STATE(3820)] = 172282, + [SMALL_STATE(3821)] = 172347, + [SMALL_STATE(3822)] = 172412, + [SMALL_STATE(3823)] = 172477, + [SMALL_STATE(3824)] = 172542, + [SMALL_STATE(3825)] = 172607, + [SMALL_STATE(3826)] = 172672, + [SMALL_STATE(3827)] = 172737, + [SMALL_STATE(3828)] = 172802, + [SMALL_STATE(3829)] = 172867, + [SMALL_STATE(3830)] = 172932, + [SMALL_STATE(3831)] = 172997, + [SMALL_STATE(3832)] = 173062, + [SMALL_STATE(3833)] = 173127, + [SMALL_STATE(3834)] = 173192, + [SMALL_STATE(3835)] = 173257, + [SMALL_STATE(3836)] = 173322, + [SMALL_STATE(3837)] = 173387, + [SMALL_STATE(3838)] = 173456, + [SMALL_STATE(3839)] = 173521, + [SMALL_STATE(3840)] = 173586, + [SMALL_STATE(3841)] = 173651, + [SMALL_STATE(3842)] = 173716, + [SMALL_STATE(3843)] = 173781, + [SMALL_STATE(3844)] = 173846, + [SMALL_STATE(3845)] = 173911, + [SMALL_STATE(3846)] = 173976, + [SMALL_STATE(3847)] = 174041, + [SMALL_STATE(3848)] = 174106, + [SMALL_STATE(3849)] = 174171, + [SMALL_STATE(3850)] = 174236, + [SMALL_STATE(3851)] = 174305, + [SMALL_STATE(3852)] = 174370, + [SMALL_STATE(3853)] = 174437, + [SMALL_STATE(3854)] = 174544, + [SMALL_STATE(3855)] = 174609, + [SMALL_STATE(3856)] = 174678, + [SMALL_STATE(3857)] = 174743, + [SMALL_STATE(3858)] = 174810, + [SMALL_STATE(3859)] = 174875, + [SMALL_STATE(3860)] = 174940, + [SMALL_STATE(3861)] = 175005, + [SMALL_STATE(3862)] = 175070, + [SMALL_STATE(3863)] = 175135, + [SMALL_STATE(3864)] = 175200, + [SMALL_STATE(3865)] = 175307, + [SMALL_STATE(3866)] = 175376, + [SMALL_STATE(3867)] = 175445, + [SMALL_STATE(3868)] = 175510, + [SMALL_STATE(3869)] = 175617, + [SMALL_STATE(3870)] = 175682, + [SMALL_STATE(3871)] = 175747, + [SMALL_STATE(3872)] = 175812, + [SMALL_STATE(3873)] = 175877, + [SMALL_STATE(3874)] = 175942, + [SMALL_STATE(3875)] = 176007, + [SMALL_STATE(3876)] = 176072, + [SMALL_STATE(3877)] = 176137, + [SMALL_STATE(3878)] = 176202, + [SMALL_STATE(3879)] = 176267, + [SMALL_STATE(3880)] = 176332, + [SMALL_STATE(3881)] = 176397, + [SMALL_STATE(3882)] = 176462, + [SMALL_STATE(3883)] = 176527, + [SMALL_STATE(3884)] = 176592, + [SMALL_STATE(3885)] = 176657, + [SMALL_STATE(3886)] = 176722, + [SMALL_STATE(3887)] = 176787, + [SMALL_STATE(3888)] = 176852, + [SMALL_STATE(3889)] = 176917, + [SMALL_STATE(3890)] = 176982, + [SMALL_STATE(3891)] = 177047, + [SMALL_STATE(3892)] = 177112, + [SMALL_STATE(3893)] = 177177, + [SMALL_STATE(3894)] = 177242, + [SMALL_STATE(3895)] = 177307, + [SMALL_STATE(3896)] = 177372, + [SMALL_STATE(3897)] = 177437, + [SMALL_STATE(3898)] = 177502, + [SMALL_STATE(3899)] = 177567, + [SMALL_STATE(3900)] = 177632, + [SMALL_STATE(3901)] = 177697, + [SMALL_STATE(3902)] = 177762, + [SMALL_STATE(3903)] = 177827, + [SMALL_STATE(3904)] = 177892, + [SMALL_STATE(3905)] = 177957, + [SMALL_STATE(3906)] = 178022, + [SMALL_STATE(3907)] = 178087, + [SMALL_STATE(3908)] = 178152, + [SMALL_STATE(3909)] = 178217, + [SMALL_STATE(3910)] = 178282, + [SMALL_STATE(3911)] = 178347, + [SMALL_STATE(3912)] = 178412, + [SMALL_STATE(3913)] = 178477, + [SMALL_STATE(3914)] = 178542, + [SMALL_STATE(3915)] = 178607, + [SMALL_STATE(3916)] = 178672, + [SMALL_STATE(3917)] = 178737, + [SMALL_STATE(3918)] = 178802, + [SMALL_STATE(3919)] = 178869, + [SMALL_STATE(3920)] = 178938, + [SMALL_STATE(3921)] = 179003, + [SMALL_STATE(3922)] = 179108, + [SMALL_STATE(3923)] = 179173, + [SMALL_STATE(3924)] = 179238, + [SMALL_STATE(3925)] = 179303, + [SMALL_STATE(3926)] = 179368, + [SMALL_STATE(3927)] = 179435, + [SMALL_STATE(3928)] = 179516, + [SMALL_STATE(3929)] = 179583, + [SMALL_STATE(3930)] = 179670, + [SMALL_STATE(3931)] = 179771, + [SMALL_STATE(3932)] = 179842, + [SMALL_STATE(3933)] = 179919, + [SMALL_STATE(3934)] = 179992, + [SMALL_STATE(3935)] = 180097, + [SMALL_STATE(3936)] = 180202, + [SMALL_STATE(3937)] = 180305, + [SMALL_STATE(3938)] = 180404, + [SMALL_STATE(3939)] = 180501, + [SMALL_STATE(3940)] = 180594, + [SMALL_STATE(3941)] = 180685, + [SMALL_STATE(3942)] = 180774, + [SMALL_STATE(3943)] = 180859, + [SMALL_STATE(3944)] = 180938, + [SMALL_STATE(3945)] = 181017, + [SMALL_STATE(3946)] = 181086, + [SMALL_STATE(3947)] = 181151, + [SMALL_STATE(3948)] = 181258, + [SMALL_STATE(3949)] = 181323, + [SMALL_STATE(3950)] = 181388, + [SMALL_STATE(3951)] = 181453, + [SMALL_STATE(3952)] = 181518, + [SMALL_STATE(3953)] = 181583, + [SMALL_STATE(3954)] = 181648, + [SMALL_STATE(3955)] = 181713, + [SMALL_STATE(3956)] = 181782, + [SMALL_STATE(3957)] = 181847, + [SMALL_STATE(3958)] = 181912, + [SMALL_STATE(3959)] = 181981, + [SMALL_STATE(3960)] = 182090, + [SMALL_STATE(3961)] = 182159, + [SMALL_STATE(3962)] = 182224, + [SMALL_STATE(3963)] = 182289, + [SMALL_STATE(3964)] = 182354, + [SMALL_STATE(3965)] = 182419, + [SMALL_STATE(3966)] = 182484, + [SMALL_STATE(3967)] = 182549, + [SMALL_STATE(3968)] = 182614, + [SMALL_STATE(3969)] = 182683, + [SMALL_STATE(3970)] = 182748, + [SMALL_STATE(3971)] = 182813, + [SMALL_STATE(3972)] = 182878, + [SMALL_STATE(3973)] = 182979, + [SMALL_STATE(3974)] = 183044, + [SMALL_STATE(3975)] = 183111, + [SMALL_STATE(3976)] = 183178, + [SMALL_STATE(3977)] = 183243, + [SMALL_STATE(3978)] = 183308, + [SMALL_STATE(3979)] = 183373, + [SMALL_STATE(3980)] = 183438, + [SMALL_STATE(3981)] = 183543, + [SMALL_STATE(3982)] = 183648, + [SMALL_STATE(3983)] = 183751, + [SMALL_STATE(3984)] = 183858, + [SMALL_STATE(3985)] = 183965, + [SMALL_STATE(3986)] = 184030, + [SMALL_STATE(3987)] = 184095, + [SMALL_STATE(3988)] = 184160, + [SMALL_STATE(3989)] = 184225, + [SMALL_STATE(3990)] = 184290, + [SMALL_STATE(3991)] = 184355, + [SMALL_STATE(3992)] = 184462, + [SMALL_STATE(3993)] = 184527, + [SMALL_STATE(3994)] = 184592, + [SMALL_STATE(3995)] = 184661, + [SMALL_STATE(3996)] = 184730, + [SMALL_STATE(3997)] = 184795, + [SMALL_STATE(3998)] = 184860, + [SMALL_STATE(3999)] = 184925, + [SMALL_STATE(4000)] = 184990, + [SMALL_STATE(4001)] = 185055, + [SMALL_STATE(4002)] = 185120, + [SMALL_STATE(4003)] = 185225, + [SMALL_STATE(4004)] = 185290, + [SMALL_STATE(4005)] = 185355, + [SMALL_STATE(4006)] = 185420, + [SMALL_STATE(4007)] = 185485, + [SMALL_STATE(4008)] = 185590, + [SMALL_STATE(4009)] = 185655, + [SMALL_STATE(4010)] = 185720, + [SMALL_STATE(4011)] = 185785, + [SMALL_STATE(4012)] = 185850, + [SMALL_STATE(4013)] = 185915, + [SMALL_STATE(4014)] = 185980, + [SMALL_STATE(4015)] = 186045, + [SMALL_STATE(4016)] = 186110, + [SMALL_STATE(4017)] = 186175, + [SMALL_STATE(4018)] = 186240, + [SMALL_STATE(4019)] = 186305, + [SMALL_STATE(4020)] = 186370, + [SMALL_STATE(4021)] = 186439, + [SMALL_STATE(4022)] = 186504, + [SMALL_STATE(4023)] = 186569, + [SMALL_STATE(4024)] = 186634, + [SMALL_STATE(4025)] = 186699, + [SMALL_STATE(4026)] = 186764, + [SMALL_STATE(4027)] = 186829, + [SMALL_STATE(4028)] = 186894, + [SMALL_STATE(4029)] = 186959, + [SMALL_STATE(4030)] = 187024, + [SMALL_STATE(4031)] = 187089, + [SMALL_STATE(4032)] = 187154, + [SMALL_STATE(4033)] = 187219, + [SMALL_STATE(4034)] = 187284, + [SMALL_STATE(4035)] = 187349, + [SMALL_STATE(4036)] = 187414, + [SMALL_STATE(4037)] = 187479, + [SMALL_STATE(4038)] = 187544, + [SMALL_STATE(4039)] = 187609, + [SMALL_STATE(4040)] = 187690, + [SMALL_STATE(4041)] = 187775, + [SMALL_STATE(4042)] = 187874, + [SMALL_STATE(4043)] = 187939, + [SMALL_STATE(4044)] = 188010, + [SMALL_STATE(4045)] = 188087, + [SMALL_STATE(4046)] = 188160, + [SMALL_STATE(4047)] = 188263, + [SMALL_STATE(4048)] = 188366, + [SMALL_STATE(4049)] = 188467, + [SMALL_STATE(4050)] = 188564, + [SMALL_STATE(4051)] = 188659, + [SMALL_STATE(4052)] = 188750, + [SMALL_STATE(4053)] = 188839, + [SMALL_STATE(4054)] = 188922, + [SMALL_STATE(4055)] = 189001, + [SMALL_STATE(4056)] = 189080, + [SMALL_STATE(4057)] = 189145, + [SMALL_STATE(4058)] = 189210, + [SMALL_STATE(4059)] = 189275, + [SMALL_STATE(4060)] = 189340, + [SMALL_STATE(4061)] = 189405, + [SMALL_STATE(4062)] = 189474, + [SMALL_STATE(4063)] = 189539, + [SMALL_STATE(4064)] = 189607, + [SMALL_STATE(4065)] = 189711, + [SMALL_STATE(4066)] = 189813, + [SMALL_STATE(4067)] = 189877, + [SMALL_STATE(4068)] = 189941, + [SMALL_STATE(4069)] = 190005, + [SMALL_STATE(4070)] = 190073, + [SMALL_STATE(4071)] = 190137, + [SMALL_STATE(4072)] = 190201, + [SMALL_STATE(4073)] = 190265, + [SMALL_STATE(4074)] = 190329, + [SMALL_STATE(4075)] = 190393, + [SMALL_STATE(4076)] = 190457, + [SMALL_STATE(4077)] = 190521, + [SMALL_STATE(4078)] = 190585, + [SMALL_STATE(4079)] = 190649, + [SMALL_STATE(4080)] = 190753, + [SMALL_STATE(4081)] = 190817, + [SMALL_STATE(4082)] = 190881, + [SMALL_STATE(4083)] = 190945, + [SMALL_STATE(4084)] = 191009, + [SMALL_STATE(4085)] = 191077, + [SMALL_STATE(4086)] = 191185, + [SMALL_STATE(4087)] = 191249, + [SMALL_STATE(4088)] = 191313, + [SMALL_STATE(4089)] = 191377, + [SMALL_STATE(4090)] = 191441, + [SMALL_STATE(4091)] = 191541, + [SMALL_STATE(4092)] = 191605, + [SMALL_STATE(4093)] = 191669, + [SMALL_STATE(4094)] = 191773, + [SMALL_STATE(4095)] = 191877, + [SMALL_STATE(4096)] = 191979, + [SMALL_STATE(4097)] = 192043, + [SMALL_STATE(4098)] = 192107, + [SMALL_STATE(4099)] = 192171, + [SMALL_STATE(4100)] = 192235, + [SMALL_STATE(4101)] = 192299, + [SMALL_STATE(4102)] = 192363, + [SMALL_STATE(4103)] = 192427, + [SMALL_STATE(4104)] = 192491, + [SMALL_STATE(4105)] = 192555, + [SMALL_STATE(4106)] = 192619, + [SMALL_STATE(4107)] = 192683, + [SMALL_STATE(4108)] = 192747, + [SMALL_STATE(4109)] = 192811, + [SMALL_STATE(4110)] = 192875, + [SMALL_STATE(4111)] = 192939, + [SMALL_STATE(4112)] = 193003, + [SMALL_STATE(4113)] = 193067, + [SMALL_STATE(4114)] = 193131, + [SMALL_STATE(4115)] = 193195, + [SMALL_STATE(4116)] = 193259, + [SMALL_STATE(4117)] = 193323, + [SMALL_STATE(4118)] = 193387, + [SMALL_STATE(4119)] = 193451, + [SMALL_STATE(4120)] = 193515, + [SMALL_STATE(4121)] = 193579, + [SMALL_STATE(4122)] = 193643, + [SMALL_STATE(4123)] = 193707, + [SMALL_STATE(4124)] = 193771, + [SMALL_STATE(4125)] = 193879, + [SMALL_STATE(4126)] = 193943, + [SMALL_STATE(4127)] = 194007, + [SMALL_STATE(4128)] = 194071, + [SMALL_STATE(4129)] = 194135, + [SMALL_STATE(4130)] = 194199, + [SMALL_STATE(4131)] = 194263, + [SMALL_STATE(4132)] = 194327, + [SMALL_STATE(4133)] = 194391, + [SMALL_STATE(4134)] = 194455, + [SMALL_STATE(4135)] = 194519, + [SMALL_STATE(4136)] = 194583, + [SMALL_STATE(4137)] = 194647, + [SMALL_STATE(4138)] = 194711, + [SMALL_STATE(4139)] = 194775, + [SMALL_STATE(4140)] = 194839, + [SMALL_STATE(4141)] = 194903, + [SMALL_STATE(4142)] = 194967, + [SMALL_STATE(4143)] = 195031, + [SMALL_STATE(4144)] = 195095, + [SMALL_STATE(4145)] = 195159, + [SMALL_STATE(4146)] = 195223, + [SMALL_STATE(4147)] = 195287, + [SMALL_STATE(4148)] = 195351, + [SMALL_STATE(4149)] = 195459, + [SMALL_STATE(4150)] = 195565, + [SMALL_STATE(4151)] = 195629, + [SMALL_STATE(4152)] = 195693, + [SMALL_STATE(4153)] = 195757, + [SMALL_STATE(4154)] = 195821, + [SMALL_STATE(4155)] = 195885, + [SMALL_STATE(4156)] = 195949, + [SMALL_STATE(4157)] = 196013, + [SMALL_STATE(4158)] = 196077, + [SMALL_STATE(4159)] = 196141, + [SMALL_STATE(4160)] = 196209, + [SMALL_STATE(4161)] = 196275, + [SMALL_STATE(4162)] = 196339, + [SMALL_STATE(4163)] = 196403, + [SMALL_STATE(4164)] = 196467, + [SMALL_STATE(4165)] = 196531, + [SMALL_STATE(4166)] = 196595, + [SMALL_STATE(4167)] = 196659, + [SMALL_STATE(4168)] = 196725, + [SMALL_STATE(4169)] = 196823, + [SMALL_STATE(4170)] = 196925, + [SMALL_STATE(4171)] = 197027, + [SMALL_STATE(4172)] = 197127, + [SMALL_STATE(4173)] = 197191, + [SMALL_STATE(4174)] = 197255, + [SMALL_STATE(4175)] = 197319, + [SMALL_STATE(4176)] = 197383, + [SMALL_STATE(4177)] = 197447, + [SMALL_STATE(4178)] = 197511, + [SMALL_STATE(4179)] = 197575, + [SMALL_STATE(4180)] = 197639, + [SMALL_STATE(4181)] = 197703, + [SMALL_STATE(4182)] = 197767, + [SMALL_STATE(4183)] = 197831, + [SMALL_STATE(4184)] = 197895, + [SMALL_STATE(4185)] = 197959, + [SMALL_STATE(4186)] = 198023, + [SMALL_STATE(4187)] = 198087, + [SMALL_STATE(4188)] = 198151, + [SMALL_STATE(4189)] = 198215, + [SMALL_STATE(4190)] = 198279, + [SMALL_STATE(4191)] = 198343, + [SMALL_STATE(4192)] = 198411, + [SMALL_STATE(4193)] = 198475, + [SMALL_STATE(4194)] = 198539, + [SMALL_STATE(4195)] = 198603, + [SMALL_STATE(4196)] = 198667, + [SMALL_STATE(4197)] = 198731, + [SMALL_STATE(4198)] = 198795, + [SMALL_STATE(4199)] = 198859, + [SMALL_STATE(4200)] = 198923, + [SMALL_STATE(4201)] = 198987, + [SMALL_STATE(4202)] = 199051, + [SMALL_STATE(4203)] = 199115, + [SMALL_STATE(4204)] = 199179, + [SMALL_STATE(4205)] = 199243, + [SMALL_STATE(4206)] = 199307, + [SMALL_STATE(4207)] = 199371, + [SMALL_STATE(4208)] = 199471, + [SMALL_STATE(4209)] = 199575, + [SMALL_STATE(4210)] = 199679, + [SMALL_STATE(4211)] = 199743, + [SMALL_STATE(4212)] = 199845, + [SMALL_STATE(4213)] = 199909, + [SMALL_STATE(4214)] = 199973, + [SMALL_STATE(4215)] = 200037, + [SMALL_STATE(4216)] = 200101, + [SMALL_STATE(4217)] = 200165, + [SMALL_STATE(4218)] = 200229, + [SMALL_STATE(4219)] = 200293, + [SMALL_STATE(4220)] = 200357, + [SMALL_STATE(4221)] = 200421, + [SMALL_STATE(4222)] = 200485, + [SMALL_STATE(4223)] = 200549, + [SMALL_STATE(4224)] = 200613, + [SMALL_STATE(4225)] = 200677, + [SMALL_STATE(4226)] = 200741, + [SMALL_STATE(4227)] = 200805, + [SMALL_STATE(4228)] = 200869, + [SMALL_STATE(4229)] = 200933, + [SMALL_STATE(4230)] = 200997, + [SMALL_STATE(4231)] = 201103, + [SMALL_STATE(4232)] = 201167, + [SMALL_STATE(4233)] = 201231, + [SMALL_STATE(4234)] = 201295, + [SMALL_STATE(4235)] = 201359, + [SMALL_STATE(4236)] = 201423, + [SMALL_STATE(4237)] = 201487, + [SMALL_STATE(4238)] = 201551, + [SMALL_STATE(4239)] = 201659, + [SMALL_STATE(4240)] = 201723, + [SMALL_STATE(4241)] = 201791, + [SMALL_STATE(4242)] = 201855, + [SMALL_STATE(4243)] = 201919, + [SMALL_STATE(4244)] = 202025, + [SMALL_STATE(4245)] = 202089, + [SMALL_STATE(4246)] = 202153, + [SMALL_STATE(4247)] = 202217, + [SMALL_STATE(4248)] = 202285, + [SMALL_STATE(4249)] = 202349, + [SMALL_STATE(4250)] = 202415, + [SMALL_STATE(4251)] = 202479, + [SMALL_STATE(4252)] = 202543, + [SMALL_STATE(4253)] = 202607, + [SMALL_STATE(4254)] = 202673, + [SMALL_STATE(4255)] = 202737, + [SMALL_STATE(4256)] = 202801, + [SMALL_STATE(4257)] = 202869, + [SMALL_STATE(4258)] = 202933, + [SMALL_STATE(4259)] = 202997, + [SMALL_STATE(4260)] = 203101, + [SMALL_STATE(4261)] = 203165, + [SMALL_STATE(4262)] = 203229, + [SMALL_STATE(4263)] = 203293, + [SMALL_STATE(4264)] = 203357, + [SMALL_STATE(4265)] = 203421, + [SMALL_STATE(4266)] = 203485, + [SMALL_STATE(4267)] = 203549, + [SMALL_STATE(4268)] = 203613, + [SMALL_STATE(4269)] = 203693, + [SMALL_STATE(4270)] = 203777, + [SMALL_STATE(4271)] = 203841, + [SMALL_STATE(4272)] = 203905, + [SMALL_STATE(4273)] = 203975, + [SMALL_STATE(4274)] = 204051, + [SMALL_STATE(4275)] = 204115, + [SMALL_STATE(4276)] = 204179, + [SMALL_STATE(4277)] = 204251, + [SMALL_STATE(4278)] = 204315, + [SMALL_STATE(4279)] = 204379, + [SMALL_STATE(4280)] = 204443, + [SMALL_STATE(4281)] = 204507, + [SMALL_STATE(4282)] = 204603, + [SMALL_STATE(4283)] = 204709, + [SMALL_STATE(4284)] = 204773, + [SMALL_STATE(4285)] = 204837, + [SMALL_STATE(4286)] = 204901, + [SMALL_STATE(4287)] = 204965, + [SMALL_STATE(4288)] = 205029, + [SMALL_STATE(4289)] = 205123, + [SMALL_STATE(4290)] = 205213, + [SMALL_STATE(4291)] = 205301, + [SMALL_STATE(4292)] = 205387, + [SMALL_STATE(4293)] = 205469, + [SMALL_STATE(4294)] = 205533, + [SMALL_STATE(4295)] = 205601, + [SMALL_STATE(4296)] = 205681, + [SMALL_STATE(4297)] = 205767, + [SMALL_STATE(4298)] = 205837, + [SMALL_STATE(4299)] = 205913, + [SMALL_STATE(4300)] = 205985, + [SMALL_STATE(4301)] = 206083, + [SMALL_STATE(4302)] = 206179, + [SMALL_STATE(4303)] = 206271, + [SMALL_STATE(4304)] = 206361, + [SMALL_STATE(4305)] = 206449, + [SMALL_STATE(4306)] = 206533, + [SMALL_STATE(4307)] = 206611, + [SMALL_STATE(4308)] = 206689, + [SMALL_STATE(4309)] = 206757, + [SMALL_STATE(4310)] = 206821, + [SMALL_STATE(4311)] = 206885, + [SMALL_STATE(4312)] = 206949, + [SMALL_STATE(4313)] = 207027, + [SMALL_STATE(4314)] = 207091, + [SMALL_STATE(4315)] = 207155, + [SMALL_STATE(4316)] = 207233, + [SMALL_STATE(4317)] = 207301, + [SMALL_STATE(4318)] = 207369, + [SMALL_STATE(4319)] = 207437, + [SMALL_STATE(4320)] = 207501, + [SMALL_STATE(4321)] = 207565, + [SMALL_STATE(4322)] = 207629, + [SMALL_STATE(4323)] = 207693, + [SMALL_STATE(4324)] = 207757, + [SMALL_STATE(4325)] = 207821, + [SMALL_STATE(4326)] = 207885, + [SMALL_STATE(4327)] = 207949, + [SMALL_STATE(4328)] = 208013, + [SMALL_STATE(4329)] = 208079, + [SMALL_STATE(4330)] = 208145, + [SMALL_STATE(4331)] = 208225, + [SMALL_STATE(4332)] = 208311, + [SMALL_STATE(4333)] = 208381, + [SMALL_STATE(4334)] = 208457, + [SMALL_STATE(4335)] = 208529, + [SMALL_STATE(4336)] = 208627, + [SMALL_STATE(4337)] = 208723, + [SMALL_STATE(4338)] = 208815, + [SMALL_STATE(4339)] = 208905, + [SMALL_STATE(4340)] = 208993, + [SMALL_STATE(4341)] = 209077, + [SMALL_STATE(4342)] = 209155, + [SMALL_STATE(4343)] = 209233, + [SMALL_STATE(4344)] = 209297, + [SMALL_STATE(4345)] = 209361, + [SMALL_STATE(4346)] = 209425, + [SMALL_STATE(4347)] = 209489, + [SMALL_STATE(4348)] = 209553, + [SMALL_STATE(4349)] = 209617, + [SMALL_STATE(4350)] = 209681, + [SMALL_STATE(4351)] = 209745, + [SMALL_STATE(4352)] = 209809, + [SMALL_STATE(4353)] = 209877, + [SMALL_STATE(4354)] = 209941, + [SMALL_STATE(4355)] = 210005, + [SMALL_STATE(4356)] = 210069, + [SMALL_STATE(4357)] = 210133, + [SMALL_STATE(4358)] = 210197, + [SMALL_STATE(4359)] = 210261, + [SMALL_STATE(4360)] = 210325, + [SMALL_STATE(4361)] = 210389, + [SMALL_STATE(4362)] = 210453, + [SMALL_STATE(4363)] = 210517, + [SMALL_STATE(4364)] = 210581, + [SMALL_STATE(4365)] = 210645, + [SMALL_STATE(4366)] = 210709, + [SMALL_STATE(4367)] = 210773, + [SMALL_STATE(4368)] = 210841, + [SMALL_STATE(4369)] = 210905, + [SMALL_STATE(4370)] = 210969, + [SMALL_STATE(4371)] = 211033, + [SMALL_STATE(4372)] = 211139, + [SMALL_STATE(4373)] = 211203, + [SMALL_STATE(4374)] = 211267, + [SMALL_STATE(4375)] = 211331, + [SMALL_STATE(4376)] = 211395, + [SMALL_STATE(4377)] = 211459, + [SMALL_STATE(4378)] = 211523, + [SMALL_STATE(4379)] = 211587, + [SMALL_STATE(4380)] = 211651, + [SMALL_STATE(4381)] = 211715, + [SMALL_STATE(4382)] = 211783, + [SMALL_STATE(4383)] = 211847, + [SMALL_STATE(4384)] = 211911, + [SMALL_STATE(4385)] = 211975, + [SMALL_STATE(4386)] = 212039, + [SMALL_STATE(4387)] = 212103, + [SMALL_STATE(4388)] = 212169, + [SMALL_STATE(4389)] = 212235, + [SMALL_STATE(4390)] = 212299, + [SMALL_STATE(4391)] = 212363, + [SMALL_STATE(4392)] = 212427, + [SMALL_STATE(4393)] = 212491, + [SMALL_STATE(4394)] = 212555, + [SMALL_STATE(4395)] = 212619, + [SMALL_STATE(4396)] = 212687, + [SMALL_STATE(4397)] = 212751, + [SMALL_STATE(4398)] = 212815, + [SMALL_STATE(4399)] = 212879, + [SMALL_STATE(4400)] = 212943, + [SMALL_STATE(4401)] = 213007, + [SMALL_STATE(4402)] = 213071, + [SMALL_STATE(4403)] = 213135, + [SMALL_STATE(4404)] = 213199, + [SMALL_STATE(4405)] = 213263, + [SMALL_STATE(4406)] = 213327, + [SMALL_STATE(4407)] = 213391, + [SMALL_STATE(4408)] = 213455, + [SMALL_STATE(4409)] = 213519, + [SMALL_STATE(4410)] = 213583, + [SMALL_STATE(4411)] = 213647, + [SMALL_STATE(4412)] = 213711, + [SMALL_STATE(4413)] = 213775, + [SMALL_STATE(4414)] = 213839, + [SMALL_STATE(4415)] = 213903, + [SMALL_STATE(4416)] = 213967, + [SMALL_STATE(4417)] = 214031, + [SMALL_STATE(4418)] = 214137, + [SMALL_STATE(4419)] = 214201, + [SMALL_STATE(4420)] = 214265, + [SMALL_STATE(4421)] = 214345, + [SMALL_STATE(4422)] = 214431, + [SMALL_STATE(4423)] = 214501, + [SMALL_STATE(4424)] = 214577, + [SMALL_STATE(4425)] = 214649, + [SMALL_STATE(4426)] = 214747, + [SMALL_STATE(4427)] = 214843, + [SMALL_STATE(4428)] = 214935, + [SMALL_STATE(4429)] = 215025, + [SMALL_STATE(4430)] = 215113, + [SMALL_STATE(4431)] = 215197, + [SMALL_STATE(4432)] = 215275, + [SMALL_STATE(4433)] = 215353, + [SMALL_STATE(4434)] = 215417, + [SMALL_STATE(4435)] = 215481, + [SMALL_STATE(4436)] = 215545, + [SMALL_STATE(4437)] = 215609, + [SMALL_STATE(4438)] = 215677, + [SMALL_STATE(4439)] = 215777, + [SMALL_STATE(4440)] = 215841, + [SMALL_STATE(4441)] = 215905, + [SMALL_STATE(4442)] = 215969, + [SMALL_STATE(4443)] = 216033, + [SMALL_STATE(4444)] = 216097, + [SMALL_STATE(4445)] = 216161, + [SMALL_STATE(4446)] = 216225, + [SMALL_STATE(4447)] = 216293, + [SMALL_STATE(4448)] = 216357, + [SMALL_STATE(4449)] = 216461, + [SMALL_STATE(4450)] = 216525, + [SMALL_STATE(4451)] = 216589, + [SMALL_STATE(4452)] = 216653, + [SMALL_STATE(4453)] = 216721, + [SMALL_STATE(4454)] = 216789, + [SMALL_STATE(4455)] = 216853, + [SMALL_STATE(4456)] = 216917, + [SMALL_STATE(4457)] = 217012, + [SMALL_STATE(4458)] = 217075, + [SMALL_STATE(4459)] = 217138, + [SMALL_STATE(4460)] = 217201, + [SMALL_STATE(4461)] = 217280, + [SMALL_STATE(4462)] = 217343, + [SMALL_STATE(4463)] = 217406, + [SMALL_STATE(4464)] = 217469, + [SMALL_STATE(4465)] = 217532, + [SMALL_STATE(4466)] = 217595, + [SMALL_STATE(4467)] = 217674, + [SMALL_STATE(4468)] = 217757, + [SMALL_STATE(4469)] = 217854, + [SMALL_STATE(4470)] = 217917, + [SMALL_STATE(4471)] = 217986, + [SMALL_STATE(4472)] = 218071, + [SMALL_STATE(4473)] = 218146, + [SMALL_STATE(4474)] = 218217, + [SMALL_STATE(4475)] = 218280, + [SMALL_STATE(4476)] = 218343, + [SMALL_STATE(4477)] = 218406, + [SMALL_STATE(4478)] = 218469, + [SMALL_STATE(4479)] = 218532, + [SMALL_STATE(4480)] = 218635, + [SMALL_STATE(4481)] = 218738, + [SMALL_STATE(4482)] = 218839, + [SMALL_STATE(4483)] = 218902, + [SMALL_STATE(4484)] = 218965, + [SMALL_STATE(4485)] = 219028, + [SMALL_STATE(4486)] = 219091, + [SMALL_STATE(4487)] = 219194, + [SMALL_STATE(4488)] = 219257, + [SMALL_STATE(4489)] = 219320, + [SMALL_STATE(4490)] = 219383, + [SMALL_STATE(4491)] = 219452, + [SMALL_STATE(4492)] = 219515, + [SMALL_STATE(4493)] = 219578, + [SMALL_STATE(4494)] = 219641, + [SMALL_STATE(4495)] = 219742, + [SMALL_STATE(4496)] = 219817, + [SMALL_STATE(4497)] = 219880, + [SMALL_STATE(4498)] = 219943, + [SMALL_STATE(4499)] = 220006, + [SMALL_STATE(4500)] = 220069, + [SMALL_STATE(4501)] = 220132, + [SMALL_STATE(4502)] = 220195, + [SMALL_STATE(4503)] = 220294, + [SMALL_STATE(4504)] = 220389, + [SMALL_STATE(4505)] = 220482, + [SMALL_STATE(4506)] = 220553, + [SMALL_STATE(4507)] = 220616, + [SMALL_STATE(4508)] = 220719, + [SMALL_STATE(4509)] = 220808, + [SMALL_STATE(4510)] = 220871, + [SMALL_STATE(4511)] = 220934, + [SMALL_STATE(4512)] = 220997, + [SMALL_STATE(4513)] = 221084, + [SMALL_STATE(4514)] = 221147, + [SMALL_STATE(4515)] = 221226, + [SMALL_STATE(4516)] = 221309, + [SMALL_STATE(4517)] = 221378, + [SMALL_STATE(4518)] = 221453, + [SMALL_STATE(4519)] = 221524, + [SMALL_STATE(4520)] = 221619, + [SMALL_STATE(4521)] = 221712, + [SMALL_STATE(4522)] = 221801, + [SMALL_STATE(4523)] = 221888, + [SMALL_STATE(4524)] = 221973, + [SMALL_STATE(4525)] = 222054, + [SMALL_STATE(4526)] = 222131, + [SMALL_STATE(4527)] = 222208, + [SMALL_STATE(4528)] = 222305, + [SMALL_STATE(4529)] = 222368, + [SMALL_STATE(4530)] = 222431, + [SMALL_STATE(4531)] = 222494, + [SMALL_STATE(4532)] = 222579, + [SMALL_STATE(4533)] = 222660, + [SMALL_STATE(4534)] = 222723, + [SMALL_STATE(4535)] = 222800, + [SMALL_STATE(4536)] = 222877, + [SMALL_STATE(4537)] = 222940, + [SMALL_STATE(4538)] = 223003, + [SMALL_STATE(4539)] = 223070, + [SMALL_STATE(4540)] = 223133, + [SMALL_STATE(4541)] = 223196, + [SMALL_STATE(4542)] = 223259, + [SMALL_STATE(4543)] = 223324, + [SMALL_STATE(4544)] = 223387, + [SMALL_STATE(4545)] = 223450, + [SMALL_STATE(4546)] = 223545, + [SMALL_STATE(4547)] = 223636, + [SMALL_STATE(4548)] = 223741, + [SMALL_STATE(4549)] = 223830, + [SMALL_STATE(4550)] = 223917, + [SMALL_STATE(4551)] = 224000, + [SMALL_STATE(4552)] = 224077, + [SMALL_STATE(4553)] = 224154, + [SMALL_STATE(4554)] = 224217, + [SMALL_STATE(4555)] = 224280, + [SMALL_STATE(4556)] = 224383, + [SMALL_STATE(4557)] = 224446, + [SMALL_STATE(4558)] = 224513, + [SMALL_STATE(4559)] = 224576, + [SMALL_STATE(4560)] = 224639, + [SMALL_STATE(4561)] = 224702, + [SMALL_STATE(4562)] = 224765, + [SMALL_STATE(4563)] = 224828, + [SMALL_STATE(4564)] = 224891, + [SMALL_STATE(4565)] = 224970, + [SMALL_STATE(4566)] = 225055, + [SMALL_STATE(4567)] = 225124, + [SMALL_STATE(4568)] = 225199, + [SMALL_STATE(4569)] = 225270, + [SMALL_STATE(4570)] = 225333, + [SMALL_STATE(4571)] = 225430, + [SMALL_STATE(4572)] = 225525, + [SMALL_STATE(4573)] = 225616, + [SMALL_STATE(4574)] = 225705, + [SMALL_STATE(4575)] = 225792, + [SMALL_STATE(4576)] = 225875, + [SMALL_STATE(4577)] = 225952, + [SMALL_STATE(4578)] = 226029, + [SMALL_STATE(4579)] = 226092, + [SMALL_STATE(4580)] = 226155, + [SMALL_STATE(4581)] = 226218, + [SMALL_STATE(4582)] = 226281, + [SMALL_STATE(4583)] = 226344, + [SMALL_STATE(4584)] = 226407, + [SMALL_STATE(4585)] = 226470, + [SMALL_STATE(4586)] = 226533, + [SMALL_STATE(4587)] = 226596, + [SMALL_STATE(4588)] = 226659, + [SMALL_STATE(4589)] = 226722, + [SMALL_STATE(4590)] = 226785, + [SMALL_STATE(4591)] = 226848, + [SMALL_STATE(4592)] = 226911, + [SMALL_STATE(4593)] = 226974, + [SMALL_STATE(4594)] = 227037, + [SMALL_STATE(4595)] = 227100, + [SMALL_STATE(4596)] = 227163, + [SMALL_STATE(4597)] = 227226, + [SMALL_STATE(4598)] = 227289, + [SMALL_STATE(4599)] = 227352, + [SMALL_STATE(4600)] = 227415, + [SMALL_STATE(4601)] = 227478, + [SMALL_STATE(4602)] = 227541, + [SMALL_STATE(4603)] = 227608, + [SMALL_STATE(4604)] = 227671, + [SMALL_STATE(4605)] = 227734, + [SMALL_STATE(4606)] = 227797, + [SMALL_STATE(4607)] = 227862, + [SMALL_STATE(4608)] = 227965, + [SMALL_STATE(4609)] = 228028, + [SMALL_STATE(4610)] = 228107, + [SMALL_STATE(4611)] = 228170, + [SMALL_STATE(4612)] = 228233, + [SMALL_STATE(4613)] = 228296, + [SMALL_STATE(4614)] = 228381, + [SMALL_STATE(4615)] = 228444, + [SMALL_STATE(4616)] = 228507, + [SMALL_STATE(4617)] = 228606, + [SMALL_STATE(4618)] = 228675, + [SMALL_STATE(4619)] = 228750, + [SMALL_STATE(4620)] = 228821, + [SMALL_STATE(4621)] = 228924, + [SMALL_STATE(4622)] = 229027, + [SMALL_STATE(4623)] = 229132, + [SMALL_STATE(4624)] = 229233, + [SMALL_STATE(4625)] = 229330, + [SMALL_STATE(4626)] = 229425, + [SMALL_STATE(4627)] = 229516, + [SMALL_STATE(4628)] = 229605, + [SMALL_STATE(4629)] = 229692, + [SMALL_STATE(4630)] = 229775, + [SMALL_STATE(4631)] = 229852, + [SMALL_STATE(4632)] = 229917, + [SMALL_STATE(4633)] = 229994, + [SMALL_STATE(4634)] = 230057, + [SMALL_STATE(4635)] = 230156, + [SMALL_STATE(4636)] = 230259, + [SMALL_STATE(4637)] = 230362, + [SMALL_STATE(4638)] = 230463, + [SMALL_STATE(4639)] = 230566, + [SMALL_STATE(4640)] = 230629, + [SMALL_STATE(4641)] = 230692, + [SMALL_STATE(4642)] = 230759, + [SMALL_STATE(4643)] = 230864, + [SMALL_STATE(4644)] = 230967, + [SMALL_STATE(4645)] = 231070, + [SMALL_STATE(4646)] = 231149, + [SMALL_STATE(4647)] = 231232, + [SMALL_STATE(4648)] = 231301, + [SMALL_STATE(4649)] = 231376, + [SMALL_STATE(4650)] = 231447, + [SMALL_STATE(4651)] = 231542, + [SMALL_STATE(4652)] = 231635, + [SMALL_STATE(4653)] = 231724, + [SMALL_STATE(4654)] = 231811, + [SMALL_STATE(4655)] = 231896, + [SMALL_STATE(4656)] = 231977, + [SMALL_STATE(4657)] = 232054, + [SMALL_STATE(4658)] = 232131, + [SMALL_STATE(4659)] = 232194, + [SMALL_STATE(4660)] = 232257, + [SMALL_STATE(4661)] = 232320, + [SMALL_STATE(4662)] = 232423, + [SMALL_STATE(4663)] = 232486, + [SMALL_STATE(4664)] = 232549, + [SMALL_STATE(4665)] = 232646, + [SMALL_STATE(4666)] = 232709, + [SMALL_STATE(4667)] = 232774, + [SMALL_STATE(4668)] = 232837, + [SMALL_STATE(4669)] = 232900, + [SMALL_STATE(4670)] = 233003, + [SMALL_STATE(4671)] = 233066, + [SMALL_STATE(4672)] = 233129, + [SMALL_STATE(4673)] = 233192, + [SMALL_STATE(4674)] = 233255, + [SMALL_STATE(4675)] = 233360, + [SMALL_STATE(4676)] = 233461, + [SMALL_STATE(4677)] = 233524, + [SMALL_STATE(4678)] = 233587, + [SMALL_STATE(4679)] = 233692, + [SMALL_STATE(4680)] = 233755, + [SMALL_STATE(4681)] = 233818, + [SMALL_STATE(4682)] = 233881, + [SMALL_STATE(4683)] = 233944, + [SMALL_STATE(4684)] = 234045, + [SMALL_STATE(4685)] = 234108, + [SMALL_STATE(4686)] = 234171, + [SMALL_STATE(4687)] = 234238, + [SMALL_STATE(4688)] = 234335, + [SMALL_STATE(4689)] = 234436, + [SMALL_STATE(4690)] = 234537, + [SMALL_STATE(4691)] = 234636, + [SMALL_STATE(4692)] = 234739, + [SMALL_STATE(4693)] = 234806, + [SMALL_STATE(4694)] = 234869, + [SMALL_STATE(4695)] = 234966, + [SMALL_STATE(4696)] = 235067, + [SMALL_STATE(4697)] = 235168, + [SMALL_STATE(4698)] = 235267, + [SMALL_STATE(4699)] = 235372, + [SMALL_STATE(4700)] = 235435, + [SMALL_STATE(4701)] = 235534, + [SMALL_STATE(4702)] = 235597, + [SMALL_STATE(4703)] = 235696, + [SMALL_STATE(4704)] = 235759, + [SMALL_STATE(4705)] = 235822, + [SMALL_STATE(4706)] = 235885, + [SMALL_STATE(4707)] = 235948, + [SMALL_STATE(4708)] = 236011, + [SMALL_STATE(4709)] = 236074, + [SMALL_STATE(4710)] = 236137, + [SMALL_STATE(4711)] = 236200, + [SMALL_STATE(4712)] = 236305, + [SMALL_STATE(4713)] = 236368, + [SMALL_STATE(4714)] = 236431, + [SMALL_STATE(4715)] = 236510, + [SMALL_STATE(4716)] = 236593, + [SMALL_STATE(4717)] = 236662, + [SMALL_STATE(4718)] = 236737, + [SMALL_STATE(4719)] = 236808, + [SMALL_STATE(4720)] = 236873, + [SMALL_STATE(4721)] = 236966, + [SMALL_STATE(4722)] = 237055, + [SMALL_STATE(4723)] = 237142, + [SMALL_STATE(4724)] = 237227, + [SMALL_STATE(4725)] = 237308, + [SMALL_STATE(4726)] = 237385, + [SMALL_STATE(4727)] = 237462, + [SMALL_STATE(4728)] = 237525, + [SMALL_STATE(4729)] = 237626, + [SMALL_STATE(4730)] = 237728, + [SMALL_STATE(4731)] = 237830, + [SMALL_STATE(4732)] = 237926, + [SMALL_STATE(4733)] = 238028, + [SMALL_STATE(4734)] = 238128, + [SMALL_STATE(4735)] = 238230, + [SMALL_STATE(4736)] = 238332, + [SMALL_STATE(4737)] = 238434, + [SMALL_STATE(4738)] = 238536, + [SMALL_STATE(4739)] = 238638, + [SMALL_STATE(4740)] = 238740, + [SMALL_STATE(4741)] = 238842, + [SMALL_STATE(4742)] = 238944, + [SMALL_STATE(4743)] = 239046, + [SMALL_STATE(4744)] = 239148, + [SMALL_STATE(4745)] = 239250, + [SMALL_STATE(4746)] = 239352, + [SMALL_STATE(4747)] = 239454, + [SMALL_STATE(4748)] = 239556, + [SMALL_STATE(4749)] = 239658, + [SMALL_STATE(4750)] = 239760, + [SMALL_STATE(4751)] = 239862, + [SMALL_STATE(4752)] = 239964, + [SMALL_STATE(4753)] = 240066, + [SMALL_STATE(4754)] = 240168, + [SMALL_STATE(4755)] = 240270, + [SMALL_STATE(4756)] = 240372, + [SMALL_STATE(4757)] = 240474, + [SMALL_STATE(4758)] = 240576, + [SMALL_STATE(4759)] = 240678, + [SMALL_STATE(4760)] = 240780, + [SMALL_STATE(4761)] = 240882, + [SMALL_STATE(4762)] = 240984, + [SMALL_STATE(4763)] = 241048, + [SMALL_STATE(4764)] = 241150, + [SMALL_STATE(4765)] = 241228, + [SMALL_STATE(4766)] = 241310, + [SMALL_STATE(4767)] = 241378, + [SMALL_STATE(4768)] = 241452, + [SMALL_STATE(4769)] = 241522, + [SMALL_STATE(4770)] = 241616, + [SMALL_STATE(4771)] = 241708, + [SMALL_STATE(4772)] = 241796, + [SMALL_STATE(4773)] = 241882, + [SMALL_STATE(4774)] = 241966, + [SMALL_STATE(4775)] = 242046, + [SMALL_STATE(4776)] = 242122, + [SMALL_STATE(4777)] = 242198, + [SMALL_STATE(4778)] = 242300, + [SMALL_STATE(4779)] = 242364, + [SMALL_STATE(4780)] = 242466, + [SMALL_STATE(4781)] = 242568, + [SMALL_STATE(4782)] = 242670, + [SMALL_STATE(4783)] = 242748, + [SMALL_STATE(4784)] = 242830, + [SMALL_STATE(4785)] = 242932, + [SMALL_STATE(4786)] = 243000, + [SMALL_STATE(4787)] = 243096, + [SMALL_STATE(4788)] = 243170, + [SMALL_STATE(4789)] = 243240, + [SMALL_STATE(4790)] = 243340, + [SMALL_STATE(4791)] = 243440, + [SMALL_STATE(4792)] = 243538, + [SMALL_STATE(4793)] = 243632, + [SMALL_STATE(4794)] = 243724, + [SMALL_STATE(4795)] = 243812, + [SMALL_STATE(4796)] = 243890, + [SMALL_STATE(4797)] = 243972, + [SMALL_STATE(4798)] = 244040, + [SMALL_STATE(4799)] = 244114, + [SMALL_STATE(4800)] = 244184, + [SMALL_STATE(4801)] = 244286, + [SMALL_STATE(4802)] = 244380, + [SMALL_STATE(4803)] = 244472, + [SMALL_STATE(4804)] = 244560, + [SMALL_STATE(4805)] = 244646, + [SMALL_STATE(4806)] = 244730, + [SMALL_STATE(4807)] = 244810, + [SMALL_STATE(4808)] = 244886, + [SMALL_STATE(4809)] = 244962, + [SMALL_STATE(4810)] = 245048, + [SMALL_STATE(4811)] = 245132, + [SMALL_STATE(4812)] = 245212, + [SMALL_STATE(4813)] = 245314, + [SMALL_STATE(4814)] = 245390, + [SMALL_STATE(4815)] = 245466, + [SMALL_STATE(4816)] = 245562, + [SMALL_STATE(4817)] = 245662, + [SMALL_STATE(4818)] = 245762, + [SMALL_STATE(4819)] = 245860, + [SMALL_STATE(4820)] = 245962, + [SMALL_STATE(4821)] = 246064, + [SMALL_STATE(4822)] = 246166, + [SMALL_STATE(4823)] = 246266, + [SMALL_STATE(4824)] = 246364, + [SMALL_STATE(4825)] = 246466, + [SMALL_STATE(4826)] = 246565, + [SMALL_STATE(4827)] = 246616, + [SMALL_STATE(4828)] = 246667, + [SMALL_STATE(4829)] = 246718, + [SMALL_STATE(4830)] = 246769, + [SMALL_STATE(4831)] = 246820, + [SMALL_STATE(4832)] = 246871, + [SMALL_STATE(4833)] = 246922, + [SMALL_STATE(4834)] = 246973, + [SMALL_STATE(4835)] = 247024, + [SMALL_STATE(4836)] = 247075, + [SMALL_STATE(4837)] = 247126, + [SMALL_STATE(4838)] = 247177, + [SMALL_STATE(4839)] = 247228, + [SMALL_STATE(4840)] = 247279, + [SMALL_STATE(4841)] = 247330, + [SMALL_STATE(4842)] = 247381, + [SMALL_STATE(4843)] = 247432, + [SMALL_STATE(4844)] = 247483, + [SMALL_STATE(4845)] = 247534, + [SMALL_STATE(4846)] = 247585, + [SMALL_STATE(4847)] = 247636, + [SMALL_STATE(4848)] = 247687, + [SMALL_STATE(4849)] = 247738, + [SMALL_STATE(4850)] = 247789, + [SMALL_STATE(4851)] = 247840, + [SMALL_STATE(4852)] = 247891, + [SMALL_STATE(4853)] = 247942, + [SMALL_STATE(4854)] = 247993, + [SMALL_STATE(4855)] = 248044, + [SMALL_STATE(4856)] = 248095, + [SMALL_STATE(4857)] = 248146, + [SMALL_STATE(4858)] = 248197, + [SMALL_STATE(4859)] = 248248, + [SMALL_STATE(4860)] = 248299, + [SMALL_STATE(4861)] = 248350, + [SMALL_STATE(4862)] = 248401, + [SMALL_STATE(4863)] = 248452, + [SMALL_STATE(4864)] = 248503, + [SMALL_STATE(4865)] = 248554, + [SMALL_STATE(4866)] = 248605, + [SMALL_STATE(4867)] = 248654, + [SMALL_STATE(4868)] = 248703, + [SMALL_STATE(4869)] = 248748, + [SMALL_STATE(4870)] = 248793, + [SMALL_STATE(4871)] = 248838, + [SMALL_STATE(4872)] = 248883, + [SMALL_STATE(4873)] = 248928, + [SMALL_STATE(4874)] = 248973, + [SMALL_STATE(4875)] = 249018, + [SMALL_STATE(4876)] = 249063, + [SMALL_STATE(4877)] = 249108, + [SMALL_STATE(4878)] = 249153, + [SMALL_STATE(4879)] = 249198, + [SMALL_STATE(4880)] = 249243, + [SMALL_STATE(4881)] = 249288, + [SMALL_STATE(4882)] = 249333, + [SMALL_STATE(4883)] = 249378, + [SMALL_STATE(4884)] = 249423, + [SMALL_STATE(4885)] = 249468, + [SMALL_STATE(4886)] = 249513, + [SMALL_STATE(4887)] = 249558, + [SMALL_STATE(4888)] = 249603, + [SMALL_STATE(4889)] = 249648, + [SMALL_STATE(4890)] = 249693, + [SMALL_STATE(4891)] = 249738, + [SMALL_STATE(4892)] = 249783, + [SMALL_STATE(4893)] = 249828, + [SMALL_STATE(4894)] = 249873, + [SMALL_STATE(4895)] = 249918, + [SMALL_STATE(4896)] = 249963, + [SMALL_STATE(4897)] = 250008, + [SMALL_STATE(4898)] = 250053, + [SMALL_STATE(4899)] = 250098, + [SMALL_STATE(4900)] = 250143, + [SMALL_STATE(4901)] = 250188, + [SMALL_STATE(4902)] = 250233, + [SMALL_STATE(4903)] = 250278, + [SMALL_STATE(4904)] = 250323, + [SMALL_STATE(4905)] = 250368, + [SMALL_STATE(4906)] = 250413, + [SMALL_STATE(4907)] = 250458, + [SMALL_STATE(4908)] = 250505, + [SMALL_STATE(4909)] = 250552, + [SMALL_STATE(4910)] = 250597, + [SMALL_STATE(4911)] = 250642, + [SMALL_STATE(4912)] = 250687, + [SMALL_STATE(4913)] = 250732, + [SMALL_STATE(4914)] = 250777, + [SMALL_STATE(4915)] = 250822, + [SMALL_STATE(4916)] = 250867, + [SMALL_STATE(4917)] = 250912, + [SMALL_STATE(4918)] = 250957, + [SMALL_STATE(4919)] = 251002, + [SMALL_STATE(4920)] = 251047, + [SMALL_STATE(4921)] = 251092, + [SMALL_STATE(4922)] = 251137, + [SMALL_STATE(4923)] = 251182, + [SMALL_STATE(4924)] = 251227, + [SMALL_STATE(4925)] = 251272, + [SMALL_STATE(4926)] = 251317, + [SMALL_STATE(4927)] = 251362, + [SMALL_STATE(4928)] = 251407, + [SMALL_STATE(4929)] = 251452, + [SMALL_STATE(4930)] = 251497, + [SMALL_STATE(4931)] = 251542, + [SMALL_STATE(4932)] = 251587, + [SMALL_STATE(4933)] = 251632, + [SMALL_STATE(4934)] = 251677, + [SMALL_STATE(4935)] = 251722, + [SMALL_STATE(4936)] = 251767, + [SMALL_STATE(4937)] = 251812, + [SMALL_STATE(4938)] = 251857, + [SMALL_STATE(4939)] = 251902, + [SMALL_STATE(4940)] = 251947, + [SMALL_STATE(4941)] = 251992, + [SMALL_STATE(4942)] = 252037, + [SMALL_STATE(4943)] = 252082, + [SMALL_STATE(4944)] = 252127, + [SMALL_STATE(4945)] = 252172, + [SMALL_STATE(4946)] = 252217, + [SMALL_STATE(4947)] = 252262, + [SMALL_STATE(4948)] = 252307, + [SMALL_STATE(4949)] = 252352, + [SMALL_STATE(4950)] = 252397, + [SMALL_STATE(4951)] = 252442, + [SMALL_STATE(4952)] = 252487, + [SMALL_STATE(4953)] = 252532, + [SMALL_STATE(4954)] = 252577, + [SMALL_STATE(4955)] = 252621, + [SMALL_STATE(4956)] = 252665, + [SMALL_STATE(4957)] = 252709, + [SMALL_STATE(4958)] = 252753, + [SMALL_STATE(4959)] = 252797, + [SMALL_STATE(4960)] = 252841, + [SMALL_STATE(4961)] = 252885, + [SMALL_STATE(4962)] = 252929, + [SMALL_STATE(4963)] = 252973, + [SMALL_STATE(4964)] = 253017, + [SMALL_STATE(4965)] = 253061, + [SMALL_STATE(4966)] = 253105, + [SMALL_STATE(4967)] = 253149, + [SMALL_STATE(4968)] = 253193, + [SMALL_STATE(4969)] = 253237, + [SMALL_STATE(4970)] = 253281, + [SMALL_STATE(4971)] = 253325, + [SMALL_STATE(4972)] = 253369, + [SMALL_STATE(4973)] = 253413, + [SMALL_STATE(4974)] = 253457, + [SMALL_STATE(4975)] = 253501, + [SMALL_STATE(4976)] = 253545, + [SMALL_STATE(4977)] = 253589, + [SMALL_STATE(4978)] = 253633, + [SMALL_STATE(4979)] = 253677, + [SMALL_STATE(4980)] = 253708, + [SMALL_STATE(4981)] = 253739, + [SMALL_STATE(4982)] = 253770, + [SMALL_STATE(4983)] = 253801, + [SMALL_STATE(4984)] = 253832, + [SMALL_STATE(4985)] = 253863, + [SMALL_STATE(4986)] = 253894, + [SMALL_STATE(4987)] = 253925, + [SMALL_STATE(4988)] = 253956, + [SMALL_STATE(4989)] = 253987, + [SMALL_STATE(4990)] = 254018, + [SMALL_STATE(4991)] = 254049, + [SMALL_STATE(4992)] = 254080, + [SMALL_STATE(4993)] = 254111, + [SMALL_STATE(4994)] = 254142, + [SMALL_STATE(4995)] = 254173, + [SMALL_STATE(4996)] = 254204, + [SMALL_STATE(4997)] = 254235, + [SMALL_STATE(4998)] = 254266, + [SMALL_STATE(4999)] = 254297, + [SMALL_STATE(5000)] = 254328, + [SMALL_STATE(5001)] = 254359, + [SMALL_STATE(5002)] = 254390, + [SMALL_STATE(5003)] = 254421, + [SMALL_STATE(5004)] = 254452, + [SMALL_STATE(5005)] = 254483, + [SMALL_STATE(5006)] = 254514, + [SMALL_STATE(5007)] = 254545, + [SMALL_STATE(5008)] = 254576, + [SMALL_STATE(5009)] = 254607, + [SMALL_STATE(5010)] = 254638, + [SMALL_STATE(5011)] = 254669, + [SMALL_STATE(5012)] = 254700, + [SMALL_STATE(5013)] = 254731, + [SMALL_STATE(5014)] = 254762, + [SMALL_STATE(5015)] = 254793, + [SMALL_STATE(5016)] = 254824, + [SMALL_STATE(5017)] = 254855, + [SMALL_STATE(5018)] = 254886, + [SMALL_STATE(5019)] = 254917, + [SMALL_STATE(5020)] = 254948, + [SMALL_STATE(5021)] = 254979, + [SMALL_STATE(5022)] = 255010, + [SMALL_STATE(5023)] = 255041, + [SMALL_STATE(5024)] = 255072, + [SMALL_STATE(5025)] = 255103, + [SMALL_STATE(5026)] = 255134, + [SMALL_STATE(5027)] = 255165, + [SMALL_STATE(5028)] = 255196, + [SMALL_STATE(5029)] = 255227, + [SMALL_STATE(5030)] = 255258, + [SMALL_STATE(5031)] = 255289, + [SMALL_STATE(5032)] = 255320, + [SMALL_STATE(5033)] = 255351, + [SMALL_STATE(5034)] = 255382, + [SMALL_STATE(5035)] = 255413, + [SMALL_STATE(5036)] = 255444, + [SMALL_STATE(5037)] = 255475, + [SMALL_STATE(5038)] = 255506, + [SMALL_STATE(5039)] = 255537, + [SMALL_STATE(5040)] = 255568, + [SMALL_STATE(5041)] = 255599, + [SMALL_STATE(5042)] = 255630, + [SMALL_STATE(5043)] = 255661, + [SMALL_STATE(5044)] = 255692, + [SMALL_STATE(5045)] = 255723, + [SMALL_STATE(5046)] = 255754, + [SMALL_STATE(5047)] = 255785, + [SMALL_STATE(5048)] = 255816, + [SMALL_STATE(5049)] = 255847, + [SMALL_STATE(5050)] = 255878, + [SMALL_STATE(5051)] = 255908, + [SMALL_STATE(5052)] = 255938, + [SMALL_STATE(5053)] = 255968, + [SMALL_STATE(5054)] = 255998, + [SMALL_STATE(5055)] = 256028, + [SMALL_STATE(5056)] = 256058, + [SMALL_STATE(5057)] = 256088, + [SMALL_STATE(5058)] = 256118, + [SMALL_STATE(5059)] = 256148, + [SMALL_STATE(5060)] = 256178, + [SMALL_STATE(5061)] = 256208, + [SMALL_STATE(5062)] = 256238, + [SMALL_STATE(5063)] = 256268, + [SMALL_STATE(5064)] = 256298, + [SMALL_STATE(5065)] = 256328, + [SMALL_STATE(5066)] = 256358, + [SMALL_STATE(5067)] = 256388, + [SMALL_STATE(5068)] = 256418, + [SMALL_STATE(5069)] = 256448, + [SMALL_STATE(5070)] = 256478, + [SMALL_STATE(5071)] = 256508, + [SMALL_STATE(5072)] = 256538, + [SMALL_STATE(5073)] = 256568, + [SMALL_STATE(5074)] = 256598, + [SMALL_STATE(5075)] = 256628, + [SMALL_STATE(5076)] = 256658, + [SMALL_STATE(5077)] = 256688, + [SMALL_STATE(5078)] = 256718, + [SMALL_STATE(5079)] = 256748, + [SMALL_STATE(5080)] = 256771, + [SMALL_STATE(5081)] = 256794, + [SMALL_STATE(5082)] = 256817, + [SMALL_STATE(5083)] = 256840, + [SMALL_STATE(5084)] = 256863, + [SMALL_STATE(5085)] = 256886, + [SMALL_STATE(5086)] = 256909, + [SMALL_STATE(5087)] = 256932, + [SMALL_STATE(5088)] = 256955, + [SMALL_STATE(5089)] = 256978, + [SMALL_STATE(5090)] = 257001, + [SMALL_STATE(5091)] = 257024, + [SMALL_STATE(5092)] = 257047, [SMALL_STATE(5093)] = 257070, - [SMALL_STATE(5094)] = 257100, - [SMALL_STATE(5095)] = 257130, - [SMALL_STATE(5096)] = 257160, - [SMALL_STATE(5097)] = 257190, - [SMALL_STATE(5098)] = 257220, - [SMALL_STATE(5099)] = 257250, - [SMALL_STATE(5100)] = 257280, - [SMALL_STATE(5101)] = 257310, - [SMALL_STATE(5102)] = 257340, - [SMALL_STATE(5103)] = 257370, - [SMALL_STATE(5104)] = 257393, - [SMALL_STATE(5105)] = 257416, - [SMALL_STATE(5106)] = 257439, - [SMALL_STATE(5107)] = 257462, - [SMALL_STATE(5108)] = 257485, - [SMALL_STATE(5109)] = 257508, - [SMALL_STATE(5110)] = 257531, - [SMALL_STATE(5111)] = 257554, - [SMALL_STATE(5112)] = 257577, - [SMALL_STATE(5113)] = 257600, - [SMALL_STATE(5114)] = 257623, - [SMALL_STATE(5115)] = 257646, - [SMALL_STATE(5116)] = 257669, - [SMALL_STATE(5117)] = 257692, - [SMALL_STATE(5118)] = 257715, - [SMALL_STATE(5119)] = 257738, - [SMALL_STATE(5120)] = 257761, - [SMALL_STATE(5121)] = 257784, - [SMALL_STATE(5122)] = 257807, - [SMALL_STATE(5123)] = 257830, - [SMALL_STATE(5124)] = 257853, - [SMALL_STATE(5125)] = 257876, - [SMALL_STATE(5126)] = 257899, - [SMALL_STATE(5127)] = 257922, - [SMALL_STATE(5128)] = 257945, - [SMALL_STATE(5129)] = 257968, - [SMALL_STATE(5130)] = 257991, - [SMALL_STATE(5131)] = 258014, - [SMALL_STATE(5132)] = 258037, - [SMALL_STATE(5133)] = 258060, - [SMALL_STATE(5134)] = 258080, - [SMALL_STATE(5135)] = 258100, - [SMALL_STATE(5136)] = 258120, - [SMALL_STATE(5137)] = 258138, - [SMALL_STATE(5138)] = 258156, - [SMALL_STATE(5139)] = 258174, - [SMALL_STATE(5140)] = 258201, - [SMALL_STATE(5141)] = 258228, - [SMALL_STATE(5142)] = 258255, - [SMALL_STATE(5143)] = 258282, - [SMALL_STATE(5144)] = 258309, - [SMALL_STATE(5145)] = 258336, - [SMALL_STATE(5146)] = 258363, - [SMALL_STATE(5147)] = 258390, - [SMALL_STATE(5148)] = 258417, - [SMALL_STATE(5149)] = 258444, - [SMALL_STATE(5150)] = 258471, - [SMALL_STATE(5151)] = 258498, - [SMALL_STATE(5152)] = 258525, - [SMALL_STATE(5153)] = 258552, - [SMALL_STATE(5154)] = 258579, - [SMALL_STATE(5155)] = 258606, - [SMALL_STATE(5156)] = 258633, - [SMALL_STATE(5157)] = 258660, - [SMALL_STATE(5158)] = 258687, - [SMALL_STATE(5159)] = 258714, - [SMALL_STATE(5160)] = 258741, - [SMALL_STATE(5161)] = 258768, - [SMALL_STATE(5162)] = 258795, - [SMALL_STATE(5163)] = 258822, - [SMALL_STATE(5164)] = 258849, - [SMALL_STATE(5165)] = 258876, - [SMALL_STATE(5166)] = 258903, - [SMALL_STATE(5167)] = 258930, - [SMALL_STATE(5168)] = 258957, - [SMALL_STATE(5169)] = 258984, - [SMALL_STATE(5170)] = 259011, - [SMALL_STATE(5171)] = 259038, - [SMALL_STATE(5172)] = 259065, - [SMALL_STATE(5173)] = 259092, - [SMALL_STATE(5174)] = 259119, - [SMALL_STATE(5175)] = 259146, - [SMALL_STATE(5176)] = 259173, - [SMALL_STATE(5177)] = 259200, - [SMALL_STATE(5178)] = 259227, - [SMALL_STATE(5179)] = 259254, - [SMALL_STATE(5180)] = 259281, - [SMALL_STATE(5181)] = 259308, - [SMALL_STATE(5182)] = 259335, - [SMALL_STATE(5183)] = 259362, - [SMALL_STATE(5184)] = 259389, - [SMALL_STATE(5185)] = 259416, - [SMALL_STATE(5186)] = 259443, - [SMALL_STATE(5187)] = 259470, - [SMALL_STATE(5188)] = 259497, - [SMALL_STATE(5189)] = 259524, - [SMALL_STATE(5190)] = 259551, - [SMALL_STATE(5191)] = 259578, - [SMALL_STATE(5192)] = 259605, - [SMALL_STATE(5193)] = 259632, - [SMALL_STATE(5194)] = 259659, - [SMALL_STATE(5195)] = 259686, - [SMALL_STATE(5196)] = 259713, - [SMALL_STATE(5197)] = 259740, - [SMALL_STATE(5198)] = 259767, - [SMALL_STATE(5199)] = 259794, - [SMALL_STATE(5200)] = 259821, - [SMALL_STATE(5201)] = 259848, - [SMALL_STATE(5202)] = 259875, - [SMALL_STATE(5203)] = 259902, - [SMALL_STATE(5204)] = 259929, - [SMALL_STATE(5205)] = 259956, - [SMALL_STATE(5206)] = 259983, - [SMALL_STATE(5207)] = 260010, - [SMALL_STATE(5208)] = 260037, - [SMALL_STATE(5209)] = 260064, - [SMALL_STATE(5210)] = 260091, - [SMALL_STATE(5211)] = 260118, - [SMALL_STATE(5212)] = 260145, - [SMALL_STATE(5213)] = 260172, - [SMALL_STATE(5214)] = 260199, - [SMALL_STATE(5215)] = 260226, - [SMALL_STATE(5216)] = 260253, - [SMALL_STATE(5217)] = 260280, - [SMALL_STATE(5218)] = 260307, - [SMALL_STATE(5219)] = 260334, - [SMALL_STATE(5220)] = 260361, - [SMALL_STATE(5221)] = 260388, - [SMALL_STATE(5222)] = 260415, - [SMALL_STATE(5223)] = 260442, - [SMALL_STATE(5224)] = 260469, - [SMALL_STATE(5225)] = 260496, - [SMALL_STATE(5226)] = 260523, - [SMALL_STATE(5227)] = 260550, - [SMALL_STATE(5228)] = 260577, - [SMALL_STATE(5229)] = 260604, - [SMALL_STATE(5230)] = 260631, - [SMALL_STATE(5231)] = 260658, - [SMALL_STATE(5232)] = 260685, - [SMALL_STATE(5233)] = 260712, - [SMALL_STATE(5234)] = 260739, - [SMALL_STATE(5235)] = 260766, - [SMALL_STATE(5236)] = 260793, - [SMALL_STATE(5237)] = 260820, - [SMALL_STATE(5238)] = 260847, - [SMALL_STATE(5239)] = 260874, - [SMALL_STATE(5240)] = 260901, - [SMALL_STATE(5241)] = 260928, - [SMALL_STATE(5242)] = 260955, - [SMALL_STATE(5243)] = 260982, - [SMALL_STATE(5244)] = 261009, - [SMALL_STATE(5245)] = 261036, - [SMALL_STATE(5246)] = 261063, - [SMALL_STATE(5247)] = 261090, - [SMALL_STATE(5248)] = 261117, - [SMALL_STATE(5249)] = 261144, - [SMALL_STATE(5250)] = 261171, - [SMALL_STATE(5251)] = 261198, - [SMALL_STATE(5252)] = 261225, - [SMALL_STATE(5253)] = 261252, - [SMALL_STATE(5254)] = 261279, - [SMALL_STATE(5255)] = 261306, - [SMALL_STATE(5256)] = 261333, - [SMALL_STATE(5257)] = 261360, - [SMALL_STATE(5258)] = 261387, - [SMALL_STATE(5259)] = 261414, - [SMALL_STATE(5260)] = 261441, - [SMALL_STATE(5261)] = 261468, - [SMALL_STATE(5262)] = 261495, - [SMALL_STATE(5263)] = 261522, - [SMALL_STATE(5264)] = 261549, - [SMALL_STATE(5265)] = 261576, - [SMALL_STATE(5266)] = 261603, - [SMALL_STATE(5267)] = 261630, - [SMALL_STATE(5268)] = 261657, - [SMALL_STATE(5269)] = 261684, - [SMALL_STATE(5270)] = 261711, - [SMALL_STATE(5271)] = 261738, - [SMALL_STATE(5272)] = 261765, - [SMALL_STATE(5273)] = 261792, - [SMALL_STATE(5274)] = 261819, - [SMALL_STATE(5275)] = 261846, - [SMALL_STATE(5276)] = 261873, - [SMALL_STATE(5277)] = 261900, - [SMALL_STATE(5278)] = 261927, - [SMALL_STATE(5279)] = 261954, - [SMALL_STATE(5280)] = 261981, - [SMALL_STATE(5281)] = 262008, - [SMALL_STATE(5282)] = 262035, - [SMALL_STATE(5283)] = 262062, - [SMALL_STATE(5284)] = 262089, - [SMALL_STATE(5285)] = 262116, - [SMALL_STATE(5286)] = 262143, - [SMALL_STATE(5287)] = 262170, - [SMALL_STATE(5288)] = 262197, - [SMALL_STATE(5289)] = 262224, - [SMALL_STATE(5290)] = 262251, - [SMALL_STATE(5291)] = 262278, - [SMALL_STATE(5292)] = 262305, - [SMALL_STATE(5293)] = 262332, - [SMALL_STATE(5294)] = 262359, - [SMALL_STATE(5295)] = 262386, - [SMALL_STATE(5296)] = 262413, - [SMALL_STATE(5297)] = 262440, - [SMALL_STATE(5298)] = 262467, - [SMALL_STATE(5299)] = 262494, - [SMALL_STATE(5300)] = 262521, - [SMALL_STATE(5301)] = 262548, - [SMALL_STATE(5302)] = 262575, - [SMALL_STATE(5303)] = 262602, - [SMALL_STATE(5304)] = 262629, - [SMALL_STATE(5305)] = 262656, - [SMALL_STATE(5306)] = 262683, - [SMALL_STATE(5307)] = 262710, - [SMALL_STATE(5308)] = 262737, - [SMALL_STATE(5309)] = 262764, - [SMALL_STATE(5310)] = 262791, - [SMALL_STATE(5311)] = 262818, - [SMALL_STATE(5312)] = 262845, - [SMALL_STATE(5313)] = 262872, - [SMALL_STATE(5314)] = 262899, - [SMALL_STATE(5315)] = 262926, - [SMALL_STATE(5316)] = 262953, - [SMALL_STATE(5317)] = 262980, - [SMALL_STATE(5318)] = 263007, - [SMALL_STATE(5319)] = 263034, - [SMALL_STATE(5320)] = 263061, - [SMALL_STATE(5321)] = 263088, - [SMALL_STATE(5322)] = 263115, - [SMALL_STATE(5323)] = 263142, - [SMALL_STATE(5324)] = 263169, - [SMALL_STATE(5325)] = 263196, - [SMALL_STATE(5326)] = 263223, - [SMALL_STATE(5327)] = 263250, - [SMALL_STATE(5328)] = 263277, - [SMALL_STATE(5329)] = 263304, - [SMALL_STATE(5330)] = 263331, - [SMALL_STATE(5331)] = 263358, - [SMALL_STATE(5332)] = 263385, - [SMALL_STATE(5333)] = 263412, - [SMALL_STATE(5334)] = 263439, - [SMALL_STATE(5335)] = 263466, - [SMALL_STATE(5336)] = 263493, - [SMALL_STATE(5337)] = 263520, - [SMALL_STATE(5338)] = 263547, - [SMALL_STATE(5339)] = 263574, - [SMALL_STATE(5340)] = 263601, - [SMALL_STATE(5341)] = 263628, - [SMALL_STATE(5342)] = 263655, - [SMALL_STATE(5343)] = 263682, - [SMALL_STATE(5344)] = 263709, - [SMALL_STATE(5345)] = 263736, - [SMALL_STATE(5346)] = 263763, - [SMALL_STATE(5347)] = 263790, - [SMALL_STATE(5348)] = 263817, - [SMALL_STATE(5349)] = 263844, - [SMALL_STATE(5350)] = 263871, - [SMALL_STATE(5351)] = 263898, - [SMALL_STATE(5352)] = 263925, - [SMALL_STATE(5353)] = 263952, - [SMALL_STATE(5354)] = 263979, - [SMALL_STATE(5355)] = 264006, - [SMALL_STATE(5356)] = 264033, - [SMALL_STATE(5357)] = 264060, - [SMALL_STATE(5358)] = 264087, - [SMALL_STATE(5359)] = 264114, - [SMALL_STATE(5360)] = 264141, - [SMALL_STATE(5361)] = 264168, - [SMALL_STATE(5362)] = 264195, - [SMALL_STATE(5363)] = 264222, - [SMALL_STATE(5364)] = 264249, - [SMALL_STATE(5365)] = 264276, - [SMALL_STATE(5366)] = 264303, - [SMALL_STATE(5367)] = 264330, - [SMALL_STATE(5368)] = 264357, - [SMALL_STATE(5369)] = 264384, - [SMALL_STATE(5370)] = 264411, - [SMALL_STATE(5371)] = 264438, - [SMALL_STATE(5372)] = 264465, - [SMALL_STATE(5373)] = 264492, - [SMALL_STATE(5374)] = 264519, - [SMALL_STATE(5375)] = 264546, - [SMALL_STATE(5376)] = 264573, - [SMALL_STATE(5377)] = 264600, - [SMALL_STATE(5378)] = 264627, - [SMALL_STATE(5379)] = 264654, - [SMALL_STATE(5380)] = 264681, - [SMALL_STATE(5381)] = 264708, - [SMALL_STATE(5382)] = 264735, - [SMALL_STATE(5383)] = 264762, - [SMALL_STATE(5384)] = 264789, - [SMALL_STATE(5385)] = 264816, - [SMALL_STATE(5386)] = 264843, - [SMALL_STATE(5387)] = 264870, - [SMALL_STATE(5388)] = 264897, - [SMALL_STATE(5389)] = 264924, - [SMALL_STATE(5390)] = 264951, - [SMALL_STATE(5391)] = 264978, - [SMALL_STATE(5392)] = 265005, - [SMALL_STATE(5393)] = 265032, - [SMALL_STATE(5394)] = 265059, - [SMALL_STATE(5395)] = 265086, - [SMALL_STATE(5396)] = 265113, - [SMALL_STATE(5397)] = 265140, - [SMALL_STATE(5398)] = 265167, - [SMALL_STATE(5399)] = 265194, - [SMALL_STATE(5400)] = 265221, - [SMALL_STATE(5401)] = 265248, - [SMALL_STATE(5402)] = 265275, - [SMALL_STATE(5403)] = 265302, - [SMALL_STATE(5404)] = 265329, - [SMALL_STATE(5405)] = 265356, - [SMALL_STATE(5406)] = 265383, - [SMALL_STATE(5407)] = 265410, - [SMALL_STATE(5408)] = 265437, - [SMALL_STATE(5409)] = 265464, - [SMALL_STATE(5410)] = 265491, - [SMALL_STATE(5411)] = 265518, - [SMALL_STATE(5412)] = 265542, - [SMALL_STATE(5413)] = 265566, - [SMALL_STATE(5414)] = 265590, - [SMALL_STATE(5415)] = 265616, - [SMALL_STATE(5416)] = 265640, - [SMALL_STATE(5417)] = 265664, - [SMALL_STATE(5418)] = 265688, - [SMALL_STATE(5419)] = 265708, - [SMALL_STATE(5420)] = 265732, - [SMALL_STATE(5421)] = 265756, - [SMALL_STATE(5422)] = 265780, - [SMALL_STATE(5423)] = 265804, - [SMALL_STATE(5424)] = 265828, - [SMALL_STATE(5425)] = 265852, - [SMALL_STATE(5426)] = 265876, - [SMALL_STATE(5427)] = 265900, - [SMALL_STATE(5428)] = 265926, - [SMALL_STATE(5429)] = 265950, - [SMALL_STATE(5430)] = 265974, - [SMALL_STATE(5431)] = 265998, - [SMALL_STATE(5432)] = 266022, - [SMALL_STATE(5433)] = 266048, - [SMALL_STATE(5434)] = 266072, - [SMALL_STATE(5435)] = 266096, - [SMALL_STATE(5436)] = 266120, - [SMALL_STATE(5437)] = 266144, - [SMALL_STATE(5438)] = 266168, - [SMALL_STATE(5439)] = 266192, - [SMALL_STATE(5440)] = 266216, - [SMALL_STATE(5441)] = 266240, - [SMALL_STATE(5442)] = 266266, - [SMALL_STATE(5443)] = 266290, - [SMALL_STATE(5444)] = 266316, - [SMALL_STATE(5445)] = 266340, - [SMALL_STATE(5446)] = 266364, - [SMALL_STATE(5447)] = 266388, - [SMALL_STATE(5448)] = 266412, - [SMALL_STATE(5449)] = 266436, - [SMALL_STATE(5450)] = 266462, - [SMALL_STATE(5451)] = 266486, - [SMALL_STATE(5452)] = 266512, - [SMALL_STATE(5453)] = 266538, - [SMALL_STATE(5454)] = 266562, - [SMALL_STATE(5455)] = 266586, - [SMALL_STATE(5456)] = 266610, - [SMALL_STATE(5457)] = 266634, - [SMALL_STATE(5458)] = 266658, - [SMALL_STATE(5459)] = 266682, - [SMALL_STATE(5460)] = 266706, - [SMALL_STATE(5461)] = 266730, - [SMALL_STATE(5462)] = 266754, - [SMALL_STATE(5463)] = 266778, - [SMALL_STATE(5464)] = 266804, - [SMALL_STATE(5465)] = 266830, - [SMALL_STATE(5466)] = 266856, - [SMALL_STATE(5467)] = 266882, - [SMALL_STATE(5468)] = 266908, - [SMALL_STATE(5469)] = 266934, - [SMALL_STATE(5470)] = 266958, - [SMALL_STATE(5471)] = 266982, - [SMALL_STATE(5472)] = 267006, - [SMALL_STATE(5473)] = 267030, - [SMALL_STATE(5474)] = 267054, - [SMALL_STATE(5475)] = 267078, - [SMALL_STATE(5476)] = 267102, - [SMALL_STATE(5477)] = 267126, - [SMALL_STATE(5478)] = 267150, - [SMALL_STATE(5479)] = 267174, - [SMALL_STATE(5480)] = 267198, - [SMALL_STATE(5481)] = 267222, - [SMALL_STATE(5482)] = 267248, - [SMALL_STATE(5483)] = 267272, - [SMALL_STATE(5484)] = 267296, - [SMALL_STATE(5485)] = 267320, - [SMALL_STATE(5486)] = 267344, - [SMALL_STATE(5487)] = 267368, - [SMALL_STATE(5488)] = 267392, - [SMALL_STATE(5489)] = 267416, - [SMALL_STATE(5490)] = 267440, - [SMALL_STATE(5491)] = 267464, - [SMALL_STATE(5492)] = 267488, - [SMALL_STATE(5493)] = 267512, - [SMALL_STATE(5494)] = 267536, - [SMALL_STATE(5495)] = 267560, - [SMALL_STATE(5496)] = 267584, - [SMALL_STATE(5497)] = 267608, - [SMALL_STATE(5498)] = 267634, - [SMALL_STATE(5499)] = 267658, - [SMALL_STATE(5500)] = 267682, - [SMALL_STATE(5501)] = 267706, - [SMALL_STATE(5502)] = 267730, - [SMALL_STATE(5503)] = 267754, - [SMALL_STATE(5504)] = 267778, - [SMALL_STATE(5505)] = 267802, - [SMALL_STATE(5506)] = 267826, - [SMALL_STATE(5507)] = 267852, - [SMALL_STATE(5508)] = 267878, - [SMALL_STATE(5509)] = 267904, - [SMALL_STATE(5510)] = 267930, - [SMALL_STATE(5511)] = 267954, - [SMALL_STATE(5512)] = 267980, - [SMALL_STATE(5513)] = 268004, - [SMALL_STATE(5514)] = 268028, - [SMALL_STATE(5515)] = 268052, - [SMALL_STATE(5516)] = 268076, - [SMALL_STATE(5517)] = 268100, - [SMALL_STATE(5518)] = 268124, - [SMALL_STATE(5519)] = 268148, - [SMALL_STATE(5520)] = 268172, - [SMALL_STATE(5521)] = 268198, - [SMALL_STATE(5522)] = 268224, - [SMALL_STATE(5523)] = 268250, - [SMALL_STATE(5524)] = 268276, - [SMALL_STATE(5525)] = 268300, - [SMALL_STATE(5526)] = 268324, - [SMALL_STATE(5527)] = 268348, - [SMALL_STATE(5528)] = 268372, - [SMALL_STATE(5529)] = 268396, - [SMALL_STATE(5530)] = 268420, - [SMALL_STATE(5531)] = 268444, - [SMALL_STATE(5532)] = 268468, - [SMALL_STATE(5533)] = 268492, - [SMALL_STATE(5534)] = 268516, - [SMALL_STATE(5535)] = 268540, - [SMALL_STATE(5536)] = 268564, - [SMALL_STATE(5537)] = 268590, - [SMALL_STATE(5538)] = 268614, - [SMALL_STATE(5539)] = 268638, - [SMALL_STATE(5540)] = 268662, - [SMALL_STATE(5541)] = 268686, - [SMALL_STATE(5542)] = 268710, - [SMALL_STATE(5543)] = 268734, - [SMALL_STATE(5544)] = 268758, - [SMALL_STATE(5545)] = 268782, - [SMALL_STATE(5546)] = 268808, - [SMALL_STATE(5547)] = 268834, - [SMALL_STATE(5548)] = 268860, - [SMALL_STATE(5549)] = 268886, - [SMALL_STATE(5550)] = 268910, - [SMALL_STATE(5551)] = 268934, - [SMALL_STATE(5552)] = 268960, - [SMALL_STATE(5553)] = 268984, - [SMALL_STATE(5554)] = 269008, - [SMALL_STATE(5555)] = 269034, - [SMALL_STATE(5556)] = 269058, - [SMALL_STATE(5557)] = 269082, - [SMALL_STATE(5558)] = 269106, - [SMALL_STATE(5559)] = 269130, - [SMALL_STATE(5560)] = 269154, - [SMALL_STATE(5561)] = 269178, - [SMALL_STATE(5562)] = 269202, - [SMALL_STATE(5563)] = 269226, - [SMALL_STATE(5564)] = 269250, - [SMALL_STATE(5565)] = 269276, - [SMALL_STATE(5566)] = 269302, - [SMALL_STATE(5567)] = 269328, - [SMALL_STATE(5568)] = 269354, - [SMALL_STATE(5569)] = 269380, - [SMALL_STATE(5570)] = 269406, - [SMALL_STATE(5571)] = 269430, - [SMALL_STATE(5572)] = 269454, - [SMALL_STATE(5573)] = 269478, - [SMALL_STATE(5574)] = 269502, - [SMALL_STATE(5575)] = 269528, - [SMALL_STATE(5576)] = 269552, - [SMALL_STATE(5577)] = 269578, - [SMALL_STATE(5578)] = 269604, - [SMALL_STATE(5579)] = 269630, - [SMALL_STATE(5580)] = 269656, - [SMALL_STATE(5581)] = 269682, - [SMALL_STATE(5582)] = 269708, - [SMALL_STATE(5583)] = 269732, - [SMALL_STATE(5584)] = 269756, - [SMALL_STATE(5585)] = 269780, - [SMALL_STATE(5586)] = 269804, - [SMALL_STATE(5587)] = 269828, - [SMALL_STATE(5588)] = 269852, - [SMALL_STATE(5589)] = 269876, - [SMALL_STATE(5590)] = 269900, - [SMALL_STATE(5591)] = 269924, - [SMALL_STATE(5592)] = 269948, - [SMALL_STATE(5593)] = 269972, - [SMALL_STATE(5594)] = 269996, - [SMALL_STATE(5595)] = 270022, - [SMALL_STATE(5596)] = 270046, - [SMALL_STATE(5597)] = 270070, - [SMALL_STATE(5598)] = 270094, - [SMALL_STATE(5599)] = 270118, - [SMALL_STATE(5600)] = 270142, - [SMALL_STATE(5601)] = 270166, - [SMALL_STATE(5602)] = 270190, - [SMALL_STATE(5603)] = 270214, - [SMALL_STATE(5604)] = 270238, - [SMALL_STATE(5605)] = 270262, - [SMALL_STATE(5606)] = 270288, - [SMALL_STATE(5607)] = 270314, - [SMALL_STATE(5608)] = 270340, - [SMALL_STATE(5609)] = 270364, - [SMALL_STATE(5610)] = 270390, - [SMALL_STATE(5611)] = 270414, - [SMALL_STATE(5612)] = 270438, - [SMALL_STATE(5613)] = 270462, - [SMALL_STATE(5614)] = 270488, - [SMALL_STATE(5615)] = 270512, - [SMALL_STATE(5616)] = 270536, - [SMALL_STATE(5617)] = 270560, - [SMALL_STATE(5618)] = 270584, - [SMALL_STATE(5619)] = 270608, - [SMALL_STATE(5620)] = 270632, - [SMALL_STATE(5621)] = 270656, - [SMALL_STATE(5622)] = 270680, - [SMALL_STATE(5623)] = 270704, - [SMALL_STATE(5624)] = 270728, - [SMALL_STATE(5625)] = 270752, - [SMALL_STATE(5626)] = 270776, - [SMALL_STATE(5627)] = 270802, - [SMALL_STATE(5628)] = 270828, - [SMALL_STATE(5629)] = 270854, - [SMALL_STATE(5630)] = 270880, - [SMALL_STATE(5631)] = 270904, - [SMALL_STATE(5632)] = 270930, - [SMALL_STATE(5633)] = 270954, - [SMALL_STATE(5634)] = 270978, - [SMALL_STATE(5635)] = 271002, - [SMALL_STATE(5636)] = 271026, - [SMALL_STATE(5637)] = 271052, - [SMALL_STATE(5638)] = 271078, - [SMALL_STATE(5639)] = 271104, - [SMALL_STATE(5640)] = 271130, - [SMALL_STATE(5641)] = 271150, - [SMALL_STATE(5642)] = 271176, - [SMALL_STATE(5643)] = 271202, - [SMALL_STATE(5644)] = 271226, - [SMALL_STATE(5645)] = 271250, - [SMALL_STATE(5646)] = 271274, - [SMALL_STATE(5647)] = 271298, - [SMALL_STATE(5648)] = 271322, - [SMALL_STATE(5649)] = 271346, - [SMALL_STATE(5650)] = 271370, - [SMALL_STATE(5651)] = 271394, - [SMALL_STATE(5652)] = 271418, - [SMALL_STATE(5653)] = 271442, - [SMALL_STATE(5654)] = 271466, - [SMALL_STATE(5655)] = 271490, - [SMALL_STATE(5656)] = 271516, - [SMALL_STATE(5657)] = 271542, - [SMALL_STATE(5658)] = 271568, - [SMALL_STATE(5659)] = 271594, - [SMALL_STATE(5660)] = 271618, - [SMALL_STATE(5661)] = 271642, - [SMALL_STATE(5662)] = 271666, - [SMALL_STATE(5663)] = 271690, - [SMALL_STATE(5664)] = 271714, - [SMALL_STATE(5665)] = 271738, - [SMALL_STATE(5666)] = 271762, - [SMALL_STATE(5667)] = 271786, - [SMALL_STATE(5668)] = 271810, - [SMALL_STATE(5669)] = 271834, - [SMALL_STATE(5670)] = 271858, - [SMALL_STATE(5671)] = 271882, - [SMALL_STATE(5672)] = 271908, - [SMALL_STATE(5673)] = 271934, - [SMALL_STATE(5674)] = 271958, - [SMALL_STATE(5675)] = 271984, - [SMALL_STATE(5676)] = 272008, - [SMALL_STATE(5677)] = 272032, - [SMALL_STATE(5678)] = 272056, - [SMALL_STATE(5679)] = 272080, - [SMALL_STATE(5680)] = 272104, - [SMALL_STATE(5681)] = 272128, - [SMALL_STATE(5682)] = 272152, - [SMALL_STATE(5683)] = 272176, - [SMALL_STATE(5684)] = 272202, - [SMALL_STATE(5685)] = 272228, - [SMALL_STATE(5686)] = 272254, - [SMALL_STATE(5687)] = 272280, - [SMALL_STATE(5688)] = 272306, - [SMALL_STATE(5689)] = 272330, - [SMALL_STATE(5690)] = 272354, - [SMALL_STATE(5691)] = 272378, - [SMALL_STATE(5692)] = 272402, - [SMALL_STATE(5693)] = 272428, - [SMALL_STATE(5694)] = 272454, - [SMALL_STATE(5695)] = 272480, - [SMALL_STATE(5696)] = 272506, - [SMALL_STATE(5697)] = 272532, - [SMALL_STATE(5698)] = 272556, - [SMALL_STATE(5699)] = 272580, - [SMALL_STATE(5700)] = 272604, - [SMALL_STATE(5701)] = 272628, - [SMALL_STATE(5702)] = 272652, - [SMALL_STATE(5703)] = 272676, - [SMALL_STATE(5704)] = 272700, - [SMALL_STATE(5705)] = 272724, - [SMALL_STATE(5706)] = 272748, - [SMALL_STATE(5707)] = 272772, - [SMALL_STATE(5708)] = 272796, - [SMALL_STATE(5709)] = 272820, - [SMALL_STATE(5710)] = 272846, - [SMALL_STATE(5711)] = 272872, - [SMALL_STATE(5712)] = 272896, - [SMALL_STATE(5713)] = 272920, - [SMALL_STATE(5714)] = 272944, - [SMALL_STATE(5715)] = 272968, - [SMALL_STATE(5716)] = 272992, - [SMALL_STATE(5717)] = 273016, - [SMALL_STATE(5718)] = 273042, - [SMALL_STATE(5719)] = 273066, - [SMALL_STATE(5720)] = 273090, - [SMALL_STATE(5721)] = 273114, - [SMALL_STATE(5722)] = 273138, - [SMALL_STATE(5723)] = 273162, - [SMALL_STATE(5724)] = 273186, - [SMALL_STATE(5725)] = 273210, - [SMALL_STATE(5726)] = 273234, - [SMALL_STATE(5727)] = 273260, - [SMALL_STATE(5728)] = 273286, - [SMALL_STATE(5729)] = 273310, - [SMALL_STATE(5730)] = 273334, - [SMALL_STATE(5731)] = 273358, - [SMALL_STATE(5732)] = 273382, - [SMALL_STATE(5733)] = 273406, - [SMALL_STATE(5734)] = 273432, - [SMALL_STATE(5735)] = 273456, - [SMALL_STATE(5736)] = 273480, - [SMALL_STATE(5737)] = 273504, - [SMALL_STATE(5738)] = 273528, - [SMALL_STATE(5739)] = 273552, - [SMALL_STATE(5740)] = 273576, - [SMALL_STATE(5741)] = 273600, - [SMALL_STATE(5742)] = 273624, - [SMALL_STATE(5743)] = 273650, - [SMALL_STATE(5744)] = 273670, - [SMALL_STATE(5745)] = 273696, - [SMALL_STATE(5746)] = 273722, - [SMALL_STATE(5747)] = 273748, - [SMALL_STATE(5748)] = 273772, - [SMALL_STATE(5749)] = 273796, - [SMALL_STATE(5750)] = 273820, - [SMALL_STATE(5751)] = 273844, - [SMALL_STATE(5752)] = 273868, - [SMALL_STATE(5753)] = 273892, - [SMALL_STATE(5754)] = 273916, - [SMALL_STATE(5755)] = 273940, - [SMALL_STATE(5756)] = 273964, - [SMALL_STATE(5757)] = 273988, - [SMALL_STATE(5758)] = 274014, - [SMALL_STATE(5759)] = 274040, - [SMALL_STATE(5760)] = 274066, - [SMALL_STATE(5761)] = 274092, - [SMALL_STATE(5762)] = 274116, - [SMALL_STATE(5763)] = 274140, - [SMALL_STATE(5764)] = 274164, - [SMALL_STATE(5765)] = 274188, - [SMALL_STATE(5766)] = 274212, - [SMALL_STATE(5767)] = 274236, - [SMALL_STATE(5768)] = 274260, - [SMALL_STATE(5769)] = 274284, - [SMALL_STATE(5770)] = 274308, - [SMALL_STATE(5771)] = 274332, - [SMALL_STATE(5772)] = 274356, - [SMALL_STATE(5773)] = 274380, - [SMALL_STATE(5774)] = 274406, - [SMALL_STATE(5775)] = 274432, - [SMALL_STATE(5776)] = 274458, - [SMALL_STATE(5777)] = 274482, - [SMALL_STATE(5778)] = 274506, - [SMALL_STATE(5779)] = 274530, - [SMALL_STATE(5780)] = 274554, - [SMALL_STATE(5781)] = 274578, - [SMALL_STATE(5782)] = 274602, - [SMALL_STATE(5783)] = 274628, - [SMALL_STATE(5784)] = 274652, - [SMALL_STATE(5785)] = 274676, - [SMALL_STATE(5786)] = 274700, - [SMALL_STATE(5787)] = 274724, - [SMALL_STATE(5788)] = 274748, - [SMALL_STATE(5789)] = 274772, - [SMALL_STATE(5790)] = 274796, - [SMALL_STATE(5791)] = 274820, - [SMALL_STATE(5792)] = 274844, - [SMALL_STATE(5793)] = 274868, - [SMALL_STATE(5794)] = 274892, - [SMALL_STATE(5795)] = 274916, - [SMALL_STATE(5796)] = 274940, - [SMALL_STATE(5797)] = 274964, - [SMALL_STATE(5798)] = 274988, - [SMALL_STATE(5799)] = 275012, - [SMALL_STATE(5800)] = 275036, - [SMALL_STATE(5801)] = 275060, - [SMALL_STATE(5802)] = 275084, - [SMALL_STATE(5803)] = 275108, - [SMALL_STATE(5804)] = 275132, - [SMALL_STATE(5805)] = 275156, - [SMALL_STATE(5806)] = 275180, - [SMALL_STATE(5807)] = 275204, - [SMALL_STATE(5808)] = 275228, - [SMALL_STATE(5809)] = 275252, - [SMALL_STATE(5810)] = 275276, - [SMALL_STATE(5811)] = 275300, - [SMALL_STATE(5812)] = 275324, - [SMALL_STATE(5813)] = 275348, - [SMALL_STATE(5814)] = 275372, - [SMALL_STATE(5815)] = 275396, - [SMALL_STATE(5816)] = 275420, - [SMALL_STATE(5817)] = 275444, - [SMALL_STATE(5818)] = 275468, - [SMALL_STATE(5819)] = 275492, - [SMALL_STATE(5820)] = 275516, - [SMALL_STATE(5821)] = 275540, - [SMALL_STATE(5822)] = 275564, - [SMALL_STATE(5823)] = 275588, - [SMALL_STATE(5824)] = 275612, - [SMALL_STATE(5825)] = 275636, - [SMALL_STATE(5826)] = 275660, - [SMALL_STATE(5827)] = 275684, - [SMALL_STATE(5828)] = 275708, - [SMALL_STATE(5829)] = 275732, - [SMALL_STATE(5830)] = 275756, - [SMALL_STATE(5831)] = 275780, - [SMALL_STATE(5832)] = 275804, - [SMALL_STATE(5833)] = 275828, - [SMALL_STATE(5834)] = 275852, - [SMALL_STATE(5835)] = 275876, - [SMALL_STATE(5836)] = 275900, - [SMALL_STATE(5837)] = 275924, - [SMALL_STATE(5838)] = 275948, - [SMALL_STATE(5839)] = 275972, - [SMALL_STATE(5840)] = 275996, - [SMALL_STATE(5841)] = 276020, - [SMALL_STATE(5842)] = 276044, - [SMALL_STATE(5843)] = 276068, - [SMALL_STATE(5844)] = 276092, - [SMALL_STATE(5845)] = 276116, - [SMALL_STATE(5846)] = 276140, - [SMALL_STATE(5847)] = 276164, - [SMALL_STATE(5848)] = 276188, - [SMALL_STATE(5849)] = 276212, - [SMALL_STATE(5850)] = 276236, - [SMALL_STATE(5851)] = 276260, - [SMALL_STATE(5852)] = 276284, - [SMALL_STATE(5853)] = 276308, - [SMALL_STATE(5854)] = 276332, - [SMALL_STATE(5855)] = 276358, - [SMALL_STATE(5856)] = 276382, - [SMALL_STATE(5857)] = 276406, - [SMALL_STATE(5858)] = 276430, - [SMALL_STATE(5859)] = 276454, - [SMALL_STATE(5860)] = 276478, - [SMALL_STATE(5861)] = 276502, - [SMALL_STATE(5862)] = 276526, - [SMALL_STATE(5863)] = 276550, - [SMALL_STATE(5864)] = 276576, - [SMALL_STATE(5865)] = 276600, - [SMALL_STATE(5866)] = 276624, - [SMALL_STATE(5867)] = 276648, - [SMALL_STATE(5868)] = 276672, - [SMALL_STATE(5869)] = 276698, - [SMALL_STATE(5870)] = 276722, - [SMALL_STATE(5871)] = 276746, - [SMALL_STATE(5872)] = 276770, - [SMALL_STATE(5873)] = 276794, - [SMALL_STATE(5874)] = 276818, - [SMALL_STATE(5875)] = 276842, - [SMALL_STATE(5876)] = 276866, - [SMALL_STATE(5877)] = 276890, - [SMALL_STATE(5878)] = 276914, - [SMALL_STATE(5879)] = 276938, - [SMALL_STATE(5880)] = 276962, - [SMALL_STATE(5881)] = 276986, - [SMALL_STATE(5882)] = 277010, - [SMALL_STATE(5883)] = 277034, - [SMALL_STATE(5884)] = 277058, - [SMALL_STATE(5885)] = 277082, - [SMALL_STATE(5886)] = 277106, - [SMALL_STATE(5887)] = 277130, - [SMALL_STATE(5888)] = 277154, - [SMALL_STATE(5889)] = 277180, - [SMALL_STATE(5890)] = 277206, - [SMALL_STATE(5891)] = 277230, - [SMALL_STATE(5892)] = 277254, - [SMALL_STATE(5893)] = 277278, - [SMALL_STATE(5894)] = 277302, - [SMALL_STATE(5895)] = 277326, - [SMALL_STATE(5896)] = 277350, - [SMALL_STATE(5897)] = 277374, - [SMALL_STATE(5898)] = 277398, - [SMALL_STATE(5899)] = 277418, - [SMALL_STATE(5900)] = 277444, - [SMALL_STATE(5901)] = 277468, - [SMALL_STATE(5902)] = 277492, - [SMALL_STATE(5903)] = 277516, - [SMALL_STATE(5904)] = 277540, - [SMALL_STATE(5905)] = 277564, - [SMALL_STATE(5906)] = 277588, - [SMALL_STATE(5907)] = 277612, - [SMALL_STATE(5908)] = 277636, - [SMALL_STATE(5909)] = 277660, - [SMALL_STATE(5910)] = 277684, - [SMALL_STATE(5911)] = 277708, - [SMALL_STATE(5912)] = 277732, - [SMALL_STATE(5913)] = 277756, - [SMALL_STATE(5914)] = 277780, - [SMALL_STATE(5915)] = 277804, - [SMALL_STATE(5916)] = 277828, - [SMALL_STATE(5917)] = 277852, - [SMALL_STATE(5918)] = 277876, - [SMALL_STATE(5919)] = 277900, - [SMALL_STATE(5920)] = 277924, - [SMALL_STATE(5921)] = 277948, - [SMALL_STATE(5922)] = 277972, - [SMALL_STATE(5923)] = 277996, - [SMALL_STATE(5924)] = 278020, - [SMALL_STATE(5925)] = 278044, - [SMALL_STATE(5926)] = 278068, - [SMALL_STATE(5927)] = 278092, - [SMALL_STATE(5928)] = 278116, - [SMALL_STATE(5929)] = 278140, - [SMALL_STATE(5930)] = 278164, - [SMALL_STATE(5931)] = 278188, - [SMALL_STATE(5932)] = 278212, - [SMALL_STATE(5933)] = 278236, - [SMALL_STATE(5934)] = 278260, - [SMALL_STATE(5935)] = 278284, - [SMALL_STATE(5936)] = 278308, - [SMALL_STATE(5937)] = 278332, - [SMALL_STATE(5938)] = 278356, - [SMALL_STATE(5939)] = 278380, - [SMALL_STATE(5940)] = 278404, - [SMALL_STATE(5941)] = 278428, - [SMALL_STATE(5942)] = 278452, - [SMALL_STATE(5943)] = 278476, - [SMALL_STATE(5944)] = 278500, - [SMALL_STATE(5945)] = 278524, - [SMALL_STATE(5946)] = 278548, - [SMALL_STATE(5947)] = 278572, - [SMALL_STATE(5948)] = 278596, - [SMALL_STATE(5949)] = 278620, - [SMALL_STATE(5950)] = 278644, - [SMALL_STATE(5951)] = 278668, - [SMALL_STATE(5952)] = 278692, - [SMALL_STATE(5953)] = 278716, - [SMALL_STATE(5954)] = 278740, - [SMALL_STATE(5955)] = 278764, - [SMALL_STATE(5956)] = 278788, - [SMALL_STATE(5957)] = 278812, - [SMALL_STATE(5958)] = 278836, - [SMALL_STATE(5959)] = 278860, - [SMALL_STATE(5960)] = 278884, - [SMALL_STATE(5961)] = 278908, - [SMALL_STATE(5962)] = 278932, - [SMALL_STATE(5963)] = 278956, - [SMALL_STATE(5964)] = 278980, - [SMALL_STATE(5965)] = 279004, - [SMALL_STATE(5966)] = 279028, - [SMALL_STATE(5967)] = 279052, - [SMALL_STATE(5968)] = 279076, - [SMALL_STATE(5969)] = 279100, - [SMALL_STATE(5970)] = 279124, - [SMALL_STATE(5971)] = 279148, - [SMALL_STATE(5972)] = 279172, - [SMALL_STATE(5973)] = 279196, - [SMALL_STATE(5974)] = 279220, - [SMALL_STATE(5975)] = 279244, - [SMALL_STATE(5976)] = 279268, - [SMALL_STATE(5977)] = 279292, - [SMALL_STATE(5978)] = 279316, - [SMALL_STATE(5979)] = 279340, - [SMALL_STATE(5980)] = 279364, - [SMALL_STATE(5981)] = 279388, - [SMALL_STATE(5982)] = 279412, - [SMALL_STATE(5983)] = 279436, - [SMALL_STATE(5984)] = 279460, - [SMALL_STATE(5985)] = 279484, - [SMALL_STATE(5986)] = 279508, - [SMALL_STATE(5987)] = 279532, - [SMALL_STATE(5988)] = 279556, - [SMALL_STATE(5989)] = 279580, - [SMALL_STATE(5990)] = 279604, - [SMALL_STATE(5991)] = 279628, - [SMALL_STATE(5992)] = 279652, - [SMALL_STATE(5993)] = 279676, - [SMALL_STATE(5994)] = 279700, - [SMALL_STATE(5995)] = 279724, - [SMALL_STATE(5996)] = 279748, - [SMALL_STATE(5997)] = 279772, - [SMALL_STATE(5998)] = 279796, - [SMALL_STATE(5999)] = 279820, - [SMALL_STATE(6000)] = 279844, - [SMALL_STATE(6001)] = 279868, - [SMALL_STATE(6002)] = 279892, - [SMALL_STATE(6003)] = 279916, - [SMALL_STATE(6004)] = 279940, - [SMALL_STATE(6005)] = 279964, - [SMALL_STATE(6006)] = 279988, - [SMALL_STATE(6007)] = 280012, - [SMALL_STATE(6008)] = 280036, - [SMALL_STATE(6009)] = 280060, - [SMALL_STATE(6010)] = 280084, - [SMALL_STATE(6011)] = 280108, - [SMALL_STATE(6012)] = 280132, - [SMALL_STATE(6013)] = 280156, - [SMALL_STATE(6014)] = 280180, - [SMALL_STATE(6015)] = 280204, - [SMALL_STATE(6016)] = 280228, - [SMALL_STATE(6017)] = 280252, - [SMALL_STATE(6018)] = 280276, - [SMALL_STATE(6019)] = 280300, - [SMALL_STATE(6020)] = 280324, - [SMALL_STATE(6021)] = 280348, - [SMALL_STATE(6022)] = 280372, - [SMALL_STATE(6023)] = 280396, - [SMALL_STATE(6024)] = 280420, - [SMALL_STATE(6025)] = 280444, - [SMALL_STATE(6026)] = 280468, - [SMALL_STATE(6027)] = 280492, - [SMALL_STATE(6028)] = 280516, - [SMALL_STATE(6029)] = 280540, - [SMALL_STATE(6030)] = 280564, - [SMALL_STATE(6031)] = 280588, - [SMALL_STATE(6032)] = 280612, - [SMALL_STATE(6033)] = 280636, - [SMALL_STATE(6034)] = 280660, - [SMALL_STATE(6035)] = 280684, - [SMALL_STATE(6036)] = 280708, - [SMALL_STATE(6037)] = 280732, - [SMALL_STATE(6038)] = 280758, - [SMALL_STATE(6039)] = 280782, - [SMALL_STATE(6040)] = 280806, - [SMALL_STATE(6041)] = 280830, - [SMALL_STATE(6042)] = 280854, - [SMALL_STATE(6043)] = 280878, - [SMALL_STATE(6044)] = 280902, - [SMALL_STATE(6045)] = 280926, - [SMALL_STATE(6046)] = 280950, - [SMALL_STATE(6047)] = 280974, - [SMALL_STATE(6048)] = 280998, - [SMALL_STATE(6049)] = 281022, - [SMALL_STATE(6050)] = 281046, - [SMALL_STATE(6051)] = 281070, - [SMALL_STATE(6052)] = 281094, - [SMALL_STATE(6053)] = 281118, - [SMALL_STATE(6054)] = 281142, - [SMALL_STATE(6055)] = 281166, - [SMALL_STATE(6056)] = 281190, - [SMALL_STATE(6057)] = 281214, - [SMALL_STATE(6058)] = 281238, - [SMALL_STATE(6059)] = 281262, - [SMALL_STATE(6060)] = 281286, - [SMALL_STATE(6061)] = 281310, - [SMALL_STATE(6062)] = 281334, - [SMALL_STATE(6063)] = 281358, - [SMALL_STATE(6064)] = 281382, - [SMALL_STATE(6065)] = 281406, - [SMALL_STATE(6066)] = 281430, - [SMALL_STATE(6067)] = 281454, - [SMALL_STATE(6068)] = 281478, - [SMALL_STATE(6069)] = 281502, - [SMALL_STATE(6070)] = 281526, - [SMALL_STATE(6071)] = 281550, - [SMALL_STATE(6072)] = 281574, - [SMALL_STATE(6073)] = 281598, - [SMALL_STATE(6074)] = 281622, - [SMALL_STATE(6075)] = 281646, - [SMALL_STATE(6076)] = 281670, - [SMALL_STATE(6077)] = 281694, - [SMALL_STATE(6078)] = 281718, - [SMALL_STATE(6079)] = 281742, - [SMALL_STATE(6080)] = 281766, - [SMALL_STATE(6081)] = 281790, - [SMALL_STATE(6082)] = 281814, - [SMALL_STATE(6083)] = 281838, - [SMALL_STATE(6084)] = 281862, - [SMALL_STATE(6085)] = 281886, - [SMALL_STATE(6086)] = 281910, - [SMALL_STATE(6087)] = 281934, - [SMALL_STATE(6088)] = 281958, - [SMALL_STATE(6089)] = 281982, - [SMALL_STATE(6090)] = 282006, - [SMALL_STATE(6091)] = 282030, - [SMALL_STATE(6092)] = 282054, - [SMALL_STATE(6093)] = 282078, - [SMALL_STATE(6094)] = 282102, - [SMALL_STATE(6095)] = 282126, - [SMALL_STATE(6096)] = 282150, - [SMALL_STATE(6097)] = 282174, - [SMALL_STATE(6098)] = 282200, - [SMALL_STATE(6099)] = 282226, - [SMALL_STATE(6100)] = 282252, - [SMALL_STATE(6101)] = 282276, - [SMALL_STATE(6102)] = 282300, - [SMALL_STATE(6103)] = 282324, - [SMALL_STATE(6104)] = 282348, - [SMALL_STATE(6105)] = 282372, - [SMALL_STATE(6106)] = 282396, - [SMALL_STATE(6107)] = 282420, - [SMALL_STATE(6108)] = 282444, - [SMALL_STATE(6109)] = 282468, - [SMALL_STATE(6110)] = 282492, - [SMALL_STATE(6111)] = 282516, - [SMALL_STATE(6112)] = 282540, - [SMALL_STATE(6113)] = 282564, - [SMALL_STATE(6114)] = 282588, - [SMALL_STATE(6115)] = 282612, - [SMALL_STATE(6116)] = 282636, - [SMALL_STATE(6117)] = 282660, - [SMALL_STATE(6118)] = 282684, - [SMALL_STATE(6119)] = 282708, - [SMALL_STATE(6120)] = 282732, - [SMALL_STATE(6121)] = 282756, - [SMALL_STATE(6122)] = 282780, - [SMALL_STATE(6123)] = 282804, - [SMALL_STATE(6124)] = 282828, - [SMALL_STATE(6125)] = 282852, - [SMALL_STATE(6126)] = 282876, - [SMALL_STATE(6127)] = 282902, - [SMALL_STATE(6128)] = 282926, - [SMALL_STATE(6129)] = 282952, - [SMALL_STATE(6130)] = 282976, - [SMALL_STATE(6131)] = 283000, - [SMALL_STATE(6132)] = 283024, - [SMALL_STATE(6133)] = 283048, - [SMALL_STATE(6134)] = 283072, - [SMALL_STATE(6135)] = 283096, - [SMALL_STATE(6136)] = 283120, - [SMALL_STATE(6137)] = 283144, - [SMALL_STATE(6138)] = 283168, - [SMALL_STATE(6139)] = 283192, - [SMALL_STATE(6140)] = 283216, - [SMALL_STATE(6141)] = 283240, - [SMALL_STATE(6142)] = 283264, - [SMALL_STATE(6143)] = 283290, - [SMALL_STATE(6144)] = 283314, - [SMALL_STATE(6145)] = 283338, - [SMALL_STATE(6146)] = 283362, - [SMALL_STATE(6147)] = 283386, - [SMALL_STATE(6148)] = 283410, - [SMALL_STATE(6149)] = 283434, - [SMALL_STATE(6150)] = 283458, - [SMALL_STATE(6151)] = 283482, - [SMALL_STATE(6152)] = 283506, - [SMALL_STATE(6153)] = 283530, - [SMALL_STATE(6154)] = 283554, - [SMALL_STATE(6155)] = 283578, - [SMALL_STATE(6156)] = 283602, - [SMALL_STATE(6157)] = 283626, - [SMALL_STATE(6158)] = 283650, - [SMALL_STATE(6159)] = 283674, - [SMALL_STATE(6160)] = 283698, - [SMALL_STATE(6161)] = 283722, - [SMALL_STATE(6162)] = 283746, - [SMALL_STATE(6163)] = 283770, - [SMALL_STATE(6164)] = 283794, - [SMALL_STATE(6165)] = 283818, - [SMALL_STATE(6166)] = 283842, - [SMALL_STATE(6167)] = 283866, - [SMALL_STATE(6168)] = 283890, - [SMALL_STATE(6169)] = 283914, - [SMALL_STATE(6170)] = 283938, - [SMALL_STATE(6171)] = 283962, - [SMALL_STATE(6172)] = 283986, - [SMALL_STATE(6173)] = 284010, - [SMALL_STATE(6174)] = 284034, - [SMALL_STATE(6175)] = 284060, - [SMALL_STATE(6176)] = 284086, - [SMALL_STATE(6177)] = 284110, - [SMALL_STATE(6178)] = 284134, - [SMALL_STATE(6179)] = 284158, - [SMALL_STATE(6180)] = 284182, - [SMALL_STATE(6181)] = 284206, - [SMALL_STATE(6182)] = 284230, - [SMALL_STATE(6183)] = 284254, - [SMALL_STATE(6184)] = 284278, - [SMALL_STATE(6185)] = 284302, - [SMALL_STATE(6186)] = 284326, - [SMALL_STATE(6187)] = 284350, - [SMALL_STATE(6188)] = 284374, - [SMALL_STATE(6189)] = 284398, - [SMALL_STATE(6190)] = 284422, - [SMALL_STATE(6191)] = 284446, - [SMALL_STATE(6192)] = 284470, - [SMALL_STATE(6193)] = 284494, - [SMALL_STATE(6194)] = 284518, - [SMALL_STATE(6195)] = 284542, - [SMALL_STATE(6196)] = 284566, - [SMALL_STATE(6197)] = 284590, - [SMALL_STATE(6198)] = 284614, - [SMALL_STATE(6199)] = 284638, - [SMALL_STATE(6200)] = 284662, - [SMALL_STATE(6201)] = 284686, - [SMALL_STATE(6202)] = 284710, - [SMALL_STATE(6203)] = 284734, - [SMALL_STATE(6204)] = 284758, - [SMALL_STATE(6205)] = 284782, - [SMALL_STATE(6206)] = 284806, - [SMALL_STATE(6207)] = 284830, - [SMALL_STATE(6208)] = 284854, - [SMALL_STATE(6209)] = 284878, - [SMALL_STATE(6210)] = 284902, - [SMALL_STATE(6211)] = 284926, - [SMALL_STATE(6212)] = 284950, - [SMALL_STATE(6213)] = 284974, - [SMALL_STATE(6214)] = 284998, - [SMALL_STATE(6215)] = 285022, - [SMALL_STATE(6216)] = 285046, - [SMALL_STATE(6217)] = 285070, - [SMALL_STATE(6218)] = 285094, - [SMALL_STATE(6219)] = 285118, - [SMALL_STATE(6220)] = 285142, - [SMALL_STATE(6221)] = 285166, - [SMALL_STATE(6222)] = 285190, - [SMALL_STATE(6223)] = 285214, - [SMALL_STATE(6224)] = 285238, - [SMALL_STATE(6225)] = 285262, - [SMALL_STATE(6226)] = 285286, - [SMALL_STATE(6227)] = 285310, - [SMALL_STATE(6228)] = 285334, - [SMALL_STATE(6229)] = 285358, - [SMALL_STATE(6230)] = 285382, - [SMALL_STATE(6231)] = 285406, - [SMALL_STATE(6232)] = 285430, - [SMALL_STATE(6233)] = 285456, - [SMALL_STATE(6234)] = 285482, - [SMALL_STATE(6235)] = 285506, - [SMALL_STATE(6236)] = 285530, - [SMALL_STATE(6237)] = 285554, - [SMALL_STATE(6238)] = 285578, - [SMALL_STATE(6239)] = 285602, - [SMALL_STATE(6240)] = 285626, - [SMALL_STATE(6241)] = 285650, - [SMALL_STATE(6242)] = 285674, - [SMALL_STATE(6243)] = 285698, - [SMALL_STATE(6244)] = 285722, - [SMALL_STATE(6245)] = 285746, - [SMALL_STATE(6246)] = 285770, - [SMALL_STATE(6247)] = 285794, - [SMALL_STATE(6248)] = 285818, - [SMALL_STATE(6249)] = 285842, - [SMALL_STATE(6250)] = 285866, - [SMALL_STATE(6251)] = 285890, - [SMALL_STATE(6252)] = 285914, - [SMALL_STATE(6253)] = 285938, - [SMALL_STATE(6254)] = 285962, - [SMALL_STATE(6255)] = 285986, - [SMALL_STATE(6256)] = 286010, - [SMALL_STATE(6257)] = 286034, - [SMALL_STATE(6258)] = 286060, - [SMALL_STATE(6259)] = 286084, - [SMALL_STATE(6260)] = 286108, - [SMALL_STATE(6261)] = 286132, - [SMALL_STATE(6262)] = 286156, - [SMALL_STATE(6263)] = 286180, - [SMALL_STATE(6264)] = 286204, - [SMALL_STATE(6265)] = 286228, - [SMALL_STATE(6266)] = 286252, - [SMALL_STATE(6267)] = 286276, - [SMALL_STATE(6268)] = 286300, - [SMALL_STATE(6269)] = 286324, - [SMALL_STATE(6270)] = 286350, - [SMALL_STATE(6271)] = 286374, - [SMALL_STATE(6272)] = 286400, - [SMALL_STATE(6273)] = 286426, - [SMALL_STATE(6274)] = 286452, - [SMALL_STATE(6275)] = 286476, - [SMALL_STATE(6276)] = 286500, - [SMALL_STATE(6277)] = 286524, - [SMALL_STATE(6278)] = 286548, - [SMALL_STATE(6279)] = 286572, - [SMALL_STATE(6280)] = 286598, - [SMALL_STATE(6281)] = 286624, - [SMALL_STATE(6282)] = 286648, - [SMALL_STATE(6283)] = 286674, - [SMALL_STATE(6284)] = 286698, - [SMALL_STATE(6285)] = 286724, - [SMALL_STATE(6286)] = 286750, - [SMALL_STATE(6287)] = 286774, - [SMALL_STATE(6288)] = 286798, - [SMALL_STATE(6289)] = 286822, - [SMALL_STATE(6290)] = 286846, - [SMALL_STATE(6291)] = 286870, - [SMALL_STATE(6292)] = 286894, - [SMALL_STATE(6293)] = 286918, - [SMALL_STATE(6294)] = 286942, - [SMALL_STATE(6295)] = 286966, - [SMALL_STATE(6296)] = 286990, - [SMALL_STATE(6297)] = 287014, - [SMALL_STATE(6298)] = 287038, - [SMALL_STATE(6299)] = 287064, - [SMALL_STATE(6300)] = 287090, - [SMALL_STATE(6301)] = 287116, - [SMALL_STATE(6302)] = 287142, - [SMALL_STATE(6303)] = 287168, - [SMALL_STATE(6304)] = 287192, - [SMALL_STATE(6305)] = 287216, - [SMALL_STATE(6306)] = 287240, - [SMALL_STATE(6307)] = 287264, - [SMALL_STATE(6308)] = 287288, - [SMALL_STATE(6309)] = 287312, - [SMALL_STATE(6310)] = 287338, - [SMALL_STATE(6311)] = 287362, - [SMALL_STATE(6312)] = 287386, - [SMALL_STATE(6313)] = 287412, - [SMALL_STATE(6314)] = 287438, - [SMALL_STATE(6315)] = 287464, - [SMALL_STATE(6316)] = 287490, - [SMALL_STATE(6317)] = 287514, - [SMALL_STATE(6318)] = 287538, - [SMALL_STATE(6319)] = 287562, - [SMALL_STATE(6320)] = 287582, - [SMALL_STATE(6321)] = 287608, - [SMALL_STATE(6322)] = 287634, - [SMALL_STATE(6323)] = 287658, - [SMALL_STATE(6324)] = 287684, - [SMALL_STATE(6325)] = 287708, - [SMALL_STATE(6326)] = 287728, - [SMALL_STATE(6327)] = 287752, - [SMALL_STATE(6328)] = 287776, - [SMALL_STATE(6329)] = 287800, - [SMALL_STATE(6330)] = 287824, - [SMALL_STATE(6331)] = 287848, - [SMALL_STATE(6332)] = 287872, - [SMALL_STATE(6333)] = 287896, - [SMALL_STATE(6334)] = 287920, - [SMALL_STATE(6335)] = 287946, - [SMALL_STATE(6336)] = 287970, - [SMALL_STATE(6337)] = 287996, - [SMALL_STATE(6338)] = 288020, - [SMALL_STATE(6339)] = 288044, - [SMALL_STATE(6340)] = 288064, - [SMALL_STATE(6341)] = 288088, - [SMALL_STATE(6342)] = 288112, - [SMALL_STATE(6343)] = 288138, - [SMALL_STATE(6344)] = 288162, - [SMALL_STATE(6345)] = 288186, - [SMALL_STATE(6346)] = 288212, - [SMALL_STATE(6347)] = 288236, - [SMALL_STATE(6348)] = 288262, - [SMALL_STATE(6349)] = 288286, - [SMALL_STATE(6350)] = 288310, - [SMALL_STATE(6351)] = 288334, - [SMALL_STATE(6352)] = 288358, - [SMALL_STATE(6353)] = 288382, - [SMALL_STATE(6354)] = 288406, - [SMALL_STATE(6355)] = 288430, - [SMALL_STATE(6356)] = 288454, - [SMALL_STATE(6357)] = 288478, - [SMALL_STATE(6358)] = 288502, - [SMALL_STATE(6359)] = 288526, - [SMALL_STATE(6360)] = 288552, - [SMALL_STATE(6361)] = 288576, - [SMALL_STATE(6362)] = 288602, - [SMALL_STATE(6363)] = 288628, - [SMALL_STATE(6364)] = 288652, - [SMALL_STATE(6365)] = 288676, - [SMALL_STATE(6366)] = 288702, - [SMALL_STATE(6367)] = 288728, - [SMALL_STATE(6368)] = 288754, - [SMALL_STATE(6369)] = 288780, - [SMALL_STATE(6370)] = 288804, - [SMALL_STATE(6371)] = 288828, - [SMALL_STATE(6372)] = 288852, - [SMALL_STATE(6373)] = 288876, - [SMALL_STATE(6374)] = 288900, - [SMALL_STATE(6375)] = 288924, - [SMALL_STATE(6376)] = 288948, - [SMALL_STATE(6377)] = 288972, - [SMALL_STATE(6378)] = 288996, - [SMALL_STATE(6379)] = 289020, - [SMALL_STATE(6380)] = 289044, - [SMALL_STATE(6381)] = 289068, - [SMALL_STATE(6382)] = 289092, - [SMALL_STATE(6383)] = 289116, - [SMALL_STATE(6384)] = 289140, - [SMALL_STATE(6385)] = 289166, - [SMALL_STATE(6386)] = 289190, - [SMALL_STATE(6387)] = 289214, - [SMALL_STATE(6388)] = 289238, - [SMALL_STATE(6389)] = 289262, - [SMALL_STATE(6390)] = 289288, - [SMALL_STATE(6391)] = 289312, - [SMALL_STATE(6392)] = 289336, - [SMALL_STATE(6393)] = 289362, - [SMALL_STATE(6394)] = 289386, - [SMALL_STATE(6395)] = 289410, - [SMALL_STATE(6396)] = 289434, - [SMALL_STATE(6397)] = 289455, - [SMALL_STATE(6398)] = 289476, - [SMALL_STATE(6399)] = 289497, - [SMALL_STATE(6400)] = 289518, - [SMALL_STATE(6401)] = 289535, - [SMALL_STATE(6402)] = 289556, - [SMALL_STATE(6403)] = 289577, - [SMALL_STATE(6404)] = 289598, - [SMALL_STATE(6405)] = 289619, - [SMALL_STATE(6406)] = 289640, - [SMALL_STATE(6407)] = 289661, - [SMALL_STATE(6408)] = 289682, - [SMALL_STATE(6409)] = 289699, - [SMALL_STATE(6410)] = 289720, - [SMALL_STATE(6411)] = 289741, - [SMALL_STATE(6412)] = 289760, - [SMALL_STATE(6413)] = 289777, - [SMALL_STATE(6414)] = 289798, - [SMALL_STATE(6415)] = 289819, - [SMALL_STATE(6416)] = 289840, - [SMALL_STATE(6417)] = 289861, - [SMALL_STATE(6418)] = 289882, - [SMALL_STATE(6419)] = 289903, - [SMALL_STATE(6420)] = 289924, - [SMALL_STATE(6421)] = 289945, - [SMALL_STATE(6422)] = 289966, - [SMALL_STATE(6423)] = 289987, - [SMALL_STATE(6424)] = 290008, - [SMALL_STATE(6425)] = 290029, - [SMALL_STATE(6426)] = 290050, - [SMALL_STATE(6427)] = 290067, - [SMALL_STATE(6428)] = 290084, - [SMALL_STATE(6429)] = 290105, - [SMALL_STATE(6430)] = 290126, - [SMALL_STATE(6431)] = 290147, - [SMALL_STATE(6432)] = 290168, - [SMALL_STATE(6433)] = 290189, - [SMALL_STATE(6434)] = 290210, - [SMALL_STATE(6435)] = 290231, - [SMALL_STATE(6436)] = 290252, - [SMALL_STATE(6437)] = 290273, - [SMALL_STATE(6438)] = 290294, - [SMALL_STATE(6439)] = 290315, - [SMALL_STATE(6440)] = 290336, - [SMALL_STATE(6441)] = 290357, - [SMALL_STATE(6442)] = 290378, - [SMALL_STATE(6443)] = 290399, - [SMALL_STATE(6444)] = 290418, - [SMALL_STATE(6445)] = 290437, - [SMALL_STATE(6446)] = 290456, - [SMALL_STATE(6447)] = 290477, - [SMALL_STATE(6448)] = 290498, - [SMALL_STATE(6449)] = 290519, - [SMALL_STATE(6450)] = 290536, - [SMALL_STATE(6451)] = 290557, - [SMALL_STATE(6452)] = 290578, - [SMALL_STATE(6453)] = 290599, - [SMALL_STATE(6454)] = 290620, - [SMALL_STATE(6455)] = 290637, - [SMALL_STATE(6456)] = 290654, - [SMALL_STATE(6457)] = 290675, - [SMALL_STATE(6458)] = 290696, - [SMALL_STATE(6459)] = 290713, - [SMALL_STATE(6460)] = 290734, - [SMALL_STATE(6461)] = 290755, - [SMALL_STATE(6462)] = 290772, - [SMALL_STATE(6463)] = 290793, - [SMALL_STATE(6464)] = 290814, - [SMALL_STATE(6465)] = 290835, - [SMALL_STATE(6466)] = 290856, - [SMALL_STATE(6467)] = 290877, - [SMALL_STATE(6468)] = 290898, - [SMALL_STATE(6469)] = 290919, - [SMALL_STATE(6470)] = 290940, - [SMALL_STATE(6471)] = 290959, - [SMALL_STATE(6472)] = 290976, - [SMALL_STATE(6473)] = 290997, - [SMALL_STATE(6474)] = 291018, - [SMALL_STATE(6475)] = 291039, - [SMALL_STATE(6476)] = 291060, - [SMALL_STATE(6477)] = 291081, - [SMALL_STATE(6478)] = 291102, - [SMALL_STATE(6479)] = 291123, - [SMALL_STATE(6480)] = 291144, - [SMALL_STATE(6481)] = 291165, - [SMALL_STATE(6482)] = 291186, - [SMALL_STATE(6483)] = 291207, - [SMALL_STATE(6484)] = 291228, - [SMALL_STATE(6485)] = 291249, - [SMALL_STATE(6486)] = 291266, - [SMALL_STATE(6487)] = 291287, - [SMALL_STATE(6488)] = 291308, - [SMALL_STATE(6489)] = 291329, - [SMALL_STATE(6490)] = 291350, - [SMALL_STATE(6491)] = 291371, - [SMALL_STATE(6492)] = 291392, - [SMALL_STATE(6493)] = 291413, - [SMALL_STATE(6494)] = 291434, - [SMALL_STATE(6495)] = 291455, - [SMALL_STATE(6496)] = 291476, - [SMALL_STATE(6497)] = 291497, - [SMALL_STATE(6498)] = 291518, - [SMALL_STATE(6499)] = 291535, - [SMALL_STATE(6500)] = 291556, - [SMALL_STATE(6501)] = 291577, - [SMALL_STATE(6502)] = 291598, - [SMALL_STATE(6503)] = 291619, - [SMALL_STATE(6504)] = 291640, - [SMALL_STATE(6505)] = 291661, - [SMALL_STATE(6506)] = 291682, - [SMALL_STATE(6507)] = 291703, - [SMALL_STATE(6508)] = 291724, - [SMALL_STATE(6509)] = 291745, - [SMALL_STATE(6510)] = 291766, - [SMALL_STATE(6511)] = 291787, - [SMALL_STATE(6512)] = 291808, - [SMALL_STATE(6513)] = 291829, - [SMALL_STATE(6514)] = 291850, - [SMALL_STATE(6515)] = 291871, - [SMALL_STATE(6516)] = 291892, - [SMALL_STATE(6517)] = 291913, - [SMALL_STATE(6518)] = 291934, - [SMALL_STATE(6519)] = 291955, - [SMALL_STATE(6520)] = 291972, - [SMALL_STATE(6521)] = 291993, - [SMALL_STATE(6522)] = 292014, - [SMALL_STATE(6523)] = 292035, - [SMALL_STATE(6524)] = 292056, - [SMALL_STATE(6525)] = 292073, - [SMALL_STATE(6526)] = 292094, - [SMALL_STATE(6527)] = 292115, - [SMALL_STATE(6528)] = 292134, - [SMALL_STATE(6529)] = 292155, - [SMALL_STATE(6530)] = 292174, - [SMALL_STATE(6531)] = 292195, - [SMALL_STATE(6532)] = 292214, - [SMALL_STATE(6533)] = 292235, - [SMALL_STATE(6534)] = 292256, - [SMALL_STATE(6535)] = 292275, - [SMALL_STATE(6536)] = 292296, - [SMALL_STATE(6537)] = 292317, - [SMALL_STATE(6538)] = 292338, - [SMALL_STATE(6539)] = 292359, - [SMALL_STATE(6540)] = 292380, - [SMALL_STATE(6541)] = 292399, - [SMALL_STATE(6542)] = 292416, - [SMALL_STATE(6543)] = 292435, - [SMALL_STATE(6544)] = 292456, - [SMALL_STATE(6545)] = 292477, - [SMALL_STATE(6546)] = 292494, - [SMALL_STATE(6547)] = 292515, - [SMALL_STATE(6548)] = 292536, - [SMALL_STATE(6549)] = 292557, - [SMALL_STATE(6550)] = 292578, - [SMALL_STATE(6551)] = 292599, - [SMALL_STATE(6552)] = 292620, - [SMALL_STATE(6553)] = 292641, - [SMALL_STATE(6554)] = 292662, - [SMALL_STATE(6555)] = 292683, - [SMALL_STATE(6556)] = 292700, - [SMALL_STATE(6557)] = 292721, - [SMALL_STATE(6558)] = 292742, - [SMALL_STATE(6559)] = 292763, - [SMALL_STATE(6560)] = 292784, - [SMALL_STATE(6561)] = 292805, - [SMALL_STATE(6562)] = 292822, - [SMALL_STATE(6563)] = 292843, - [SMALL_STATE(6564)] = 292864, - [SMALL_STATE(6565)] = 292885, - [SMALL_STATE(6566)] = 292906, - [SMALL_STATE(6567)] = 292925, - [SMALL_STATE(6568)] = 292946, - [SMALL_STATE(6569)] = 292963, - [SMALL_STATE(6570)] = 292980, - [SMALL_STATE(6571)] = 293001, - [SMALL_STATE(6572)] = 293018, - [SMALL_STATE(6573)] = 293039, - [SMALL_STATE(6574)] = 293060, - [SMALL_STATE(6575)] = 293081, - [SMALL_STATE(6576)] = 293102, - [SMALL_STATE(6577)] = 293119, - [SMALL_STATE(6578)] = 293140, - [SMALL_STATE(6579)] = 293161, - [SMALL_STATE(6580)] = 293182, - [SMALL_STATE(6581)] = 293203, - [SMALL_STATE(6582)] = 293224, - [SMALL_STATE(6583)] = 293245, - [SMALL_STATE(6584)] = 293264, - [SMALL_STATE(6585)] = 293285, - [SMALL_STATE(6586)] = 293306, - [SMALL_STATE(6587)] = 293327, - [SMALL_STATE(6588)] = 293348, - [SMALL_STATE(6589)] = 293369, - [SMALL_STATE(6590)] = 293390, - [SMALL_STATE(6591)] = 293411, - [SMALL_STATE(6592)] = 293432, - [SMALL_STATE(6593)] = 293453, - [SMALL_STATE(6594)] = 293474, - [SMALL_STATE(6595)] = 293495, - [SMALL_STATE(6596)] = 293516, - [SMALL_STATE(6597)] = 293537, - [SMALL_STATE(6598)] = 293558, - [SMALL_STATE(6599)] = 293579, - [SMALL_STATE(6600)] = 293600, - [SMALL_STATE(6601)] = 293621, - [SMALL_STATE(6602)] = 293642, - [SMALL_STATE(6603)] = 293663, - [SMALL_STATE(6604)] = 293684, - [SMALL_STATE(6605)] = 293705, - [SMALL_STATE(6606)] = 293726, - [SMALL_STATE(6607)] = 293743, - [SMALL_STATE(6608)] = 293764, - [SMALL_STATE(6609)] = 293785, - [SMALL_STATE(6610)] = 293802, - [SMALL_STATE(6611)] = 293823, - [SMALL_STATE(6612)] = 293844, - [SMALL_STATE(6613)] = 293865, - [SMALL_STATE(6614)] = 293886, - [SMALL_STATE(6615)] = 293907, - [SMALL_STATE(6616)] = 293928, - [SMALL_STATE(6617)] = 293949, - [SMALL_STATE(6618)] = 293968, - [SMALL_STATE(6619)] = 293985, - [SMALL_STATE(6620)] = 294004, - [SMALL_STATE(6621)] = 294025, - [SMALL_STATE(6622)] = 294044, - [SMALL_STATE(6623)] = 294065, - [SMALL_STATE(6624)] = 294086, - [SMALL_STATE(6625)] = 294103, - [SMALL_STATE(6626)] = 294124, - [SMALL_STATE(6627)] = 294145, - [SMALL_STATE(6628)] = 294166, - [SMALL_STATE(6629)] = 294187, - [SMALL_STATE(6630)] = 294204, - [SMALL_STATE(6631)] = 294225, - [SMALL_STATE(6632)] = 294246, - [SMALL_STATE(6633)] = 294263, - [SMALL_STATE(6634)] = 294284, - [SMALL_STATE(6635)] = 294305, - [SMALL_STATE(6636)] = 294326, - [SMALL_STATE(6637)] = 294345, - [SMALL_STATE(6638)] = 294366, - [SMALL_STATE(6639)] = 294383, - [SMALL_STATE(6640)] = 294404, - [SMALL_STATE(6641)] = 294425, - [SMALL_STATE(6642)] = 294446, - [SMALL_STATE(6643)] = 294467, - [SMALL_STATE(6644)] = 294485, - [SMALL_STATE(6645)] = 294503, - [SMALL_STATE(6646)] = 294521, - [SMALL_STATE(6647)] = 294539, - [SMALL_STATE(6648)] = 294553, - [SMALL_STATE(6649)] = 294571, - [SMALL_STATE(6650)] = 294589, - [SMALL_STATE(6651)] = 294607, - [SMALL_STATE(6652)] = 294625, - [SMALL_STATE(6653)] = 294643, - [SMALL_STATE(6654)] = 294661, - [SMALL_STATE(6655)] = 294679, - [SMALL_STATE(6656)] = 294697, - [SMALL_STATE(6657)] = 294715, - [SMALL_STATE(6658)] = 294733, - [SMALL_STATE(6659)] = 294751, - [SMALL_STATE(6660)] = 294769, - [SMALL_STATE(6661)] = 294787, - [SMALL_STATE(6662)] = 294805, - [SMALL_STATE(6663)] = 294823, - [SMALL_STATE(6664)] = 294841, - [SMALL_STATE(6665)] = 294859, - [SMALL_STATE(6666)] = 294877, - [SMALL_STATE(6667)] = 294895, - [SMALL_STATE(6668)] = 294913, - [SMALL_STATE(6669)] = 294931, - [SMALL_STATE(6670)] = 294949, - [SMALL_STATE(6671)] = 294967, - [SMALL_STATE(6672)] = 294985, - [SMALL_STATE(6673)] = 295003, - [SMALL_STATE(6674)] = 295021, - [SMALL_STATE(6675)] = 295039, - [SMALL_STATE(6676)] = 295057, - [SMALL_STATE(6677)] = 295075, - [SMALL_STATE(6678)] = 295093, - [SMALL_STATE(6679)] = 295111, - [SMALL_STATE(6680)] = 295129, - [SMALL_STATE(6681)] = 295147, - [SMALL_STATE(6682)] = 295165, - [SMALL_STATE(6683)] = 295183, - [SMALL_STATE(6684)] = 295201, - [SMALL_STATE(6685)] = 295219, - [SMALL_STATE(6686)] = 295237, - [SMALL_STATE(6687)] = 295255, - [SMALL_STATE(6688)] = 295273, - [SMALL_STATE(6689)] = 295291, - [SMALL_STATE(6690)] = 295309, - [SMALL_STATE(6691)] = 295327, - [SMALL_STATE(6692)] = 295345, - [SMALL_STATE(6693)] = 295363, - [SMALL_STATE(6694)] = 295381, - [SMALL_STATE(6695)] = 295399, - [SMALL_STATE(6696)] = 295417, - [SMALL_STATE(6697)] = 295435, - [SMALL_STATE(6698)] = 295453, - [SMALL_STATE(6699)] = 295471, - [SMALL_STATE(6700)] = 295489, - [SMALL_STATE(6701)] = 295507, - [SMALL_STATE(6702)] = 295525, - [SMALL_STATE(6703)] = 295543, - [SMALL_STATE(6704)] = 295561, - [SMALL_STATE(6705)] = 295579, - [SMALL_STATE(6706)] = 295597, - [SMALL_STATE(6707)] = 295611, - [SMALL_STATE(6708)] = 295629, - [SMALL_STATE(6709)] = 295643, - [SMALL_STATE(6710)] = 295661, - [SMALL_STATE(6711)] = 295679, - [SMALL_STATE(6712)] = 295697, - [SMALL_STATE(6713)] = 295715, - [SMALL_STATE(6714)] = 295733, - [SMALL_STATE(6715)] = 295751, - [SMALL_STATE(6716)] = 295769, - [SMALL_STATE(6717)] = 295787, - [SMALL_STATE(6718)] = 295805, - [SMALL_STATE(6719)] = 295823, - [SMALL_STATE(6720)] = 295841, - [SMALL_STATE(6721)] = 295859, - [SMALL_STATE(6722)] = 295877, - [SMALL_STATE(6723)] = 295895, - [SMALL_STATE(6724)] = 295913, - [SMALL_STATE(6725)] = 295931, - [SMALL_STATE(6726)] = 295949, - [SMALL_STATE(6727)] = 295967, - [SMALL_STATE(6728)] = 295985, - [SMALL_STATE(6729)] = 296003, - [SMALL_STATE(6730)] = 296021, - [SMALL_STATE(6731)] = 296039, - [SMALL_STATE(6732)] = 296057, - [SMALL_STATE(6733)] = 296075, - [SMALL_STATE(6734)] = 296093, - [SMALL_STATE(6735)] = 296111, - [SMALL_STATE(6736)] = 296129, - [SMALL_STATE(6737)] = 296147, - [SMALL_STATE(6738)] = 296165, - [SMALL_STATE(6739)] = 296183, - [SMALL_STATE(6740)] = 296201, - [SMALL_STATE(6741)] = 296219, - [SMALL_STATE(6742)] = 296237, - [SMALL_STATE(6743)] = 296255, - [SMALL_STATE(6744)] = 296273, - [SMALL_STATE(6745)] = 296291, - [SMALL_STATE(6746)] = 296309, - [SMALL_STATE(6747)] = 296327, - [SMALL_STATE(6748)] = 296345, - [SMALL_STATE(6749)] = 296363, - [SMALL_STATE(6750)] = 296381, - [SMALL_STATE(6751)] = 296399, - [SMALL_STATE(6752)] = 296417, - [SMALL_STATE(6753)] = 296435, - [SMALL_STATE(6754)] = 296453, - [SMALL_STATE(6755)] = 296471, - [SMALL_STATE(6756)] = 296489, - [SMALL_STATE(6757)] = 296507, - [SMALL_STATE(6758)] = 296525, - [SMALL_STATE(6759)] = 296543, - [SMALL_STATE(6760)] = 296561, - [SMALL_STATE(6761)] = 296579, - [SMALL_STATE(6762)] = 296597, - [SMALL_STATE(6763)] = 296615, - [SMALL_STATE(6764)] = 296633, - [SMALL_STATE(6765)] = 296651, - [SMALL_STATE(6766)] = 296669, - [SMALL_STATE(6767)] = 296687, - [SMALL_STATE(6768)] = 296705, - [SMALL_STATE(6769)] = 296723, - [SMALL_STATE(6770)] = 296741, - [SMALL_STATE(6771)] = 296759, - [SMALL_STATE(6772)] = 296777, - [SMALL_STATE(6773)] = 296795, - [SMALL_STATE(6774)] = 296813, - [SMALL_STATE(6775)] = 296831, - [SMALL_STATE(6776)] = 296849, - [SMALL_STATE(6777)] = 296867, - [SMALL_STATE(6778)] = 296885, - [SMALL_STATE(6779)] = 296903, - [SMALL_STATE(6780)] = 296921, - [SMALL_STATE(6781)] = 296939, - [SMALL_STATE(6782)] = 296957, - [SMALL_STATE(6783)] = 296975, - [SMALL_STATE(6784)] = 296993, - [SMALL_STATE(6785)] = 297011, - [SMALL_STATE(6786)] = 297029, - [SMALL_STATE(6787)] = 297047, - [SMALL_STATE(6788)] = 297065, - [SMALL_STATE(6789)] = 297083, - [SMALL_STATE(6790)] = 297101, - [SMALL_STATE(6791)] = 297119, - [SMALL_STATE(6792)] = 297137, - [SMALL_STATE(6793)] = 297155, - [SMALL_STATE(6794)] = 297173, - [SMALL_STATE(6795)] = 297191, - [SMALL_STATE(6796)] = 297209, - [SMALL_STATE(6797)] = 297227, - [SMALL_STATE(6798)] = 297245, - [SMALL_STATE(6799)] = 297263, - [SMALL_STATE(6800)] = 297281, - [SMALL_STATE(6801)] = 297299, - [SMALL_STATE(6802)] = 297317, - [SMALL_STATE(6803)] = 297335, - [SMALL_STATE(6804)] = 297353, - [SMALL_STATE(6805)] = 297371, - [SMALL_STATE(6806)] = 297389, - [SMALL_STATE(6807)] = 297407, - [SMALL_STATE(6808)] = 297425, - [SMALL_STATE(6809)] = 297443, - [SMALL_STATE(6810)] = 297461, - [SMALL_STATE(6811)] = 297479, - [SMALL_STATE(6812)] = 297497, - [SMALL_STATE(6813)] = 297515, - [SMALL_STATE(6814)] = 297533, - [SMALL_STATE(6815)] = 297547, - [SMALL_STATE(6816)] = 297565, - [SMALL_STATE(6817)] = 297583, - [SMALL_STATE(6818)] = 297601, - [SMALL_STATE(6819)] = 297619, - [SMALL_STATE(6820)] = 297637, - [SMALL_STATE(6821)] = 297655, - [SMALL_STATE(6822)] = 297673, - [SMALL_STATE(6823)] = 297691, - [SMALL_STATE(6824)] = 297709, - [SMALL_STATE(6825)] = 297727, - [SMALL_STATE(6826)] = 297745, - [SMALL_STATE(6827)] = 297759, - [SMALL_STATE(6828)] = 297777, - [SMALL_STATE(6829)] = 297791, - [SMALL_STATE(6830)] = 297809, - [SMALL_STATE(6831)] = 297823, - [SMALL_STATE(6832)] = 297841, - [SMALL_STATE(6833)] = 297859, - [SMALL_STATE(6834)] = 297877, - [SMALL_STATE(6835)] = 297895, - [SMALL_STATE(6836)] = 297913, - [SMALL_STATE(6837)] = 297931, - [SMALL_STATE(6838)] = 297949, - [SMALL_STATE(6839)] = 297967, - [SMALL_STATE(6840)] = 297985, - [SMALL_STATE(6841)] = 298003, - [SMALL_STATE(6842)] = 298021, - [SMALL_STATE(6843)] = 298039, - [SMALL_STATE(6844)] = 298057, - [SMALL_STATE(6845)] = 298075, - [SMALL_STATE(6846)] = 298093, - [SMALL_STATE(6847)] = 298111, - [SMALL_STATE(6848)] = 298129, - [SMALL_STATE(6849)] = 298143, - [SMALL_STATE(6850)] = 298161, - [SMALL_STATE(6851)] = 298179, - [SMALL_STATE(6852)] = 298197, - [SMALL_STATE(6853)] = 298215, - [SMALL_STATE(6854)] = 298233, - [SMALL_STATE(6855)] = 298251, - [SMALL_STATE(6856)] = 298269, - [SMALL_STATE(6857)] = 298287, - [SMALL_STATE(6858)] = 298305, - [SMALL_STATE(6859)] = 298323, - [SMALL_STATE(6860)] = 298341, - [SMALL_STATE(6861)] = 298359, - [SMALL_STATE(6862)] = 298377, - [SMALL_STATE(6863)] = 298395, - [SMALL_STATE(6864)] = 298413, - [SMALL_STATE(6865)] = 298431, - [SMALL_STATE(6866)] = 298449, - [SMALL_STATE(6867)] = 298467, - [SMALL_STATE(6868)] = 298485, - [SMALL_STATE(6869)] = 298503, - [SMALL_STATE(6870)] = 298521, - [SMALL_STATE(6871)] = 298539, - [SMALL_STATE(6872)] = 298557, - [SMALL_STATE(6873)] = 298575, - [SMALL_STATE(6874)] = 298593, - [SMALL_STATE(6875)] = 298611, - [SMALL_STATE(6876)] = 298629, - [SMALL_STATE(6877)] = 298647, - [SMALL_STATE(6878)] = 298665, - [SMALL_STATE(6879)] = 298681, - [SMALL_STATE(6880)] = 298699, - [SMALL_STATE(6881)] = 298717, - [SMALL_STATE(6882)] = 298735, - [SMALL_STATE(6883)] = 298753, - [SMALL_STATE(6884)] = 298771, - [SMALL_STATE(6885)] = 298789, - [SMALL_STATE(6886)] = 298807, - [SMALL_STATE(6887)] = 298825, - [SMALL_STATE(6888)] = 298843, - [SMALL_STATE(6889)] = 298861, - [SMALL_STATE(6890)] = 298879, - [SMALL_STATE(6891)] = 298897, - [SMALL_STATE(6892)] = 298915, - [SMALL_STATE(6893)] = 298933, - [SMALL_STATE(6894)] = 298951, - [SMALL_STATE(6895)] = 298969, - [SMALL_STATE(6896)] = 298987, - [SMALL_STATE(6897)] = 299005, - [SMALL_STATE(6898)] = 299023, - [SMALL_STATE(6899)] = 299041, - [SMALL_STATE(6900)] = 299059, - [SMALL_STATE(6901)] = 299077, - [SMALL_STATE(6902)] = 299095, - [SMALL_STATE(6903)] = 299113, - [SMALL_STATE(6904)] = 299131, - [SMALL_STATE(6905)] = 299149, - [SMALL_STATE(6906)] = 299167, - [SMALL_STATE(6907)] = 299185, - [SMALL_STATE(6908)] = 299203, - [SMALL_STATE(6909)] = 299221, - [SMALL_STATE(6910)] = 299239, - [SMALL_STATE(6911)] = 299257, - [SMALL_STATE(6912)] = 299275, - [SMALL_STATE(6913)] = 299293, - [SMALL_STATE(6914)] = 299311, - [SMALL_STATE(6915)] = 299329, - [SMALL_STATE(6916)] = 299343, - [SMALL_STATE(6917)] = 299361, - [SMALL_STATE(6918)] = 299379, - [SMALL_STATE(6919)] = 299397, - [SMALL_STATE(6920)] = 299415, - [SMALL_STATE(6921)] = 299433, - [SMALL_STATE(6922)] = 299449, - [SMALL_STATE(6923)] = 299467, - [SMALL_STATE(6924)] = 299485, - [SMALL_STATE(6925)] = 299503, - [SMALL_STATE(6926)] = 299521, - [SMALL_STATE(6927)] = 299539, - [SMALL_STATE(6928)] = 299557, - [SMALL_STATE(6929)] = 299575, - [SMALL_STATE(6930)] = 299593, - [SMALL_STATE(6931)] = 299611, - [SMALL_STATE(6932)] = 299629, - [SMALL_STATE(6933)] = 299647, - [SMALL_STATE(6934)] = 299665, - [SMALL_STATE(6935)] = 299683, - [SMALL_STATE(6936)] = 299701, - [SMALL_STATE(6937)] = 299719, - [SMALL_STATE(6938)] = 299737, - [SMALL_STATE(6939)] = 299755, - [SMALL_STATE(6940)] = 299773, - [SMALL_STATE(6941)] = 299791, - [SMALL_STATE(6942)] = 299809, - [SMALL_STATE(6943)] = 299827, - [SMALL_STATE(6944)] = 299845, - [SMALL_STATE(6945)] = 299863, - [SMALL_STATE(6946)] = 299881, - [SMALL_STATE(6947)] = 299899, - [SMALL_STATE(6948)] = 299917, - [SMALL_STATE(6949)] = 299935, - [SMALL_STATE(6950)] = 299953, - [SMALL_STATE(6951)] = 299971, - [SMALL_STATE(6952)] = 299989, - [SMALL_STATE(6953)] = 300007, - [SMALL_STATE(6954)] = 300025, - [SMALL_STATE(6955)] = 300043, - [SMALL_STATE(6956)] = 300061, - [SMALL_STATE(6957)] = 300079, - [SMALL_STATE(6958)] = 300097, - [SMALL_STATE(6959)] = 300115, - [SMALL_STATE(6960)] = 300133, - [SMALL_STATE(6961)] = 300149, - [SMALL_STATE(6962)] = 300167, - [SMALL_STATE(6963)] = 300185, - [SMALL_STATE(6964)] = 300203, - [SMALL_STATE(6965)] = 300221, - [SMALL_STATE(6966)] = 300239, - [SMALL_STATE(6967)] = 300257, - [SMALL_STATE(6968)] = 300275, - [SMALL_STATE(6969)] = 300293, - [SMALL_STATE(6970)] = 300311, - [SMALL_STATE(6971)] = 300329, - [SMALL_STATE(6972)] = 300347, - [SMALL_STATE(6973)] = 300365, - [SMALL_STATE(6974)] = 300383, - [SMALL_STATE(6975)] = 300401, - [SMALL_STATE(6976)] = 300419, - [SMALL_STATE(6977)] = 300437, - [SMALL_STATE(6978)] = 300455, - [SMALL_STATE(6979)] = 300473, - [SMALL_STATE(6980)] = 300491, - [SMALL_STATE(6981)] = 300509, - [SMALL_STATE(6982)] = 300527, - [SMALL_STATE(6983)] = 300545, - [SMALL_STATE(6984)] = 300563, - [SMALL_STATE(6985)] = 300581, - [SMALL_STATE(6986)] = 300599, - [SMALL_STATE(6987)] = 300617, - [SMALL_STATE(6988)] = 300635, - [SMALL_STATE(6989)] = 300653, - [SMALL_STATE(6990)] = 300671, - [SMALL_STATE(6991)] = 300689, - [SMALL_STATE(6992)] = 300707, - [SMALL_STATE(6993)] = 300725, - [SMALL_STATE(6994)] = 300743, - [SMALL_STATE(6995)] = 300761, - [SMALL_STATE(6996)] = 300779, - [SMALL_STATE(6997)] = 300797, - [SMALL_STATE(6998)] = 300815, - [SMALL_STATE(6999)] = 300833, - [SMALL_STATE(7000)] = 300851, - [SMALL_STATE(7001)] = 300869, - [SMALL_STATE(7002)] = 300887, - [SMALL_STATE(7003)] = 300905, - [SMALL_STATE(7004)] = 300923, - [SMALL_STATE(7005)] = 300941, - [SMALL_STATE(7006)] = 300959, - [SMALL_STATE(7007)] = 300977, - [SMALL_STATE(7008)] = 300995, - [SMALL_STATE(7009)] = 301013, - [SMALL_STATE(7010)] = 301031, - [SMALL_STATE(7011)] = 301049, - [SMALL_STATE(7012)] = 301067, - [SMALL_STATE(7013)] = 301085, - [SMALL_STATE(7014)] = 301103, - [SMALL_STATE(7015)] = 301121, - [SMALL_STATE(7016)] = 301139, - [SMALL_STATE(7017)] = 301157, - [SMALL_STATE(7018)] = 301175, - [SMALL_STATE(7019)] = 301193, - [SMALL_STATE(7020)] = 301211, - [SMALL_STATE(7021)] = 301229, - [SMALL_STATE(7022)] = 301247, - [SMALL_STATE(7023)] = 301265, - [SMALL_STATE(7024)] = 301279, - [SMALL_STATE(7025)] = 301297, - [SMALL_STATE(7026)] = 301315, - [SMALL_STATE(7027)] = 301333, - [SMALL_STATE(7028)] = 301351, - [SMALL_STATE(7029)] = 301369, - [SMALL_STATE(7030)] = 301387, - [SMALL_STATE(7031)] = 301405, - [SMALL_STATE(7032)] = 301423, - [SMALL_STATE(7033)] = 301441, - [SMALL_STATE(7034)] = 301459, - [SMALL_STATE(7035)] = 301477, - [SMALL_STATE(7036)] = 301495, - [SMALL_STATE(7037)] = 301513, - [SMALL_STATE(7038)] = 301531, - [SMALL_STATE(7039)] = 301547, - [SMALL_STATE(7040)] = 301565, - [SMALL_STATE(7041)] = 301583, - [SMALL_STATE(7042)] = 301601, - [SMALL_STATE(7043)] = 301619, - [SMALL_STATE(7044)] = 301637, - [SMALL_STATE(7045)] = 301653, - [SMALL_STATE(7046)] = 301671, - [SMALL_STATE(7047)] = 301689, - [SMALL_STATE(7048)] = 301707, - [SMALL_STATE(7049)] = 301725, - [SMALL_STATE(7050)] = 301743, - [SMALL_STATE(7051)] = 301761, - [SMALL_STATE(7052)] = 301779, - [SMALL_STATE(7053)] = 301797, - [SMALL_STATE(7054)] = 301815, - [SMALL_STATE(7055)] = 301833, - [SMALL_STATE(7056)] = 301851, - [SMALL_STATE(7057)] = 301869, - [SMALL_STATE(7058)] = 301887, - [SMALL_STATE(7059)] = 301905, - [SMALL_STATE(7060)] = 301923, - [SMALL_STATE(7061)] = 301941, - [SMALL_STATE(7062)] = 301959, - [SMALL_STATE(7063)] = 301977, - [SMALL_STATE(7064)] = 301995, - [SMALL_STATE(7065)] = 302013, - [SMALL_STATE(7066)] = 302031, - [SMALL_STATE(7067)] = 302049, - [SMALL_STATE(7068)] = 302067, - [SMALL_STATE(7069)] = 302085, - [SMALL_STATE(7070)] = 302103, - [SMALL_STATE(7071)] = 302121, - [SMALL_STATE(7072)] = 302139, - [SMALL_STATE(7073)] = 302157, - [SMALL_STATE(7074)] = 302175, - [SMALL_STATE(7075)] = 302193, - [SMALL_STATE(7076)] = 302211, - [SMALL_STATE(7077)] = 302229, - [SMALL_STATE(7078)] = 302247, - [SMALL_STATE(7079)] = 302265, - [SMALL_STATE(7080)] = 302283, - [SMALL_STATE(7081)] = 302301, - [SMALL_STATE(7082)] = 302319, - [SMALL_STATE(7083)] = 302335, - [SMALL_STATE(7084)] = 302353, - [SMALL_STATE(7085)] = 302371, - [SMALL_STATE(7086)] = 302389, - [SMALL_STATE(7087)] = 302405, - [SMALL_STATE(7088)] = 302423, - [SMALL_STATE(7089)] = 302441, - [SMALL_STATE(7090)] = 302455, - [SMALL_STATE(7091)] = 302473, - [SMALL_STATE(7092)] = 302491, - [SMALL_STATE(7093)] = 302509, - [SMALL_STATE(7094)] = 302527, - [SMALL_STATE(7095)] = 302545, - [SMALL_STATE(7096)] = 302563, - [SMALL_STATE(7097)] = 302581, - [SMALL_STATE(7098)] = 302599, - [SMALL_STATE(7099)] = 302617, - [SMALL_STATE(7100)] = 302635, - [SMALL_STATE(7101)] = 302653, - [SMALL_STATE(7102)] = 302671, - [SMALL_STATE(7103)] = 302689, - [SMALL_STATE(7104)] = 302707, - [SMALL_STATE(7105)] = 302725, - [SMALL_STATE(7106)] = 302743, - [SMALL_STATE(7107)] = 302761, - [SMALL_STATE(7108)] = 302779, - [SMALL_STATE(7109)] = 302797, - [SMALL_STATE(7110)] = 302815, - [SMALL_STATE(7111)] = 302833, - [SMALL_STATE(7112)] = 302851, - [SMALL_STATE(7113)] = 302869, - [SMALL_STATE(7114)] = 302887, - [SMALL_STATE(7115)] = 302905, - [SMALL_STATE(7116)] = 302923, - [SMALL_STATE(7117)] = 302941, - [SMALL_STATE(7118)] = 302959, - [SMALL_STATE(7119)] = 302977, - [SMALL_STATE(7120)] = 302995, - [SMALL_STATE(7121)] = 303013, - [SMALL_STATE(7122)] = 303031, - [SMALL_STATE(7123)] = 303049, - [SMALL_STATE(7124)] = 303067, - [SMALL_STATE(7125)] = 303085, - [SMALL_STATE(7126)] = 303103, - [SMALL_STATE(7127)] = 303121, - [SMALL_STATE(7128)] = 303139, - [SMALL_STATE(7129)] = 303157, - [SMALL_STATE(7130)] = 303175, - [SMALL_STATE(7131)] = 303193, - [SMALL_STATE(7132)] = 303211, - [SMALL_STATE(7133)] = 303229, - [SMALL_STATE(7134)] = 303247, - [SMALL_STATE(7135)] = 303265, - [SMALL_STATE(7136)] = 303283, - [SMALL_STATE(7137)] = 303301, - [SMALL_STATE(7138)] = 303319, - [SMALL_STATE(7139)] = 303337, - [SMALL_STATE(7140)] = 303355, - [SMALL_STATE(7141)] = 303373, - [SMALL_STATE(7142)] = 303391, - [SMALL_STATE(7143)] = 303409, - [SMALL_STATE(7144)] = 303427, - [SMALL_STATE(7145)] = 303445, - [SMALL_STATE(7146)] = 303463, - [SMALL_STATE(7147)] = 303481, - [SMALL_STATE(7148)] = 303499, - [SMALL_STATE(7149)] = 303517, - [SMALL_STATE(7150)] = 303535, - [SMALL_STATE(7151)] = 303553, - [SMALL_STATE(7152)] = 303571, - [SMALL_STATE(7153)] = 303589, - [SMALL_STATE(7154)] = 303607, - [SMALL_STATE(7155)] = 303625, - [SMALL_STATE(7156)] = 303643, - [SMALL_STATE(7157)] = 303661, - [SMALL_STATE(7158)] = 303679, - [SMALL_STATE(7159)] = 303697, - [SMALL_STATE(7160)] = 303715, - [SMALL_STATE(7161)] = 303733, - [SMALL_STATE(7162)] = 303751, - [SMALL_STATE(7163)] = 303769, - [SMALL_STATE(7164)] = 303787, - [SMALL_STATE(7165)] = 303805, - [SMALL_STATE(7166)] = 303823, - [SMALL_STATE(7167)] = 303841, - [SMALL_STATE(7168)] = 303859, - [SMALL_STATE(7169)] = 303877, - [SMALL_STATE(7170)] = 303895, - [SMALL_STATE(7171)] = 303913, - [SMALL_STATE(7172)] = 303931, - [SMALL_STATE(7173)] = 303949, - [SMALL_STATE(7174)] = 303965, - [SMALL_STATE(7175)] = 303979, - [SMALL_STATE(7176)] = 303997, - [SMALL_STATE(7177)] = 304015, - [SMALL_STATE(7178)] = 304033, - [SMALL_STATE(7179)] = 304047, - [SMALL_STATE(7180)] = 304065, - [SMALL_STATE(7181)] = 304083, - [SMALL_STATE(7182)] = 304101, - [SMALL_STATE(7183)] = 304119, - [SMALL_STATE(7184)] = 304137, - [SMALL_STATE(7185)] = 304155, - [SMALL_STATE(7186)] = 304173, - [SMALL_STATE(7187)] = 304191, - [SMALL_STATE(7188)] = 304209, - [SMALL_STATE(7189)] = 304227, - [SMALL_STATE(7190)] = 304245, - [SMALL_STATE(7191)] = 304263, - [SMALL_STATE(7192)] = 304281, - [SMALL_STATE(7193)] = 304299, - [SMALL_STATE(7194)] = 304317, - [SMALL_STATE(7195)] = 304335, - [SMALL_STATE(7196)] = 304353, - [SMALL_STATE(7197)] = 304371, - [SMALL_STATE(7198)] = 304389, - [SMALL_STATE(7199)] = 304407, - [SMALL_STATE(7200)] = 304425, - [SMALL_STATE(7201)] = 304443, - [SMALL_STATE(7202)] = 304461, - [SMALL_STATE(7203)] = 304479, - [SMALL_STATE(7204)] = 304497, - [SMALL_STATE(7205)] = 304515, - [SMALL_STATE(7206)] = 304533, - [SMALL_STATE(7207)] = 304551, - [SMALL_STATE(7208)] = 304569, - [SMALL_STATE(7209)] = 304587, - [SMALL_STATE(7210)] = 304605, - [SMALL_STATE(7211)] = 304623, - [SMALL_STATE(7212)] = 304641, - [SMALL_STATE(7213)] = 304659, - [SMALL_STATE(7214)] = 304677, - [SMALL_STATE(7215)] = 304695, - [SMALL_STATE(7216)] = 304713, - [SMALL_STATE(7217)] = 304731, - [SMALL_STATE(7218)] = 304749, - [SMALL_STATE(7219)] = 304767, - [SMALL_STATE(7220)] = 304785, - [SMALL_STATE(7221)] = 304803, - [SMALL_STATE(7222)] = 304821, - [SMALL_STATE(7223)] = 304839, - [SMALL_STATE(7224)] = 304857, - [SMALL_STATE(7225)] = 304875, - [SMALL_STATE(7226)] = 304893, - [SMALL_STATE(7227)] = 304911, - [SMALL_STATE(7228)] = 304929, - [SMALL_STATE(7229)] = 304947, - [SMALL_STATE(7230)] = 304963, - [SMALL_STATE(7231)] = 304981, - [SMALL_STATE(7232)] = 304999, - [SMALL_STATE(7233)] = 305017, - [SMALL_STATE(7234)] = 305035, - [SMALL_STATE(7235)] = 305053, - [SMALL_STATE(7236)] = 305071, - [SMALL_STATE(7237)] = 305089, - [SMALL_STATE(7238)] = 305107, - [SMALL_STATE(7239)] = 305125, - [SMALL_STATE(7240)] = 305143, - [SMALL_STATE(7241)] = 305161, - [SMALL_STATE(7242)] = 305179, - [SMALL_STATE(7243)] = 305195, - [SMALL_STATE(7244)] = 305213, - [SMALL_STATE(7245)] = 305231, - [SMALL_STATE(7246)] = 305249, - [SMALL_STATE(7247)] = 305267, - [SMALL_STATE(7248)] = 305285, - [SMALL_STATE(7249)] = 305303, - [SMALL_STATE(7250)] = 305321, - [SMALL_STATE(7251)] = 305339, - [SMALL_STATE(7252)] = 305357, - [SMALL_STATE(7253)] = 305375, - [SMALL_STATE(7254)] = 305393, - [SMALL_STATE(7255)] = 305411, - [SMALL_STATE(7256)] = 305429, - [SMALL_STATE(7257)] = 305447, - [SMALL_STATE(7258)] = 305463, - [SMALL_STATE(7259)] = 305481, - [SMALL_STATE(7260)] = 305499, - [SMALL_STATE(7261)] = 305517, - [SMALL_STATE(7262)] = 305535, - [SMALL_STATE(7263)] = 305553, - [SMALL_STATE(7264)] = 305571, - [SMALL_STATE(7265)] = 305589, - [SMALL_STATE(7266)] = 305607, - [SMALL_STATE(7267)] = 305625, - [SMALL_STATE(7268)] = 305643, - [SMALL_STATE(7269)] = 305661, - [SMALL_STATE(7270)] = 305679, - [SMALL_STATE(7271)] = 305697, - [SMALL_STATE(7272)] = 305715, - [SMALL_STATE(7273)] = 305733, - [SMALL_STATE(7274)] = 305751, - [SMALL_STATE(7275)] = 305769, - [SMALL_STATE(7276)] = 305787, - [SMALL_STATE(7277)] = 305805, - [SMALL_STATE(7278)] = 305823, - [SMALL_STATE(7279)] = 305841, - [SMALL_STATE(7280)] = 305859, - [SMALL_STATE(7281)] = 305877, - [SMALL_STATE(7282)] = 305895, - [SMALL_STATE(7283)] = 305913, - [SMALL_STATE(7284)] = 305929, - [SMALL_STATE(7285)] = 305947, - [SMALL_STATE(7286)] = 305965, - [SMALL_STATE(7287)] = 305983, - [SMALL_STATE(7288)] = 306001, - [SMALL_STATE(7289)] = 306016, - [SMALL_STATE(7290)] = 306029, - [SMALL_STATE(7291)] = 306042, - [SMALL_STATE(7292)] = 306055, - [SMALL_STATE(7293)] = 306070, - [SMALL_STATE(7294)] = 306085, - [SMALL_STATE(7295)] = 306098, - [SMALL_STATE(7296)] = 306113, - [SMALL_STATE(7297)] = 306128, - [SMALL_STATE(7298)] = 306143, - [SMALL_STATE(7299)] = 306156, - [SMALL_STATE(7300)] = 306171, - [SMALL_STATE(7301)] = 306186, - [SMALL_STATE(7302)] = 306199, - [SMALL_STATE(7303)] = 306214, - [SMALL_STATE(7304)] = 306229, - [SMALL_STATE(7305)] = 306244, - [SMALL_STATE(7306)] = 306259, - [SMALL_STATE(7307)] = 306274, - [SMALL_STATE(7308)] = 306289, - [SMALL_STATE(7309)] = 306302, - [SMALL_STATE(7310)] = 306317, - [SMALL_STATE(7311)] = 306332, - [SMALL_STATE(7312)] = 306347, - [SMALL_STATE(7313)] = 306362, - [SMALL_STATE(7314)] = 306377, - [SMALL_STATE(7315)] = 306392, - [SMALL_STATE(7316)] = 306407, - [SMALL_STATE(7317)] = 306422, - [SMALL_STATE(7318)] = 306437, - [SMALL_STATE(7319)] = 306452, - [SMALL_STATE(7320)] = 306467, - [SMALL_STATE(7321)] = 306482, - [SMALL_STATE(7322)] = 306497, - [SMALL_STATE(7323)] = 306510, - [SMALL_STATE(7324)] = 306525, - [SMALL_STATE(7325)] = 306540, - [SMALL_STATE(7326)] = 306555, - [SMALL_STATE(7327)] = 306570, - [SMALL_STATE(7328)] = 306585, - [SMALL_STATE(7329)] = 306600, - [SMALL_STATE(7330)] = 306615, - [SMALL_STATE(7331)] = 306630, - [SMALL_STATE(7332)] = 306643, - [SMALL_STATE(7333)] = 306658, - [SMALL_STATE(7334)] = 306673, - [SMALL_STATE(7335)] = 306688, - [SMALL_STATE(7336)] = 306703, - [SMALL_STATE(7337)] = 306718, - [SMALL_STATE(7338)] = 306733, - [SMALL_STATE(7339)] = 306748, - [SMALL_STATE(7340)] = 306761, - [SMALL_STATE(7341)] = 306776, - [SMALL_STATE(7342)] = 306791, - [SMALL_STATE(7343)] = 306806, - [SMALL_STATE(7344)] = 306821, - [SMALL_STATE(7345)] = 306836, - [SMALL_STATE(7346)] = 306851, - [SMALL_STATE(7347)] = 306866, - [SMALL_STATE(7348)] = 306881, - [SMALL_STATE(7349)] = 306896, - [SMALL_STATE(7350)] = 306911, - [SMALL_STATE(7351)] = 306926, - [SMALL_STATE(7352)] = 306941, - [SMALL_STATE(7353)] = 306956, - [SMALL_STATE(7354)] = 306971, - [SMALL_STATE(7355)] = 306986, - [SMALL_STATE(7356)] = 307001, - [SMALL_STATE(7357)] = 307016, - [SMALL_STATE(7358)] = 307031, - [SMALL_STATE(7359)] = 307044, - [SMALL_STATE(7360)] = 307057, - [SMALL_STATE(7361)] = 307072, - [SMALL_STATE(7362)] = 307087, - [SMALL_STATE(7363)] = 307102, - [SMALL_STATE(7364)] = 307117, - [SMALL_STATE(7365)] = 307132, - [SMALL_STATE(7366)] = 307147, - [SMALL_STATE(7367)] = 307162, - [SMALL_STATE(7368)] = 307175, - [SMALL_STATE(7369)] = 307190, - [SMALL_STATE(7370)] = 307205, - [SMALL_STATE(7371)] = 307220, - [SMALL_STATE(7372)] = 307235, - [SMALL_STATE(7373)] = 307250, - [SMALL_STATE(7374)] = 307265, - [SMALL_STATE(7375)] = 307280, - [SMALL_STATE(7376)] = 307295, - [SMALL_STATE(7377)] = 307310, - [SMALL_STATE(7378)] = 307323, - [SMALL_STATE(7379)] = 307338, - [SMALL_STATE(7380)] = 307351, - [SMALL_STATE(7381)] = 307364, - [SMALL_STATE(7382)] = 307377, - [SMALL_STATE(7383)] = 307392, - [SMALL_STATE(7384)] = 307407, - [SMALL_STATE(7385)] = 307419, - [SMALL_STATE(7386)] = 307431, - [SMALL_STATE(7387)] = 307443, - [SMALL_STATE(7388)] = 307455, - [SMALL_STATE(7389)] = 307467, - [SMALL_STATE(7390)] = 307479, - [SMALL_STATE(7391)] = 307491, - [SMALL_STATE(7392)] = 307503, - [SMALL_STATE(7393)] = 307515, - [SMALL_STATE(7394)] = 307527, - [SMALL_STATE(7395)] = 307539, - [SMALL_STATE(7396)] = 307551, - [SMALL_STATE(7397)] = 307563, - [SMALL_STATE(7398)] = 307575, - [SMALL_STATE(7399)] = 307587, - [SMALL_STATE(7400)] = 307599, - [SMALL_STATE(7401)] = 307611, - [SMALL_STATE(7402)] = 307623, - [SMALL_STATE(7403)] = 307635, - [SMALL_STATE(7404)] = 307647, - [SMALL_STATE(7405)] = 307659, - [SMALL_STATE(7406)] = 307671, - [SMALL_STATE(7407)] = 307683, - [SMALL_STATE(7408)] = 307695, - [SMALL_STATE(7409)] = 307707, - [SMALL_STATE(7410)] = 307719, - [SMALL_STATE(7411)] = 307731, - [SMALL_STATE(7412)] = 307743, - [SMALL_STATE(7413)] = 307755, - [SMALL_STATE(7414)] = 307767, - [SMALL_STATE(7415)] = 307779, - [SMALL_STATE(7416)] = 307791, - [SMALL_STATE(7417)] = 307803, - [SMALL_STATE(7418)] = 307815, - [SMALL_STATE(7419)] = 307827, - [SMALL_STATE(7420)] = 307839, - [SMALL_STATE(7421)] = 307851, - [SMALL_STATE(7422)] = 307863, - [SMALL_STATE(7423)] = 307875, - [SMALL_STATE(7424)] = 307887, - [SMALL_STATE(7425)] = 307899, - [SMALL_STATE(7426)] = 307911, - [SMALL_STATE(7427)] = 307923, - [SMALL_STATE(7428)] = 307935, - [SMALL_STATE(7429)] = 307947, - [SMALL_STATE(7430)] = 307959, - [SMALL_STATE(7431)] = 307971, - [SMALL_STATE(7432)] = 307983, - [SMALL_STATE(7433)] = 307995, - [SMALL_STATE(7434)] = 308007, - [SMALL_STATE(7435)] = 308019, - [SMALL_STATE(7436)] = 308031, - [SMALL_STATE(7437)] = 308043, - [SMALL_STATE(7438)] = 308055, - [SMALL_STATE(7439)] = 308067, - [SMALL_STATE(7440)] = 308079, - [SMALL_STATE(7441)] = 308091, - [SMALL_STATE(7442)] = 308103, - [SMALL_STATE(7443)] = 308115, - [SMALL_STATE(7444)] = 308127, - [SMALL_STATE(7445)] = 308139, - [SMALL_STATE(7446)] = 308151, - [SMALL_STATE(7447)] = 308163, - [SMALL_STATE(7448)] = 308175, - [SMALL_STATE(7449)] = 308187, - [SMALL_STATE(7450)] = 308199, - [SMALL_STATE(7451)] = 308211, - [SMALL_STATE(7452)] = 308223, - [SMALL_STATE(7453)] = 308235, - [SMALL_STATE(7454)] = 308247, - [SMALL_STATE(7455)] = 308259, - [SMALL_STATE(7456)] = 308271, - [SMALL_STATE(7457)] = 308283, - [SMALL_STATE(7458)] = 308295, - [SMALL_STATE(7459)] = 308307, - [SMALL_STATE(7460)] = 308319, - [SMALL_STATE(7461)] = 308331, - [SMALL_STATE(7462)] = 308343, - [SMALL_STATE(7463)] = 308355, - [SMALL_STATE(7464)] = 308367, - [SMALL_STATE(7465)] = 308379, - [SMALL_STATE(7466)] = 308391, - [SMALL_STATE(7467)] = 308403, - [SMALL_STATE(7468)] = 308415, - [SMALL_STATE(7469)] = 308427, - [SMALL_STATE(7470)] = 308439, - [SMALL_STATE(7471)] = 308451, - [SMALL_STATE(7472)] = 308463, - [SMALL_STATE(7473)] = 308475, - [SMALL_STATE(7474)] = 308487, - [SMALL_STATE(7475)] = 308499, - [SMALL_STATE(7476)] = 308511, - [SMALL_STATE(7477)] = 308523, - [SMALL_STATE(7478)] = 308535, - [SMALL_STATE(7479)] = 308547, - [SMALL_STATE(7480)] = 308559, - [SMALL_STATE(7481)] = 308571, - [SMALL_STATE(7482)] = 308583, - [SMALL_STATE(7483)] = 308595, - [SMALL_STATE(7484)] = 308607, - [SMALL_STATE(7485)] = 308619, - [SMALL_STATE(7486)] = 308631, - [SMALL_STATE(7487)] = 308643, - [SMALL_STATE(7488)] = 308655, - [SMALL_STATE(7489)] = 308667, - [SMALL_STATE(7490)] = 308679, - [SMALL_STATE(7491)] = 308691, - [SMALL_STATE(7492)] = 308703, - [SMALL_STATE(7493)] = 308715, - [SMALL_STATE(7494)] = 308727, - [SMALL_STATE(7495)] = 308739, - [SMALL_STATE(7496)] = 308751, - [SMALL_STATE(7497)] = 308763, - [SMALL_STATE(7498)] = 308775, - [SMALL_STATE(7499)] = 308787, - [SMALL_STATE(7500)] = 308799, - [SMALL_STATE(7501)] = 308811, - [SMALL_STATE(7502)] = 308823, - [SMALL_STATE(7503)] = 308835, - [SMALL_STATE(7504)] = 308847, - [SMALL_STATE(7505)] = 308859, - [SMALL_STATE(7506)] = 308871, - [SMALL_STATE(7507)] = 308883, - [SMALL_STATE(7508)] = 308895, - [SMALL_STATE(7509)] = 308907, - [SMALL_STATE(7510)] = 308919, - [SMALL_STATE(7511)] = 308931, - [SMALL_STATE(7512)] = 308943, - [SMALL_STATE(7513)] = 308955, - [SMALL_STATE(7514)] = 308967, - [SMALL_STATE(7515)] = 308979, - [SMALL_STATE(7516)] = 308991, - [SMALL_STATE(7517)] = 309003, - [SMALL_STATE(7518)] = 309015, - [SMALL_STATE(7519)] = 309027, - [SMALL_STATE(7520)] = 309039, - [SMALL_STATE(7521)] = 309051, - [SMALL_STATE(7522)] = 309063, - [SMALL_STATE(7523)] = 309075, - [SMALL_STATE(7524)] = 309087, - [SMALL_STATE(7525)] = 309099, - [SMALL_STATE(7526)] = 309111, - [SMALL_STATE(7527)] = 309123, - [SMALL_STATE(7528)] = 309135, - [SMALL_STATE(7529)] = 309147, - [SMALL_STATE(7530)] = 309159, - [SMALL_STATE(7531)] = 309171, - [SMALL_STATE(7532)] = 309183, - [SMALL_STATE(7533)] = 309195, - [SMALL_STATE(7534)] = 309207, - [SMALL_STATE(7535)] = 309219, - [SMALL_STATE(7536)] = 309231, - [SMALL_STATE(7537)] = 309243, - [SMALL_STATE(7538)] = 309255, - [SMALL_STATE(7539)] = 309267, - [SMALL_STATE(7540)] = 309279, - [SMALL_STATE(7541)] = 309291, - [SMALL_STATE(7542)] = 309303, - [SMALL_STATE(7543)] = 309315, - [SMALL_STATE(7544)] = 309327, - [SMALL_STATE(7545)] = 309339, - [SMALL_STATE(7546)] = 309351, - [SMALL_STATE(7547)] = 309363, - [SMALL_STATE(7548)] = 309375, + [SMALL_STATE(5094)] = 257093, + [SMALL_STATE(5095)] = 257116, + [SMALL_STATE(5096)] = 257139, + [SMALL_STATE(5097)] = 257162, + [SMALL_STATE(5098)] = 257185, + [SMALL_STATE(5099)] = 257208, + [SMALL_STATE(5100)] = 257231, + [SMALL_STATE(5101)] = 257254, + [SMALL_STATE(5102)] = 257277, + [SMALL_STATE(5103)] = 257300, + [SMALL_STATE(5104)] = 257323, + [SMALL_STATE(5105)] = 257346, + [SMALL_STATE(5106)] = 257369, + [SMALL_STATE(5107)] = 257392, + [SMALL_STATE(5108)] = 257415, + [SMALL_STATE(5109)] = 257438, + [SMALL_STATE(5110)] = 257456, + [SMALL_STATE(5111)] = 257474, + [SMALL_STATE(5112)] = 257494, + [SMALL_STATE(5113)] = 257514, + [SMALL_STATE(5114)] = 257532, + [SMALL_STATE(5115)] = 257552, + [SMALL_STATE(5116)] = 257579, + [SMALL_STATE(5117)] = 257606, + [SMALL_STATE(5118)] = 257633, + [SMALL_STATE(5119)] = 257660, + [SMALL_STATE(5120)] = 257687, + [SMALL_STATE(5121)] = 257714, + [SMALL_STATE(5122)] = 257741, + [SMALL_STATE(5123)] = 257768, + [SMALL_STATE(5124)] = 257795, + [SMALL_STATE(5125)] = 257822, + [SMALL_STATE(5126)] = 257849, + [SMALL_STATE(5127)] = 257876, + [SMALL_STATE(5128)] = 257903, + [SMALL_STATE(5129)] = 257930, + [SMALL_STATE(5130)] = 257957, + [SMALL_STATE(5131)] = 257984, + [SMALL_STATE(5132)] = 258011, + [SMALL_STATE(5133)] = 258038, + [SMALL_STATE(5134)] = 258065, + [SMALL_STATE(5135)] = 258092, + [SMALL_STATE(5136)] = 258119, + [SMALL_STATE(5137)] = 258146, + [SMALL_STATE(5138)] = 258173, + [SMALL_STATE(5139)] = 258200, + [SMALL_STATE(5140)] = 258227, + [SMALL_STATE(5141)] = 258254, + [SMALL_STATE(5142)] = 258281, + [SMALL_STATE(5143)] = 258308, + [SMALL_STATE(5144)] = 258335, + [SMALL_STATE(5145)] = 258362, + [SMALL_STATE(5146)] = 258389, + [SMALL_STATE(5147)] = 258416, + [SMALL_STATE(5148)] = 258443, + [SMALL_STATE(5149)] = 258470, + [SMALL_STATE(5150)] = 258497, + [SMALL_STATE(5151)] = 258524, + [SMALL_STATE(5152)] = 258551, + [SMALL_STATE(5153)] = 258578, + [SMALL_STATE(5154)] = 258605, + [SMALL_STATE(5155)] = 258632, + [SMALL_STATE(5156)] = 258659, + [SMALL_STATE(5157)] = 258686, + [SMALL_STATE(5158)] = 258713, + [SMALL_STATE(5159)] = 258740, + [SMALL_STATE(5160)] = 258767, + [SMALL_STATE(5161)] = 258794, + [SMALL_STATE(5162)] = 258821, + [SMALL_STATE(5163)] = 258848, + [SMALL_STATE(5164)] = 258875, + [SMALL_STATE(5165)] = 258902, + [SMALL_STATE(5166)] = 258929, + [SMALL_STATE(5167)] = 258956, + [SMALL_STATE(5168)] = 258983, + [SMALL_STATE(5169)] = 259010, + [SMALL_STATE(5170)] = 259037, + [SMALL_STATE(5171)] = 259064, + [SMALL_STATE(5172)] = 259091, + [SMALL_STATE(5173)] = 259118, + [SMALL_STATE(5174)] = 259145, + [SMALL_STATE(5175)] = 259172, + [SMALL_STATE(5176)] = 259199, + [SMALL_STATE(5177)] = 259226, + [SMALL_STATE(5178)] = 259253, + [SMALL_STATE(5179)] = 259280, + [SMALL_STATE(5180)] = 259307, + [SMALL_STATE(5181)] = 259334, + [SMALL_STATE(5182)] = 259361, + [SMALL_STATE(5183)] = 259388, + [SMALL_STATE(5184)] = 259415, + [SMALL_STATE(5185)] = 259442, + [SMALL_STATE(5186)] = 259469, + [SMALL_STATE(5187)] = 259496, + [SMALL_STATE(5188)] = 259523, + [SMALL_STATE(5189)] = 259550, + [SMALL_STATE(5190)] = 259577, + [SMALL_STATE(5191)] = 259604, + [SMALL_STATE(5192)] = 259631, + [SMALL_STATE(5193)] = 259658, + [SMALL_STATE(5194)] = 259685, + [SMALL_STATE(5195)] = 259712, + [SMALL_STATE(5196)] = 259739, + [SMALL_STATE(5197)] = 259766, + [SMALL_STATE(5198)] = 259793, + [SMALL_STATE(5199)] = 259820, + [SMALL_STATE(5200)] = 259847, + [SMALL_STATE(5201)] = 259874, + [SMALL_STATE(5202)] = 259901, + [SMALL_STATE(5203)] = 259928, + [SMALL_STATE(5204)] = 259955, + [SMALL_STATE(5205)] = 259982, + [SMALL_STATE(5206)] = 260009, + [SMALL_STATE(5207)] = 260036, + [SMALL_STATE(5208)] = 260063, + [SMALL_STATE(5209)] = 260090, + [SMALL_STATE(5210)] = 260117, + [SMALL_STATE(5211)] = 260144, + [SMALL_STATE(5212)] = 260171, + [SMALL_STATE(5213)] = 260198, + [SMALL_STATE(5214)] = 260225, + [SMALL_STATE(5215)] = 260252, + [SMALL_STATE(5216)] = 260279, + [SMALL_STATE(5217)] = 260306, + [SMALL_STATE(5218)] = 260333, + [SMALL_STATE(5219)] = 260360, + [SMALL_STATE(5220)] = 260387, + [SMALL_STATE(5221)] = 260414, + [SMALL_STATE(5222)] = 260441, + [SMALL_STATE(5223)] = 260468, + [SMALL_STATE(5224)] = 260495, + [SMALL_STATE(5225)] = 260522, + [SMALL_STATE(5226)] = 260549, + [SMALL_STATE(5227)] = 260576, + [SMALL_STATE(5228)] = 260603, + [SMALL_STATE(5229)] = 260630, + [SMALL_STATE(5230)] = 260657, + [SMALL_STATE(5231)] = 260684, + [SMALL_STATE(5232)] = 260711, + [SMALL_STATE(5233)] = 260738, + [SMALL_STATE(5234)] = 260765, + [SMALL_STATE(5235)] = 260792, + [SMALL_STATE(5236)] = 260819, + [SMALL_STATE(5237)] = 260846, + [SMALL_STATE(5238)] = 260873, + [SMALL_STATE(5239)] = 260900, + [SMALL_STATE(5240)] = 260927, + [SMALL_STATE(5241)] = 260954, + [SMALL_STATE(5242)] = 260981, + [SMALL_STATE(5243)] = 261008, + [SMALL_STATE(5244)] = 261035, + [SMALL_STATE(5245)] = 261062, + [SMALL_STATE(5246)] = 261089, + [SMALL_STATE(5247)] = 261116, + [SMALL_STATE(5248)] = 261143, + [SMALL_STATE(5249)] = 261170, + [SMALL_STATE(5250)] = 261197, + [SMALL_STATE(5251)] = 261224, + [SMALL_STATE(5252)] = 261251, + [SMALL_STATE(5253)] = 261278, + [SMALL_STATE(5254)] = 261305, + [SMALL_STATE(5255)] = 261332, + [SMALL_STATE(5256)] = 261359, + [SMALL_STATE(5257)] = 261386, + [SMALL_STATE(5258)] = 261413, + [SMALL_STATE(5259)] = 261440, + [SMALL_STATE(5260)] = 261467, + [SMALL_STATE(5261)] = 261494, + [SMALL_STATE(5262)] = 261521, + [SMALL_STATE(5263)] = 261548, + [SMALL_STATE(5264)] = 261575, + [SMALL_STATE(5265)] = 261602, + [SMALL_STATE(5266)] = 261629, + [SMALL_STATE(5267)] = 261656, + [SMALL_STATE(5268)] = 261683, + [SMALL_STATE(5269)] = 261710, + [SMALL_STATE(5270)] = 261737, + [SMALL_STATE(5271)] = 261764, + [SMALL_STATE(5272)] = 261791, + [SMALL_STATE(5273)] = 261818, + [SMALL_STATE(5274)] = 261845, + [SMALL_STATE(5275)] = 261872, + [SMALL_STATE(5276)] = 261899, + [SMALL_STATE(5277)] = 261926, + [SMALL_STATE(5278)] = 261953, + [SMALL_STATE(5279)] = 261980, + [SMALL_STATE(5280)] = 262007, + [SMALL_STATE(5281)] = 262034, + [SMALL_STATE(5282)] = 262061, + [SMALL_STATE(5283)] = 262088, + [SMALL_STATE(5284)] = 262115, + [SMALL_STATE(5285)] = 262142, + [SMALL_STATE(5286)] = 262169, + [SMALL_STATE(5287)] = 262196, + [SMALL_STATE(5288)] = 262223, + [SMALL_STATE(5289)] = 262250, + [SMALL_STATE(5290)] = 262277, + [SMALL_STATE(5291)] = 262304, + [SMALL_STATE(5292)] = 262331, + [SMALL_STATE(5293)] = 262358, + [SMALL_STATE(5294)] = 262385, + [SMALL_STATE(5295)] = 262412, + [SMALL_STATE(5296)] = 262439, + [SMALL_STATE(5297)] = 262466, + [SMALL_STATE(5298)] = 262493, + [SMALL_STATE(5299)] = 262520, + [SMALL_STATE(5300)] = 262547, + [SMALL_STATE(5301)] = 262574, + [SMALL_STATE(5302)] = 262601, + [SMALL_STATE(5303)] = 262628, + [SMALL_STATE(5304)] = 262655, + [SMALL_STATE(5305)] = 262682, + [SMALL_STATE(5306)] = 262709, + [SMALL_STATE(5307)] = 262736, + [SMALL_STATE(5308)] = 262763, + [SMALL_STATE(5309)] = 262790, + [SMALL_STATE(5310)] = 262817, + [SMALL_STATE(5311)] = 262844, + [SMALL_STATE(5312)] = 262871, + [SMALL_STATE(5313)] = 262898, + [SMALL_STATE(5314)] = 262925, + [SMALL_STATE(5315)] = 262952, + [SMALL_STATE(5316)] = 262979, + [SMALL_STATE(5317)] = 263006, + [SMALL_STATE(5318)] = 263033, + [SMALL_STATE(5319)] = 263060, + [SMALL_STATE(5320)] = 263087, + [SMALL_STATE(5321)] = 263114, + [SMALL_STATE(5322)] = 263141, + [SMALL_STATE(5323)] = 263168, + [SMALL_STATE(5324)] = 263195, + [SMALL_STATE(5325)] = 263222, + [SMALL_STATE(5326)] = 263249, + [SMALL_STATE(5327)] = 263276, + [SMALL_STATE(5328)] = 263303, + [SMALL_STATE(5329)] = 263330, + [SMALL_STATE(5330)] = 263357, + [SMALL_STATE(5331)] = 263384, + [SMALL_STATE(5332)] = 263411, + [SMALL_STATE(5333)] = 263438, + [SMALL_STATE(5334)] = 263465, + [SMALL_STATE(5335)] = 263492, + [SMALL_STATE(5336)] = 263519, + [SMALL_STATE(5337)] = 263546, + [SMALL_STATE(5338)] = 263573, + [SMALL_STATE(5339)] = 263600, + [SMALL_STATE(5340)] = 263627, + [SMALL_STATE(5341)] = 263654, + [SMALL_STATE(5342)] = 263681, + [SMALL_STATE(5343)] = 263708, + [SMALL_STATE(5344)] = 263735, + [SMALL_STATE(5345)] = 263762, + [SMALL_STATE(5346)] = 263789, + [SMALL_STATE(5347)] = 263816, + [SMALL_STATE(5348)] = 263843, + [SMALL_STATE(5349)] = 263870, + [SMALL_STATE(5350)] = 263897, + [SMALL_STATE(5351)] = 263924, + [SMALL_STATE(5352)] = 263951, + [SMALL_STATE(5353)] = 263978, + [SMALL_STATE(5354)] = 264005, + [SMALL_STATE(5355)] = 264032, + [SMALL_STATE(5356)] = 264059, + [SMALL_STATE(5357)] = 264086, + [SMALL_STATE(5358)] = 264113, + [SMALL_STATE(5359)] = 264140, + [SMALL_STATE(5360)] = 264167, + [SMALL_STATE(5361)] = 264194, + [SMALL_STATE(5362)] = 264221, + [SMALL_STATE(5363)] = 264248, + [SMALL_STATE(5364)] = 264275, + [SMALL_STATE(5365)] = 264302, + [SMALL_STATE(5366)] = 264329, + [SMALL_STATE(5367)] = 264356, + [SMALL_STATE(5368)] = 264383, + [SMALL_STATE(5369)] = 264410, + [SMALL_STATE(5370)] = 264437, + [SMALL_STATE(5371)] = 264464, + [SMALL_STATE(5372)] = 264491, + [SMALL_STATE(5373)] = 264518, + [SMALL_STATE(5374)] = 264545, + [SMALL_STATE(5375)] = 264572, + [SMALL_STATE(5376)] = 264599, + [SMALL_STATE(5377)] = 264626, + [SMALL_STATE(5378)] = 264653, + [SMALL_STATE(5379)] = 264680, + [SMALL_STATE(5380)] = 264707, + [SMALL_STATE(5381)] = 264734, + [SMALL_STATE(5382)] = 264761, + [SMALL_STATE(5383)] = 264788, + [SMALL_STATE(5384)] = 264815, + [SMALL_STATE(5385)] = 264842, + [SMALL_STATE(5386)] = 264869, + [SMALL_STATE(5387)] = 264896, + [SMALL_STATE(5388)] = 264920, + [SMALL_STATE(5389)] = 264944, + [SMALL_STATE(5390)] = 264968, + [SMALL_STATE(5391)] = 264992, + [SMALL_STATE(5392)] = 265016, + [SMALL_STATE(5393)] = 265040, + [SMALL_STATE(5394)] = 265064, + [SMALL_STATE(5395)] = 265088, + [SMALL_STATE(5396)] = 265112, + [SMALL_STATE(5397)] = 265136, + [SMALL_STATE(5398)] = 265160, + [SMALL_STATE(5399)] = 265184, + [SMALL_STATE(5400)] = 265208, + [SMALL_STATE(5401)] = 265234, + [SMALL_STATE(5402)] = 265258, + [SMALL_STATE(5403)] = 265282, + [SMALL_STATE(5404)] = 265306, + [SMALL_STATE(5405)] = 265330, + [SMALL_STATE(5406)] = 265354, + [SMALL_STATE(5407)] = 265378, + [SMALL_STATE(5408)] = 265402, + [SMALL_STATE(5409)] = 265426, + [SMALL_STATE(5410)] = 265450, + [SMALL_STATE(5411)] = 265474, + [SMALL_STATE(5412)] = 265498, + [SMALL_STATE(5413)] = 265522, + [SMALL_STATE(5414)] = 265546, + [SMALL_STATE(5415)] = 265570, + [SMALL_STATE(5416)] = 265594, + [SMALL_STATE(5417)] = 265618, + [SMALL_STATE(5418)] = 265642, + [SMALL_STATE(5419)] = 265668, + [SMALL_STATE(5420)] = 265692, + [SMALL_STATE(5421)] = 265716, + [SMALL_STATE(5422)] = 265740, + [SMALL_STATE(5423)] = 265764, + [SMALL_STATE(5424)] = 265788, + [SMALL_STATE(5425)] = 265812, + [SMALL_STATE(5426)] = 265836, + [SMALL_STATE(5427)] = 265860, + [SMALL_STATE(5428)] = 265884, + [SMALL_STATE(5429)] = 265910, + [SMALL_STATE(5430)] = 265934, + [SMALL_STATE(5431)] = 265960, + [SMALL_STATE(5432)] = 265986, + [SMALL_STATE(5433)] = 266012, + [SMALL_STATE(5434)] = 266036, + [SMALL_STATE(5435)] = 266060, + [SMALL_STATE(5436)] = 266084, + [SMALL_STATE(5437)] = 266108, + [SMALL_STATE(5438)] = 266134, + [SMALL_STATE(5439)] = 266160, + [SMALL_STATE(5440)] = 266186, + [SMALL_STATE(5441)] = 266212, + [SMALL_STATE(5442)] = 266238, + [SMALL_STATE(5443)] = 266264, + [SMALL_STATE(5444)] = 266288, + [SMALL_STATE(5445)] = 266314, + [SMALL_STATE(5446)] = 266340, + [SMALL_STATE(5447)] = 266364, + [SMALL_STATE(5448)] = 266388, + [SMALL_STATE(5449)] = 266412, + [SMALL_STATE(5450)] = 266436, + [SMALL_STATE(5451)] = 266460, + [SMALL_STATE(5452)] = 266484, + [SMALL_STATE(5453)] = 266508, + [SMALL_STATE(5454)] = 266532, + [SMALL_STATE(5455)] = 266556, + [SMALL_STATE(5456)] = 266580, + [SMALL_STATE(5457)] = 266604, + [SMALL_STATE(5458)] = 266628, + [SMALL_STATE(5459)] = 266654, + [SMALL_STATE(5460)] = 266674, + [SMALL_STATE(5461)] = 266698, + [SMALL_STATE(5462)] = 266722, + [SMALL_STATE(5463)] = 266746, + [SMALL_STATE(5464)] = 266770, + [SMALL_STATE(5465)] = 266794, + [SMALL_STATE(5466)] = 266814, + [SMALL_STATE(5467)] = 266838, + [SMALL_STATE(5468)] = 266862, + [SMALL_STATE(5469)] = 266886, + [SMALL_STATE(5470)] = 266910, + [SMALL_STATE(5471)] = 266934, + [SMALL_STATE(5472)] = 266958, + [SMALL_STATE(5473)] = 266982, + [SMALL_STATE(5474)] = 267008, + [SMALL_STATE(5475)] = 267032, + [SMALL_STATE(5476)] = 267058, + [SMALL_STATE(5477)] = 267082, + [SMALL_STATE(5478)] = 267108, + [SMALL_STATE(5479)] = 267132, + [SMALL_STATE(5480)] = 267156, + [SMALL_STATE(5481)] = 267182, + [SMALL_STATE(5482)] = 267206, + [SMALL_STATE(5483)] = 267230, + [SMALL_STATE(5484)] = 267254, + [SMALL_STATE(5485)] = 267278, + [SMALL_STATE(5486)] = 267302, + [SMALL_STATE(5487)] = 267326, + [SMALL_STATE(5488)] = 267350, + [SMALL_STATE(5489)] = 267374, + [SMALL_STATE(5490)] = 267398, + [SMALL_STATE(5491)] = 267422, + [SMALL_STATE(5492)] = 267448, + [SMALL_STATE(5493)] = 267472, + [SMALL_STATE(5494)] = 267496, + [SMALL_STATE(5495)] = 267522, + [SMALL_STATE(5496)] = 267548, + [SMALL_STATE(5497)] = 267574, + [SMALL_STATE(5498)] = 267598, + [SMALL_STATE(5499)] = 267622, + [SMALL_STATE(5500)] = 267646, + [SMALL_STATE(5501)] = 267670, + [SMALL_STATE(5502)] = 267694, + [SMALL_STATE(5503)] = 267718, + [SMALL_STATE(5504)] = 267742, + [SMALL_STATE(5505)] = 267768, + [SMALL_STATE(5506)] = 267794, + [SMALL_STATE(5507)] = 267818, + [SMALL_STATE(5508)] = 267844, + [SMALL_STATE(5509)] = 267870, + [SMALL_STATE(5510)] = 267894, + [SMALL_STATE(5511)] = 267918, + [SMALL_STATE(5512)] = 267942, + [SMALL_STATE(5513)] = 267966, + [SMALL_STATE(5514)] = 267990, + [SMALL_STATE(5515)] = 268014, + [SMALL_STATE(5516)] = 268038, + [SMALL_STATE(5517)] = 268062, + [SMALL_STATE(5518)] = 268086, + [SMALL_STATE(5519)] = 268110, + [SMALL_STATE(5520)] = 268134, + [SMALL_STATE(5521)] = 268158, + [SMALL_STATE(5522)] = 268184, + [SMALL_STATE(5523)] = 268210, + [SMALL_STATE(5524)] = 268234, + [SMALL_STATE(5525)] = 268258, + [SMALL_STATE(5526)] = 268282, + [SMALL_STATE(5527)] = 268306, + [SMALL_STATE(5528)] = 268330, + [SMALL_STATE(5529)] = 268354, + [SMALL_STATE(5530)] = 268378, + [SMALL_STATE(5531)] = 268402, + [SMALL_STATE(5532)] = 268426, + [SMALL_STATE(5533)] = 268450, + [SMALL_STATE(5534)] = 268474, + [SMALL_STATE(5535)] = 268498, + [SMALL_STATE(5536)] = 268522, + [SMALL_STATE(5537)] = 268546, + [SMALL_STATE(5538)] = 268570, + [SMALL_STATE(5539)] = 268596, + [SMALL_STATE(5540)] = 268620, + [SMALL_STATE(5541)] = 268644, + [SMALL_STATE(5542)] = 268668, + [SMALL_STATE(5543)] = 268692, + [SMALL_STATE(5544)] = 268716, + [SMALL_STATE(5545)] = 268740, + [SMALL_STATE(5546)] = 268764, + [SMALL_STATE(5547)] = 268788, + [SMALL_STATE(5548)] = 268812, + [SMALL_STATE(5549)] = 268838, + [SMALL_STATE(5550)] = 268864, + [SMALL_STATE(5551)] = 268888, + [SMALL_STATE(5552)] = 268912, + [SMALL_STATE(5553)] = 268936, + [SMALL_STATE(5554)] = 268962, + [SMALL_STATE(5555)] = 268988, + [SMALL_STATE(5556)] = 269014, + [SMALL_STATE(5557)] = 269038, + [SMALL_STATE(5558)] = 269062, + [SMALL_STATE(5559)] = 269086, + [SMALL_STATE(5560)] = 269110, + [SMALL_STATE(5561)] = 269136, + [SMALL_STATE(5562)] = 269160, + [SMALL_STATE(5563)] = 269184, + [SMALL_STATE(5564)] = 269210, + [SMALL_STATE(5565)] = 269236, + [SMALL_STATE(5566)] = 269262, + [SMALL_STATE(5567)] = 269288, + [SMALL_STATE(5568)] = 269314, + [SMALL_STATE(5569)] = 269340, + [SMALL_STATE(5570)] = 269366, + [SMALL_STATE(5571)] = 269390, + [SMALL_STATE(5572)] = 269414, + [SMALL_STATE(5573)] = 269438, + [SMALL_STATE(5574)] = 269462, + [SMALL_STATE(5575)] = 269486, + [SMALL_STATE(5576)] = 269510, + [SMALL_STATE(5577)] = 269534, + [SMALL_STATE(5578)] = 269558, + [SMALL_STATE(5579)] = 269582, + [SMALL_STATE(5580)] = 269606, + [SMALL_STATE(5581)] = 269630, + [SMALL_STATE(5582)] = 269654, + [SMALL_STATE(5583)] = 269680, + [SMALL_STATE(5584)] = 269706, + [SMALL_STATE(5585)] = 269732, + [SMALL_STATE(5586)] = 269756, + [SMALL_STATE(5587)] = 269780, + [SMALL_STATE(5588)] = 269806, + [SMALL_STATE(5589)] = 269830, + [SMALL_STATE(5590)] = 269854, + [SMALL_STATE(5591)] = 269878, + [SMALL_STATE(5592)] = 269902, + [SMALL_STATE(5593)] = 269926, + [SMALL_STATE(5594)] = 269950, + [SMALL_STATE(5595)] = 269974, + [SMALL_STATE(5596)] = 269998, + [SMALL_STATE(5597)] = 270024, + [SMALL_STATE(5598)] = 270048, + [SMALL_STATE(5599)] = 270072, + [SMALL_STATE(5600)] = 270096, + [SMALL_STATE(5601)] = 270120, + [SMALL_STATE(5602)] = 270144, + [SMALL_STATE(5603)] = 270168, + [SMALL_STATE(5604)] = 270192, + [SMALL_STATE(5605)] = 270216, + [SMALL_STATE(5606)] = 270242, + [SMALL_STATE(5607)] = 270268, + [SMALL_STATE(5608)] = 270294, + [SMALL_STATE(5609)] = 270320, + [SMALL_STATE(5610)] = 270346, + [SMALL_STATE(5611)] = 270372, + [SMALL_STATE(5612)] = 270396, + [SMALL_STATE(5613)] = 270420, + [SMALL_STATE(5614)] = 270444, + [SMALL_STATE(5615)] = 270468, + [SMALL_STATE(5616)] = 270494, + [SMALL_STATE(5617)] = 270520, + [SMALL_STATE(5618)] = 270546, + [SMALL_STATE(5619)] = 270572, + [SMALL_STATE(5620)] = 270596, + [SMALL_STATE(5621)] = 270622, + [SMALL_STATE(5622)] = 270648, + [SMALL_STATE(5623)] = 270672, + [SMALL_STATE(5624)] = 270696, + [SMALL_STATE(5625)] = 270720, + [SMALL_STATE(5626)] = 270744, + [SMALL_STATE(5627)] = 270768, + [SMALL_STATE(5628)] = 270792, + [SMALL_STATE(5629)] = 270816, + [SMALL_STATE(5630)] = 270840, + [SMALL_STATE(5631)] = 270864, + [SMALL_STATE(5632)] = 270888, + [SMALL_STATE(5633)] = 270912, + [SMALL_STATE(5634)] = 270936, + [SMALL_STATE(5635)] = 270962, + [SMALL_STATE(5636)] = 270986, + [SMALL_STATE(5637)] = 271010, + [SMALL_STATE(5638)] = 271034, + [SMALL_STATE(5639)] = 271058, + [SMALL_STATE(5640)] = 271082, + [SMALL_STATE(5641)] = 271106, + [SMALL_STATE(5642)] = 271130, + [SMALL_STATE(5643)] = 271154, + [SMALL_STATE(5644)] = 271178, + [SMALL_STATE(5645)] = 271202, + [SMALL_STATE(5646)] = 271226, + [SMALL_STATE(5647)] = 271250, + [SMALL_STATE(5648)] = 271274, + [SMALL_STATE(5649)] = 271298, + [SMALL_STATE(5650)] = 271322, + [SMALL_STATE(5651)] = 271346, + [SMALL_STATE(5652)] = 271370, + [SMALL_STATE(5653)] = 271396, + [SMALL_STATE(5654)] = 271422, + [SMALL_STATE(5655)] = 271446, + [SMALL_STATE(5656)] = 271470, + [SMALL_STATE(5657)] = 271494, + [SMALL_STATE(5658)] = 271518, + [SMALL_STATE(5659)] = 271542, + [SMALL_STATE(5660)] = 271566, + [SMALL_STATE(5661)] = 271590, + [SMALL_STATE(5662)] = 271614, + [SMALL_STATE(5663)] = 271640, + [SMALL_STATE(5664)] = 271666, + [SMALL_STATE(5665)] = 271692, + [SMALL_STATE(5666)] = 271718, + [SMALL_STATE(5667)] = 271744, + [SMALL_STATE(5668)] = 271768, + [SMALL_STATE(5669)] = 271792, + [SMALL_STATE(5670)] = 271816, + [SMALL_STATE(5671)] = 271840, + [SMALL_STATE(5672)] = 271864, + [SMALL_STATE(5673)] = 271888, + [SMALL_STATE(5674)] = 271914, + [SMALL_STATE(5675)] = 271940, + [SMALL_STATE(5676)] = 271964, + [SMALL_STATE(5677)] = 271988, + [SMALL_STATE(5678)] = 272012, + [SMALL_STATE(5679)] = 272038, + [SMALL_STATE(5680)] = 272064, + [SMALL_STATE(5681)] = 272088, + [SMALL_STATE(5682)] = 272112, + [SMALL_STATE(5683)] = 272136, + [SMALL_STATE(5684)] = 272160, + [SMALL_STATE(5685)] = 272184, + [SMALL_STATE(5686)] = 272208, + [SMALL_STATE(5687)] = 272232, + [SMALL_STATE(5688)] = 272256, + [SMALL_STATE(5689)] = 272280, + [SMALL_STATE(5690)] = 272304, + [SMALL_STATE(5691)] = 272328, + [SMALL_STATE(5692)] = 272352, + [SMALL_STATE(5693)] = 272378, + [SMALL_STATE(5694)] = 272402, + [SMALL_STATE(5695)] = 272428, + [SMALL_STATE(5696)] = 272452, + [SMALL_STATE(5697)] = 272476, + [SMALL_STATE(5698)] = 272500, + [SMALL_STATE(5699)] = 272524, + [SMALL_STATE(5700)] = 272548, + [SMALL_STATE(5701)] = 272572, + [SMALL_STATE(5702)] = 272596, + [SMALL_STATE(5703)] = 272620, + [SMALL_STATE(5704)] = 272646, + [SMALL_STATE(5705)] = 272670, + [SMALL_STATE(5706)] = 272696, + [SMALL_STATE(5707)] = 272722, + [SMALL_STATE(5708)] = 272746, + [SMALL_STATE(5709)] = 272770, + [SMALL_STATE(5710)] = 272796, + [SMALL_STATE(5711)] = 272820, + [SMALL_STATE(5712)] = 272844, + [SMALL_STATE(5713)] = 272868, + [SMALL_STATE(5714)] = 272892, + [SMALL_STATE(5715)] = 272916, + [SMALL_STATE(5716)] = 272940, + [SMALL_STATE(5717)] = 272964, + [SMALL_STATE(5718)] = 272988, + [SMALL_STATE(5719)] = 273014, + [SMALL_STATE(5720)] = 273038, + [SMALL_STATE(5721)] = 273064, + [SMALL_STATE(5722)] = 273088, + [SMALL_STATE(5723)] = 273112, + [SMALL_STATE(5724)] = 273136, + [SMALL_STATE(5725)] = 273160, + [SMALL_STATE(5726)] = 273186, + [SMALL_STATE(5727)] = 273212, + [SMALL_STATE(5728)] = 273238, + [SMALL_STATE(5729)] = 273262, + [SMALL_STATE(5730)] = 273286, + [SMALL_STATE(5731)] = 273310, + [SMALL_STATE(5732)] = 273334, + [SMALL_STATE(5733)] = 273358, + [SMALL_STATE(5734)] = 273382, + [SMALL_STATE(5735)] = 273406, + [SMALL_STATE(5736)] = 273430, + [SMALL_STATE(5737)] = 273456, + [SMALL_STATE(5738)] = 273482, + [SMALL_STATE(5739)] = 273508, + [SMALL_STATE(5740)] = 273534, + [SMALL_STATE(5741)] = 273560, + [SMALL_STATE(5742)] = 273584, + [SMALL_STATE(5743)] = 273608, + [SMALL_STATE(5744)] = 273632, + [SMALL_STATE(5745)] = 273656, + [SMALL_STATE(5746)] = 273680, + [SMALL_STATE(5747)] = 273704, + [SMALL_STATE(5748)] = 273728, + [SMALL_STATE(5749)] = 273752, + [SMALL_STATE(5750)] = 273776, + [SMALL_STATE(5751)] = 273800, + [SMALL_STATE(5752)] = 273824, + [SMALL_STATE(5753)] = 273848, + [SMALL_STATE(5754)] = 273874, + [SMALL_STATE(5755)] = 273898, + [SMALL_STATE(5756)] = 273922, + [SMALL_STATE(5757)] = 273946, + [SMALL_STATE(5758)] = 273970, + [SMALL_STATE(5759)] = 273994, + [SMALL_STATE(5760)] = 274018, + [SMALL_STATE(5761)] = 274042, + [SMALL_STATE(5762)] = 274066, + [SMALL_STATE(5763)] = 274090, + [SMALL_STATE(5764)] = 274114, + [SMALL_STATE(5765)] = 274140, + [SMALL_STATE(5766)] = 274164, + [SMALL_STATE(5767)] = 274188, + [SMALL_STATE(5768)] = 274212, + [SMALL_STATE(5769)] = 274236, + [SMALL_STATE(5770)] = 274262, + [SMALL_STATE(5771)] = 274288, + [SMALL_STATE(5772)] = 274312, + [SMALL_STATE(5773)] = 274336, + [SMALL_STATE(5774)] = 274360, + [SMALL_STATE(5775)] = 274384, + [SMALL_STATE(5776)] = 274408, + [SMALL_STATE(5777)] = 274432, + [SMALL_STATE(5778)] = 274456, + [SMALL_STATE(5779)] = 274480, + [SMALL_STATE(5780)] = 274504, + [SMALL_STATE(5781)] = 274528, + [SMALL_STATE(5782)] = 274552, + [SMALL_STATE(5783)] = 274576, + [SMALL_STATE(5784)] = 274600, + [SMALL_STATE(5785)] = 274624, + [SMALL_STATE(5786)] = 274650, + [SMALL_STATE(5787)] = 274676, + [SMALL_STATE(5788)] = 274700, + [SMALL_STATE(5789)] = 274724, + [SMALL_STATE(5790)] = 274748, + [SMALL_STATE(5791)] = 274772, + [SMALL_STATE(5792)] = 274796, + [SMALL_STATE(5793)] = 274820, + [SMALL_STATE(5794)] = 274844, + [SMALL_STATE(5795)] = 274868, + [SMALL_STATE(5796)] = 274892, + [SMALL_STATE(5797)] = 274916, + [SMALL_STATE(5798)] = 274940, + [SMALL_STATE(5799)] = 274964, + [SMALL_STATE(5800)] = 274988, + [SMALL_STATE(5801)] = 275012, + [SMALL_STATE(5802)] = 275036, + [SMALL_STATE(5803)] = 275060, + [SMALL_STATE(5804)] = 275084, + [SMALL_STATE(5805)] = 275108, + [SMALL_STATE(5806)] = 275134, + [SMALL_STATE(5807)] = 275160, + [SMALL_STATE(5808)] = 275184, + [SMALL_STATE(5809)] = 275208, + [SMALL_STATE(5810)] = 275232, + [SMALL_STATE(5811)] = 275256, + [SMALL_STATE(5812)] = 275280, + [SMALL_STATE(5813)] = 275304, + [SMALL_STATE(5814)] = 275328, + [SMALL_STATE(5815)] = 275352, + [SMALL_STATE(5816)] = 275376, + [SMALL_STATE(5817)] = 275400, + [SMALL_STATE(5818)] = 275424, + [SMALL_STATE(5819)] = 275448, + [SMALL_STATE(5820)] = 275472, + [SMALL_STATE(5821)] = 275496, + [SMALL_STATE(5822)] = 275520, + [SMALL_STATE(5823)] = 275544, + [SMALL_STATE(5824)] = 275568, + [SMALL_STATE(5825)] = 275594, + [SMALL_STATE(5826)] = 275620, + [SMALL_STATE(5827)] = 275644, + [SMALL_STATE(5828)] = 275668, + [SMALL_STATE(5829)] = 275692, + [SMALL_STATE(5830)] = 275716, + [SMALL_STATE(5831)] = 275740, + [SMALL_STATE(5832)] = 275764, + [SMALL_STATE(5833)] = 275788, + [SMALL_STATE(5834)] = 275812, + [SMALL_STATE(5835)] = 275836, + [SMALL_STATE(5836)] = 275860, + [SMALL_STATE(5837)] = 275884, + [SMALL_STATE(5838)] = 275908, + [SMALL_STATE(5839)] = 275932, + [SMALL_STATE(5840)] = 275956, + [SMALL_STATE(5841)] = 275980, + [SMALL_STATE(5842)] = 276004, + [SMALL_STATE(5843)] = 276028, + [SMALL_STATE(5844)] = 276052, + [SMALL_STATE(5845)] = 276072, + [SMALL_STATE(5846)] = 276096, + [SMALL_STATE(5847)] = 276120, + [SMALL_STATE(5848)] = 276144, + [SMALL_STATE(5849)] = 276168, + [SMALL_STATE(5850)] = 276192, + [SMALL_STATE(5851)] = 276216, + [SMALL_STATE(5852)] = 276240, + [SMALL_STATE(5853)] = 276264, + [SMALL_STATE(5854)] = 276288, + [SMALL_STATE(5855)] = 276312, + [SMALL_STATE(5856)] = 276336, + [SMALL_STATE(5857)] = 276360, + [SMALL_STATE(5858)] = 276386, + [SMALL_STATE(5859)] = 276410, + [SMALL_STATE(5860)] = 276434, + [SMALL_STATE(5861)] = 276458, + [SMALL_STATE(5862)] = 276482, + [SMALL_STATE(5863)] = 276506, + [SMALL_STATE(5864)] = 276530, + [SMALL_STATE(5865)] = 276554, + [SMALL_STATE(5866)] = 276578, + [SMALL_STATE(5867)] = 276602, + [SMALL_STATE(5868)] = 276626, + [SMALL_STATE(5869)] = 276650, + [SMALL_STATE(5870)] = 276674, + [SMALL_STATE(5871)] = 276698, + [SMALL_STATE(5872)] = 276722, + [SMALL_STATE(5873)] = 276746, + [SMALL_STATE(5874)] = 276770, + [SMALL_STATE(5875)] = 276794, + [SMALL_STATE(5876)] = 276818, + [SMALL_STATE(5877)] = 276844, + [SMALL_STATE(5878)] = 276870, + [SMALL_STATE(5879)] = 276894, + [SMALL_STATE(5880)] = 276918, + [SMALL_STATE(5881)] = 276942, + [SMALL_STATE(5882)] = 276966, + [SMALL_STATE(5883)] = 276990, + [SMALL_STATE(5884)] = 277014, + [SMALL_STATE(5885)] = 277038, + [SMALL_STATE(5886)] = 277062, + [SMALL_STATE(5887)] = 277086, + [SMALL_STATE(5888)] = 277110, + [SMALL_STATE(5889)] = 277134, + [SMALL_STATE(5890)] = 277158, + [SMALL_STATE(5891)] = 277182, + [SMALL_STATE(5892)] = 277206, + [SMALL_STATE(5893)] = 277230, + [SMALL_STATE(5894)] = 277254, + [SMALL_STATE(5895)] = 277278, + [SMALL_STATE(5896)] = 277302, + [SMALL_STATE(5897)] = 277326, + [SMALL_STATE(5898)] = 277350, + [SMALL_STATE(5899)] = 277374, + [SMALL_STATE(5900)] = 277398, + [SMALL_STATE(5901)] = 277422, + [SMALL_STATE(5902)] = 277446, + [SMALL_STATE(5903)] = 277470, + [SMALL_STATE(5904)] = 277494, + [SMALL_STATE(5905)] = 277518, + [SMALL_STATE(5906)] = 277542, + [SMALL_STATE(5907)] = 277566, + [SMALL_STATE(5908)] = 277590, + [SMALL_STATE(5909)] = 277614, + [SMALL_STATE(5910)] = 277638, + [SMALL_STATE(5911)] = 277664, + [SMALL_STATE(5912)] = 277690, + [SMALL_STATE(5913)] = 277716, + [SMALL_STATE(5914)] = 277740, + [SMALL_STATE(5915)] = 277764, + [SMALL_STATE(5916)] = 277788, + [SMALL_STATE(5917)] = 277812, + [SMALL_STATE(5918)] = 277836, + [SMALL_STATE(5919)] = 277860, + [SMALL_STATE(5920)] = 277884, + [SMALL_STATE(5921)] = 277908, + [SMALL_STATE(5922)] = 277932, + [SMALL_STATE(5923)] = 277956, + [SMALL_STATE(5924)] = 277980, + [SMALL_STATE(5925)] = 278004, + [SMALL_STATE(5926)] = 278028, + [SMALL_STATE(5927)] = 278052, + [SMALL_STATE(5928)] = 278076, + [SMALL_STATE(5929)] = 278100, + [SMALL_STATE(5930)] = 278124, + [SMALL_STATE(5931)] = 278148, + [SMALL_STATE(5932)] = 278172, + [SMALL_STATE(5933)] = 278196, + [SMALL_STATE(5934)] = 278220, + [SMALL_STATE(5935)] = 278244, + [SMALL_STATE(5936)] = 278268, + [SMALL_STATE(5937)] = 278292, + [SMALL_STATE(5938)] = 278316, + [SMALL_STATE(5939)] = 278340, + [SMALL_STATE(5940)] = 278364, + [SMALL_STATE(5941)] = 278388, + [SMALL_STATE(5942)] = 278412, + [SMALL_STATE(5943)] = 278436, + [SMALL_STATE(5944)] = 278462, + [SMALL_STATE(5945)] = 278486, + [SMALL_STATE(5946)] = 278510, + [SMALL_STATE(5947)] = 278534, + [SMALL_STATE(5948)] = 278558, + [SMALL_STATE(5949)] = 278582, + [SMALL_STATE(5950)] = 278606, + [SMALL_STATE(5951)] = 278630, + [SMALL_STATE(5952)] = 278654, + [SMALL_STATE(5953)] = 278678, + [SMALL_STATE(5954)] = 278702, + [SMALL_STATE(5955)] = 278726, + [SMALL_STATE(5956)] = 278750, + [SMALL_STATE(5957)] = 278774, + [SMALL_STATE(5958)] = 278798, + [SMALL_STATE(5959)] = 278822, + [SMALL_STATE(5960)] = 278846, + [SMALL_STATE(5961)] = 278870, + [SMALL_STATE(5962)] = 278894, + [SMALL_STATE(5963)] = 278918, + [SMALL_STATE(5964)] = 278942, + [SMALL_STATE(5965)] = 278966, + [SMALL_STATE(5966)] = 278990, + [SMALL_STATE(5967)] = 279014, + [SMALL_STATE(5968)] = 279038, + [SMALL_STATE(5969)] = 279062, + [SMALL_STATE(5970)] = 279086, + [SMALL_STATE(5971)] = 279110, + [SMALL_STATE(5972)] = 279134, + [SMALL_STATE(5973)] = 279158, + [SMALL_STATE(5974)] = 279182, + [SMALL_STATE(5975)] = 279206, + [SMALL_STATE(5976)] = 279230, + [SMALL_STATE(5977)] = 279254, + [SMALL_STATE(5978)] = 279278, + [SMALL_STATE(5979)] = 279302, + [SMALL_STATE(5980)] = 279326, + [SMALL_STATE(5981)] = 279350, + [SMALL_STATE(5982)] = 279374, + [SMALL_STATE(5983)] = 279398, + [SMALL_STATE(5984)] = 279422, + [SMALL_STATE(5985)] = 279446, + [SMALL_STATE(5986)] = 279470, + [SMALL_STATE(5987)] = 279494, + [SMALL_STATE(5988)] = 279518, + [SMALL_STATE(5989)] = 279542, + [SMALL_STATE(5990)] = 279566, + [SMALL_STATE(5991)] = 279590, + [SMALL_STATE(5992)] = 279614, + [SMALL_STATE(5993)] = 279638, + [SMALL_STATE(5994)] = 279662, + [SMALL_STATE(5995)] = 279686, + [SMALL_STATE(5996)] = 279710, + [SMALL_STATE(5997)] = 279734, + [SMALL_STATE(5998)] = 279760, + [SMALL_STATE(5999)] = 279784, + [SMALL_STATE(6000)] = 279808, + [SMALL_STATE(6001)] = 279832, + [SMALL_STATE(6002)] = 279856, + [SMALL_STATE(6003)] = 279880, + [SMALL_STATE(6004)] = 279904, + [SMALL_STATE(6005)] = 279928, + [SMALL_STATE(6006)] = 279952, + [SMALL_STATE(6007)] = 279976, + [SMALL_STATE(6008)] = 280000, + [SMALL_STATE(6009)] = 280024, + [SMALL_STATE(6010)] = 280048, + [SMALL_STATE(6011)] = 280072, + [SMALL_STATE(6012)] = 280096, + [SMALL_STATE(6013)] = 280122, + [SMALL_STATE(6014)] = 280146, + [SMALL_STATE(6015)] = 280170, + [SMALL_STATE(6016)] = 280194, + [SMALL_STATE(6017)] = 280218, + [SMALL_STATE(6018)] = 280242, + [SMALL_STATE(6019)] = 280266, + [SMALL_STATE(6020)] = 280290, + [SMALL_STATE(6021)] = 280314, + [SMALL_STATE(6022)] = 280338, + [SMALL_STATE(6023)] = 280362, + [SMALL_STATE(6024)] = 280386, + [SMALL_STATE(6025)] = 280410, + [SMALL_STATE(6026)] = 280434, + [SMALL_STATE(6027)] = 280458, + [SMALL_STATE(6028)] = 280482, + [SMALL_STATE(6029)] = 280506, + [SMALL_STATE(6030)] = 280530, + [SMALL_STATE(6031)] = 280554, + [SMALL_STATE(6032)] = 280578, + [SMALL_STATE(6033)] = 280602, + [SMALL_STATE(6034)] = 280626, + [SMALL_STATE(6035)] = 280650, + [SMALL_STATE(6036)] = 280674, + [SMALL_STATE(6037)] = 280698, + [SMALL_STATE(6038)] = 280722, + [SMALL_STATE(6039)] = 280746, + [SMALL_STATE(6040)] = 280770, + [SMALL_STATE(6041)] = 280794, + [SMALL_STATE(6042)] = 280818, + [SMALL_STATE(6043)] = 280842, + [SMALL_STATE(6044)] = 280866, + [SMALL_STATE(6045)] = 280890, + [SMALL_STATE(6046)] = 280914, + [SMALL_STATE(6047)] = 280938, + [SMALL_STATE(6048)] = 280962, + [SMALL_STATE(6049)] = 280986, + [SMALL_STATE(6050)] = 281010, + [SMALL_STATE(6051)] = 281034, + [SMALL_STATE(6052)] = 281058, + [SMALL_STATE(6053)] = 281082, + [SMALL_STATE(6054)] = 281106, + [SMALL_STATE(6055)] = 281130, + [SMALL_STATE(6056)] = 281154, + [SMALL_STATE(6057)] = 281178, + [SMALL_STATE(6058)] = 281202, + [SMALL_STATE(6059)] = 281226, + [SMALL_STATE(6060)] = 281250, + [SMALL_STATE(6061)] = 281274, + [SMALL_STATE(6062)] = 281298, + [SMALL_STATE(6063)] = 281322, + [SMALL_STATE(6064)] = 281346, + [SMALL_STATE(6065)] = 281370, + [SMALL_STATE(6066)] = 281394, + [SMALL_STATE(6067)] = 281418, + [SMALL_STATE(6068)] = 281442, + [SMALL_STATE(6069)] = 281466, + [SMALL_STATE(6070)] = 281490, + [SMALL_STATE(6071)] = 281514, + [SMALL_STATE(6072)] = 281538, + [SMALL_STATE(6073)] = 281562, + [SMALL_STATE(6074)] = 281586, + [SMALL_STATE(6075)] = 281610, + [SMALL_STATE(6076)] = 281634, + [SMALL_STATE(6077)] = 281658, + [SMALL_STATE(6078)] = 281682, + [SMALL_STATE(6079)] = 281706, + [SMALL_STATE(6080)] = 281730, + [SMALL_STATE(6081)] = 281754, + [SMALL_STATE(6082)] = 281778, + [SMALL_STATE(6083)] = 281802, + [SMALL_STATE(6084)] = 281826, + [SMALL_STATE(6085)] = 281850, + [SMALL_STATE(6086)] = 281874, + [SMALL_STATE(6087)] = 281898, + [SMALL_STATE(6088)] = 281922, + [SMALL_STATE(6089)] = 281946, + [SMALL_STATE(6090)] = 281970, + [SMALL_STATE(6091)] = 281994, + [SMALL_STATE(6092)] = 282018, + [SMALL_STATE(6093)] = 282042, + [SMALL_STATE(6094)] = 282066, + [SMALL_STATE(6095)] = 282092, + [SMALL_STATE(6096)] = 282116, + [SMALL_STATE(6097)] = 282140, + [SMALL_STATE(6098)] = 282164, + [SMALL_STATE(6099)] = 282188, + [SMALL_STATE(6100)] = 282212, + [SMALL_STATE(6101)] = 282236, + [SMALL_STATE(6102)] = 282260, + [SMALL_STATE(6103)] = 282284, + [SMALL_STATE(6104)] = 282308, + [SMALL_STATE(6105)] = 282332, + [SMALL_STATE(6106)] = 282356, + [SMALL_STATE(6107)] = 282380, + [SMALL_STATE(6108)] = 282404, + [SMALL_STATE(6109)] = 282428, + [SMALL_STATE(6110)] = 282452, + [SMALL_STATE(6111)] = 282472, + [SMALL_STATE(6112)] = 282496, + [SMALL_STATE(6113)] = 282520, + [SMALL_STATE(6114)] = 282544, + [SMALL_STATE(6115)] = 282568, + [SMALL_STATE(6116)] = 282592, + [SMALL_STATE(6117)] = 282616, + [SMALL_STATE(6118)] = 282640, + [SMALL_STATE(6119)] = 282664, + [SMALL_STATE(6120)] = 282688, + [SMALL_STATE(6121)] = 282712, + [SMALL_STATE(6122)] = 282736, + [SMALL_STATE(6123)] = 282760, + [SMALL_STATE(6124)] = 282784, + [SMALL_STATE(6125)] = 282808, + [SMALL_STATE(6126)] = 282832, + [SMALL_STATE(6127)] = 282856, + [SMALL_STATE(6128)] = 282880, + [SMALL_STATE(6129)] = 282904, + [SMALL_STATE(6130)] = 282928, + [SMALL_STATE(6131)] = 282952, + [SMALL_STATE(6132)] = 282976, + [SMALL_STATE(6133)] = 283000, + [SMALL_STATE(6134)] = 283024, + [SMALL_STATE(6135)] = 283048, + [SMALL_STATE(6136)] = 283072, + [SMALL_STATE(6137)] = 283096, + [SMALL_STATE(6138)] = 283120, + [SMALL_STATE(6139)] = 283144, + [SMALL_STATE(6140)] = 283168, + [SMALL_STATE(6141)] = 283192, + [SMALL_STATE(6142)] = 283216, + [SMALL_STATE(6143)] = 283240, + [SMALL_STATE(6144)] = 283264, + [SMALL_STATE(6145)] = 283288, + [SMALL_STATE(6146)] = 283312, + [SMALL_STATE(6147)] = 283336, + [SMALL_STATE(6148)] = 283360, + [SMALL_STATE(6149)] = 283384, + [SMALL_STATE(6150)] = 283408, + [SMALL_STATE(6151)] = 283432, + [SMALL_STATE(6152)] = 283456, + [SMALL_STATE(6153)] = 283480, + [SMALL_STATE(6154)] = 283504, + [SMALL_STATE(6155)] = 283528, + [SMALL_STATE(6156)] = 283552, + [SMALL_STATE(6157)] = 283576, + [SMALL_STATE(6158)] = 283600, + [SMALL_STATE(6159)] = 283624, + [SMALL_STATE(6160)] = 283648, + [SMALL_STATE(6161)] = 283672, + [SMALL_STATE(6162)] = 283696, + [SMALL_STATE(6163)] = 283720, + [SMALL_STATE(6164)] = 283744, + [SMALL_STATE(6165)] = 283768, + [SMALL_STATE(6166)] = 283792, + [SMALL_STATE(6167)] = 283816, + [SMALL_STATE(6168)] = 283840, + [SMALL_STATE(6169)] = 283864, + [SMALL_STATE(6170)] = 283888, + [SMALL_STATE(6171)] = 283912, + [SMALL_STATE(6172)] = 283936, + [SMALL_STATE(6173)] = 283960, + [SMALL_STATE(6174)] = 283984, + [SMALL_STATE(6175)] = 284008, + [SMALL_STATE(6176)] = 284032, + [SMALL_STATE(6177)] = 284056, + [SMALL_STATE(6178)] = 284080, + [SMALL_STATE(6179)] = 284104, + [SMALL_STATE(6180)] = 284128, + [SMALL_STATE(6181)] = 284152, + [SMALL_STATE(6182)] = 284178, + [SMALL_STATE(6183)] = 284202, + [SMALL_STATE(6184)] = 284226, + [SMALL_STATE(6185)] = 284250, + [SMALL_STATE(6186)] = 284274, + [SMALL_STATE(6187)] = 284298, + [SMALL_STATE(6188)] = 284322, + [SMALL_STATE(6189)] = 284346, + [SMALL_STATE(6190)] = 284372, + [SMALL_STATE(6191)] = 284396, + [SMALL_STATE(6192)] = 284420, + [SMALL_STATE(6193)] = 284444, + [SMALL_STATE(6194)] = 284468, + [SMALL_STATE(6195)] = 284492, + [SMALL_STATE(6196)] = 284516, + [SMALL_STATE(6197)] = 284540, + [SMALL_STATE(6198)] = 284564, + [SMALL_STATE(6199)] = 284588, + [SMALL_STATE(6200)] = 284612, + [SMALL_STATE(6201)] = 284636, + [SMALL_STATE(6202)] = 284660, + [SMALL_STATE(6203)] = 284684, + [SMALL_STATE(6204)] = 284708, + [SMALL_STATE(6205)] = 284732, + [SMALL_STATE(6206)] = 284756, + [SMALL_STATE(6207)] = 284780, + [SMALL_STATE(6208)] = 284804, + [SMALL_STATE(6209)] = 284828, + [SMALL_STATE(6210)] = 284852, + [SMALL_STATE(6211)] = 284876, + [SMALL_STATE(6212)] = 284900, + [SMALL_STATE(6213)] = 284924, + [SMALL_STATE(6214)] = 284948, + [SMALL_STATE(6215)] = 284972, + [SMALL_STATE(6216)] = 284996, + [SMALL_STATE(6217)] = 285020, + [SMALL_STATE(6218)] = 285044, + [SMALL_STATE(6219)] = 285068, + [SMALL_STATE(6220)] = 285092, + [SMALL_STATE(6221)] = 285116, + [SMALL_STATE(6222)] = 285140, + [SMALL_STATE(6223)] = 285164, + [SMALL_STATE(6224)] = 285188, + [SMALL_STATE(6225)] = 285212, + [SMALL_STATE(6226)] = 285236, + [SMALL_STATE(6227)] = 285260, + [SMALL_STATE(6228)] = 285286, + [SMALL_STATE(6229)] = 285310, + [SMALL_STATE(6230)] = 285334, + [SMALL_STATE(6231)] = 285358, + [SMALL_STATE(6232)] = 285382, + [SMALL_STATE(6233)] = 285406, + [SMALL_STATE(6234)] = 285430, + [SMALL_STATE(6235)] = 285454, + [SMALL_STATE(6236)] = 285478, + [SMALL_STATE(6237)] = 285502, + [SMALL_STATE(6238)] = 285526, + [SMALL_STATE(6239)] = 285550, + [SMALL_STATE(6240)] = 285574, + [SMALL_STATE(6241)] = 285598, + [SMALL_STATE(6242)] = 285624, + [SMALL_STATE(6243)] = 285650, + [SMALL_STATE(6244)] = 285676, + [SMALL_STATE(6245)] = 285702, + [SMALL_STATE(6246)] = 285728, + [SMALL_STATE(6247)] = 285752, + [SMALL_STATE(6248)] = 285778, + [SMALL_STATE(6249)] = 285804, + [SMALL_STATE(6250)] = 285828, + [SMALL_STATE(6251)] = 285854, + [SMALL_STATE(6252)] = 285880, + [SMALL_STATE(6253)] = 285904, + [SMALL_STATE(6254)] = 285928, + [SMALL_STATE(6255)] = 285952, + [SMALL_STATE(6256)] = 285976, + [SMALL_STATE(6257)] = 286000, + [SMALL_STATE(6258)] = 286024, + [SMALL_STATE(6259)] = 286050, + [SMALL_STATE(6260)] = 286076, + [SMALL_STATE(6261)] = 286100, + [SMALL_STATE(6262)] = 286124, + [SMALL_STATE(6263)] = 286148, + [SMALL_STATE(6264)] = 286172, + [SMALL_STATE(6265)] = 286198, + [SMALL_STATE(6266)] = 286224, + [SMALL_STATE(6267)] = 286250, + [SMALL_STATE(6268)] = 286276, + [SMALL_STATE(6269)] = 286300, + [SMALL_STATE(6270)] = 286324, + [SMALL_STATE(6271)] = 286350, + [SMALL_STATE(6272)] = 286376, + [SMALL_STATE(6273)] = 286400, + [SMALL_STATE(6274)] = 286424, + [SMALL_STATE(6275)] = 286448, + [SMALL_STATE(6276)] = 286472, + [SMALL_STATE(6277)] = 286496, + [SMALL_STATE(6278)] = 286520, + [SMALL_STATE(6279)] = 286544, + [SMALL_STATE(6280)] = 286568, + [SMALL_STATE(6281)] = 286592, + [SMALL_STATE(6282)] = 286616, + [SMALL_STATE(6283)] = 286642, + [SMALL_STATE(6284)] = 286666, + [SMALL_STATE(6285)] = 286692, + [SMALL_STATE(6286)] = 286718, + [SMALL_STATE(6287)] = 286742, + [SMALL_STATE(6288)] = 286762, + [SMALL_STATE(6289)] = 286786, + [SMALL_STATE(6290)] = 286810, + [SMALL_STATE(6291)] = 286834, + [SMALL_STATE(6292)] = 286858, + [SMALL_STATE(6293)] = 286882, + [SMALL_STATE(6294)] = 286906, + [SMALL_STATE(6295)] = 286930, + [SMALL_STATE(6296)] = 286954, + [SMALL_STATE(6297)] = 286978, + [SMALL_STATE(6298)] = 287002, + [SMALL_STATE(6299)] = 287026, + [SMALL_STATE(6300)] = 287050, + [SMALL_STATE(6301)] = 287074, + [SMALL_STATE(6302)] = 287098, + [SMALL_STATE(6303)] = 287124, + [SMALL_STATE(6304)] = 287150, + [SMALL_STATE(6305)] = 287176, + [SMALL_STATE(6306)] = 287202, + [SMALL_STATE(6307)] = 287228, + [SMALL_STATE(6308)] = 287252, + [SMALL_STATE(6309)] = 287276, + [SMALL_STATE(6310)] = 287300, + [SMALL_STATE(6311)] = 287324, + [SMALL_STATE(6312)] = 287348, + [SMALL_STATE(6313)] = 287372, + [SMALL_STATE(6314)] = 287398, + [SMALL_STATE(6315)] = 287422, + [SMALL_STATE(6316)] = 287448, + [SMALL_STATE(6317)] = 287472, + [SMALL_STATE(6318)] = 287498, + [SMALL_STATE(6319)] = 287522, + [SMALL_STATE(6320)] = 287546, + [SMALL_STATE(6321)] = 287566, + [SMALL_STATE(6322)] = 287590, + [SMALL_STATE(6323)] = 287616, + [SMALL_STATE(6324)] = 287640, + [SMALL_STATE(6325)] = 287664, + [SMALL_STATE(6326)] = 287688, + [SMALL_STATE(6327)] = 287708, + [SMALL_STATE(6328)] = 287732, + [SMALL_STATE(6329)] = 287758, + [SMALL_STATE(6330)] = 287784, + [SMALL_STATE(6331)] = 287808, + [SMALL_STATE(6332)] = 287832, + [SMALL_STATE(6333)] = 287856, + [SMALL_STATE(6334)] = 287882, + [SMALL_STATE(6335)] = 287906, + [SMALL_STATE(6336)] = 287930, + [SMALL_STATE(6337)] = 287954, + [SMALL_STATE(6338)] = 287978, + [SMALL_STATE(6339)] = 288002, + [SMALL_STATE(6340)] = 288026, + [SMALL_STATE(6341)] = 288050, + [SMALL_STATE(6342)] = 288074, + [SMALL_STATE(6343)] = 288098, + [SMALL_STATE(6344)] = 288122, + [SMALL_STATE(6345)] = 288148, + [SMALL_STATE(6346)] = 288172, + [SMALL_STATE(6347)] = 288198, + [SMALL_STATE(6348)] = 288224, + [SMALL_STATE(6349)] = 288250, + [SMALL_STATE(6350)] = 288274, + [SMALL_STATE(6351)] = 288298, + [SMALL_STATE(6352)] = 288322, + [SMALL_STATE(6353)] = 288346, + [SMALL_STATE(6354)] = 288372, + [SMALL_STATE(6355)] = 288398, + [SMALL_STATE(6356)] = 288422, + [SMALL_STATE(6357)] = 288446, + [SMALL_STATE(6358)] = 288470, + [SMALL_STATE(6359)] = 288494, + [SMALL_STATE(6360)] = 288520, + [SMALL_STATE(6361)] = 288544, + [SMALL_STATE(6362)] = 288568, + [SMALL_STATE(6363)] = 288592, + [SMALL_STATE(6364)] = 288616, + [SMALL_STATE(6365)] = 288640, + [SMALL_STATE(6366)] = 288664, + [SMALL_STATE(6367)] = 288690, + [SMALL_STATE(6368)] = 288716, + [SMALL_STATE(6369)] = 288740, + [SMALL_STATE(6370)] = 288764, + [SMALL_STATE(6371)] = 288788, + [SMALL_STATE(6372)] = 288812, + [SMALL_STATE(6373)] = 288833, + [SMALL_STATE(6374)] = 288854, + [SMALL_STATE(6375)] = 288875, + [SMALL_STATE(6376)] = 288896, + [SMALL_STATE(6377)] = 288917, + [SMALL_STATE(6378)] = 288938, + [SMALL_STATE(6379)] = 288959, + [SMALL_STATE(6380)] = 288980, + [SMALL_STATE(6381)] = 289001, + [SMALL_STATE(6382)] = 289022, + [SMALL_STATE(6383)] = 289043, + [SMALL_STATE(6384)] = 289062, + [SMALL_STATE(6385)] = 289081, + [SMALL_STATE(6386)] = 289098, + [SMALL_STATE(6387)] = 289119, + [SMALL_STATE(6388)] = 289140, + [SMALL_STATE(6389)] = 289161, + [SMALL_STATE(6390)] = 289182, + [SMALL_STATE(6391)] = 289203, + [SMALL_STATE(6392)] = 289224, + [SMALL_STATE(6393)] = 289245, + [SMALL_STATE(6394)] = 289266, + [SMALL_STATE(6395)] = 289287, + [SMALL_STATE(6396)] = 289308, + [SMALL_STATE(6397)] = 289325, + [SMALL_STATE(6398)] = 289344, + [SMALL_STATE(6399)] = 289365, + [SMALL_STATE(6400)] = 289386, + [SMALL_STATE(6401)] = 289407, + [SMALL_STATE(6402)] = 289428, + [SMALL_STATE(6403)] = 289449, + [SMALL_STATE(6404)] = 289470, + [SMALL_STATE(6405)] = 289491, + [SMALL_STATE(6406)] = 289508, + [SMALL_STATE(6407)] = 289529, + [SMALL_STATE(6408)] = 289550, + [SMALL_STATE(6409)] = 289571, + [SMALL_STATE(6410)] = 289592, + [SMALL_STATE(6411)] = 289613, + [SMALL_STATE(6412)] = 289634, + [SMALL_STATE(6413)] = 289655, + [SMALL_STATE(6414)] = 289676, + [SMALL_STATE(6415)] = 289697, + [SMALL_STATE(6416)] = 289718, + [SMALL_STATE(6417)] = 289739, + [SMALL_STATE(6418)] = 289760, + [SMALL_STATE(6419)] = 289781, + [SMALL_STATE(6420)] = 289798, + [SMALL_STATE(6421)] = 289817, + [SMALL_STATE(6422)] = 289834, + [SMALL_STATE(6423)] = 289855, + [SMALL_STATE(6424)] = 289876, + [SMALL_STATE(6425)] = 289897, + [SMALL_STATE(6426)] = 289918, + [SMALL_STATE(6427)] = 289939, + [SMALL_STATE(6428)] = 289960, + [SMALL_STATE(6429)] = 289981, + [SMALL_STATE(6430)] = 290002, + [SMALL_STATE(6431)] = 290023, + [SMALL_STATE(6432)] = 290044, + [SMALL_STATE(6433)] = 290065, + [SMALL_STATE(6434)] = 290086, + [SMALL_STATE(6435)] = 290107, + [SMALL_STATE(6436)] = 290128, + [SMALL_STATE(6437)] = 290147, + [SMALL_STATE(6438)] = 290168, + [SMALL_STATE(6439)] = 290189, + [SMALL_STATE(6440)] = 290210, + [SMALL_STATE(6441)] = 290231, + [SMALL_STATE(6442)] = 290252, + [SMALL_STATE(6443)] = 290273, + [SMALL_STATE(6444)] = 290290, + [SMALL_STATE(6445)] = 290311, + [SMALL_STATE(6446)] = 290332, + [SMALL_STATE(6447)] = 290353, + [SMALL_STATE(6448)] = 290374, + [SMALL_STATE(6449)] = 290393, + [SMALL_STATE(6450)] = 290414, + [SMALL_STATE(6451)] = 290435, + [SMALL_STATE(6452)] = 290456, + [SMALL_STATE(6453)] = 290477, + [SMALL_STATE(6454)] = 290498, + [SMALL_STATE(6455)] = 290519, + [SMALL_STATE(6456)] = 290540, + [SMALL_STATE(6457)] = 290561, + [SMALL_STATE(6458)] = 290582, + [SMALL_STATE(6459)] = 290603, + [SMALL_STATE(6460)] = 290624, + [SMALL_STATE(6461)] = 290645, + [SMALL_STATE(6462)] = 290666, + [SMALL_STATE(6463)] = 290685, + [SMALL_STATE(6464)] = 290706, + [SMALL_STATE(6465)] = 290727, + [SMALL_STATE(6466)] = 290748, + [SMALL_STATE(6467)] = 290769, + [SMALL_STATE(6468)] = 290790, + [SMALL_STATE(6469)] = 290811, + [SMALL_STATE(6470)] = 290832, + [SMALL_STATE(6471)] = 290853, + [SMALL_STATE(6472)] = 290874, + [SMALL_STATE(6473)] = 290891, + [SMALL_STATE(6474)] = 290912, + [SMALL_STATE(6475)] = 290933, + [SMALL_STATE(6476)] = 290954, + [SMALL_STATE(6477)] = 290975, + [SMALL_STATE(6478)] = 290996, + [SMALL_STATE(6479)] = 291017, + [SMALL_STATE(6480)] = 291038, + [SMALL_STATE(6481)] = 291059, + [SMALL_STATE(6482)] = 291080, + [SMALL_STATE(6483)] = 291101, + [SMALL_STATE(6484)] = 291122, + [SMALL_STATE(6485)] = 291143, + [SMALL_STATE(6486)] = 291162, + [SMALL_STATE(6487)] = 291181, + [SMALL_STATE(6488)] = 291202, + [SMALL_STATE(6489)] = 291223, + [SMALL_STATE(6490)] = 291244, + [SMALL_STATE(6491)] = 291265, + [SMALL_STATE(6492)] = 291286, + [SMALL_STATE(6493)] = 291307, + [SMALL_STATE(6494)] = 291328, + [SMALL_STATE(6495)] = 291345, + [SMALL_STATE(6496)] = 291366, + [SMALL_STATE(6497)] = 291387, + [SMALL_STATE(6498)] = 291408, + [SMALL_STATE(6499)] = 291429, + [SMALL_STATE(6500)] = 291450, + [SMALL_STATE(6501)] = 291471, + [SMALL_STATE(6502)] = 291492, + [SMALL_STATE(6503)] = 291513, + [SMALL_STATE(6504)] = 291534, + [SMALL_STATE(6505)] = 291553, + [SMALL_STATE(6506)] = 291574, + [SMALL_STATE(6507)] = 291595, + [SMALL_STATE(6508)] = 291616, + [SMALL_STATE(6509)] = 291637, + [SMALL_STATE(6510)] = 291658, + [SMALL_STATE(6511)] = 291679, + [SMALL_STATE(6512)] = 291700, + [SMALL_STATE(6513)] = 291721, + [SMALL_STATE(6514)] = 291742, + [SMALL_STATE(6515)] = 291763, + [SMALL_STATE(6516)] = 291784, + [SMALL_STATE(6517)] = 291805, + [SMALL_STATE(6518)] = 291826, + [SMALL_STATE(6519)] = 291847, + [SMALL_STATE(6520)] = 291868, + [SMALL_STATE(6521)] = 291887, + [SMALL_STATE(6522)] = 291908, + [SMALL_STATE(6523)] = 291925, + [SMALL_STATE(6524)] = 291942, + [SMALL_STATE(6525)] = 291959, + [SMALL_STATE(6526)] = 291978, + [SMALL_STATE(6527)] = 291997, + [SMALL_STATE(6528)] = 292018, + [SMALL_STATE(6529)] = 292039, + [SMALL_STATE(6530)] = 292056, + [SMALL_STATE(6531)] = 292077, + [SMALL_STATE(6532)] = 292098, + [SMALL_STATE(6533)] = 292119, + [SMALL_STATE(6534)] = 292140, + [SMALL_STATE(6535)] = 292161, + [SMALL_STATE(6536)] = 292182, + [SMALL_STATE(6537)] = 292203, + [SMALL_STATE(6538)] = 292224, + [SMALL_STATE(6539)] = 292245, + [SMALL_STATE(6540)] = 292266, + [SMALL_STATE(6541)] = 292287, + [SMALL_STATE(6542)] = 292308, + [SMALL_STATE(6543)] = 292329, + [SMALL_STATE(6544)] = 292350, + [SMALL_STATE(6545)] = 292371, + [SMALL_STATE(6546)] = 292392, + [SMALL_STATE(6547)] = 292413, + [SMALL_STATE(6548)] = 292434, + [SMALL_STATE(6549)] = 292455, + [SMALL_STATE(6550)] = 292476, + [SMALL_STATE(6551)] = 292497, + [SMALL_STATE(6552)] = 292518, + [SMALL_STATE(6553)] = 292539, + [SMALL_STATE(6554)] = 292560, + [SMALL_STATE(6555)] = 292581, + [SMALL_STATE(6556)] = 292602, + [SMALL_STATE(6557)] = 292623, + [SMALL_STATE(6558)] = 292644, + [SMALL_STATE(6559)] = 292665, + [SMALL_STATE(6560)] = 292686, + [SMALL_STATE(6561)] = 292707, + [SMALL_STATE(6562)] = 292728, + [SMALL_STATE(6563)] = 292749, + [SMALL_STATE(6564)] = 292770, + [SMALL_STATE(6565)] = 292789, + [SMALL_STATE(6566)] = 292806, + [SMALL_STATE(6567)] = 292827, + [SMALL_STATE(6568)] = 292848, + [SMALL_STATE(6569)] = 292869, + [SMALL_STATE(6570)] = 292886, + [SMALL_STATE(6571)] = 292903, + [SMALL_STATE(6572)] = 292924, + [SMALL_STATE(6573)] = 292945, + [SMALL_STATE(6574)] = 292966, + [SMALL_STATE(6575)] = 292987, + [SMALL_STATE(6576)] = 293008, + [SMALL_STATE(6577)] = 293027, + [SMALL_STATE(6578)] = 293044, + [SMALL_STATE(6579)] = 293061, + [SMALL_STATE(6580)] = 293078, + [SMALL_STATE(6581)] = 293099, + [SMALL_STATE(6582)] = 293120, + [SMALL_STATE(6583)] = 293141, + [SMALL_STATE(6584)] = 293162, + [SMALL_STATE(6585)] = 293183, + [SMALL_STATE(6586)] = 293200, + [SMALL_STATE(6587)] = 293219, + [SMALL_STATE(6588)] = 293238, + [SMALL_STATE(6589)] = 293255, + [SMALL_STATE(6590)] = 293272, + [SMALL_STATE(6591)] = 293289, + [SMALL_STATE(6592)] = 293306, + [SMALL_STATE(6593)] = 293323, + [SMALL_STATE(6594)] = 293344, + [SMALL_STATE(6595)] = 293365, + [SMALL_STATE(6596)] = 293386, + [SMALL_STATE(6597)] = 293407, + [SMALL_STATE(6598)] = 293428, + [SMALL_STATE(6599)] = 293449, + [SMALL_STATE(6600)] = 293470, + [SMALL_STATE(6601)] = 293491, + [SMALL_STATE(6602)] = 293512, + [SMALL_STATE(6603)] = 293533, + [SMALL_STATE(6604)] = 293554, + [SMALL_STATE(6605)] = 293575, + [SMALL_STATE(6606)] = 293596, + [SMALL_STATE(6607)] = 293617, + [SMALL_STATE(6608)] = 293638, + [SMALL_STATE(6609)] = 293655, + [SMALL_STATE(6610)] = 293676, + [SMALL_STATE(6611)] = 293697, + [SMALL_STATE(6612)] = 293718, + [SMALL_STATE(6613)] = 293735, + [SMALL_STATE(6614)] = 293752, + [SMALL_STATE(6615)] = 293769, + [SMALL_STATE(6616)] = 293786, + [SMALL_STATE(6617)] = 293807, + [SMALL_STATE(6618)] = 293824, + [SMALL_STATE(6619)] = 293845, + [SMALL_STATE(6620)] = 293863, + [SMALL_STATE(6621)] = 293881, + [SMALL_STATE(6622)] = 293899, + [SMALL_STATE(6623)] = 293917, + [SMALL_STATE(6624)] = 293935, + [SMALL_STATE(6625)] = 293953, + [SMALL_STATE(6626)] = 293971, + [SMALL_STATE(6627)] = 293989, + [SMALL_STATE(6628)] = 294007, + [SMALL_STATE(6629)] = 294025, + [SMALL_STATE(6630)] = 294043, + [SMALL_STATE(6631)] = 294061, + [SMALL_STATE(6632)] = 294079, + [SMALL_STATE(6633)] = 294097, + [SMALL_STATE(6634)] = 294115, + [SMALL_STATE(6635)] = 294133, + [SMALL_STATE(6636)] = 294151, + [SMALL_STATE(6637)] = 294169, + [SMALL_STATE(6638)] = 294187, + [SMALL_STATE(6639)] = 294205, + [SMALL_STATE(6640)] = 294223, + [SMALL_STATE(6641)] = 294241, + [SMALL_STATE(6642)] = 294259, + [SMALL_STATE(6643)] = 294277, + [SMALL_STATE(6644)] = 294295, + [SMALL_STATE(6645)] = 294313, + [SMALL_STATE(6646)] = 294329, + [SMALL_STATE(6647)] = 294343, + [SMALL_STATE(6648)] = 294361, + [SMALL_STATE(6649)] = 294379, + [SMALL_STATE(6650)] = 294397, + [SMALL_STATE(6651)] = 294415, + [SMALL_STATE(6652)] = 294433, + [SMALL_STATE(6653)] = 294451, + [SMALL_STATE(6654)] = 294469, + [SMALL_STATE(6655)] = 294487, + [SMALL_STATE(6656)] = 294505, + [SMALL_STATE(6657)] = 294523, + [SMALL_STATE(6658)] = 294541, + [SMALL_STATE(6659)] = 294559, + [SMALL_STATE(6660)] = 294577, + [SMALL_STATE(6661)] = 294595, + [SMALL_STATE(6662)] = 294613, + [SMALL_STATE(6663)] = 294631, + [SMALL_STATE(6664)] = 294649, + [SMALL_STATE(6665)] = 294667, + [SMALL_STATE(6666)] = 294685, + [SMALL_STATE(6667)] = 294703, + [SMALL_STATE(6668)] = 294717, + [SMALL_STATE(6669)] = 294735, + [SMALL_STATE(6670)] = 294753, + [SMALL_STATE(6671)] = 294771, + [SMALL_STATE(6672)] = 294789, + [SMALL_STATE(6673)] = 294807, + [SMALL_STATE(6674)] = 294825, + [SMALL_STATE(6675)] = 294843, + [SMALL_STATE(6676)] = 294861, + [SMALL_STATE(6677)] = 294879, + [SMALL_STATE(6678)] = 294897, + [SMALL_STATE(6679)] = 294915, + [SMALL_STATE(6680)] = 294933, + [SMALL_STATE(6681)] = 294951, + [SMALL_STATE(6682)] = 294969, + [SMALL_STATE(6683)] = 294987, + [SMALL_STATE(6684)] = 295005, + [SMALL_STATE(6685)] = 295023, + [SMALL_STATE(6686)] = 295041, + [SMALL_STATE(6687)] = 295059, + [SMALL_STATE(6688)] = 295077, + [SMALL_STATE(6689)] = 295095, + [SMALL_STATE(6690)] = 295113, + [SMALL_STATE(6691)] = 295131, + [SMALL_STATE(6692)] = 295149, + [SMALL_STATE(6693)] = 295167, + [SMALL_STATE(6694)] = 295185, + [SMALL_STATE(6695)] = 295203, + [SMALL_STATE(6696)] = 295221, + [SMALL_STATE(6697)] = 295239, + [SMALL_STATE(6698)] = 295257, + [SMALL_STATE(6699)] = 295275, + [SMALL_STATE(6700)] = 295293, + [SMALL_STATE(6701)] = 295311, + [SMALL_STATE(6702)] = 295329, + [SMALL_STATE(6703)] = 295347, + [SMALL_STATE(6704)] = 295365, + [SMALL_STATE(6705)] = 295383, + [SMALL_STATE(6706)] = 295401, + [SMALL_STATE(6707)] = 295419, + [SMALL_STATE(6708)] = 295437, + [SMALL_STATE(6709)] = 295455, + [SMALL_STATE(6710)] = 295473, + [SMALL_STATE(6711)] = 295491, + [SMALL_STATE(6712)] = 295509, + [SMALL_STATE(6713)] = 295527, + [SMALL_STATE(6714)] = 295545, + [SMALL_STATE(6715)] = 295563, + [SMALL_STATE(6716)] = 295581, + [SMALL_STATE(6717)] = 295599, + [SMALL_STATE(6718)] = 295617, + [SMALL_STATE(6719)] = 295635, + [SMALL_STATE(6720)] = 295653, + [SMALL_STATE(6721)] = 295671, + [SMALL_STATE(6722)] = 295689, + [SMALL_STATE(6723)] = 295707, + [SMALL_STATE(6724)] = 295725, + [SMALL_STATE(6725)] = 295743, + [SMALL_STATE(6726)] = 295761, + [SMALL_STATE(6727)] = 295779, + [SMALL_STATE(6728)] = 295797, + [SMALL_STATE(6729)] = 295815, + [SMALL_STATE(6730)] = 295833, + [SMALL_STATE(6731)] = 295851, + [SMALL_STATE(6732)] = 295869, + [SMALL_STATE(6733)] = 295887, + [SMALL_STATE(6734)] = 295905, + [SMALL_STATE(6735)] = 295923, + [SMALL_STATE(6736)] = 295941, + [SMALL_STATE(6737)] = 295959, + [SMALL_STATE(6738)] = 295977, + [SMALL_STATE(6739)] = 295995, + [SMALL_STATE(6740)] = 296013, + [SMALL_STATE(6741)] = 296031, + [SMALL_STATE(6742)] = 296049, + [SMALL_STATE(6743)] = 296067, + [SMALL_STATE(6744)] = 296085, + [SMALL_STATE(6745)] = 296103, + [SMALL_STATE(6746)] = 296121, + [SMALL_STATE(6747)] = 296139, + [SMALL_STATE(6748)] = 296157, + [SMALL_STATE(6749)] = 296175, + [SMALL_STATE(6750)] = 296193, + [SMALL_STATE(6751)] = 296211, + [SMALL_STATE(6752)] = 296229, + [SMALL_STATE(6753)] = 296247, + [SMALL_STATE(6754)] = 296263, + [SMALL_STATE(6755)] = 296281, + [SMALL_STATE(6756)] = 296299, + [SMALL_STATE(6757)] = 296317, + [SMALL_STATE(6758)] = 296335, + [SMALL_STATE(6759)] = 296353, + [SMALL_STATE(6760)] = 296371, + [SMALL_STATE(6761)] = 296389, + [SMALL_STATE(6762)] = 296407, + [SMALL_STATE(6763)] = 296425, + [SMALL_STATE(6764)] = 296443, + [SMALL_STATE(6765)] = 296461, + [SMALL_STATE(6766)] = 296479, + [SMALL_STATE(6767)] = 296497, + [SMALL_STATE(6768)] = 296515, + [SMALL_STATE(6769)] = 296533, + [SMALL_STATE(6770)] = 296551, + [SMALL_STATE(6771)] = 296569, + [SMALL_STATE(6772)] = 296587, + [SMALL_STATE(6773)] = 296605, + [SMALL_STATE(6774)] = 296623, + [SMALL_STATE(6775)] = 296641, + [SMALL_STATE(6776)] = 296659, + [SMALL_STATE(6777)] = 296677, + [SMALL_STATE(6778)] = 296695, + [SMALL_STATE(6779)] = 296713, + [SMALL_STATE(6780)] = 296731, + [SMALL_STATE(6781)] = 296749, + [SMALL_STATE(6782)] = 296767, + [SMALL_STATE(6783)] = 296785, + [SMALL_STATE(6784)] = 296803, + [SMALL_STATE(6785)] = 296821, + [SMALL_STATE(6786)] = 296839, + [SMALL_STATE(6787)] = 296857, + [SMALL_STATE(6788)] = 296875, + [SMALL_STATE(6789)] = 296893, + [SMALL_STATE(6790)] = 296911, + [SMALL_STATE(6791)] = 296929, + [SMALL_STATE(6792)] = 296947, + [SMALL_STATE(6793)] = 296965, + [SMALL_STATE(6794)] = 296983, + [SMALL_STATE(6795)] = 297001, + [SMALL_STATE(6796)] = 297019, + [SMALL_STATE(6797)] = 297037, + [SMALL_STATE(6798)] = 297055, + [SMALL_STATE(6799)] = 297073, + [SMALL_STATE(6800)] = 297091, + [SMALL_STATE(6801)] = 297109, + [SMALL_STATE(6802)] = 297127, + [SMALL_STATE(6803)] = 297145, + [SMALL_STATE(6804)] = 297163, + [SMALL_STATE(6805)] = 297181, + [SMALL_STATE(6806)] = 297199, + [SMALL_STATE(6807)] = 297217, + [SMALL_STATE(6808)] = 297235, + [SMALL_STATE(6809)] = 297253, + [SMALL_STATE(6810)] = 297271, + [SMALL_STATE(6811)] = 297289, + [SMALL_STATE(6812)] = 297307, + [SMALL_STATE(6813)] = 297325, + [SMALL_STATE(6814)] = 297343, + [SMALL_STATE(6815)] = 297361, + [SMALL_STATE(6816)] = 297379, + [SMALL_STATE(6817)] = 297397, + [SMALL_STATE(6818)] = 297415, + [SMALL_STATE(6819)] = 297433, + [SMALL_STATE(6820)] = 297451, + [SMALL_STATE(6821)] = 297469, + [SMALL_STATE(6822)] = 297487, + [SMALL_STATE(6823)] = 297505, + [SMALL_STATE(6824)] = 297523, + [SMALL_STATE(6825)] = 297541, + [SMALL_STATE(6826)] = 297559, + [SMALL_STATE(6827)] = 297573, + [SMALL_STATE(6828)] = 297587, + [SMALL_STATE(6829)] = 297605, + [SMALL_STATE(6830)] = 297623, + [SMALL_STATE(6831)] = 297641, + [SMALL_STATE(6832)] = 297659, + [SMALL_STATE(6833)] = 297677, + [SMALL_STATE(6834)] = 297695, + [SMALL_STATE(6835)] = 297713, + [SMALL_STATE(6836)] = 297731, + [SMALL_STATE(6837)] = 297749, + [SMALL_STATE(6838)] = 297767, + [SMALL_STATE(6839)] = 297785, + [SMALL_STATE(6840)] = 297803, + [SMALL_STATE(6841)] = 297821, + [SMALL_STATE(6842)] = 297837, + [SMALL_STATE(6843)] = 297855, + [SMALL_STATE(6844)] = 297873, + [SMALL_STATE(6845)] = 297891, + [SMALL_STATE(6846)] = 297909, + [SMALL_STATE(6847)] = 297927, + [SMALL_STATE(6848)] = 297945, + [SMALL_STATE(6849)] = 297963, + [SMALL_STATE(6850)] = 297981, + [SMALL_STATE(6851)] = 297999, + [SMALL_STATE(6852)] = 298017, + [SMALL_STATE(6853)] = 298035, + [SMALL_STATE(6854)] = 298053, + [SMALL_STATE(6855)] = 298071, + [SMALL_STATE(6856)] = 298089, + [SMALL_STATE(6857)] = 298107, + [SMALL_STATE(6858)] = 298125, + [SMALL_STATE(6859)] = 298143, + [SMALL_STATE(6860)] = 298161, + [SMALL_STATE(6861)] = 298179, + [SMALL_STATE(6862)] = 298197, + [SMALL_STATE(6863)] = 298215, + [SMALL_STATE(6864)] = 298233, + [SMALL_STATE(6865)] = 298251, + [SMALL_STATE(6866)] = 298269, + [SMALL_STATE(6867)] = 298287, + [SMALL_STATE(6868)] = 298305, + [SMALL_STATE(6869)] = 298323, + [SMALL_STATE(6870)] = 298341, + [SMALL_STATE(6871)] = 298359, + [SMALL_STATE(6872)] = 298377, + [SMALL_STATE(6873)] = 298395, + [SMALL_STATE(6874)] = 298413, + [SMALL_STATE(6875)] = 298431, + [SMALL_STATE(6876)] = 298449, + [SMALL_STATE(6877)] = 298467, + [SMALL_STATE(6878)] = 298485, + [SMALL_STATE(6879)] = 298503, + [SMALL_STATE(6880)] = 298521, + [SMALL_STATE(6881)] = 298539, + [SMALL_STATE(6882)] = 298557, + [SMALL_STATE(6883)] = 298575, + [SMALL_STATE(6884)] = 298593, + [SMALL_STATE(6885)] = 298611, + [SMALL_STATE(6886)] = 298629, + [SMALL_STATE(6887)] = 298647, + [SMALL_STATE(6888)] = 298665, + [SMALL_STATE(6889)] = 298683, + [SMALL_STATE(6890)] = 298701, + [SMALL_STATE(6891)] = 298719, + [SMALL_STATE(6892)] = 298737, + [SMALL_STATE(6893)] = 298753, + [SMALL_STATE(6894)] = 298771, + [SMALL_STATE(6895)] = 298789, + [SMALL_STATE(6896)] = 298807, + [SMALL_STATE(6897)] = 298825, + [SMALL_STATE(6898)] = 298843, + [SMALL_STATE(6899)] = 298861, + [SMALL_STATE(6900)] = 298879, + [SMALL_STATE(6901)] = 298897, + [SMALL_STATE(6902)] = 298915, + [SMALL_STATE(6903)] = 298931, + [SMALL_STATE(6904)] = 298949, + [SMALL_STATE(6905)] = 298967, + [SMALL_STATE(6906)] = 298985, + [SMALL_STATE(6907)] = 299003, + [SMALL_STATE(6908)] = 299021, + [SMALL_STATE(6909)] = 299039, + [SMALL_STATE(6910)] = 299057, + [SMALL_STATE(6911)] = 299075, + [SMALL_STATE(6912)] = 299093, + [SMALL_STATE(6913)] = 299111, + [SMALL_STATE(6914)] = 299129, + [SMALL_STATE(6915)] = 299147, + [SMALL_STATE(6916)] = 299165, + [SMALL_STATE(6917)] = 299183, + [SMALL_STATE(6918)] = 299201, + [SMALL_STATE(6919)] = 299219, + [SMALL_STATE(6920)] = 299237, + [SMALL_STATE(6921)] = 299255, + [SMALL_STATE(6922)] = 299273, + [SMALL_STATE(6923)] = 299291, + [SMALL_STATE(6924)] = 299309, + [SMALL_STATE(6925)] = 299327, + [SMALL_STATE(6926)] = 299343, + [SMALL_STATE(6927)] = 299359, + [SMALL_STATE(6928)] = 299377, + [SMALL_STATE(6929)] = 299395, + [SMALL_STATE(6930)] = 299413, + [SMALL_STATE(6931)] = 299431, + [SMALL_STATE(6932)] = 299449, + [SMALL_STATE(6933)] = 299467, + [SMALL_STATE(6934)] = 299485, + [SMALL_STATE(6935)] = 299503, + [SMALL_STATE(6936)] = 299521, + [SMALL_STATE(6937)] = 299539, + [SMALL_STATE(6938)] = 299557, + [SMALL_STATE(6939)] = 299575, + [SMALL_STATE(6940)] = 299593, + [SMALL_STATE(6941)] = 299611, + [SMALL_STATE(6942)] = 299629, + [SMALL_STATE(6943)] = 299647, + [SMALL_STATE(6944)] = 299665, + [SMALL_STATE(6945)] = 299683, + [SMALL_STATE(6946)] = 299701, + [SMALL_STATE(6947)] = 299719, + [SMALL_STATE(6948)] = 299737, + [SMALL_STATE(6949)] = 299755, + [SMALL_STATE(6950)] = 299773, + [SMALL_STATE(6951)] = 299791, + [SMALL_STATE(6952)] = 299809, + [SMALL_STATE(6953)] = 299827, + [SMALL_STATE(6954)] = 299845, + [SMALL_STATE(6955)] = 299863, + [SMALL_STATE(6956)] = 299881, + [SMALL_STATE(6957)] = 299899, + [SMALL_STATE(6958)] = 299917, + [SMALL_STATE(6959)] = 299935, + [SMALL_STATE(6960)] = 299953, + [SMALL_STATE(6961)] = 299971, + [SMALL_STATE(6962)] = 299989, + [SMALL_STATE(6963)] = 300007, + [SMALL_STATE(6964)] = 300025, + [SMALL_STATE(6965)] = 300043, + [SMALL_STATE(6966)] = 300061, + [SMALL_STATE(6967)] = 300079, + [SMALL_STATE(6968)] = 300097, + [SMALL_STATE(6969)] = 300115, + [SMALL_STATE(6970)] = 300133, + [SMALL_STATE(6971)] = 300151, + [SMALL_STATE(6972)] = 300169, + [SMALL_STATE(6973)] = 300187, + [SMALL_STATE(6974)] = 300205, + [SMALL_STATE(6975)] = 300223, + [SMALL_STATE(6976)] = 300241, + [SMALL_STATE(6977)] = 300259, + [SMALL_STATE(6978)] = 300277, + [SMALL_STATE(6979)] = 300295, + [SMALL_STATE(6980)] = 300313, + [SMALL_STATE(6981)] = 300331, + [SMALL_STATE(6982)] = 300349, + [SMALL_STATE(6983)] = 300367, + [SMALL_STATE(6984)] = 300385, + [SMALL_STATE(6985)] = 300403, + [SMALL_STATE(6986)] = 300421, + [SMALL_STATE(6987)] = 300439, + [SMALL_STATE(6988)] = 300457, + [SMALL_STATE(6989)] = 300475, + [SMALL_STATE(6990)] = 300493, + [SMALL_STATE(6991)] = 300511, + [SMALL_STATE(6992)] = 300529, + [SMALL_STATE(6993)] = 300547, + [SMALL_STATE(6994)] = 300565, + [SMALL_STATE(6995)] = 300583, + [SMALL_STATE(6996)] = 300601, + [SMALL_STATE(6997)] = 300619, + [SMALL_STATE(6998)] = 300637, + [SMALL_STATE(6999)] = 300655, + [SMALL_STATE(7000)] = 300673, + [SMALL_STATE(7001)] = 300691, + [SMALL_STATE(7002)] = 300709, + [SMALL_STATE(7003)] = 300727, + [SMALL_STATE(7004)] = 300745, + [SMALL_STATE(7005)] = 300763, + [SMALL_STATE(7006)] = 300781, + [SMALL_STATE(7007)] = 300799, + [SMALL_STATE(7008)] = 300815, + [SMALL_STATE(7009)] = 300833, + [SMALL_STATE(7010)] = 300851, + [SMALL_STATE(7011)] = 300869, + [SMALL_STATE(7012)] = 300887, + [SMALL_STATE(7013)] = 300905, + [SMALL_STATE(7014)] = 300923, + [SMALL_STATE(7015)] = 300939, + [SMALL_STATE(7016)] = 300957, + [SMALL_STATE(7017)] = 300975, + [SMALL_STATE(7018)] = 300993, + [SMALL_STATE(7019)] = 301011, + [SMALL_STATE(7020)] = 301029, + [SMALL_STATE(7021)] = 301047, + [SMALL_STATE(7022)] = 301065, + [SMALL_STATE(7023)] = 301083, + [SMALL_STATE(7024)] = 301101, + [SMALL_STATE(7025)] = 301119, + [SMALL_STATE(7026)] = 301133, + [SMALL_STATE(7027)] = 301151, + [SMALL_STATE(7028)] = 301169, + [SMALL_STATE(7029)] = 301187, + [SMALL_STATE(7030)] = 301205, + [SMALL_STATE(7031)] = 301223, + [SMALL_STATE(7032)] = 301241, + [SMALL_STATE(7033)] = 301259, + [SMALL_STATE(7034)] = 301277, + [SMALL_STATE(7035)] = 301295, + [SMALL_STATE(7036)] = 301313, + [SMALL_STATE(7037)] = 301331, + [SMALL_STATE(7038)] = 301349, + [SMALL_STATE(7039)] = 301363, + [SMALL_STATE(7040)] = 301381, + [SMALL_STATE(7041)] = 301399, + [SMALL_STATE(7042)] = 301417, + [SMALL_STATE(7043)] = 301435, + [SMALL_STATE(7044)] = 301449, + [SMALL_STATE(7045)] = 301467, + [SMALL_STATE(7046)] = 301485, + [SMALL_STATE(7047)] = 301503, + [SMALL_STATE(7048)] = 301521, + [SMALL_STATE(7049)] = 301539, + [SMALL_STATE(7050)] = 301557, + [SMALL_STATE(7051)] = 301575, + [SMALL_STATE(7052)] = 301593, + [SMALL_STATE(7053)] = 301611, + [SMALL_STATE(7054)] = 301629, + [SMALL_STATE(7055)] = 301647, + [SMALL_STATE(7056)] = 301665, + [SMALL_STATE(7057)] = 301683, + [SMALL_STATE(7058)] = 301701, + [SMALL_STATE(7059)] = 301719, + [SMALL_STATE(7060)] = 301737, + [SMALL_STATE(7061)] = 301755, + [SMALL_STATE(7062)] = 301773, + [SMALL_STATE(7063)] = 301791, + [SMALL_STATE(7064)] = 301809, + [SMALL_STATE(7065)] = 301827, + [SMALL_STATE(7066)] = 301845, + [SMALL_STATE(7067)] = 301863, + [SMALL_STATE(7068)] = 301881, + [SMALL_STATE(7069)] = 301899, + [SMALL_STATE(7070)] = 301917, + [SMALL_STATE(7071)] = 301935, + [SMALL_STATE(7072)] = 301953, + [SMALL_STATE(7073)] = 301971, + [SMALL_STATE(7074)] = 301989, + [SMALL_STATE(7075)] = 302007, + [SMALL_STATE(7076)] = 302025, + [SMALL_STATE(7077)] = 302043, + [SMALL_STATE(7078)] = 302061, + [SMALL_STATE(7079)] = 302079, + [SMALL_STATE(7080)] = 302097, + [SMALL_STATE(7081)] = 302115, + [SMALL_STATE(7082)] = 302133, + [SMALL_STATE(7083)] = 302151, + [SMALL_STATE(7084)] = 302169, + [SMALL_STATE(7085)] = 302187, + [SMALL_STATE(7086)] = 302205, + [SMALL_STATE(7087)] = 302223, + [SMALL_STATE(7088)] = 302241, + [SMALL_STATE(7089)] = 302259, + [SMALL_STATE(7090)] = 302277, + [SMALL_STATE(7091)] = 302295, + [SMALL_STATE(7092)] = 302313, + [SMALL_STATE(7093)] = 302331, + [SMALL_STATE(7094)] = 302349, + [SMALL_STATE(7095)] = 302367, + [SMALL_STATE(7096)] = 302385, + [SMALL_STATE(7097)] = 302403, + [SMALL_STATE(7098)] = 302421, + [SMALL_STATE(7099)] = 302439, + [SMALL_STATE(7100)] = 302457, + [SMALL_STATE(7101)] = 302475, + [SMALL_STATE(7102)] = 302493, + [SMALL_STATE(7103)] = 302511, + [SMALL_STATE(7104)] = 302529, + [SMALL_STATE(7105)] = 302547, + [SMALL_STATE(7106)] = 302565, + [SMALL_STATE(7107)] = 302583, + [SMALL_STATE(7108)] = 302601, + [SMALL_STATE(7109)] = 302619, + [SMALL_STATE(7110)] = 302637, + [SMALL_STATE(7111)] = 302655, + [SMALL_STATE(7112)] = 302673, + [SMALL_STATE(7113)] = 302691, + [SMALL_STATE(7114)] = 302709, + [SMALL_STATE(7115)] = 302727, + [SMALL_STATE(7116)] = 302745, + [SMALL_STATE(7117)] = 302763, + [SMALL_STATE(7118)] = 302781, + [SMALL_STATE(7119)] = 302799, + [SMALL_STATE(7120)] = 302817, + [SMALL_STATE(7121)] = 302835, + [SMALL_STATE(7122)] = 302853, + [SMALL_STATE(7123)] = 302871, + [SMALL_STATE(7124)] = 302889, + [SMALL_STATE(7125)] = 302907, + [SMALL_STATE(7126)] = 302925, + [SMALL_STATE(7127)] = 302943, + [SMALL_STATE(7128)] = 302961, + [SMALL_STATE(7129)] = 302979, + [SMALL_STATE(7130)] = 302997, + [SMALL_STATE(7131)] = 303015, + [SMALL_STATE(7132)] = 303033, + [SMALL_STATE(7133)] = 303051, + [SMALL_STATE(7134)] = 303069, + [SMALL_STATE(7135)] = 303087, + [SMALL_STATE(7136)] = 303105, + [SMALL_STATE(7137)] = 303123, + [SMALL_STATE(7138)] = 303141, + [SMALL_STATE(7139)] = 303159, + [SMALL_STATE(7140)] = 303177, + [SMALL_STATE(7141)] = 303195, + [SMALL_STATE(7142)] = 303213, + [SMALL_STATE(7143)] = 303231, + [SMALL_STATE(7144)] = 303249, + [SMALL_STATE(7145)] = 303267, + [SMALL_STATE(7146)] = 303285, + [SMALL_STATE(7147)] = 303303, + [SMALL_STATE(7148)] = 303321, + [SMALL_STATE(7149)] = 303339, + [SMALL_STATE(7150)] = 303357, + [SMALL_STATE(7151)] = 303375, + [SMALL_STATE(7152)] = 303393, + [SMALL_STATE(7153)] = 303411, + [SMALL_STATE(7154)] = 303429, + [SMALL_STATE(7155)] = 303447, + [SMALL_STATE(7156)] = 303465, + [SMALL_STATE(7157)] = 303483, + [SMALL_STATE(7158)] = 303501, + [SMALL_STATE(7159)] = 303519, + [SMALL_STATE(7160)] = 303537, + [SMALL_STATE(7161)] = 303555, + [SMALL_STATE(7162)] = 303573, + [SMALL_STATE(7163)] = 303591, + [SMALL_STATE(7164)] = 303609, + [SMALL_STATE(7165)] = 303627, + [SMALL_STATE(7166)] = 303645, + [SMALL_STATE(7167)] = 303663, + [SMALL_STATE(7168)] = 303681, + [SMALL_STATE(7169)] = 303699, + [SMALL_STATE(7170)] = 303717, + [SMALL_STATE(7171)] = 303735, + [SMALL_STATE(7172)] = 303753, + [SMALL_STATE(7173)] = 303771, + [SMALL_STATE(7174)] = 303789, + [SMALL_STATE(7175)] = 303807, + [SMALL_STATE(7176)] = 303825, + [SMALL_STATE(7177)] = 303841, + [SMALL_STATE(7178)] = 303859, + [SMALL_STATE(7179)] = 303877, + [SMALL_STATE(7180)] = 303895, + [SMALL_STATE(7181)] = 303913, + [SMALL_STATE(7182)] = 303931, + [SMALL_STATE(7183)] = 303949, + [SMALL_STATE(7184)] = 303967, + [SMALL_STATE(7185)] = 303985, + [SMALL_STATE(7186)] = 304003, + [SMALL_STATE(7187)] = 304017, + [SMALL_STATE(7188)] = 304035, + [SMALL_STATE(7189)] = 304051, + [SMALL_STATE(7190)] = 304069, + [SMALL_STATE(7191)] = 304087, + [SMALL_STATE(7192)] = 304105, + [SMALL_STATE(7193)] = 304123, + [SMALL_STATE(7194)] = 304141, + [SMALL_STATE(7195)] = 304159, + [SMALL_STATE(7196)] = 304177, + [SMALL_STATE(7197)] = 304195, + [SMALL_STATE(7198)] = 304213, + [SMALL_STATE(7199)] = 304227, + [SMALL_STATE(7200)] = 304245, + [SMALL_STATE(7201)] = 304263, + [SMALL_STATE(7202)] = 304281, + [SMALL_STATE(7203)] = 304299, + [SMALL_STATE(7204)] = 304317, + [SMALL_STATE(7205)] = 304335, + [SMALL_STATE(7206)] = 304353, + [SMALL_STATE(7207)] = 304371, + [SMALL_STATE(7208)] = 304389, + [SMALL_STATE(7209)] = 304407, + [SMALL_STATE(7210)] = 304425, + [SMALL_STATE(7211)] = 304443, + [SMALL_STATE(7212)] = 304461, + [SMALL_STATE(7213)] = 304479, + [SMALL_STATE(7214)] = 304497, + [SMALL_STATE(7215)] = 304511, + [SMALL_STATE(7216)] = 304529, + [SMALL_STATE(7217)] = 304547, + [SMALL_STATE(7218)] = 304565, + [SMALL_STATE(7219)] = 304579, + [SMALL_STATE(7220)] = 304595, + [SMALL_STATE(7221)] = 304613, + [SMALL_STATE(7222)] = 304631, + [SMALL_STATE(7223)] = 304649, + [SMALL_STATE(7224)] = 304667, + [SMALL_STATE(7225)] = 304685, + [SMALL_STATE(7226)] = 304703, + [SMALL_STATE(7227)] = 304721, + [SMALL_STATE(7228)] = 304739, + [SMALL_STATE(7229)] = 304757, + [SMALL_STATE(7230)] = 304775, + [SMALL_STATE(7231)] = 304793, + [SMALL_STATE(7232)] = 304811, + [SMALL_STATE(7233)] = 304829, + [SMALL_STATE(7234)] = 304847, + [SMALL_STATE(7235)] = 304865, + [SMALL_STATE(7236)] = 304883, + [SMALL_STATE(7237)] = 304901, + [SMALL_STATE(7238)] = 304919, + [SMALL_STATE(7239)] = 304937, + [SMALL_STATE(7240)] = 304955, + [SMALL_STATE(7241)] = 304973, + [SMALL_STATE(7242)] = 304991, + [SMALL_STATE(7243)] = 305009, + [SMALL_STATE(7244)] = 305027, + [SMALL_STATE(7245)] = 305045, + [SMALL_STATE(7246)] = 305063, + [SMALL_STATE(7247)] = 305081, + [SMALL_STATE(7248)] = 305099, + [SMALL_STATE(7249)] = 305117, + [SMALL_STATE(7250)] = 305135, + [SMALL_STATE(7251)] = 305153, + [SMALL_STATE(7252)] = 305171, + [SMALL_STATE(7253)] = 305189, + [SMALL_STATE(7254)] = 305207, + [SMALL_STATE(7255)] = 305225, + [SMALL_STATE(7256)] = 305243, + [SMALL_STATE(7257)] = 305261, + [SMALL_STATE(7258)] = 305279, + [SMALL_STATE(7259)] = 305297, + [SMALL_STATE(7260)] = 305315, + [SMALL_STATE(7261)] = 305333, + [SMALL_STATE(7262)] = 305347, + [SMALL_STATE(7263)] = 305361, + [SMALL_STATE(7264)] = 305379, + [SMALL_STATE(7265)] = 305394, + [SMALL_STATE(7266)] = 305409, + [SMALL_STATE(7267)] = 305422, + [SMALL_STATE(7268)] = 305435, + [SMALL_STATE(7269)] = 305448, + [SMALL_STATE(7270)] = 305463, + [SMALL_STATE(7271)] = 305478, + [SMALL_STATE(7272)] = 305493, + [SMALL_STATE(7273)] = 305506, + [SMALL_STATE(7274)] = 305521, + [SMALL_STATE(7275)] = 305536, + [SMALL_STATE(7276)] = 305551, + [SMALL_STATE(7277)] = 305566, + [SMALL_STATE(7278)] = 305581, + [SMALL_STATE(7279)] = 305596, + [SMALL_STATE(7280)] = 305611, + [SMALL_STATE(7281)] = 305626, + [SMALL_STATE(7282)] = 305639, + [SMALL_STATE(7283)] = 305654, + [SMALL_STATE(7284)] = 305667, + [SMALL_STATE(7285)] = 305682, + [SMALL_STATE(7286)] = 305695, + [SMALL_STATE(7287)] = 305708, + [SMALL_STATE(7288)] = 305723, + [SMALL_STATE(7289)] = 305738, + [SMALL_STATE(7290)] = 305753, + [SMALL_STATE(7291)] = 305768, + [SMALL_STATE(7292)] = 305783, + [SMALL_STATE(7293)] = 305798, + [SMALL_STATE(7294)] = 305813, + [SMALL_STATE(7295)] = 305828, + [SMALL_STATE(7296)] = 305843, + [SMALL_STATE(7297)] = 305858, + [SMALL_STATE(7298)] = 305873, + [SMALL_STATE(7299)] = 305888, + [SMALL_STATE(7300)] = 305903, + [SMALL_STATE(7301)] = 305918, + [SMALL_STATE(7302)] = 305933, + [SMALL_STATE(7303)] = 305948, + [SMALL_STATE(7304)] = 305963, + [SMALL_STATE(7305)] = 305978, + [SMALL_STATE(7306)] = 305993, + [SMALL_STATE(7307)] = 306008, + [SMALL_STATE(7308)] = 306023, + [SMALL_STATE(7309)] = 306038, + [SMALL_STATE(7310)] = 306053, + [SMALL_STATE(7311)] = 306066, + [SMALL_STATE(7312)] = 306081, + [SMALL_STATE(7313)] = 306096, + [SMALL_STATE(7314)] = 306111, + [SMALL_STATE(7315)] = 306126, + [SMALL_STATE(7316)] = 306141, + [SMALL_STATE(7317)] = 306156, + [SMALL_STATE(7318)] = 306171, + [SMALL_STATE(7319)] = 306186, + [SMALL_STATE(7320)] = 306199, + [SMALL_STATE(7321)] = 306214, + [SMALL_STATE(7322)] = 306229, + [SMALL_STATE(7323)] = 306244, + [SMALL_STATE(7324)] = 306259, + [SMALL_STATE(7325)] = 306274, + [SMALL_STATE(7326)] = 306289, + [SMALL_STATE(7327)] = 306304, + [SMALL_STATE(7328)] = 306319, + [SMALL_STATE(7329)] = 306334, + [SMALL_STATE(7330)] = 306349, + [SMALL_STATE(7331)] = 306364, + [SMALL_STATE(7332)] = 306379, + [SMALL_STATE(7333)] = 306394, + [SMALL_STATE(7334)] = 306409, + [SMALL_STATE(7335)] = 306424, + [SMALL_STATE(7336)] = 306439, + [SMALL_STATE(7337)] = 306452, + [SMALL_STATE(7338)] = 306467, + [SMALL_STATE(7339)] = 306482, + [SMALL_STATE(7340)] = 306497, + [SMALL_STATE(7341)] = 306510, + [SMALL_STATE(7342)] = 306523, + [SMALL_STATE(7343)] = 306538, + [SMALL_STATE(7344)] = 306553, + [SMALL_STATE(7345)] = 306566, + [SMALL_STATE(7346)] = 306579, + [SMALL_STATE(7347)] = 306594, + [SMALL_STATE(7348)] = 306609, + [SMALL_STATE(7349)] = 306624, + [SMALL_STATE(7350)] = 306639, + [SMALL_STATE(7351)] = 306654, + [SMALL_STATE(7352)] = 306667, + [SMALL_STATE(7353)] = 306682, + [SMALL_STATE(7354)] = 306697, + [SMALL_STATE(7355)] = 306712, + [SMALL_STATE(7356)] = 306727, + [SMALL_STATE(7357)] = 306740, + [SMALL_STATE(7358)] = 306755, + [SMALL_STATE(7359)] = 306770, + [SMALL_STATE(7360)] = 306785, + [SMALL_STATE(7361)] = 306797, + [SMALL_STATE(7362)] = 306809, + [SMALL_STATE(7363)] = 306821, + [SMALL_STATE(7364)] = 306833, + [SMALL_STATE(7365)] = 306845, + [SMALL_STATE(7366)] = 306857, + [SMALL_STATE(7367)] = 306869, + [SMALL_STATE(7368)] = 306881, + [SMALL_STATE(7369)] = 306893, + [SMALL_STATE(7370)] = 306905, + [SMALL_STATE(7371)] = 306917, + [SMALL_STATE(7372)] = 306929, + [SMALL_STATE(7373)] = 306941, + [SMALL_STATE(7374)] = 306953, + [SMALL_STATE(7375)] = 306965, + [SMALL_STATE(7376)] = 306977, + [SMALL_STATE(7377)] = 306989, + [SMALL_STATE(7378)] = 307001, + [SMALL_STATE(7379)] = 307013, + [SMALL_STATE(7380)] = 307025, + [SMALL_STATE(7381)] = 307037, + [SMALL_STATE(7382)] = 307049, + [SMALL_STATE(7383)] = 307061, + [SMALL_STATE(7384)] = 307073, + [SMALL_STATE(7385)] = 307085, + [SMALL_STATE(7386)] = 307097, + [SMALL_STATE(7387)] = 307109, + [SMALL_STATE(7388)] = 307121, + [SMALL_STATE(7389)] = 307133, + [SMALL_STATE(7390)] = 307145, + [SMALL_STATE(7391)] = 307157, + [SMALL_STATE(7392)] = 307169, + [SMALL_STATE(7393)] = 307181, + [SMALL_STATE(7394)] = 307193, + [SMALL_STATE(7395)] = 307205, + [SMALL_STATE(7396)] = 307217, + [SMALL_STATE(7397)] = 307229, + [SMALL_STATE(7398)] = 307241, + [SMALL_STATE(7399)] = 307253, + [SMALL_STATE(7400)] = 307265, + [SMALL_STATE(7401)] = 307277, + [SMALL_STATE(7402)] = 307289, + [SMALL_STATE(7403)] = 307301, + [SMALL_STATE(7404)] = 307313, + [SMALL_STATE(7405)] = 307325, + [SMALL_STATE(7406)] = 307337, + [SMALL_STATE(7407)] = 307349, + [SMALL_STATE(7408)] = 307361, + [SMALL_STATE(7409)] = 307373, + [SMALL_STATE(7410)] = 307385, + [SMALL_STATE(7411)] = 307397, + [SMALL_STATE(7412)] = 307409, + [SMALL_STATE(7413)] = 307421, + [SMALL_STATE(7414)] = 307433, + [SMALL_STATE(7415)] = 307445, + [SMALL_STATE(7416)] = 307457, + [SMALL_STATE(7417)] = 307469, + [SMALL_STATE(7418)] = 307481, + [SMALL_STATE(7419)] = 307493, + [SMALL_STATE(7420)] = 307505, + [SMALL_STATE(7421)] = 307517, + [SMALL_STATE(7422)] = 307529, + [SMALL_STATE(7423)] = 307541, + [SMALL_STATE(7424)] = 307553, + [SMALL_STATE(7425)] = 307565, + [SMALL_STATE(7426)] = 307577, + [SMALL_STATE(7427)] = 307589, + [SMALL_STATE(7428)] = 307601, + [SMALL_STATE(7429)] = 307613, + [SMALL_STATE(7430)] = 307625, + [SMALL_STATE(7431)] = 307637, + [SMALL_STATE(7432)] = 307649, + [SMALL_STATE(7433)] = 307661, + [SMALL_STATE(7434)] = 307673, + [SMALL_STATE(7435)] = 307685, + [SMALL_STATE(7436)] = 307697, + [SMALL_STATE(7437)] = 307709, + [SMALL_STATE(7438)] = 307721, + [SMALL_STATE(7439)] = 307733, + [SMALL_STATE(7440)] = 307745, + [SMALL_STATE(7441)] = 307757, + [SMALL_STATE(7442)] = 307769, + [SMALL_STATE(7443)] = 307781, + [SMALL_STATE(7444)] = 307793, + [SMALL_STATE(7445)] = 307805, + [SMALL_STATE(7446)] = 307817, + [SMALL_STATE(7447)] = 307829, + [SMALL_STATE(7448)] = 307841, + [SMALL_STATE(7449)] = 307853, + [SMALL_STATE(7450)] = 307865, + [SMALL_STATE(7451)] = 307877, + [SMALL_STATE(7452)] = 307889, + [SMALL_STATE(7453)] = 307901, + [SMALL_STATE(7454)] = 307913, + [SMALL_STATE(7455)] = 307925, + [SMALL_STATE(7456)] = 307937, + [SMALL_STATE(7457)] = 307949, + [SMALL_STATE(7458)] = 307961, + [SMALL_STATE(7459)] = 307973, + [SMALL_STATE(7460)] = 307985, + [SMALL_STATE(7461)] = 307997, + [SMALL_STATE(7462)] = 308009, + [SMALL_STATE(7463)] = 308021, + [SMALL_STATE(7464)] = 308033, + [SMALL_STATE(7465)] = 308045, + [SMALL_STATE(7466)] = 308057, + [SMALL_STATE(7467)] = 308069, + [SMALL_STATE(7468)] = 308081, + [SMALL_STATE(7469)] = 308093, + [SMALL_STATE(7470)] = 308105, + [SMALL_STATE(7471)] = 308117, + [SMALL_STATE(7472)] = 308129, + [SMALL_STATE(7473)] = 308141, + [SMALL_STATE(7474)] = 308153, + [SMALL_STATE(7475)] = 308165, + [SMALL_STATE(7476)] = 308177, + [SMALL_STATE(7477)] = 308189, + [SMALL_STATE(7478)] = 308201, + [SMALL_STATE(7479)] = 308213, + [SMALL_STATE(7480)] = 308225, + [SMALL_STATE(7481)] = 308237, + [SMALL_STATE(7482)] = 308249, + [SMALL_STATE(7483)] = 308261, + [SMALL_STATE(7484)] = 308273, + [SMALL_STATE(7485)] = 308285, + [SMALL_STATE(7486)] = 308297, + [SMALL_STATE(7487)] = 308309, + [SMALL_STATE(7488)] = 308321, + [SMALL_STATE(7489)] = 308333, + [SMALL_STATE(7490)] = 308345, + [SMALL_STATE(7491)] = 308357, + [SMALL_STATE(7492)] = 308369, + [SMALL_STATE(7493)] = 308381, + [SMALL_STATE(7494)] = 308393, + [SMALL_STATE(7495)] = 308405, + [SMALL_STATE(7496)] = 308417, + [SMALL_STATE(7497)] = 308429, + [SMALL_STATE(7498)] = 308441, + [SMALL_STATE(7499)] = 308453, + [SMALL_STATE(7500)] = 308465, + [SMALL_STATE(7501)] = 308477, + [SMALL_STATE(7502)] = 308489, + [SMALL_STATE(7503)] = 308501, + [SMALL_STATE(7504)] = 308513, + [SMALL_STATE(7505)] = 308525, + [SMALL_STATE(7506)] = 308537, + [SMALL_STATE(7507)] = 308549, + [SMALL_STATE(7508)] = 308561, + [SMALL_STATE(7509)] = 308573, + [SMALL_STATE(7510)] = 308585, + [SMALL_STATE(7511)] = 308597, + [SMALL_STATE(7512)] = 308609, + [SMALL_STATE(7513)] = 308621, + [SMALL_STATE(7514)] = 308633, + [SMALL_STATE(7515)] = 308645, + [SMALL_STATE(7516)] = 308657, + [SMALL_STATE(7517)] = 308669, + [SMALL_STATE(7518)] = 308681, + [SMALL_STATE(7519)] = 308693, + [SMALL_STATE(7520)] = 308705, + [SMALL_STATE(7521)] = 308717, + [SMALL_STATE(7522)] = 308729, + [SMALL_STATE(7523)] = 308741, + [SMALL_STATE(7524)] = 308753, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -473041,4968 +472417,4975 @@ 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, 0, 0), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7452), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_without_parentheses, 1, 0, 3), - [165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_without_parentheses, 1, 0, 3), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7344), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7343), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7473), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1734), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(620), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7473), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1657), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(594), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 1, 0, 0), - [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 1, 0, 0), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7442), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7366), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1546), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(785), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7366), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_without_parentheses, 1, 0, 2), + [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_without_parentheses, 1, 0, 2), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7492), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1709), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(811), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 1, 0, 0), [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 1, 0, 0), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), + [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 1, 0, 0), + [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 1, 0, 0), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7525), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2337), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(861), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1042), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(544), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7326), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3156), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(754), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(833), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7520), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7498), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3331), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(946), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3729), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(890), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3985), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(975), - [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 2, 0, 0), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 2, 0, 0), - [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 2, 0, 0), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(263), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(716), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 2, 0, 0), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7391), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1, 0, 0), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7342), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7527), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_items_with_trailing_separator, 2, 0, 0), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_operator_identifier, 1, 0, 0), SHIFT(7473), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 1, 0, 4), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2, 0, 7), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_items_with_trailing_separator, 3, 0, 0), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7517), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2452), + [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(587), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(715), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(735), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3261), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1031), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(566), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7499), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3949), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(607), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3164), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(651), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3803), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(673), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 2, 0, 0), + [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 2, 0, 0), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 2, 0, 0), + [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 2, 0, 0), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(264), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(860), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7424), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1, 0, 0), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7512), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7450), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_items_with_trailing_separator, 2, 0, 0), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_operator_identifier, 1, 0, 0), SHIFT(7366), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 1, 0, 3), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2, 0, 6), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_items_with_trailing_separator, 3, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 1, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 3, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2, 0, 0), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 2, 0, 0), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 4, 0, 0), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 5, 0, 0), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3, 0, 0), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 3, 0, 0), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 4, 0, 0), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 4, 0, 0), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 5, 0, 0), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 3, 0, 0), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 4, 0, 0), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 5, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 4, 0, 0), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 5, 0, 0), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 2, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 4, 0, 0), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, 0, 0), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 3, 0, 0), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_dot, 3, 0, 16), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_dot, 3, 0, 16), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_double, 2, 0, 5), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_double, 2, 0, 5), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_identifier, 1, 0, 0), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_identifier, 1, 0, 0), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_single, 2, 0, 5), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_single, 2, 0, 5), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_double, 3, 0, 13), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_double, 3, 0, 13), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_single, 3, 0, 13), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_single, 3, 0, 13), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_double, 4, 0, 18), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_double, 4, 0, 18), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_single, 4, 0, 18), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_single, 4, 0, 18), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 2), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 2), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_semgrep_ellipsis, 1, 0, 0), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_terminator, 1, 0, 0), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminator, 1, 0, 0), - [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), - [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1378), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 1, 0, 1), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_terminator_repeat1, 1, 0, 1), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminator, 2, 0, 0), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_terminator, 2, 0, 0), - [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1404), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1402), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metavariable_keyword, 2, 0, 10), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metavariable_keyword, 2, 0, 10), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_keyword, 2, 0, 11), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_keyword, 2, 0, 11), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword, 1, 0, 0), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1, 0, 0), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_dot, 2, 0, 7), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 1, 0, 0), SHIFT(363), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 1, 0, 0), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_with_parentheses, 1, 0, 0), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_with_parentheses, 1, 0, 0), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_with_parentheses, 2, 0, 3), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_with_parentheses, 2, 0, 3), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_with_parentheses, 2, 0, 3), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_with_parentheses, 2, 0, 3), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2, 0, 0), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 2, 0, 0), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_with_parentheses, 3, 0, 3), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_with_parentheses, 3, 0, 3), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_with_parentheses, 3, 0, 3), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_with_parentheses, 3, 0, 3), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_with_parentheses_immediate, 2, 0, 17), - [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_parentheses_immediate, 2, 0, 17), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 0), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 0), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_charlist, 1, 0, 0), - [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_charlist, 1, 0, 0), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_call, 2, 0, 3), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_call, 2, 0, 3), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_with_parentheses, 3, 0, 0), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_parentheses, 3, 0, 0), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3, 0, 0), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3, 0, 0), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_with_parentheses, 4, 0, 3), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_with_parentheses, 4, 0, 3), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_without_parentheses, 2, 0, 3), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_without_parentheses, 2, 0, 3), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4, 0, 0), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4, 0, 0), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_without_parentheses, 2, 0, 3), - [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_without_parentheses, 2, 0, 3), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5, 0, 0), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5, 0, 0), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_call, 2, 0, 3), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_call, 2, 0, 3), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6, 0, 0), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6, 0, 0), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7, 0, 0), - [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7, 0, 0), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_with_parentheses_immediate, 3, 0, 17), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_parentheses_immediate, 3, 0, 17), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_with_parentheses, 2, 0, 0), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_parentheses, 2, 0, 0), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_with_parentheses, 4, 0, 3), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_with_parentheses, 4, 0, 3), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 3, 0, 14), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 3, 0, 14), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 3, 0, 15), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 3, 0, 15), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_heredoc_single, 2, 0, 5), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_heredoc_single, 2, 0, 5), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_heredoc_double, 2, 0, 5), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_heredoc_double, 2, 0, 5), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 2, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 2, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, -1, 6), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, -1, 6), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_without_parentheses, 1, -1, 0), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_without_parentheses, 1, -1, 0), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 2, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 2, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metavariable_atom, 2, 0, 0), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metavariable_atom, 2, 0, 0), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_semgrep_ellipsis, 1, 0, 0), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_just_do_block, 2, 0, 3), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_just_do_block, 2, 0, 3), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 3, -1, 8), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 3, -1, 8), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_parenthesis, 2, 0, 5), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_parenthesis, 2, 0, 5), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_curly, 2, 0, 5), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_curly, 2, 0, 5), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_heredoc_single, 3, 0, 13), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_heredoc_single, 3, 0, 13), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_heredoc_double, 3, 0, 13), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_heredoc_double, 3, 0, 13), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 3, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 3, 0, 0), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3, 0, 0), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3, 0, 0), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3, 0, 0), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3, 0, 0), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deep_ellipsis, 3, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deep_ellipsis, 3, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 16), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 16), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 3, 0, 16), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot, 3, 0, 16), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_square, 2, 0, 5), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_square, 2, 0, 5), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_angle, 2, 0, 5), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_angle, 2, 0, 5), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_without_parentheses, 3, 0, 3), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_without_parentheses, 3, 0, 3), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_call, 3, 0, 3), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_call, 3, 0, 3), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_without_parentheses, 3, 0, 3), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_without_parentheses, 3, 0, 3), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_bar, 2, 0, 5), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_bar, 2, 0, 5), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_slash, 2, 0, 5), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_slash, 2, 0, 5), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_parenthesis, 2, 0, 5), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_parenthesis, 2, 0, 5), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_heredoc_single, 4, 0, 18), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_heredoc_single, 4, 0, 18), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_heredoc_double, 4, 0, 18), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_heredoc_double, 4, 0, 18), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 4, 0, 19), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 4, 0, 19), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_double, 2, 0, 5), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_double, 2, 0, 5), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_single, 2, 0, 5), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_single, 2, 0, 5), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_heredoc_single, 2, 0, 5), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_heredoc_single, 2, 0, 5), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 4, 0, 20), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 4, 0, 20), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, 0, 0), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_expression, 3, 0, 0), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_expression, 3, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4, 0, 0), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_call, 4, 0, 21), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_call, 4, 0, 21), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_heredoc_double, 2, 0, 5), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_heredoc_double, 2, 0, 5), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_curly, 2, 0, 5), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_curly, 2, 0, 5), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_without_parentheses, 4, 0, 3), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_without_parentheses, 4, 0, 3), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_call, 4, 0, 3), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_call, 4, 0, 3), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_square, 2, 0, 5), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_square, 2, 0, 5), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_without_parentheses, 4, 0, 3), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_without_parentheses, 4, 0, 3), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 5, 0, 0), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 5, 0, 0), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_angle, 2, 0, 5), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_angle, 2, 0, 5), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_bar, 2, 0, 5), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_bar, 2, 0, 5), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_slash, 2, 0, 5), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_slash, 2, 0, 5), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_parenthesis, 3, 0, 13), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_parenthesis, 3, 0, 13), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_curly, 3, 0, 13), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_curly, 3, 0, 13), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_square, 3, 0, 13), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_square, 3, 0, 13), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_angle, 3, 0, 13), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_angle, 3, 0, 13), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_bar, 3, 0, 13), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_bar, 3, 0, 13), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_slash, 3, 0, 13), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_slash, 3, 0, 13), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_parenthesis, 3, 0, 13), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_parenthesis, 3, 0, 13), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_double, 3, 0, 13), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_double, 3, 0, 13), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_single, 3, 0, 13), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_single, 3, 0, 13), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_heredoc_single, 3, 0, 13), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_heredoc_single, 3, 0, 13), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_heredoc_double, 3, 0, 13), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_heredoc_double, 3, 0, 13), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_curly, 3, 0, 13), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_curly, 3, 0, 13), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_square, 3, 0, 13), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_square, 3, 0, 13), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_angle, 3, 0, 13), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_angle, 3, 0, 13), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_bar, 3, 0, 13), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_bar, 3, 0, 13), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_slash, 3, 0, 13), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_slash, 3, 0, 13), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_parenthesis, 4, 0, 18), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_parenthesis, 4, 0, 18), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_square, 4, 0, 18), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_square, 4, 0, 18), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_angle, 4, 0, 18), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_angle, 4, 0, 18), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_bar, 4, 0, 18), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_bar, 4, 0, 18), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_slash, 4, 0, 18), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_slash, 4, 0, 18), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_parenthesis, 4, 0, 18), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_parenthesis, 4, 0, 18), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_double, 4, 0, 18), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_double, 4, 0, 18), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_single, 4, 0, 18), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_single, 4, 0, 18), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_heredoc_single, 4, 0, 18), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_heredoc_single, 4, 0, 18), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_heredoc_double, 4, 0, 18), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_heredoc_double, 4, 0, 18), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_curly, 4, 0, 18), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_curly, 4, 0, 18), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_square, 4, 0, 18), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_square, 4, 0, 18), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_angle, 4, 0, 18), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_angle, 4, 0, 18), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_bar, 4, 0, 18), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_bar, 4, 0, 18), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_slash, 4, 0, 18), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_slash, 4, 0, 18), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_without_parentheses, 2, -1, 0), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_without_parentheses, 2, -1, 0), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_without_parentheses, 4, -1, 0), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_without_parentheses, 4, -1, 0), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(987), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nil, 1, 0, 0), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nil, 1, 0, 0), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 1, 0, 0), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 1, 0, 0), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullary_operator, 1, 0, 0), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullary_operator, 1, 0, 0), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 1, 0, 0), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 1, 0, 0), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 0), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 0), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_without_parentheses, 1, 0, 0), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_without_parentheses, 1, 0, 0), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_without_parentheses, 3, -1, 0), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_without_parentheses, 3, -1, 0), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 1, 0, 0), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 1, 0, 0), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 2, 0, 0), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 2, 0, 0), - [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4988), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_atom, 2, 0, 0), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_atom, 2, 0, 0), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_curly, 4, 0, 18), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_curly, 4, 0, 18), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 2, 0, 12), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 2, 0, 12), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_expression, 1, 0, 0), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_expression, 1, 0, 0), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4989), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), - [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4985), - [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1, 0, 0), SHIFT(1378), - [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1, 0, 0), SHIFT(1375), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2, 0, 0), SHIFT(1378), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2, 0, 0), SHIFT(1375), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_with_parentheses, 2, 0, 0), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 1, 0, 0), SHIFT(357), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_with_parentheses, 3, 0, 0), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), - [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(5002), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), - [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4982), - [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4992), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4997), - [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2, 0, 0), - [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2, 0, 0), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [3368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(923), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [3373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4981), - [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [3379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4980), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [3386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(969), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [3395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4984), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [3400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4995), - [3403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4993), - [3406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1, 0, 0), SHIFT(1404), - [3522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1, 0, 0), SHIFT(1398), - [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [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(940), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2, 0, 0), SHIFT(1404), - [3568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2, 0, 0), SHIFT(1398), - [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4986), - [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(901), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), - [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1, 0, 0), SHIFT(1399), - [3624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1, 0, 0), SHIFT(1405), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(947), - [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2, 0, 0), SHIFT(1399), - [3717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2, 0, 0), SHIFT(1405), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [3730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4991), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), - [3735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4983), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4987), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [3751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4990), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_items_with_trailing_separator, 1, 0, 0), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [3802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4979), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [3807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(5000), - [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4996), - [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(5001), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [3932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 1, 0, 0), SHIFT(301), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_trailing_separator, 1, 0, 0), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_stab_clause_arguments_with_parentheses_repeat1, 2, 0, 0), - [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_stab_clause_arguments_with_parentheses_repeat1, 2, 0, 0), REDUCE(aux_sym_stab_clause_arguments_without_parentheses_repeat1, 2, 0, 0), - [4040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_stab_clause_arguments_without_parentheses_repeat1, 2, 0, 0), SHIFT(301), - [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_stab_clause_arguments_without_parentheses_repeat1, 2, 0, 0), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), - [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4994), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_with_parentheses_with_guard, 3, 0, 16), - [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses_with_guard, 3, 1, 16), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), - [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6631), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), - [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6544), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6556), - [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6554), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6558), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), - [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), - [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6550), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6538), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6539), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), - [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords_with_trailing_separator, 3, 0, 0), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), - [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords_with_trailing_separator, 2, 0, 0), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [5226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [5229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [5232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2, 0, 0), - [5237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), - [5247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), - [5250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1399), - [5253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1406), - [5256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3, 0, 0), SHIFT(1378), - [5259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3, 0, 0), SHIFT(1375), - [5262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), - [5265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), - [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 3, 0, 16), - [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 3, 0, 16), - [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 2, 0, 9), - [5456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2, 0, 9), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7533), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), - [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [6636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_parenthesis_repeat1, 2, 0, 0), - [6638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(425), - [6641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(6555), - [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_slash_repeat1, 2, 0, 0), - [6646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_slash_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [6649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_slash_repeat1, 2, 0, 0), SHIFT_REPEAT(6609), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [6798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_double_repeat1, 2, 0, 0), - [6800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_double_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [6803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_double_repeat1, 2, 0, 0), SHIFT_REPEAT(6519), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [6982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords_with_trailing_separator, 1, 0, 0), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [7168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_single_repeat1, 2, 0, 0), - [7170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_single_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [7173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_single_repeat1, 2, 0, 0), SHIFT_REPEAT(6569), - [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [7186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4999), - [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7499), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7508), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7434), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [7345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_angle_repeat1, 2, 0, 0), - [7347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_angle_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [7350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_angle_repeat1, 2, 0, 0), SHIFT_REPEAT(6629), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), - [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [7447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_bar_repeat1, 2, 0, 0), - [7449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_bar_repeat1, 2, 0, 0), SHIFT_REPEAT(498), - [7452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_bar_repeat1, 2, 0, 0), SHIFT_REPEAT(6632), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [7507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_single_repeat1, 2, 0, 0), - [7509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_single_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [7512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_single_repeat1, 2, 0, 0), SHIFT_REPEAT(6485), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [7575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_square_repeat1, 2, 0, 0), - [7577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_square_repeat1, 2, 0, 0), SHIFT_REPEAT(429), - [7580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_square_repeat1, 2, 0, 0), SHIFT_REPEAT(6624), - [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [7677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_double_repeat1, 2, 0, 0), - [7679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_double_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [7682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_double_repeat1, 2, 0, 0), SHIFT_REPEAT(6408), - [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [7719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3, 0, 0), SHIFT(1399), - [7722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3, 0, 0), SHIFT(1405), - [7725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_curly_repeat1, 2, 0, 0), - [7727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_curly_repeat1, 2, 0, 0), SHIFT_REPEAT(542), - [7730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_curly_repeat1, 2, 0, 0), SHIFT_REPEAT(6571), - [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [7767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4978), - [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [7772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [7807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3, 0, 0), SHIFT(1404), - [7810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3, 0, 0), SHIFT(1398), - [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), - [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), - [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [7831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), - [7834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), - [7837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2, 0, 0), - [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), - [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), - [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [7873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 2, 0, 0), - [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 2, 0, 0), - [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), - [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7173), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), - [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), - [7911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_double_repeat1, 1, 0, 0), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), - [7915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [7917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7038), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), - [7921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [7927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 0), - [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 0), - [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), - [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), - [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), - [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), - [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), - [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), - [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), - [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), - [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), - [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), - [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), - [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), - [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), - [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), - [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), - [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), - [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), - [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), - [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), - [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), - [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), - [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), - [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), - [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), - [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), - [8173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_single_repeat1, 1, 0, 0), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), - [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), - [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), - [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), - [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), - [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), - [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), - [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), - [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), - [8241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), - [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), - [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), - [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), - [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), - [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), - [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), - [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), - [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [8305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_double_repeat1, 1, 0, 0), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), - [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), - [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), - [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), - [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), - [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), - [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), - [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), - [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), - [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), - [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [8373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 2, 0, 0), - [8375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_stab_clause_arguments_without_parentheses_repeat1, 2, 0, 0), SHIFT_REPEAT(837), - [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), - [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), - [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), - [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), - [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), - [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [8422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_parenthesis_repeat1, 1, 0, 0), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), - [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), - [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), - [8466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_single_repeat1, 1, 0, 0), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [8474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_curly_repeat1, 1, 0, 0), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), - [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), - [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), - [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), - [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), - [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), - [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), - [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [8566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), - [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), - [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), - [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), - [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [8594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), - [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [8602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), - [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), - [8614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_slash_repeat1, 1, 0, 0), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), - [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [8622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [8626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), - [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), - [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), - [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), - [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), - [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), - [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), - [8658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_square_repeat1, 1, 0, 0), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), - [8662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), - [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), - [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [8678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_angle_repeat1, 1, 0, 0), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [8690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_bar_repeat1, 1, 0, 0), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), - [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), - [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), - [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [8754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_angle_repeat1, 2, 0, 0), - [8756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_angle_repeat1, 2, 0, 0), SHIFT_REPEAT(6921), - [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [8765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [8793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [8835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_single_repeat1, 2, 0, 0), - [8837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_single_repeat1, 2, 0, 0), SHIFT_REPEAT(6960), - [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [8856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), - [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [8906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [8908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [8922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_heredoc_single_repeat1, 2, 0, 0), - [8924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_heredoc_single_repeat1, 2, 0, 0), SHIFT_REPEAT(7257), - [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [8933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [8979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [8997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [9059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_bar_repeat1, 2, 0, 0), - [9061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_bar_repeat1, 2, 0, 0), SHIFT_REPEAT(7173), - [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [9066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_heredoc_double_repeat1, 1, 0, 0), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [9072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [9078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [9080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [9082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [9084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [9092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [9094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [9106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [9108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [9118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [9120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_angle_repeat1, 1, 0, 0), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [9124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), - [9128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [9132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [9144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [9146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [9148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_heredoc_double_repeat1, 2, 0, 0), - [9150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_heredoc_double_repeat1, 2, 0, 0), SHIFT_REPEAT(6878), - [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [9165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_trailing_separator, 2, 0, 0), - [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [9173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_parenthesis_repeat1, 2, 0, 0), - [9175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(7038), - [9178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [9192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_single_repeat1, 1, 0, 0), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [9246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [9294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_curly_repeat1, 2, 0, 0), - [9296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_curly_repeat1, 2, 0, 0), SHIFT_REPEAT(7229), - [9299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_parenthesis_repeat1, 1, 0, 0), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), - [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [9307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), - [9312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 3, 0, 0), - [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [9320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_stab_clause_arguments_with_parentheses_repeat1, 2, 0, 0), SHIFT_REPEAT(893), - [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [9331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [9353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_square_repeat1, 1, 0, 0), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [9361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), - [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [9365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_slash_repeat1, 2, 0, 0), - [9367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_slash_repeat1, 2, 0, 0), SHIFT_REPEAT(7283), - [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), - [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [9480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_bar_repeat1, 1, 0, 0), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [9484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_items_with_trailing_separator, 4, 0, 0), - [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [9502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4998), - [9505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [9527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 1, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2, 0, 0), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 2, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3, 0, 0), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 3, 0, 0), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4, 0, 0), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 4, 0, 0), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 4, 0, 0), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 4, 0, 0), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 4, 0, 0), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 5, 0, 0), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 5, 0, 0), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3, 0, 0), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3, 0, 0), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 3, 0, 0), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 5, 0, 0), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 5, 0, 0), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 3, 0, 0), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 4, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 4, 0, 0), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 2, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, 0, 0), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 3, 0, 0), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_identifier, 1, 0, 0), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_identifier, 1, 0, 0), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_double, 2, 0, 4), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_double, 2, 0, 4), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_double, 3, 0, 10), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_double, 3, 0, 10), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_single, 2, 0, 4), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_single, 2, 0, 4), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_single, 3, 0, 10), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_single, 3, 0, 10), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_double, 4, 0, 12), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_double, 4, 0, 12), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_single, 4, 0, 12), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_single, 4, 0, 12), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_dot, 3, 0, 11), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_dot, 3, 0, 11), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_semgrep_ellipsis, 1, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_terminator, 1, 0, 0), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminator, 1, 0, 0), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1360), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), + [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 1, 0, 1), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_terminator_repeat1, 1, 0, 1), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_terminator, 2, 0, 0), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminator, 2, 0, 0), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1373), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_terminator_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metavariable_keyword, 2, 0, 0), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metavariable_keyword, 2, 0, 0), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword, 1, 0, 0), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1, 0, 0), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_keyword, 2, 0, 0), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_keyword, 2, 0, 0), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_dot, 2, 0, 6), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 1, 0, 0), SHIFT(364), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 1, 0, 0), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_with_parentheses, 1, 0, 0), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_with_parentheses, 1, 0, 0), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_with_parentheses, 2, 0, 2), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_with_parentheses, 2, 0, 2), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_with_parentheses, 2, 0, 2), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_with_parentheses, 2, 0, 2), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_with_parentheses, 2, 0, 0), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_parentheses, 2, 0, 0), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2, 0, 0), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 2, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_with_parentheses, 4, 0, 2), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_with_parentheses, 4, 0, 2), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_call, 2, 0, 2), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_call, 2, 0, 2), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_with_parentheses, 3, 0, 2), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_with_parentheses, 3, 0, 2), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_charlist, 1, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_charlist, 1, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_with_parentheses_immediate, 2, 0, 0), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_parentheses_immediate, 2, 0, 0), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_with_parentheses, 3, 0, 2), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_with_parentheses, 3, 0, 2), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_without_parentheses, 2, 0, 2), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_without_parentheses, 2, 0, 2), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_without_parentheses, 2, 0, 2), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_without_parentheses, 2, 0, 2), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_with_parentheses, 3, 0, 0), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_parentheses, 3, 0, 0), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5, 0, 0), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5, 0, 0), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4, 0, 0), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4, 0, 0), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_with_parentheses, 4, 0, 2), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_with_parentheses, 4, 0, 2), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3, 0, 0), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_call, 2, 0, 2), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_call, 2, 0, 2), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 0), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_with_parentheses_immediate, 3, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_parentheses_immediate, 3, 0, 0), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_slash, 4, 0, 12), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_slash, 4, 0, 12), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_bar, 2, 0, 4), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_bar, 2, 0, 4), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_slash, 2, 0, 4), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_slash, 2, 0, 4), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_parenthesis, 3, 0, 10), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_parenthesis, 3, 0, 10), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_curly, 3, 0, 10), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_curly, 3, 0, 10), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_square, 3, 0, 10), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_square, 3, 0, 10), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_angle, 3, 0, 10), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_angle, 3, 0, 10), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_bar, 3, 0, 10), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_bar, 3, 0, 10), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_slash, 3, 0, 10), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_slash, 3, 0, 10), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_parenthesis, 3, 0, 10), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_parenthesis, 3, 0, 10), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_double, 3, 0, 10), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_double, 3, 0, 10), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_single, 3, 0, 10), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_single, 3, 0, 10), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_heredoc_single, 3, 0, 10), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_heredoc_single, 3, 0, 10), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_heredoc_double, 3, 0, 10), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_heredoc_double, 3, 0, 10), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_curly, 3, 0, 10), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_curly, 3, 0, 10), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_square, 3, 0, 10), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_square, 3, 0, 10), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_angle, 3, 0, 10), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_angle, 3, 0, 10), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_bar, 3, 0, 10), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_bar, 3, 0, 10), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_slash, 3, 0, 10), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_slash, 3, 0, 10), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_parenthesis, 4, 0, 12), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_parenthesis, 4, 0, 12), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_curly, 4, 0, 12), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_curly, 4, 0, 12), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_square, 4, 0, 12), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_square, 4, 0, 12), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_angle, 4, 0, 12), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_angle, 4, 0, 12), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_bar, 4, 0, 12), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_bar, 4, 0, 12), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_parenthesis, 4, 0, 12), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_parenthesis, 4, 0, 12), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_double, 4, 0, 12), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_double, 4, 0, 12), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_single, 4, 0, 12), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_single, 4, 0, 12), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_heredoc_single, 4, 0, 12), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_heredoc_single, 4, 0, 12), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_heredoc_double, 4, 0, 12), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_heredoc_double, 4, 0, 12), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_curly, 4, 0, 12), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_curly, 4, 0, 12), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_square, 4, 0, 12), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_square, 4, 0, 12), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_angle, 4, 0, 12), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_angle, 4, 0, 12), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_bar, 4, 0, 12), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_bar, 4, 0, 12), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_slash, 4, 0, 12), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_slash, 4, 0, 12), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_without_parentheses, 1, -1, 0), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_without_parentheses, 1, -1, 0), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_heredoc_single, 2, 0, 4), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_heredoc_single, 2, 0, 4), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_heredoc_double, 2, 0, 4), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_heredoc_double, 2, 0, 4), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_heredoc_single, 3, 0, 10), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_heredoc_single, 3, 0, 10), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_heredoc_double, 3, 0, 10), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_heredoc_double, 3, 0, 10), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_heredoc_single, 4, 0, 12), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_heredoc_single, 4, 0, 12), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_heredoc_double, 4, 0, 12), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_heredoc_double, 4, 0, 12), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nil, 1, 0, 0), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nil, 1, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 1, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 1, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullary_operator, 1, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullary_operator, 1, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 0), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_without_parentheses, 1, 0, 0), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_without_parentheses, 1, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_atom, 2, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_atom, 2, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_without_parentheses, 3, -1, 0), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_without_parentheses, 3, -1, 0), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_without_parentheses, 4, -1, 0), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_without_parentheses, 4, -1, 0), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 2, 0, 0), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 2, 0, 0), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, -1, 5), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, -1, 5), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 2, 0, 0), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 2, 0, 0), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metavariable_atom, 2, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metavariable_atom, 2, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_just_do_block, 2, 0, 2), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_just_do_block, 2, 0, 2), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 1, 0, 0), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 1, 0, 0), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 3, -1, 7), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 3, -1, 7), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_angle, 2, 0, 4), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_angle, 2, 0, 4), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 3, 0, 0), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 3, 0, 0), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3, 0, 0), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3, 0, 0), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3, 0, 0), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3, 0, 0), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deep_ellipsis, 3, 0, 0), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deep_ellipsis, 3, 0, 0), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 11), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 11), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_semgrep_ellipsis, 1, 0, 0), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 3, 0, 11), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot, 3, 0, 11), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_without_parentheses, 3, 0, 2), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_without_parentheses, 3, 0, 2), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_call, 3, 0, 2), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_call, 3, 0, 2), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_without_parentheses, 3, 0, 2), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_without_parentheses, 3, 0, 2), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 4, 0, 0), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 4, 0, 0), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, 0, 0), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, 0, 0), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_expression, 3, 0, 0), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_expression, 3, 0, 0), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4, 0, 0), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4, 0, 0), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_call, 4, 0, 13), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_call, 4, 0, 13), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_call_without_parentheses, 4, 0, 2), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_call_without_parentheses, 4, 0, 2), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_call, 4, 0, 2), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_call, 4, 0, 2), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_call_without_parentheses, 4, 0, 2), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_call_without_parentheses, 4, 0, 2), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_pair, 1, 0, 0), + [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_pair, 1, 0, 0), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 5, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 5, 0, 0), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, 0, 0), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, 0, 0), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arguments_without_parentheses, 2, -1, 0), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_without_parentheses, 2, -1, 0), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 2, 0, 0), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 2, 0, 0), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4958), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), + [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 3, 0, 0), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 3, 0, 0), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 1, 0, 0), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 1, 0, 0), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_parenthesis, 2, 0, 4), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_parenthesis, 2, 0, 4), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_curly, 2, 0, 4), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_curly, 2, 0, 4), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_square, 2, 0, 4), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_square, 2, 0, 4), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_angle, 2, 0, 4), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_angle, 2, 0, 4), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_bar, 2, 0, 4), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_bar, 2, 0, 4), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_i_slash, 2, 0, 4), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_i_slash, 2, 0, 4), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_parenthesis, 2, 0, 4), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_parenthesis, 2, 0, 4), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_double, 2, 0, 4), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_double, 2, 0, 4), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_single, 2, 0, 4), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_single, 2, 0, 4), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_heredoc_single, 2, 0, 4), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_heredoc_single, 2, 0, 4), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_heredoc_double, 2, 0, 4), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_heredoc_double, 2, 0, 4), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_curly, 2, 0, 4), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_curly, 2, 0, 4), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_square, 2, 0, 4), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_square, 2, 0, 4), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 2, 0, 9), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 2, 0, 9), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_expression, 1, 0, 0), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_expression, 1, 0, 0), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1030), + [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4956), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_with_parentheses, 2, 0, 0), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_with_parentheses, 3, 0, 0), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 1, 0, 0), SHIFT(308), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2, 0, 0), SHIFT(1361), + [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2, 0, 0), SHIFT(1364), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), + [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4966), + [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1, 0, 0), SHIFT(1361), + [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1, 0, 0), SHIFT(1364), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4962), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4968), + [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4967), + [3135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4975), + [3223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(956), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2, 0, 0), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2, 0, 0), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4957), + [3378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [3381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4977), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1007), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4963), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4976), + [3503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4978), + [3506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1, 0, 0), SHIFT(1387), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1, 0, 0), SHIFT(1388), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2, 0, 0), SHIFT(1387), + [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2, 0, 0), SHIFT(1388), + [3615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4971), + [3618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(973), + [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1, 0, 0), SHIFT(1384), + [3624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1, 0, 0), SHIFT(1385), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4955), + [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1000), + [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2, 0, 0), SHIFT(1384), + [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2, 0, 0), SHIFT(1385), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4959), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [3759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4970), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4972), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_items_with_trailing_separator, 1, 0, 0), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [3958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 1, 0, 0), SHIFT(372), + [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_stab_clause_arguments_with_parentheses_repeat1, 2, 0, 0), + [3963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_stab_clause_arguments_with_parentheses_repeat1, 2, 0, 0), REDUCE(aux_sym_stab_clause_arguments_without_parentheses_repeat1, 2, 0, 0), + [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_stab_clause_arguments_without_parentheses_repeat1, 2, 0, 0), SHIFT(372), + [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_stab_clause_arguments_without_parentheses_repeat1, 2, 0, 0), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_trailing_separator, 1, 0, 0), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [4021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4969), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [4028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4974), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [4033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4960), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_with_parentheses_with_guard, 3, 0, 11), + [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses_with_guard, 3, 1, 11), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6544), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6556), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6558), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6550), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6554), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6538), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6539), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords_with_trailing_separator, 2, 0, 0), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7466), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords_with_trailing_separator, 3, 0, 0), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [5241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [5244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2, 0, 0), + [5249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [5260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1373), + [5263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), + [5266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [5268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), + [5271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, 0, 0), SHIFT_REPEAT(1393), + [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1384), + [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2, 0, 0), SHIFT_REPEAT(1393), + [5280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3, 0, 0), SHIFT(1361), + [5283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3, 0, 0), SHIFT(1364), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 3, 0, 11), + [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 3, 0, 11), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 2, 0, 8), + [5474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2, 0, 8), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [6620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_square_repeat1, 2, 0, 0), + [6622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_square_repeat1, 2, 0, 0), SHIFT_REPEAT(452), + [6625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_square_repeat1, 2, 0, 0), SHIFT_REPEAT(6617), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [6634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_single_repeat1, 2, 0, 0), + [6636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_single_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [6639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_single_repeat1, 2, 0, 0), SHIFT_REPEAT(6522), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [6656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_single_repeat1, 2, 0, 0), + [6658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_single_repeat1, 2, 0, 0), SHIFT_REPEAT(451), + [6661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_single_repeat1, 2, 0, 0), SHIFT_REPEAT(6396), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [6666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_double_repeat1, 2, 0, 0), + [6668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_double_repeat1, 2, 0, 0), SHIFT_REPEAT(432), + [6671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_double_repeat1, 2, 0, 0), SHIFT_REPEAT(6419), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [6682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_angle_repeat1, 2, 0, 0), + [6684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_angle_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [6687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_angle_repeat1, 2, 0, 0), SHIFT_REPEAT(6529), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [6702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1373), + [6705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), + [6708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2, 0, 0), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [6776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_bar_repeat1, 2, 0, 0), + [6778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_bar_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [6781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_bar_repeat1, 2, 0, 0), SHIFT_REPEAT(6613), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [6838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_slash_repeat1, 2, 0, 0), + [6840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_slash_repeat1, 2, 0, 0), SHIFT_REPEAT(424), + [6843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_slash_repeat1, 2, 0, 0), SHIFT_REPEAT(6472), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [7160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3, 0, 0), SHIFT(1384), + [7163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3, 0, 0), SHIFT(1385), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [7190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords_with_trailing_separator, 1, 0, 0), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7514), + [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [7678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [7742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4961), + [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [7761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3, 0, 0), SHIFT(1387), + [7764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3, 0, 0), SHIFT(1388), + [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [7781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_parenthesis_repeat1, 2, 0, 0), + [7783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [7786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(6588), + [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [7795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4965), + [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [7806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(1013), + [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [7813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_double_repeat1, 2, 0, 0), + [7815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_double_repeat1, 2, 0, 0), SHIFT_REPEAT(420), + [7818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_double_repeat1, 2, 0, 0), SHIFT_REPEAT(6577), + [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [7825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_curly_repeat1, 2, 0, 0), + [7827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_curly_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [7830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_i_curly_repeat1, 2, 0, 0), SHIFT_REPEAT(6614), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [7905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [7917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7176), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [7929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 0), + [7931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 0), + [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [7973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_single_repeat1, 1, 0, 0), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [7995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [8059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_heredoc_double_repeat1, 1, 0, 0), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [8065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 2, 0, 0), + [8067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 2, 0, 0), + [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 2, 0, 0), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), + [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [8223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [8255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_slash_repeat1, 1, 0, 0), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), + [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), + [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), + [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), + [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [8435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_single_repeat1, 1, 0, 0), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), + [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), + [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [8447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_angle_repeat1, 1, 0, 0), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [8571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [8595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [8619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_stab_clause_arguments_without_parentheses_repeat1, 2, 0, 0), SHIFT_REPEAT(1006), + [8622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_double_repeat1, 1, 0, 0), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [8626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [8646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_parenthesis_repeat1, 1, 0, 0), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [8662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), + [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [8722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_bar_repeat1, 1, 0, 0), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [8726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_curly_repeat1, 1, 0, 0), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [8734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_i_square_repeat1, 1, 0, 0), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [8772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_single_repeat1, 1, 0, 0), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [8834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_angle_repeat1, 2, 0, 0), + [8836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_angle_repeat1, 2, 0, 0), SHIFT_REPEAT(7007), + [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [8903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_bar_repeat1, 2, 0, 0), + [8905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_bar_repeat1, 2, 0, 0), SHIFT_REPEAT(7188), + [8908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [8930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_double_repeat1, 1, 0, 0), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [8936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_square_repeat1, 2, 0, 0), + [8938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_square_repeat1, 2, 0, 0), SHIFT_REPEAT(6841), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [8979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [8997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [9021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_slash_repeat1, 2, 0, 0), + [9023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_slash_repeat1, 2, 0, 0), SHIFT_REPEAT(7176), + [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [9030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [9036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [9040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [9042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [9044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [9046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [9048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_square_repeat1, 1, 0, 0), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [9056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [9072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [9078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [9080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [9082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [9084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [9092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [9094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [9106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [9108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [9118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [9122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_heredoc_single_repeat1, 1, 0, 0), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [9128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [9132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), + [9144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 3, 0, 0), + [9146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [9148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [9168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [9172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_curly_repeat1, 1, 0, 0), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [9176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_heredoc_double_repeat1, 1, 0, 0), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [9236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_double_repeat1, 2, 0, 0), + [9238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_double_repeat1, 2, 0, 0), SHIFT_REPEAT(6753), + [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [9265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_stab_clause_arguments_with_parentheses_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [9292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_angle_repeat1, 1, 0, 0), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [9308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [9330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_items_with_trailing_separator_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [9355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [9361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [9365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [9377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [9389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [9391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [9393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [9395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [9407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [9409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [9411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [9413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [9415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [9417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [9433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [9437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [9445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [9453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [9489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [9505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [9525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_slash_repeat1, 1, 0, 0), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [9539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [9565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_curly_repeat1, 1, 0, 0), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), - [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [9587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [9589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_double_repeat1, 1, 0, 0), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [9597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), - [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [9607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_heredoc_single_repeat1, 1, 0, 0), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), - [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), - [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), - [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), - [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), - [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [9633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_square_repeat1, 2, 0, 0), - [9635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_square_repeat1, 2, 0, 0), SHIFT_REPEAT(7082), - [9638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_slash_repeat1, 1, 0, 0), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [9644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_double_repeat1, 2, 0, 0), - [9646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_double_repeat1, 2, 0, 0), SHIFT_REPEAT(7242), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [9653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_with_parentheses, 6, 0, 0), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [9663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_left, 1, 0, 0), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [9539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [9541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2, 0, 0), SHIFT_REPEAT(4964), + [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [9548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_bar_repeat1, 1, 0, 0), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [9570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_trailing_separator, 2, 0, 0), + [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [9598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_parenthesis_repeat1, 1, 0, 0), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [9606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_parenthesis_repeat1, 2, 0, 0), + [9608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(7219), + [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [9619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_heredoc_single_repeat1, 2, 0, 0), + [9621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_heredoc_single_repeat1, 2, 0, 0), SHIFT_REPEAT(6892), + [9624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [9626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_heredoc_double_repeat1, 2, 0, 0), + [9628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_heredoc_double_repeat1, 2, 0, 0), SHIFT_REPEAT(6926), + [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [9639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [9641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_single_repeat1, 2, 0, 0), + [9643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_single_repeat1, 2, 0, 0), SHIFT_REPEAT(6645), + [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [9658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_curly_repeat1, 2, 0, 0), + [9660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_curly_repeat1, 2, 0, 0), SHIFT_REPEAT(6925), + [9663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_items_with_trailing_separator, 4, 0, 0), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), [9669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_with_parentheses, 4, 0, 0), - [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [9703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [9749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2, 0, 0), - [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [9753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_with_parentheses, 5, 0, 0), - [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [9757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 4, 0, 0), - [9759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [9775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_trailing_separator, 3, 0, 0), - [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7429), - [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), - [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [9795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_trailing_separator, 4, 0, 0), - [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), - [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7544), - [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7502), - [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), - [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7531), - [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), - [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), - [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), - [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), - [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [9903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [9929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7472), - [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), - [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [9993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [10005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), - [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [10023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7387), - [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [10027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [10029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [10031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [10033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [10039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [10045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [10047] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [10059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [10061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [9675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_left, 1, 0, 0), + [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [9713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [9723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_with_parentheses, 6, 0, 0), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [9761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2, 0, 0), + [9763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_with_parentheses, 5, 0, 0), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [9769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause_arguments_without_parentheses, 4, 0, 0), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), + [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), + [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7425), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), + [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), + [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), + [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), + [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7504), + [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [9903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), + [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), + [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7476), + [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [9929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [9931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_trailing_separator, 4, 0, 0), + [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [9935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [9941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [9949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [9967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_arguments_with_trailing_separator, 3, 0, 0), + [9969] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [9991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [9993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [10005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [10023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), + [10027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [10029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [10031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [10033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [10039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [10045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [10047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), + [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [10059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [10061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [10067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [10071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7483), + [10075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [10077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [10081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), }; enum ts_external_scanner_symbol_identifiers { @@ -478123,7 +477506,7 @@ static const bool ts_external_scanner_states[27][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_newline_before_comment] = true, }, [7] = { - [ts_external_token_quoted_content_i_double] = true, + [ts_external_token_quoted_content_i_curly] = true, [ts_external_token_newline_before_binary_operator] = true, [ts_external_token_newline_before_comment] = true, }, @@ -478143,22 +477526,22 @@ static const bool ts_external_scanner_states[27][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_newline_before_comment] = true, }, [11] = { - [ts_external_token_quoted_content_i_parenthesis] = true, + [ts_external_token_quoted_content_i_double] = true, [ts_external_token_newline_before_binary_operator] = true, [ts_external_token_newline_before_comment] = true, }, [12] = { - [ts_external_token_quoted_content_i_curly] = true, + [ts_external_token_quoted_content_i_square] = true, [ts_external_token_newline_before_binary_operator] = true, [ts_external_token_newline_before_comment] = true, }, [13] = { - [ts_external_token_quoted_content_i_square] = true, + [ts_external_token_quoted_content_i_angle] = true, [ts_external_token_newline_before_binary_operator] = true, [ts_external_token_newline_before_comment] = true, }, [14] = { - [ts_external_token_quoted_content_i_angle] = true, + [ts_external_token_quoted_content_i_parenthesis] = true, [ts_external_token_newline_before_binary_operator] = true, [ts_external_token_newline_before_comment] = true, }, @@ -478173,52 +477556,52 @@ static const bool ts_external_scanner_states[27][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_newline_before_comment] = true, }, [17] = { - [ts_external_token_quoted_content_slash] = 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_heredoc_single] = 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_heredoc_double] = true, + [ts_external_token_quoted_content_double] = true, [ts_external_token_newline_before_binary_operator] = true, [ts_external_token_newline_before_comment] = true, }, [20] = { - [ts_external_token_quoted_content_square] = true, + [ts_external_token_quoted_content_single] = true, [ts_external_token_newline_before_binary_operator] = true, [ts_external_token_newline_before_comment] = true, }, [21] = { - [ts_external_token_quoted_content_angle] = true, + [ts_external_token_quoted_content_heredoc_single] = true, [ts_external_token_newline_before_binary_operator] = true, [ts_external_token_newline_before_comment] = true, }, [22] = { - [ts_external_token_quoted_content_bar] = true, + [ts_external_token_quoted_content_heredoc_double] = true, [ts_external_token_newline_before_binary_operator] = true, [ts_external_token_newline_before_comment] = true, }, [23] = { - [ts_external_token_quoted_content_curly] = true, + [ts_external_token_quoted_content_square] = true, [ts_external_token_newline_before_binary_operator] = true, [ts_external_token_newline_before_comment] = true, }, [24] = { - [ts_external_token_quoted_content_parenthesis] = true, + [ts_external_token_quoted_content_angle] = true, [ts_external_token_newline_before_binary_operator] = true, [ts_external_token_newline_before_comment] = true, }, [25] = { - [ts_external_token_quoted_content_double] = true, + [ts_external_token_quoted_content_bar] = true, [ts_external_token_newline_before_binary_operator] = true, [ts_external_token_newline_before_comment] = true, }, [26] = { - [ts_external_token_quoted_content_single] = true, + [ts_external_token_quoted_content_slash] = true, [ts_external_token_newline_before_binary_operator] = true, [ts_external_token_newline_before_comment] = true, }, diff --git a/lib/tree_sitter/alloc.h b/lib/tree_sitter/alloc.h index 1f4466d..1abdd12 100644 --- a/lib/tree_sitter/alloc.h +++ b/lib/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc diff --git a/lib/tree_sitter/array.h b/lib/tree_sitter/array.h index 15a3b23..a17a574 100644 --- a/lib/tree_sitter/array.h +++ b/lib/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/lib/tree_sitter/parser.h b/lib/tree_sitter/parser.h index 17f0e94..799f599 100644 --- a/lib/tree_sitter/parser.h +++ b/lib/tree_sitter/parser.h @@ -47,6 +47,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum {